diff --git a/apps/bridge/components/Menu.tsx b/apps/bridge/components/Menu.tsx index 58aeacdb9f87c..10c5ba73798ad 100644 --- a/apps/bridge/components/Menu.tsx +++ b/apps/bridge/components/Menu.tsx @@ -28,24 +28,6 @@ const StyledMenuItem = styled('div')<{ $isActive?: boolean }>` const MenuConfig = [ { title: 'CAKE', href: '/' }, - { - title: 'EVMs', - href: '/axelar', - items: [ - { - label: 'Axelar', - href: '/axelar', - }, - { - label: 'Stargate', - href: '/stargate', - }, - { - label: 'Wormhole', - href: '/wormhole', - }, - ], - }, { title: 'Aptos', href: '/', @@ -67,6 +49,10 @@ const MenuConfig = [ }, ], }, + { + title: 'EVMs', + href: '/axelar', + }, ] export function Menu() { diff --git a/apps/web/package.json b/apps/web/package.json index 6f62c6baad4e8..69d887a83c02f 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -49,6 +49,7 @@ "@pancakeswap/achievements": "workspace:*", "@pancakeswap/blog": "workspace:*", "@pancakeswap/chains": "workspace:*", + "@pancakeswap/canonical-bridge": "workspace:*", "@pancakeswap/farms": "workspace:*", "@pancakeswap/gauges": "workspace:*", "@pancakeswap/hooks": "workspace:*", diff --git a/apps/web/src/components/Menu/config/config.ts b/apps/web/src/components/Menu/config/config.ts index a62f01cf50f0c..03ffe696a81d3 100644 --- a/apps/web/src/components/Menu/config/config.ts +++ b/apps/web/src/components/Menu/config/config.ts @@ -142,37 +142,37 @@ const config: ( }, { label: t('Bridge'), - href: 'https://bridge.pancakeswap.finance', + href: '/bridge', icon: BridgeIcon, type: DropdownMenuItemType.EXTERNAL_LINK, image: '/images/decorations/pe2.png', - items: [ - { - label: t('Stargate'), - href: 'https://bridge.pancakeswap.finance/stargate', - type: DropdownMenuItemType.EXTERNAL_LINK, - }, - { - label: t('Axelar'), - href: 'https://bridge.pancakeswap.finance/axelar', - type: DropdownMenuItemType.EXTERNAL_LINK, - }, - { - label: t('Celer'), - href: 'https://cbridge.celer.network/1/12360001/', - type: DropdownMenuItemType.EXTERNAL_LINK, - }, - { - label: t('Wormhole'), - href: 'https://bridge.pancakeswap.finance/wormhole', - type: DropdownMenuItemType.EXTERNAL_LINK, - }, - { - label: t('Aptos'), - href: 'https://docs.pancakeswap.finance/readme/get-started-aptos/aptos-coin-guide', - type: DropdownMenuItemType.EXTERNAL_LINK, - }, - ].map((item) => addMenuItemSupported(item, chainId)), + // items: [ + // { + // label: t('Stargate'), + // href: 'https://bridge.pancakeswap.finance/stargate', + // type: DropdownMenuItemType.EXTERNAL_LINK, + // }, + // { + // label: t('Axelar'), + // href: 'https://bridge.pancakeswap.finance/axelar', + // type: DropdownMenuItemType.EXTERNAL_LINK, + // }, + // { + // label: t('Celer'), + // href: 'https://cbridge.celer.network/1/12360001/', + // type: DropdownMenuItemType.EXTERNAL_LINK, + // }, + // { + // label: t('Wormhole'), + // href: 'https://bridge.pancakeswap.finance/wormhole', + // type: DropdownMenuItemType.EXTERNAL_LINK, + // }, + // { + // label: t('Aptos'), + // href: 'https://docs.pancakeswap.finance/readme/get-started-aptos/aptos-coin-guide', + // type: DropdownMenuItemType.EXTERNAL_LINK, + // }, + // ].map((item) => addMenuItemSupported(item, chainId)), }, { label: t('Play'), diff --git a/apps/web/src/pages/bridge/index.tsx b/apps/web/src/pages/bridge/index.tsx new file mode 100644 index 0000000000000..d753cf0dc4bc5 --- /dev/null +++ b/apps/web/src/pages/bridge/index.tsx @@ -0,0 +1,38 @@ +import { Flex, useMatchBreakpoints } from '@pancakeswap/uikit' +import ConnectWalletButton from 'components/ConnectWalletButton' +import { lazy, Suspense } from 'react' +import { CHAIN_IDS } from 'utils/wagmi' +import Page from 'views/Page' + +const CanonicalBridge = lazy(() => + import('@pancakeswap/canonical-bridge').then((module) => ({ default: module.CanonicalBridge })), +) + +const BridgePage = () => { + const { isMobile } = useMatchBreakpoints() + + return ( + + + + } supportedChainIds={CHAIN_IDS} /> + + + + ) +} + +BridgePage.chains = CHAIN_IDS +BridgePage.screen = true + +export default BridgePage diff --git a/packages/canonical-bridge/package.json b/packages/canonical-bridge/package.json new file mode 100644 index 0000000000000..ebc72e4017275 --- /dev/null +++ b/packages/canonical-bridge/package.json @@ -0,0 +1,63 @@ +{ + "name": "@pancakeswap/canonical-bridge", + "version": "0.0.1", + "sideEffects": false, + "private": true, + "scripts": { + "build": "vite build", + "dev": "vite build --watch --mode development", + "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist" + }, + "files": [ + "dist" + ], + "main": "dist/index.js", + "types": "dist/index.d.ts", + "module": "dist/index.mjs", + "peerDependencies": { + "react": "^18.2.0", + "react-dom": "^18.2.0", + "viem": "catalog:", + "wagmi": "catalog:", + "@tanstack/react-query": "^5.52.1", + "styled-components": "6.0.7", + "@emotion/react": "^11", + "@emotion/styled": "^11", + "@solana/web3.js": "^1", + "@solana/spl-token": "^0", + "tronweb": "^6", + "@solana/wallet-adapter-react": "^0", + "@tronweb3/tronwallet-adapter-react-hooks": "^1", + "@pancakeswap/uikit": "workspace:*", + "@pancakeswap/localization": "workspace:*" + }, + "dependencies": { + "@bnb-chain/canonical-bridge-widget": "0.5.14-alpha.5", + "axios": "~1.6.8", + "polished": "^4.2.2" + }, + "devDependencies": { + "@types/lodash": "^4.14.168", + "@vitejs/plugin-react": "4.2.1", + "vite": "5.0.12", + "vite-plugin-dts": "^3.5.3", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "@types/react": "^18.2.21", + "@types/react-dom": "^18.0.6", + "@types/react-router-dom": "^5.1.7", + "@types/react-transition-group": "^4.4.1", + "viem": "catalog:", + "wagmi": "catalog:", + "@pancakeswap/uikit": "workspace:*", + "@pancakeswap/localization": "workspace:*" + }, + "exports": { + "./package.json": "./package.json", + ".": { + "types": "./dist/index.d.ts", + "import": "./dist/index.mjs", + "require": "./dist/index.js" + } + } +} diff --git a/packages/canonical-bridge/src/components/RefreshingIcon.tsx b/packages/canonical-bridge/src/components/RefreshingIcon.tsx new file mode 100644 index 0000000000000..fd842f6130eca --- /dev/null +++ b/packages/canonical-bridge/src/components/RefreshingIcon.tsx @@ -0,0 +1,71 @@ +import { useBridge } from '@bnb-chain/canonical-bridge-widget' +import { Svg, SvgProps } from '@pancakeswap/uikit' +import { keyframes, styled } from 'styled-components' + +export const RefreshingIcon = (props: SvgProps) => { + const { isGlobalFeeLoading, isRefreshing } = useBridge() + return ( + + + + + + + + + + + + + + + + ) +} + +const dash = keyframes` + to { + stroke-dashoffset: 0; + } +` + +const StyledSVG = styled(Svg)` + fill: none; + color: inherit; + .refreshBorder { + animation: ${dash} 32s linear forwards infinite; + } +` diff --git a/packages/canonical-bridge/src/components/V1BridgeLink.tsx b/packages/canonical-bridge/src/components/V1BridgeLink.tsx new file mode 100644 index 0000000000000..35e62f5d4676d --- /dev/null +++ b/packages/canonical-bridge/src/components/V1BridgeLink.tsx @@ -0,0 +1,30 @@ +import { Flex, Link } from '@pancakeswap/uikit' +import { styled } from 'styled-components' +import { ExternalLinkIcon } from './icons/ExternalLinkIcon' + +export function V1BridgeLink() { + return ( + + + V1 Bridge supports bridging to/from Aptos + + + + ) +} + +const StyledLink = styled(Link)` + display: inline; + font-size: 16px; + line-height: 20px; + font-weight: 400; + color: ${(props: any) => (props.theme.isDark ? '#B8ADD2' : '#7A6EAA')}; + text-align: center; + & > svg { + margin-left: 4px; + display: inline; + vertical-align: middle; + color: inherit; + fill: none; + } +` diff --git a/packages/canonical-bridge/src/components/icons/ExternalLinkIcon.tsx b/packages/canonical-bridge/src/components/icons/ExternalLinkIcon.tsx new file mode 100644 index 0000000000000..243f9bf4df1e1 --- /dev/null +++ b/packages/canonical-bridge/src/components/icons/ExternalLinkIcon.tsx @@ -0,0 +1,34 @@ +import { Svg, SvgProps } from '@pancakeswap/uikit' + +export function ExternalLinkIcon(props: SvgProps) { + return ( + + + + + + + + + + + + + + + + ) +} diff --git a/packages/canonical-bridge/src/configs/chains.ts b/packages/canonical-bridge/src/configs/chains.ts new file mode 100644 index 0000000000000..fb74131993bac --- /dev/null +++ b/packages/canonical-bridge/src/configs/chains.ts @@ -0,0 +1,853 @@ +import { IChainConfig } from '@bnb-chain/canonical-bridge-widget' + +export const chains: IChainConfig[] = [ + { + id: 1, + name: 'Ethereum', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://ethereum-rpc.publicnode.com/', + explorer: { + name: 'Etherscan', + url: 'https://etherscan.io', + }, + }, + { + id: 10, + name: 'Optimism', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://mainnet.optimism.io', + explorer: { + name: 'OP Mainnet Explorer', + url: 'https://optimistic.etherscan.io', + }, + }, + { + id: 14, + name: 'Flare', + nativeCurrency: { + name: 'FLR', + symbol: 'FLR', + decimals: 18, + }, + rpcUrl: 'https://flare-api.flare.network/ext/bc/C/rpc', + explorer: { + name: 'Flare Scan', + url: 'https://flarescan.com/', + }, + }, + { + id: 44, + name: 'Crab Network', + nativeCurrency: { + name: 'Crab Network Native Token', + symbol: 'CRAB', + decimals: 18, + }, + rpcUrl: 'https://crab-rpc.darwinia.network', + explorer: { + name: 'Crab explorer', + url: 'https://crab-scan.darwinia.network', + }, + }, + { + id: 56, + name: 'BNB Smart Chain', + nativeCurrency: { + name: 'BNB Chain Native Token', + symbol: 'BNB', + decimals: 18, + }, + rpcUrl: 'https://bsc-dataseed.bnbchain.org', + explorer: { + name: 'bscscan', + url: 'https://bscscan.com', + }, + }, + { + id: 57, + name: 'Syscoin', + nativeCurrency: { + name: 'Syscoin', + symbol: 'SYS', + decimals: 18, + }, + rpcUrl: 'https://rpc.syscoin.org', + explorer: { + name: 'Syscoin Block Explorer', + url: 'https://explorer.syscoin.org', + }, + }, + { + id: 58, + name: 'Ontology', + nativeCurrency: { + name: 'ONG', + symbol: 'ONG', + decimals: 18, + }, + rpcUrl: 'https://dappnode1.ont.io:10339', + explorer: { + name: 'explorer', + url: 'https://explorer.ont.io', + }, + }, + { + id: 66, + name: 'OKXChain', + nativeCurrency: { + name: 'OKXChain Global Utility Token', + symbol: 'OKT', + decimals: 18, + }, + rpcUrl: 'https://exchainrpc.okex.org', + explorer: { + name: 'oklink', + url: 'https://www.oklink.com/oktc', + }, + }, + { + id: 73, + name: 'FNCY', + nativeCurrency: { + name: 'FNCY', + symbol: 'FNCY', + decimals: 18, + }, + rpcUrl: 'https://fncy-seed1.fncy.world', + explorer: { + name: 'fncy scan', + url: 'https://fncyscan.fncy.world', + }, + }, + { + id: 100, + name: 'Gnosis', + nativeCurrency: { + name: 'xDAI', + symbol: 'XDAI', + decimals: 18, + }, + rpcUrl: 'https://rpc.gnosischain.com', + explorer: { + name: 'gnosisscan', + url: 'https://gnosisscan.io', + }, + }, + { + id: 128, + name: 'Huobi ECO Chain', + nativeCurrency: { + name: 'Huobi ECO Chain Native Token', + symbol: 'HT', + decimals: 18, + }, + rpcUrl: 'https://http-mainnet.hecochain.com', + explorer: { + name: 'hecoinfo', + url: 'https://hecoinfo.com', + tokenUrlPattern: 'https://hecoscan.io/#/token20/{0}', + }, + }, + { + id: 137, + name: 'Polygon', + nativeCurrency: { + name: 'MATIC', + symbol: 'MATIC', + decimals: 18, + }, + rpcUrl: 'https://polygon-rpc.com', + explorer: { + name: 'polygonscan', + url: 'https://polygonscan.com', + }, + }, + { + id: 169, + name: 'Manta Pacific', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://pacific-rpc.manta.network/http', + explorer: { + name: 'manta-pacific Explorer', + url: 'https://pacific-explorer.manta.network', + }, + }, + { + id: 196, + name: 'X Layer', + nativeCurrency: { + name: 'X Layer Global Utility Token', + symbol: 'OKB', + decimals: 18, + }, + rpcUrl: 'https://rpc.xlayer.tech', + explorer: { + name: 'OKLink', + url: 'https://www.oklink.com/xlayer', + }, + }, + { + id: 204, + name: 'opBNB', + nativeCurrency: { + name: 'BNB Chain Native Token', + symbol: 'BNB', + decimals: 18, + }, + rpcUrl: 'https://opbnb-mainnet-rpc.bnbchain.org', + explorer: { + name: 'opbnbscan', + url: 'https://mainnet.opbnbscan.com', + }, + }, + { + id: 248, + name: 'Oasys', + nativeCurrency: { + name: 'OAS', + symbol: 'OAS', + decimals: 18, + }, + rpcUrl: 'https://rpc.mainnet.oasys.games', + explorer: { + name: 'Oasys-Mainnet explorer', + url: 'https://explorer.oasys.games', + }, + }, + { + id: 250, + name: 'Fantom Opera', + nativeCurrency: { + name: 'Fantom', + symbol: 'FTM', + decimals: 18, + }, + rpcUrl: 'https://rpcapi.fantom.network', + explorer: { + name: 'ftmscan', + url: 'https://ftmscan.com', + }, + }, + { + id: 288, + name: 'Boba Network', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://mainnet.boba.network', + explorer: { + name: 'Bobascan', + url: 'https://bobascan.com', + }, + }, + { + id: 314, + name: 'Filecoin', + nativeCurrency: { + name: 'filecoin', + symbol: 'FIL', + decimals: 18, + }, + rpcUrl: 'https://api.node.glif.io', + explorer: { + name: 'Filfox', + url: 'https://filfox.info/en', + }, + }, + { + id: 324, + name: 'zkSync', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://mainnet.era.zksync.io', + explorer: { + name: 'zkSync Era Block Explorer', + url: 'https://explorer.zksync.io', + tokenUrlPattern: 'https://explorer.zksync.io/address/{0}', + }, + }, + { + id: 336, + name: 'Shiden', + nativeCurrency: { + name: 'Shiden', + symbol: 'SDN', + decimals: 18, + }, + rpcUrl: 'https://shiden.public.blastapi.io', + explorer: { + name: 'subscan', + url: 'https://shiden.subscan.io', + }, + }, + { + id: 416, + name: 'SX Network', + nativeCurrency: { + name: 'SX Network', + symbol: 'SX', + decimals: 18, + }, + rpcUrl: 'https://rpc.sx.technology', + explorer: { + name: 'SX Network Explorer', + url: 'https://explorer.sx.technology', + }, + }, + { + id: 592, + name: 'Astar', + nativeCurrency: { + name: 'Astar', + symbol: 'ASTR', + decimals: 18, + }, + rpcUrl: 'https://evm.astar.network', + explorer: { + name: 'subscan', + url: 'https://astar.subscan.io', + }, + }, + { + id: 1024, + name: 'CLV Parachain', + nativeCurrency: { + name: 'CLV', + symbol: 'CLV', + decimals: 18, + }, + rpcUrl: 'https://api-para.clover.finance', + explorer: { + name: 'CLV Blockchain Explore', + url: 'https://clvscan.com/', + }, + }, + { + id: 1030, + name: 'Conflux eSpace', + nativeCurrency: { + name: 'CFX', + symbol: 'CFX', + decimals: 18, + }, + rpcUrl: 'https://evm.confluxrpc.com', + explorer: { + name: 'Conflux Scan', + url: 'https://evm.confluxscan.net', + }, + }, + { + id: 1088, + name: 'Metis Andromeda', + nativeCurrency: { + name: 'Metis', + symbol: 'METIS', + decimals: 18, + }, + rpcUrl: 'https://andromeda.metis.io/?owner=1088', + explorer: { + name: 'Metis Andromeda explorer', + url: 'https://andromeda-explorer.metis.io', + }, + }, + { + id: 1101, + name: 'Polygon zkEVM', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://zkevm-rpc.com', + explorer: { + name: 'PolygonScan', + url: 'https://zkevm.polygonscan.com', + }, + }, + { + id: 1284, + name: 'Moonbeam', + nativeCurrency: { + name: 'Glimmer', + symbol: 'GLMR', + decimals: 18, + }, + rpcUrl: 'https://rpc.api.moonbeam.network', + explorer: { + name: 'moonscan', + url: 'https://moonbeam.moonscan.io', + }, + }, + { + id: 1285, + name: 'Moonriver', + nativeCurrency: { + name: 'Moonriver', + symbol: 'MOVR', + decimals: 18, + }, + rpcUrl: 'https://rpc.api.moonriver.moonbeam.network', + explorer: { + name: 'moonscan', + url: 'https://moonriver.moonscan.io', + }, + }, + { + id: 1329, + name: 'Sei Network', + nativeCurrency: { + name: 'SEI', + symbol: 'SEI', + decimals: 18, + }, + rpcUrl: 'https://evm-rpc.sei-apis.com', + explorer: { + name: 'Sei Scan', + url: 'https://www.seiscan.app/', + }, + }, + { + id: 1625, + name: 'Gravity Alpha', + nativeCurrency: { + name: 'Gravity', + symbol: 'G.', + decimals: 18, + }, + rpcUrl: 'https://rpc.gravity.xyz', + explorer: { + name: 'Gravity Alpha Mainnet Explorer', + url: 'https://explorer.gravity.xyz', + }, + }, + { + id: 2001, + name: 'Milkomeda C1', + nativeCurrency: { + name: 'milkAda', + symbol: 'mADA', + decimals: 18, + }, + rpcUrl: 'https://rpc-mainnet-cardano-evm.c1.milkomeda.com', + explorer: { + name: 'Blockscout', + url: 'https://explorer-mainnet-cardano-evm.c1.milkomeda.com', + }, + }, + { + id: 2002, + name: 'Milkomeda A1', + nativeCurrency: { + name: 'milkALGO', + symbol: 'mALGO', + decimals: 18, + }, + rpcUrl: 'https://rpc-mainnet-algorand-rollup.a1.milkomeda.com', + explorer: { + name: '', + url: '', + }, + }, + { + id: 2222, + name: 'Kava', + nativeCurrency: { + name: 'Kava', + symbol: 'KAVA', + decimals: 18, + }, + rpcUrl: 'https://evm.kava.io', + explorer: { + name: 'Kava EVM Explorer', + url: 'https://kavascan.com', + }, + }, + { + id: 5000, + name: 'Mantle', + nativeCurrency: { + name: 'Mantle', + symbol: 'MNT', + decimals: 18, + }, + rpcUrl: 'https://rpc.mantle.xyz/', + explorer: { + name: 'Mantle Mainnet Explorer', + url: 'https://explorer.mantle.xyz/', + }, + }, + { + id: 7700, + name: 'Canto', + nativeCurrency: { + name: 'Canto', + symbol: 'CANTO', + decimals: 18, + }, + rpcUrl: 'https://canto.gravitychain.io', + explorer: { + name: 'Canto Explorer (OKLink)', + url: 'https://www.oklink.com/canto', + }, + }, + { + id: 8217, + name: 'Klaytn', + nativeCurrency: { + name: 'KLAY', + symbol: 'KLAY', + decimals: 18, + }, + rpcUrl: 'https://klaytn.blockpi.network/v1/rpc/public', + explorer: { + name: 'Klaytnscope', + url: 'https://scope.klaytn.com', + }, + }, + { + id: 8453, + name: 'Base', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://mainnet.base.org', + explorer: { + name: 'basescan', + url: 'https://basescan.org', + }, + }, + { + id: 8822, + name: 'IOTA EVM', + nativeCurrency: { + name: 'IOTA Token', + symbol: 'IOTA', + decimals: 18, + }, + rpcUrl: 'https://json-rpc.evm.iotaledger.net', + explorer: { + name: 'IOTA EVM explorer', + url: 'https://explorer.evm.iota.org', + }, + }, + { + id: 9001, + name: 'Evmos', + nativeCurrency: { + name: 'Evmos', + symbol: 'EVMOS', + decimals: 18, + }, + rpcUrl: 'https://evmos-mainnet.public.blastapi.io', + explorer: { + name: 'Evmos Explorer (Escan)', + url: 'https://www.mintscan.io/evmos', + tokenUrlPattern: 'https://www.mintscan.io/evmos/address/{0}', + }, + }, + { + id: 13000, + name: 'SPS', + nativeCurrency: { + name: 'ECG', + symbol: 'ECG', + decimals: 18, + }, + rpcUrl: 'https://rpc.ssquad.games', + explorer: { + name: 'SPS Explorer', + url: 'http://spsscan.ssquad.games', + }, + }, + { + id: 23294, + name: 'Oasis Sapphire', + nativeCurrency: { + name: 'Sapphire Rose', + symbol: 'ROSE', + decimals: 18, + }, + rpcUrl: 'https://sapphire.oasis.io', + explorer: { + name: 'Oasis Sapphire Explorer', + url: 'https://explorer.oasis.io/mainnet/sapphire', + }, + }, + { + id: 42161, + name: 'Arbitrum One', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://arb1.arbitrum.io/rpc', + explorer: { + name: 'Arbiscan', + url: 'https://arbiscan.io', + }, + }, + { + id: 42170, + name: 'Arbitrum Nova', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://nova.arbitrum.io/rpc', + explorer: { + name: 'Arbitrum Nova Chain Explorer', + url: 'https://nova-explorer.arbitrum.io', + }, + }, + { + id: 42220, + name: 'Celo', + nativeCurrency: { + name: 'CELO', + symbol: 'CELO', + decimals: 18, + }, + rpcUrl: 'https://forno.celo.org', + explorer: { + name: 'Celoscan', + url: 'https://celoscan.io', + }, + }, + { + id: 42262, + name: 'Oasis Emerald', + nativeCurrency: { + name: 'Emerald Rose', + symbol: 'ROSE', + decimals: 18, + }, + rpcUrl: 'https://emerald.oasis.io', + explorer: { + name: 'Oasis Emerald Explorer', + url: 'https://explorer.oasis.io/mainnet/emerald', + }, + }, + { + id: 43114, + name: 'Avalanche', + nativeCurrency: { + name: 'Avalanche', + symbol: 'AVAX', + decimals: 18, + }, + rpcUrl: 'https://api.avax.network/ext/bc/C/rpc', + explorer: { + name: 'snowtrace', + url: 'https://snowtrace.io', + }, + }, + { + id: 47805, + name: 'REI Network', + nativeCurrency: { + name: 'REI', + symbol: 'REI', + decimals: 18, + }, + rpcUrl: 'https://rpc.rei.network', + explorer: { + name: 'rei-scan', + url: 'https://scan.rei.network', + }, + }, + { + id: 59144, + name: 'Linea', + nativeCurrency: { + name: 'Linea Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://rpc.linea.build', + explorer: { + name: 'Etherscan', + url: 'https://lineascan.build', + }, + }, + { + id: 71402, + name: 'Godwoken', + nativeCurrency: { + name: 'pCKB', + symbol: 'pCKB', + decimals: 18, + }, + rpcUrl: 'https://v1.mainnet.godwoken.io/rpc', + explorer: { + name: 'GWScan Block Explorer', + url: 'https://v1.gwscan.com', + tokenUrlPattern: 'https://v1.gwscan.com/account/{0}', + }, + }, + { + id: 81457, + name: 'Blast', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://rpc.blast.io', + explorer: { + name: 'Blastscan', + url: 'https://blastscan.io', + }, + }, + // { + // id: 112358, + // name: 'Metachain One', + // nativeCurrency: { + // name: 'Metao', + // symbol: 'METAO', + // decimals: 18, + // }, + // rpcUrl: 'https://rpc.metachain.one', + // explorer: { + // name: 'blockscout', + // url: 'https://explorer.metachain.one', + // }, + // }, + { + id: 167000, + name: 'Taiko', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://rpc.mainnet.taiko.xyz', + explorer: { + name: 'Taiko Scan', + url: 'https://taikoscan.io', + }, + }, + { + id: 210425, + name: 'PlatON', + nativeCurrency: { + name: 'LAT', + symbol: 'lat', + decimals: 18, + }, + rpcUrl: 'https://openapi2.platon.network/rpc', + explorer: { + name: 'PlatON explorer', + url: 'https://scan.platon.network', + tokenUrlPattern: 'https://scan.platon.network/tokens-detail?type=erc20&address={0}', + }, + }, + { + id: 534352, + name: 'Scroll', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://rpc.scroll.io', + explorer: { + name: 'Scrollscan', + url: 'https://scrollscan.com', + }, + }, + { + id: 1313161554, + name: 'Aurora', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://mainnet.aurora.dev', + explorer: { + name: 'aurorascan.dev', + url: 'https://aurorascan.dev', + }, + }, + { + id: 1380012617, + name: 'RARI Chain', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://mainnet.rpc.rarichain.org/http', + explorer: { + name: 'Rari Mainnet Explorer', + url: 'https://mainnet.explorer.rarichain.org/', + }, + }, + { + id: 1666600000, + name: 'Harmony One', + nativeCurrency: { + name: 'ONE', + symbol: 'ONE', + decimals: 18, + }, + rpcUrl: 'https://api.harmony.one', + explorer: { + name: 'Harmony Block Explorer', + url: 'https://explorer.harmony.one', + }, + }, + // { + // id: 728126428, + // name: 'Tron', + // nativeCurrency: { + // name: 'TRX', + // symbol: 'TRX', + // decimals: 6, + // }, + // rpcUrl: 'https://api.trongrid.io', + // explorer: { + // name: 'Tron Scan', + // url: 'https://tronscan.io/', + // tokenUrlPattern: 'https://tronscan.io/#/token20/{0}', + // }, + // chainType: 'tron', + // }, + // { + // id: 7565164, + // name: 'Solana', + // nativeCurrency: { + // name: 'SOL', + // symbol: 'SOL', + // decimals: 9, + // }, + // rpcUrl: 'https://solana-rpc.debridge.finance', + // explorer: { + // name: 'Solana explorer', + // url: 'https://explorer.solana.com', + // tokenUrlPattern: 'https://explorer.solana.com/address/{0}', + // }, + // chainType: 'solana', + // }, +] diff --git a/packages/canonical-bridge/src/configs/env.ts b/packages/canonical-bridge/src/configs/env.ts new file mode 100644 index 0000000000000..f6c002447d502 --- /dev/null +++ b/packages/canonical-bridge/src/configs/env.ts @@ -0,0 +1,5 @@ +export const env = { + ASSET_PREFIX: 'https://static.bnbchain.org/bnb-chain-bridge/static', + SERVER_ENDPOINT: 'https://canonical-bridge-api.bnbchain.world', + SOLANA_RPC_ENDPOINT: 'https://solana-rpc.debridge.finance', +} diff --git a/packages/canonical-bridge/src/configs/index.ts b/packages/canonical-bridge/src/configs/index.ts new file mode 100644 index 0000000000000..15a0eff213826 --- /dev/null +++ b/packages/canonical-bridge/src/configs/index.ts @@ -0,0 +1,2 @@ +export * from './chains' +export * from './env' diff --git a/packages/canonical-bridge/src/hooks/useTransferConfig.ts b/packages/canonical-bridge/src/hooks/useTransferConfig.ts new file mode 100644 index 0000000000000..00c8cb7d9a930 --- /dev/null +++ b/packages/canonical-bridge/src/hooks/useTransferConfig.ts @@ -0,0 +1,249 @@ +import { ICBridgeTransferConfig, IDeBridgeTransferConfig, ITransferConfig } from '@bnb-chain/canonical-bridge-widget' +import { useEffect, useState } from 'react' + +import axios from 'axios' +import { env } from '../configs/env' +import layerZeroConfig from '../token-config/mainnet/layerZero/config.json' +import mesonConfig from '../token-config/mainnet/meson/config.json' +import stargateConfig from '../token-config/mainnet/stargate/config.json' + +export function useTransferConfig() { + const [transferConfig, setTransferConfig] = useState() + + useEffect(() => { + const initConfig = async () => { + const [cBridgeRes, deBridgeRes] = await Promise.all([ + axios.get<{ data: ICBridgeTransferConfig }>(`${env.SERVER_ENDPOINT}/api/bridge/cbridge`), + axios.get<{ data: IDeBridgeTransferConfig }>(`${env.SERVER_ENDPOINT}/api/bridge/debridge`), + ]) + + const cBridgeConfig = cBridgeRes.data.data + const deBridgeConfig = handleDeBridgeConfig(deBridgeRes.data.data) + + const tokenConfig: ITransferConfig = { + defaultSelectedInfo: { + fromChainId: 1, + toChainId: 56, + tokenSymbol: 'USDT', // USDT + amount: '', + }, + order: { + chains: [56, 1, 137, 324, 42161, 59144, 8453, 204], + tokens: [ + 'CAKE', + 'USDC', + 'USDT', + 'FDUSD', + 'USDC.e', + 'ETH', + 'wBETH', + 'wstETH', + 'weETH', + 'UNI', + 'AAVE', + 'LDO', + 'LINK', + 'BTC', + 'BTCB', + 'WBTC', + 'sUSDe', + 'DOGE', + 'ADA', + 'DAI', + 'XRP', + 'PEPE', + 'ELON', + 'FLOKI', + 'MAGA', + 'BabyDoge', + 'BABYGROK', + 'PLANET', + 'OMNI', + 'AGI', + 'FET', + 'AIOZ', + 'AI', + 'NFP', + 'CGPT', + 'PHB', + 'ZIG', + 'NUM', + 'GHX', + 'PENDLE', + 'RDNT', + 'ROSE', + 'HOOK', + 'MASK', + 'EDU', + 'MBOX', + 'BNX', + ], + }, + displayTokenSymbols: { + 10: { + '0x7F5c764cBc14f9669B88837ca1490cCa17c31607': 'USDC.e', + }, + 56: { + '0x2170Ed0880ac9A755fd29B2688956BD959F933F8': 'ETH', + }, + 137: { + '0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174': 'USDC.e', + }, + 324: { + '0x1d17CBcF0D6D143135aE902365D2E5e2A16538D4': 'USDC', + '0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4': 'USDC.e', + }, + 1101: { + '0x37eAA0eF3549a5Bb7D431be78a3D99BD360d19e5': 'USDC.e', + }, + 42161: { + '0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8': 'USDC.e', + }, + 43114: { + '0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664': 'USDC.e', + '0xc7198437980c041c805A1EDcbA50c1Ce5db95118': 'USDT.e', + '0x49D5c2BdFfac6CE2BFdB6640F4F80f226bc10bAB': 'WETH.e', + }, + }, + cBridge: { + config: cBridgeConfig, + exclude: { + chains: [], + tokens: { + 56: ['0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c'], + 42161: ['0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9', '0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8'], // ['USDT', 'USDC.e'] + }, + }, + bridgedTokenGroups: [], + }, + deBridge: { + config: deBridgeConfig, + exclude: { + chains: [], + tokens: { + 1: ['cUSDCv3', '0x5e21d1ee5cf0077b314c381720273ae82378d613'], + 56: [ + '0x67d66e8ec1fd25d98b3ccd3b19b7dc4b4b7fc493', + '0x0000000000000000000000000000000000000000', + '0x9c7beba8f6ef6643abd725e45a4e8387ef260649', + '0xb04906e95ab5d797ada81508115611fee694c2b3', + '0x524bc91dc82d6b90ef29f76a3ecaabafffd490bc', + ], + 137: ['cUSDCv3'], + 42161: ['cUSDCv3'], + 43114: ['BNB'], + }, + }, + bridgedTokenGroups: [ + ['USDT', 'USDT.e'], + ['USDC', 'USDC.e'], + ['WETH', 'WETH.e'], + ['DAI', 'DAI.e'], + ['WBTC', 'WBTC.e'], + ['LINK', 'LINK.e'], + ['AAVE', 'AAVE.e'], + ['WOO', 'WOO.e'], + ['BUSD', 'BUSD.e'], + ['ALPHA', 'ALPHA.e'], + ['SUSHI', 'SUSHI.e'], + ['SWAP', 'SWAP.e'], + ], + }, + stargate: { + config: stargateConfig, + exclude: { + chains: [], + tokens: {}, + }, + bridgedTokenGroups: [ + ['ETH', 'mETH'], + ['USDT', 'm.USDT'], + ['USDC', 'USDC.e'], + ], + }, + layerZero: { + config: layerZeroConfig, + exclude: { + chains: [], + tokens: {}, + }, + bridgedTokenGroups: [], + }, + meson: { + config: mesonConfig.result as any, + exclude: { + chains: [], + tokens: { 42161: ['SOL'] }, + }, + bridgedTokenGroups: [], + }, + } + + setTransferConfig(tokenConfig) + } + + initConfig() + }, []) + + return transferConfig +} + +function handleDeBridgeConfig(rawConfig: IDeBridgeTransferConfig) { + const deBridgeConfig = { + ...rawConfig, + } + + const extraConfigs: Record = { + 1: [ + { + action: 'replace', + target: '0xebd9d99a3982d547c5bb4db7e3b1f9f14b67eb83', + data: { + address: '0x2dfF88A56767223A5529eA5960Da7A3F5f766406', + symbol: 'ID', + decimals: 18, + name: 'SPACE ID', + logoURI: '', + eip2612: false, + tags: ['tokens'], + }, + }, + { + action: 'append', + data: { + address: '0x152649eA73beAb28c5b49B26eb48f7EAD6d4c898', + symbol: 'Cake', + decimals: 18, + name: 'PancakeSwap Token', + logoURI: '', + eip2612: false, + tags: ['tokens'], + }, + }, + ], + } + + Object.entries(deBridgeConfig.tokens).forEach(([key, value]) => { + const chainId = Number(key) + const extraConfig = extraConfigs[chainId] + + if (extraConfig) { + extraConfig.forEach((network) => { + const { action, target, data } = network + if (!value[data.address]) { + if (action === 'replace') { + const index = value.findIndex((item) => item.address === target) + if (index > -1) { + // eslint-disable-next-line no-param-reassign + value[index] = data + } + } else if (action === 'append') { + ;(value as any).push(data) + } + } + }) + } + }) + + return deBridgeConfig +} diff --git a/packages/canonical-bridge/src/index.ts b/packages/canonical-bridge/src/index.ts new file mode 100644 index 0000000000000..3006df7ddc15f --- /dev/null +++ b/packages/canonical-bridge/src/index.ts @@ -0,0 +1 @@ +export * from './views' diff --git a/packages/canonical-bridge/src/modules/i18n/locales/en.ts b/packages/canonical-bridge/src/modules/i18n/locales/en.ts new file mode 100644 index 0000000000000..0ef498b343296 --- /dev/null +++ b/packages/canonical-bridge/src/modules/i18n/locales/en.ts @@ -0,0 +1,5 @@ +import { locales } from '@bnb-chain/canonical-bridge-widget' + +export const en = { + ...locales.en, +} as const diff --git a/packages/canonical-bridge/src/modules/i18n/locales/index.ts b/packages/canonical-bridge/src/modules/i18n/locales/index.ts new file mode 100644 index 0000000000000..9c1b6ad8751c3 --- /dev/null +++ b/packages/canonical-bridge/src/modules/i18n/locales/index.ts @@ -0,0 +1,5 @@ +import { en } from './en' + +export const locales: { [key: string]: Record } = { + en, +} diff --git a/packages/canonical-bridge/src/modules/wallet/BridgeWalletProvider.tsx b/packages/canonical-bridge/src/modules/wallet/BridgeWalletProvider.tsx new file mode 100644 index 0000000000000..b2cf75e0d0399 --- /dev/null +++ b/packages/canonical-bridge/src/modules/wallet/BridgeWalletProvider.tsx @@ -0,0 +1,20 @@ +import { + ConnectionProvider as SolanaConnectionProvider, + WalletProvider as SolanaWalletProvider, +} from '@solana/wallet-adapter-react' +import { WalletProvider as TronWalletProvider } from '@tronweb3/tronwallet-adapter-react-hooks' +import { env } from '../../configs' + +export function BridgeWalletProvider(props: React.PropsWithChildren) { + const { children } = props + + return ( + + + + {children} + + + + ) +} diff --git a/packages/canonical-bridge/src/theme/breakpoints.ts b/packages/canonical-bridge/src/theme/breakpoints.ts new file mode 100644 index 0000000000000..7da548abe7b01 --- /dev/null +++ b/packages/canonical-bridge/src/theme/breakpoints.ts @@ -0,0 +1,6 @@ +export const breakpoints = { + base: '0px', + sm: '576px', + md: '576px', + lg: '968px', +} diff --git a/packages/canonical-bridge/src/theme/dark.ts b/packages/canonical-bridge/src/theme/dark.ts new file mode 100644 index 0000000000000..211e774106d9a --- /dev/null +++ b/packages/canonical-bridge/src/theme/dark.ts @@ -0,0 +1,118 @@ +import { rgba } from 'polished' + +export const dark = { + input: { + background: '#372F47', + title: '#8C8F9B', + border: { + default: '#55496E', + hover: '#5C5F6A', + active: '#FFE900', + }, + }, + text: { + primary: '#F4EEFF', + secondary: '#C4C5CB', + tertiary: '#8C8F9B', + placeholder: '#8C8F9B', + inverse: '#181A1E', + disabled: rgba('#F7F7F8', 0.45), + brand: '#FFE900', + warning: '#FFEADB', + danger: '#ED4B9E', + route: { title: '#8C8F9B' }, + network: { + title: '#B8ADD2', + }, + on: { + color: { + primary: '#181A1E', + disabled: rgba('#181A1E', 0.45), + }, + }, + }, + button: { + wallet: { + text: '#000000', + background: { default: '#FFE900', hover: '#EBD600' }, + }, + refresh: { + text: '#665800', + }, + select: { + text: '#F4EEFF', + arrow: '#C4C5CB', + border: '#373943', + background: { default: '#1E2026', hover: '#373943' }, + }, + primary: { + default: '#F7F7F8', + subtle: '#5C5F6A', + hover: '#E1E2E5', + active: '#F4EEFF', + }, + brand: { + default: '#FFE900', + subtle: rgba('#665800', 0.25), + hover: '#EBD600', + active: '#FFF15C', + }, + success: { + default: '#18DC7E', + subtle: rgba('#143D29', 0.5), + hover: '#15C16E', + active: '#53EAA1', + }, + danger: { + default: '#ED4B9E', + subtle: rgba('#541C20', 0.45), + hover: '#EF2A37', + active: '#FF7A84', + }, + disabled: rgba('#F7F7F8', 0.45), + }, + modal: { + title: '#C4C5CB', + item: { + text: { primary: '#FFFFFF', secondary: '#C4C5CB' }, + background: { default: '#1E2026', hover: '#373943' }, + }, + back: { + default: '#8C8F9B', + hover: '#FFFFFF', + }, + close: { + default: '#8C8F9B', + hover: '#FFFFFF', + }, + }, + background: { + brand: '#FFE900', + modal: '#1E2026', + main: '#181A1E', + route: '#1E2026', + warning: '#5C2600', + tag: '#373943', + body: '#14151A', + }, + receive: { + background: '#08060B', + }, + border: { + inverse: '#FFFFFF', + brand: '#FFE900', + disabled: rgba('#5C5F6A', 0.45), + }, + route: { + background: { highlight: 'rgba(255, 233, 0, 0.06)' }, + border: '#373943', + warning: '#BC4E00', + }, + overlay: rgba('#14151A', 0.6), + popover: { + background: '#373943', + selected: '#5C5F6A', + shadow: ' 0px 4px 8px 0px rgba(0, 0, 0, 0.48)', + separator: '#5C5F6A', + }, +} diff --git a/packages/canonical-bridge/src/theme/light.ts b/packages/canonical-bridge/src/theme/light.ts new file mode 100644 index 0000000000000..f597651afcb33 --- /dev/null +++ b/packages/canonical-bridge/src/theme/light.ts @@ -0,0 +1,121 @@ +import { rgba } from 'polished' + +export const light = { + input: { + background: '#EEEAF4', + title: '#8C8F9B', + border: { + default: '#D7CAEC', + hover: '#E1E2E5', + active: '#EBD600', + }, + }, + text: { + primary: '#280D5F', + secondary: '#5C5F6A', + tertiary: '#5C5F6A', + placeholder: '#8C8F9B', + inverse: '#FFFFFF', + disabled: rgba('#181A1E', 0.3), + brand: '#181A1E', + warning: '#BC4E00', + danger: '#ED4B9E', + route: { title: '#5C5F6A' }, + network: { + title: '#7A6EAA', + }, + on: { + color: { + primary: '#FFFFFF', + disabled: rgba('#FFFFFF', 0.4), + }, + }, + }, + button: { + wallet: { + text: '#FFFFFF', + background: { default: '#FFE900', hover: '#E1E2E5' }, + }, + refresh: { + text: '#FFFAC2', + }, + select: { + text: '#280D5F', + arrow: '#C4C5CB', + border: '#373943', + background: { default: '#F1F2F3', hover: '#E1E2E5' }, + }, + primary: { + default: '#181A1E', + subtle: '#E1E2E5', + hover: '#1E2026', + active: '#280D5F', + }, + brand: { + default: '#C2B100', + subtle: '#FFFAC2', + hover: '#948700', + active: '#857900', + }, + success: { + default: '#12A55E', + subtle: '#BFF8DC', + hover: '#0E8149', + active: '#115F39', + }, + danger: { + default: '#ED4B9E', + subtle: '#FDE2E4', + hover: '#A91E27', + active: '#821119', + }, + disabled: rgba('#181A1E', 0.4), + }, + modal: { + title: '#5C5F6A', + item: { + text: { primary: '#181A1E', secondary: '#5C5F6A' }, + background: { default: '#F7F7F8', hover: '#F7F7F8' }, + }, + back: { + default: '#8C8F9B', + hover: '#181A1E', + }, + close: { + default: '#8C8F9B', + hover: '#181A1E', + }, + }, + background: { + 1: '#FFFFFF', + 2: '#F7F7F8', + 3: '#F1F2F3', + brand: '#FFE900', + modal: '#F7F7F8', + main: '#FFFFFF', + route: '#F7F7F8', + warning: '#FFEADB', + tag: '#E1E2E5', + body: '#F1F2F3', + }, + receive: { + background: '#FAF9FA', + }, + border: { + inverse: '#181A1E', + brand: '#EBD600', + disabled: '#C4C5CB', + }, + route: { + background: { highlight: 'rgba(255, 233, 0, 0.06)' }, + border: '#373943', + warning: '#BC4E00', + }, + overlay: rgba('#14151A', 0.2), + popover: { + background: '#373943', + selected: '#5C5F6A', + shadow: ' 0px 4px 8px 0px rgba(0, 0, 0, 0.48)', + separator: '#5C5F6A', + }, +} diff --git a/packages/canonical-bridge/src/token-config/mainnet/cBridge/config.json b/packages/canonical-bridge/src/token-config/mainnet/cBridge/config.json new file mode 100644 index 0000000000000..214b8744e54aa --- /dev/null +++ b/packages/canonical-bridge/src/token-config/mainnet/cBridge/config.json @@ -0,0 +1,28816 @@ +{ + "chains": [ + { + "id": 1, + "name": "Ethereum Mainnet", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/ETH.png", + "block_delay": 12, + "gas_token_symbol": "ETH", + "explore_url": "https://etherscan.io/", + "contract_addr": "0x5427FEFA711Eff984124bFBB1AB6fbf5E3DA1820", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "100000000000000000", + "suggested_gas_cost": "213522", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "0x61f85fF2a2f4289Be4bb9B72Fc7010B3142B5f41", + "transfer_agent_contract_addr": "0x9b274BC73940d92d0Af292Bde759cbFCCE661a0b", + "disabled": false + }, + { + "id": 10, + "name": "OP Mainnet", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/OP.png", + "block_delay": 100, + "gas_token_symbol": "ETH", + "explore_url": "https://optimistic.etherscan.io/", + "contract_addr": "0x9D39Fc627A6d9d9F8C831c16995b209548cc3401", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "169313", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "0x06292DE88aDb3b1557B034ebB1c367E65Ab93E4C", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 44, + "name": "Crab Smart Chain", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/crab.png", + "block_delay": 8, + "gas_token_symbol": "CRAB", + "explore_url": "https://subview.xyz/", + "contract_addr": "0x841ce48F9446C8E281D3F1444cB859b4A6D0738C", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "140458", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 56, + "name": "BNB Chain", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/BNB-chain.png", + "block_delay": 8, + "gas_token_symbol": "BNB", + "explore_url": "https://bscscan.com/", + "contract_addr": "0xdd90E5E87A2081Dcf0391920868eBc2FFB81a1aF", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "151000", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "0x3d85B598B734a0E7c8c1b62B00E972e9265dA541", + "disabled": false + }, + { + "id": 57, + "name": "Syscoin", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/Syscoin.png", + "block_delay": 1, + "gas_token_symbol": "SYS", + "explore_url": "https://explorer.syscoin.org/", + "contract_addr": "0x841ce48F9446C8E281D3F1444cB859b4A6D0738C", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "152251", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 58, + "name": "Ontology EVM", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/ontology-new.png", + "block_delay": 2, + "gas_token_symbol": "ONG", + "explore_url": "https://explorer.ont.io/", + "contract_addr": "0x841ce48F9446C8E281D3F1444cB859b4A6D0738C", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "151213", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 66, + "name": "OKXChain", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/okex-new.png", + "block_delay": 10, + "gas_token_symbol": "OKT", + "explore_url": "https://www.oklink.com/en/oec/", + "contract_addr": "0x6a2d262D56735DbA19Dd70682B39F6bE9a931D98", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "141213", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 73, + "name": "FNCY Chain", + "icon": "https://i.postimg.cc/zGqcdG3g/FNCY.png", + "block_delay": 5, + "gas_token_symbol": "FNCY", + "explore_url": "https://fncyscan.fncy.world/", + "contract_addr": "0x9B36f165baB9ebe611d491180418d8De4b8f3a1f", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "0", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 100, + "name": "Gnosis Chain", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/Gnosis.png", + "block_delay": 10, + "gas_token_symbol": "XDAI", + "explore_url": "https://blockscout.com/xdai/mainnet/", + "contract_addr": "0x3795C36e7D12A8c252A20C5a7B455f7c57b60283", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "151213", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 128, + "name": "Heco", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/heco.png", + "block_delay": 12, + "gas_token_symbol": "HT", + "explore_url": "https://hecoinfo.com/", + "contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "130499", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 137, + "name": "Polygon PoS", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "block_delay": 200, + "gas_token_symbol": "MATIC", + "explore_url": "https://polygonscan.com/", + "contract_addr": "0x88DCDC47D2f83a99CF0000FDF667A468bB958a78", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "152251", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 169, + "name": "Manta Pacific Mainnet", + "icon": "https://i.postimg.cc/q7hQbCPs/Manta.png", + "block_delay": 15, + "gas_token_symbol": "ETH", + "explore_url": "https://manta-pacific.calderaexplorer.xyz/", + "contract_addr": "0x9B36f165baB9ebe611d491180418d8De4b8f3a1f", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "210000", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 196, + "name": "X Layer", + "icon": "https://i.postimg.cc/CLqDdBb3/XLayer.png", + "block_delay": 1, + "gas_token_symbol": "OKB", + "explore_url": "https://www.oklink.com/xlayer/", + "contract_addr": "0x9B36f165baB9ebe611d491180418d8De4b8f3a1f", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "213522", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 204, + "name": "opBNB", + "icon": "https://i.postimg.cc/tTgz9rWh/opBNB.png", + "block_delay": 150, + "gas_token_symbol": "BNB", + "explore_url": "https://opbnb.bscscan.com/", + "contract_addr": "0xf5C6825015280CdfD0b56903F9F8B5A2233476F5", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "219190", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 248, + "name": "Oasys Hub-Layer", + "icon": "https://i.postimg.cc/wxC0hP6V/Oasys.png", + "block_delay": 4, + "gas_token_symbol": "OAS", + "explore_url": "https://explorer.oasys.games/", + "contract_addr": "0x5200000000000000000000000000000000000015", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "254547", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 250, + "name": "Fantom", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/Fantom.png", + "block_delay": 5, + "gas_token_symbol": "FTM", + "explore_url": "https://ftmscan.com/", + "contract_addr": "0x374B8a9f3eC5eB2D97ECA84Ea27aCa45aa1C57EF", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "145280", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 288, + "name": "Boba Network", + "icon": "https://i.postimg.cc/W4C0cSnK/image-296.png", + "block_delay": 1, + "gas_token_symbol": "ETH", + "explore_url": "https://blockexplorer.boba.network/", + "contract_addr": "0x841ce48F9446C8E281D3F1444cB859b4A6D0738C", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "174313", + "flat_usd_fee": 1, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 314, + "name": "Filecoin", + "icon": "https://i.postimg.cc/sXYjzVXW/Filecoin-2.png", + "block_delay": 1, + "gas_token_symbol": "FIL", + "explore_url": "https://filfox.info/", + "contract_addr": "0xD46F8E428A06789B5884df54E029e738277388D1", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "0", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 324, + "name": "zkSync Era Mainnet", + "icon": "https://i.postimg.cc/FHtRN0nr/zkSyncV2.png", + "block_delay": 1, + "gas_token_symbol": "ETH", + "explore_url": "https://explorer.zksync.io/", + "contract_addr": "0x54069e96C4247b37C2fbd9559CA99f08CD1CD66c", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "4978513", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 336, + "name": "Shiden", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/shiden.png", + "block_delay": 6, + "gas_token_symbol": "SDN", + "explore_url": "https://shiden.subscan.io/", + "contract_addr": "0x841ce48F9446C8E281D3F1444cB859b4A6D0738C", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "130306", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 416, + "name": "SX Network", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/sx.png", + "block_delay": 20, + "gas_token_symbol": "SX", + "explore_url": "https://explorer.sx.technology/", + "contract_addr": "0x9B36f165baB9ebe611d491180418d8De4b8f3a1f", + "drop_gas_amt": "10000000000000000", + "drop_gas_cost_amt": "500000000000000", + "drop_gas_balance_alert": "5000000000000000000", + "suggested_gas_cost": "152259", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 592, + "name": "Astar", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/Astar.png", + "block_delay": 6, + "gas_token_symbol": "ASTR", + "explore_url": "https://blockscout.com/astar/", + "contract_addr": "0x841ce48F9446C8E281D3F1444cB859b4A6D0738C", + "drop_gas_amt": "5000000000000000", + "drop_gas_cost_amt": "21000000000000", + "drop_gas_balance_alert": "500000000000000000", + "suggested_gas_cost": "130318", + "flat_usd_fee": 1, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 747, + "name": "Flow EVM", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/FLOW.png", + "block_delay": 2, + "gas_token_symbol": "FLOW", + "explore_url": "https://evm.flowscan.io/", + "contract_addr": "0x841ce48F9446C8E281D3F1444cB859b4A6D0738C", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "0", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 1024, + "name": "Clover", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/clover.png", + "block_delay": 15, + "gas_token_symbol": "CLV", + "explore_url": "https://clvscan.com/", + "contract_addr": "0x841ce48F9446C8E281D3F1444cB859b4A6D0738C", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "121929", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 1030, + "name": "Conflux", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/conflux.png", + "block_delay": 405, + "gas_token_symbol": "CFX", + "explore_url": "https://evm.confluxscan.net/", + "contract_addr": "0x841ce48F9446C8E281D3F1444cB859b4A6D0738C", + "drop_gas_amt": "5000000000000000", + "drop_gas_cost_amt": "500000000000000", + "drop_gas_balance_alert": "5000000000000000000", + "suggested_gas_cost": "359409", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 1088, + "name": "Metis Mainnet", + "icon": "https://i.postimg.cc/DzHJBzQt/METIS-2.png", + "block_delay": 1, + "gas_token_symbol": "Metis", + "explore_url": "https://andromeda-explorer.metis.io/", + "contract_addr": "0x841ce48F9446C8E281D3F1444cB859b4A6D0738C", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "2495490", + "flat_usd_fee": 1, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 1101, + "name": "Polygon zkEVM", + "icon": "https://i.postimg.cc/9fvx4YXg/Polygon-ZKevm2.png", + "block_delay": 6, + "gas_token_symbol": "ETH", + "explore_url": "https://zkevm.polygonscan.com/", + "contract_addr": "0xD46F8E428A06789B5884df54E029e738277388D1", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "260547", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 1284, + "name": "Moonbeam", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/moonbeam.png", + "block_delay": 6, + "gas_token_symbol": "GLMR", + "explore_url": "https://moonscan.io/", + "contract_addr": "0x841ce48F9446C8E281D3F1444cB859b4A6D0738C", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "2100000000000000", + "drop_gas_balance_alert": "1000000000000000000", + "suggested_gas_cost": "130293", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 1285, + "name": "Moonriver", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/moonriver.png", + "block_delay": 6, + "gas_token_symbol": "MOVR", + "explore_url": "https://moonriver.moonscan.io/", + "contract_addr": "0x841ce48F9446C8E281D3F1444cB859b4A6D0738C", + "drop_gas_amt": "2000000000000000", + "drop_gas_cost_amt": "21000000000000", + "drop_gas_balance_alert": "500000000000000000", + "suggested_gas_cost": "130293", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 1625, + "name": "Gravity Alpha Mainnet", + "icon": "https://i.postimg.cc/zXRqWRhD/G.png", + "block_delay": 2, + "gas_token_symbol": "G", + "explore_url": "https://explorer.gravity.xyz/", + "contract_addr": "0x9B36f165baB9ebe611d491180418d8De4b8f3a1f", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "0", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 1990, + "name": "Antimatter B2", + "icon": "https://i.postimg.cc/NF5h2sTL/image-297.png", + "block_delay": 15, + "gas_token_symbol": "MATTER", + "explore_url": "https://b2-explorer.antimatter.finance/", + "contract_addr": "0xD46F8E428A06789B5884df54E029e738277388D1", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "0", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 2001, + "name": "Milkomeda C1 (Cardano)", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/milkomeda.png", + "block_delay": 40, + "gas_token_symbol": "MilkADA", + "explore_url": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com", + "contract_addr": "0x841ce48F9446C8E281D3F1444cB859b4A6D0738C", + "drop_gas_amt": "50000000000000000", + "drop_gas_cost_amt": "1260000000000000", + "drop_gas_balance_alert": "5000000000000000000", + "suggested_gas_cost": "141097", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 2002, + "name": "Milkomeda A1 (Algorand)", + "icon": "https://i.imgur.com/nhzTq4K.png", + "block_delay": 1, + "gas_token_symbol": "mALGO", + "explore_url": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com/", + "contract_addr": "0xa7C9FeDe809b6af10dC52590804c69F40f6f8154", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "0", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 2222, + "name": "Kava EVM Co-Chain", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/kava.png", + "block_delay": 15, + "gas_token_symbol": "KAVA", + "explore_url": "https://explorer.kava.io", + "contract_addr": "0xb51541df05DE07be38dcfc4a80c05389A54502BB", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "156133", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 7700, + "name": "Canto", + "icon": "https://i.postimg.cc/V60pzGcb/image-295.png", + "block_delay": 8, + "gas_token_symbol": "CANTO", + "explore_url": "https://evm.explorer.canto.io/", + "contract_addr": "0xD46F8E428A06789B5884df54E029e738277388D1", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "0", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 8217, + "name": "Klaytn", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/klaytn.png", + "block_delay": 30, + "gas_token_symbol": "KLAY", + "explore_url": "https://www.klaytnfinder.io/", + "contract_addr": "0x4C882ec256823eE773B25b414d36F92ef58a7c0C", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "0", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 8453, + "name": "Base Mainnet", + "icon": "https://i.postimg.cc/nLwMCQdH/Base-Symbol-Blue.png", + "block_delay": 15, + "gas_token_symbol": "ETH", + "explore_url": "https://basescan.org/", + "contract_addr": "0x7d43AABC515C356145049227CeE54B608342c0ad", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "318522", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 9001, + "name": "Evmos", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/evmos.png", + "block_delay": 15, + "gas_token_symbol": "EVMOS", + "explore_url": "https://evm.evmos.org/", + "contract_addr": "0x5F52B9d1C0853da636e178169e6B426E4cCfA813", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "100000000000000000", + "suggested_gas_cost": "140491", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 13000, + "name": "SPS", + "icon": "https://i.postimg.cc/xjvzWg89/SPSTestnet.png", + "block_delay": 15, + "gas_token_symbol": "ECG", + "explore_url": "https://spsscan.ssquad.games/", + "contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "0", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 16350, + "name": "Ape Chain", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/ape.png", + "block_delay": 10, + "gas_token_symbol": "PEEL", + "explore_url": "https://explorer.bas.metaapesgame.com/", + "contract_addr": "0x9B36f165baB9ebe611d491180418d8De4b8f3a1f", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "0", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 23294, + "name": "Oasis Sapphire", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/oasis.png", + "block_delay": 15, + "gas_token_symbol": "ROSE", + "explore_url": "https://explorer.oasis.io/mainnet/sapphire/", + "contract_addr": "0x9B36f165baB9ebe611d491180418d8De4b8f3a1f", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "0", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 42161, + "name": "Arbitrum One", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/arbitrum.png", + "block_delay": 1, + "gas_token_symbol": "ETH", + "explore_url": "https://arbiscan.io/", + "contract_addr": "0x1619DE6B6B20eD217a58d00f37B9d47C7663feca", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "3830172", + "flat_usd_fee": 1, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 42170, + "name": "Arbitrum Nova", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/nova.png", + "block_delay": 4, + "gas_token_symbol": "ETH", + "explore_url": "https://nova-explorer.arbitrum.io/", + "contract_addr": "0xb3833Ecd19D4Ff964fA7bc3f8aC070ad5e360E56", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "3830172", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 42220, + "name": "Celo", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/Celo.png", + "block_delay": 10, + "gas_token_symbol": "CELO", + "explore_url": "https://explorer.celo.org/", + "contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "177849", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 42262, + "name": "Oasis Emerald", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/oasis.png", + "block_delay": 8, + "gas_token_symbol": "ROSE", + "explore_url": "https://explorer.oasis.io/mainnet/emerald/", + "contract_addr": "0x841ce48F9446C8E281D3F1444cB859b4A6D0738C", + "drop_gas_amt": "100000000000000000", + "drop_gas_cost_amt": "200000000000000", + "drop_gas_balance_alert": "50000000000000000000", + "suggested_gas_cost": "907973", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 43114, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/Avalanche.png", + "block_delay": 15, + "gas_token_symbol": "AVAX", + "explore_url": "https://snowtrace.io/", + "contract_addr": "0xef3c714c9425a8F3697A9C969Dc1af30ba82e5d4", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "1000000000000000000", + "suggested_gas_cost": "151213", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 47805, + "name": "REI Network", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/REI.png", + "block_delay": 15, + "gas_token_symbol": "REI", + "explore_url": "https://scan.rei.network/", + "contract_addr": "0x841ce48F9446C8E281D3F1444cB859b4A6D0738C", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "151213", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 59144, + "name": "Linea Mainnet", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/Linea.png", + "block_delay": 1, + "gas_token_symbol": "ETH", + "explore_url": "https://explorer.linea.build", + "contract_addr": "0x9B36f165baB9ebe611d491180418d8De4b8f3a1f", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "318522", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 71402, + "name": "Nervos Godwoken", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/nervos.png", + "block_delay": 1, + "gas_token_symbol": "pCKB", + "explore_url": "https://v1.gwscan.com/", + "contract_addr": "0x4C882ec256823eE773B25b414d36F92ef58a7c0C", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "250618", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 73772, + "name": "Swimmer Network", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/swimmer.png", + "block_delay": 4, + "gas_token_symbol": "TUS", + "explore_url": "https://explorer.swimmer.network/", + "contract_addr": "0xb51541df05DE07be38dcfc4a80c05389A54502BB", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "178986", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 81457, + "name": "Blast", + "icon": "https://i.postimg.cc/yxdJDB0K/blast.png", + "block_delay": 1, + "gas_token_symbol": "ETH", + "explore_url": "https://blastscan.io/", + "contract_addr": "0x841ce48F9446C8E281D3F1444cB859b4A6D0738C", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "204190", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 112358, + "name": "Xterio", + "icon": "https://i.postimg.cc/0N8JXNXC/Xterio2.png", + "block_delay": 100, + "gas_token_symbol": "BNB", + "explore_url": "https://xterscan.io/", + "contract_addr": "0x9B36f165baB9ebe611d491180418d8De4b8f3a1f", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "0", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 210425, + "name": "PlatON", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/platon.png", + "block_delay": 60, + "gas_token_symbol": "LAT", + "explore_url": "https://scan.platon.network/", + "contract_addr": "0xBf2B2757F0B2a2f70136C4A6627e99d8ec5cC7b9", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "139070", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 534352, + "name": "Scroll Mainnet", + "icon": "https://i.postimg.cc/ryfj1SrL/Scroll-2.png", + "block_delay": 17, + "gas_token_symbol": "ETH", + "explore_url": "https://blockscout.scroll.io/", + "contract_addr": "0x9B36f165baB9ebe611d491180418d8De4b8f3a1f", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "260547", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 12340001, + "name": "Flow Cadence", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/FLOW.png", + "block_delay": 0, + "gas_token_symbol": "FLOW", + "explore_url": "https://flowscan.org", + "contract_addr": "0x00000000000000000000000008dd120226EC2213", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "980", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 12360001, + "name": "Aptos", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/aptos.png", + "block_delay": 1, + "gas_token_symbol": "APTOS", + "explore_url": "https://explorer.aptoslabs.com/", + "contract_addr": "8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d", + "drop_gas_amt": "15000000", + "drop_gas_cost_amt": "50400", + "drop_gas_balance_alert": "500000000", + "suggested_gas_cost": "3000000", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 12370001, + "name": "Sui Mainnet", + "icon": "https://i.postimg.cc/PrMG1qjw/sui.png", + "block_delay": 1, + "gas_token_symbol": "SUI", + "explore_url": "https://suiexplorer.com/", + "contract_addr": "0x94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "0", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 20080001, + "name": "Bitcoin Network", + "icon": "https://cryptologos.cc/logos/bitcoin-btc-logo.png", + "block_delay": 0, + "gas_token_symbol": "BTC", + "explore_url": "https://mempool.space", + "contract_addr": "", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "0", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 999999996, + "name": "Aura Mainnet", + "icon": "https://aurascan.io/assets/images/logo/auraTitleLogo.png", + "block_delay": 0, + "gas_token_symbol": "AURA", + "explore_url": "https://aurascan.io/", + "contract_addr": "0xd7b9bfd73a44ef9b002b6d071a2805c2b78aac97d9a3cf09d8235cc9f7f2e0d7", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "0", + "flat_usd_fee": 0, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 999999997, + "name": "Injective", + "icon": "https://i.postimg.cc/vZk23WdJ/INJtoken.png", + "block_delay": 0, + "gas_token_symbol": "INJ", + "explore_url": "https://explorer.injective.network/", + "contract_addr": "0x000000000000000000000000e559e36196b88f03423c2ee5708dd83b1d8505e7", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "10000", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 1313161554, + "name": "Aurora", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/Aurora.png", + "block_delay": 30, + "gas_token_symbol": "AETH", + "explore_url": "https://aurorascan.dev/", + "contract_addr": "0x841ce48F9446C8E281D3F1444cB859b4A6D0738C", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "132265", + "flat_usd_fee": 1, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + }, + { + "id": 1666600000, + "name": "Harmony", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/Harmony.png", + "block_delay": 15, + "gas_token_symbol": "ONE", + "explore_url": "https://explorer.harmony.one/", + "contract_addr": "0x78a21C1D3ED53A82d4247b9Ee5bF001f4620Ceec", + "drop_gas_amt": "0", + "drop_gas_cost_amt": "0", + "drop_gas_balance_alert": "0", + "suggested_gas_cost": "178986", + "flat_usd_fee": 0.5, + "farming_reward_contract_addr": "", + "transfer_agent_contract_addr": "", + "disabled": false + } + ], + "chain_token": { + "1": { + "token": [ + { + "token": { + "symbol": "AAVE", + "address": "0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", + "decimal": 18, + "xfer_disabled": true + }, + "name": "AAVE Token", + "icon": "https://get.celer.app/cbridge-icons/aave.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "AELIN", + "address": "0xa9C125BF4C8bB26f299c00969532B66732b1F758", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Aelin", + "icon": "https://get.celer.app/cbridge-icons/AELIN.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "AI", + "address": "0x6aB4CE36260F201e4E2391Eca2FD7538f71e4131", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Flourishing AI", + "icon": "https://i.postimg.cc/vTzMmCVW/AI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "AICODE", + "address": "0x10B3AAF66D90Cb54fca62Dd37d17022555399EE1", + "decimal": 18, + "xfer_disabled": true + }, + "name": "AICODE", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "AKRO", + "address": "0x8Ab7404063Ec4DBcfd4598215992DC3F8EC853d7", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Akropolis", + "icon": "https://get.celer.app/cbridge-icons/AKRO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ALT", + "address": "0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB", + "decimal": 18, + "xfer_disabled": false + }, + "name": "AltLayer Token", + "icon": "https://i.postimg.cc/TP1T0RGn/ALT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "AMY", + "address": "0x30a667dF8562a2460F45AC297D833a36FEaC0C2F", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Amy Finance Token", + "icon": "https://get.celer.app/cbridge-icons/AMY.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ANML", + "address": "0x38B0e3A59183814957D83dF2a97492AED1F003e2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Animal Concerts Token", + "icon": "https://i.postimg.cc/vmscrj0G/6-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ASTR", + "address": "0xe593F3509eb2a620DC61078bcdEDbA355F083E8B", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Astar", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/Astar.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "AVG", + "address": "0xa41F142b6eb2b164f8164CAE0716892Ce02f311f", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Avocado DAO Token", + "icon": "https://get.celer.app/cbridge-icons/AVG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BLANK", + "address": "0x41A3Dba3D677E573636BA691a70ff2D606c29666", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BlockWallet", + "icon": "https://i.postimg.cc/W3nXB8T0/18.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BLID", + "address": "0x8A7aDc1B690E81c758F1BD0F72DFe27Ae6eC56A5", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Bolide", + "icon": "https://i.postimg.cc/v8Njyh4C/BLID.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BMI", + "address": "0x725C263e32c72dDC3A19bEa12C5a0479a81eE688", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Bridge Mutual", + "icon": "https://get.celer.app/cbridge-icons/BMI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BOBA", + "address": "0x42bBFa2e77757C645eeaAd1655E0911a7553Efbc", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Boba Token", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/boba.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BUSD", + "address": "0x4Fabb145d64652a948d72533023f6E7A623C7C53", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BZZ", + "address": "0x19062190B1925b5b6689D7073fDfC8c2976EF8Cb", + "decimal": 16, + "xfer_disabled": true + }, + "name": "BZZ", + "icon": "https://i.postimg.cc/1tPY1cdn/BZZ.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CANTO", + "address": "0x394D854E577CF53609459c677fbdFc40c656849d", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Canto", + "icon": "https://i.postimg.cc/LX0KMg5H/Canto-Token.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CEC", + "address": "0x9e564eb5550E1A9b1448D916fd85a8d876661bdC", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Chemix Ecosystem Coin", + "icon": "https://get.celer.app/cbridge-icons/CEC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CELR", + "address": "0x4F9254C83EB525f9FCf346490bbb3ed28a81C667", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Celer Network", + "icon": "https://get.celer.app/cbridge-icons/celr.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CERES", + "address": "0x2e7B0d4F9B2EaF782eD3D160e3a0a4b1a7930aDA", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Ceres Token", + "icon": "https://i.postimg.cc/6pqCj2Qb/CERES.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CGG", + "address": "0x1fE24F25b1Cf609B9c4e7E12D802e3640dFA5e43", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Chain Guardians", + "icon": "https://get.celer.app/cbridge-icons/CGG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CONV", + "address": "0xc834Fa996fA3BeC7aAD3693af486ae53D8aA8B50", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Convergence", + "icon": "https://get.celer.app/cbridge-icons/CONV.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CRV", + "address": "0xD533a949740bb3306d119CC777fa900bA034cd52", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Curve DAO Token", + "icon": "https://get.celer.app/cbridge-icons/CRV.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CVP", + "address": "0x38e4adB44ef08F22F5B5b76A8f0c2d0dCbE7DcA1", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PowerPool CVP Token", + "icon": "https://get.celer.app/cbridge-icons/CVP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DAI", + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DEO", + "address": "0x5E7F20e72C21f6D0Bf0A2814FD4164176401cf8e", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Demeter Token", + "icon": "https://i.postimg.cc/5jcSRqXB/DEO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DERI", + "address": "0xA487bF43cF3b10dffc97A9A744cbB7036965d3b9", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Deri", + "icon": "https://i.postimg.cc/gkGQhHjh/DERI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DEVT", + "address": "0xB5c578947de0fd71303F71F2C3d41767438bD0de", + "decimal": 18, + "xfer_disabled": true + }, + "name": "DeHorizon", + "icon": "https://get.celer.app/cbridge-icons/DEVT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DF", + "address": "0x431ad2ff6a9C365805eBaD47Ee021148d6f7DBe0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dForce", + "icon": "https://get.celer.app/cbridge-icons/DF.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DGNX", + "address": "0x0000000000300dd8B0230efcfEf136eCdF6ABCDE", + "decimal": 18, + "xfer_disabled": true + }, + "name": "DGNX", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DHT", + "address": "0xca1207647Ff814039530D7d35df0e1Dd2e91Fa84", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dHedge DAO Token", + "icon": "https://i.postimg.cc/9XPFF6wG/DHT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DODO", + "address": "0x43Dfc4159D86F3A37A5A4B3D4580b888ad7d4DDd", + "decimal": 18, + "xfer_disabled": false + }, + "name": "DODO Bird", + "icon": "https://get.celer.app/cbridge-icons/DODO.jpg", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DOMI", + "address": "0x45C2F8c9B4c0bDC76200448cc26C48ab6ffef83F", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Domi", + "icon": "https://get.celer.app/cbridge-icons/Domi.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DTR", + "address": "0xAdc87836554E9B3aA207A37F3d86b45792edE9E6", + "decimal": 18, + "xfer_disabled": true + }, + "name": "DOTORI", + "icon": "https://get.celer.app/cbridge-icons/DTR.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "EPL", + "address": "0x1236ea13c7339287Cd00AB196aAA8217006b04dc", + "decimal": 18, + "xfer_disabled": true + }, + "name": "EPL", + "icon": "https://i.postimg.cc/VLQrdfb4/EPL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ESW", + "address": "0x5a75A093747b72a0e14056352751eDF03518031d", + "decimal": 18, + "xfer_disabled": true + }, + "name": "EmiSwap", + "icon": "https://get.celer.app/cbridge-icons/ESW.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "EUX", + "address": "0xb986F3a2d91d3704Dc974A24FB735dCc5E3C1E70", + "decimal": 18, + "xfer_disabled": true + }, + "name": "dForce EUR", + "icon": "https://get.celer.app/cbridge-icons/EUX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FDUSD", + "address": "0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409", + "decimal": 18, + "xfer_disabled": false + }, + "name": "First Digital USD", + "icon": "https://i.postimg.cc/qMCQfxnn/FDUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FLOKI", + "address": "0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E", + "decimal": 9, + "xfer_disabled": true + }, + "name": "FLOKI", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FLX", + "address": "0x3Ea8ea4237344C9931214796d9417Af1A1180770", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Flux Token", + "icon": "https://i.postimg.cc/QCJ3r4pJ/50-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FNCY", + "address": "0xFA78cBa4ebbf8fE28B4fC1468948F16Fda2752b3", + "decimal": 18, + "xfer_disabled": true + }, + "name": "FNCY", + "icon": "https://i.postimg.cc/zGqcdG3g/FNCY.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FRAX", + "address": "0x853d955aCEf822Db058eb8505911ED77F175b99e", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax", + "icon": "https://get.celer.app/cbridge-icons/FRAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FXS", + "address": "0x3432B6A60D23Ca0dFCa7761B7ab56459D9C964D0", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax Share", + "icon": "https://i.postimg.cc/MKhbrNVh/54.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "GEL", + "address": "0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Gelato Network Token", + "icon": "https://get.celer.app/cbridge-icons/GEL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "GHX", + "address": "0x728f30fa2f100742C7949D1961804FA8E0B1387d", + "decimal": 18, + "xfer_disabled": true + }, + "name": "GamerCoin", + "icon": "https://get.celer.app/cbridge-icons/GHX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "GNO", + "address": "0x6810e776880C02933D47DB1b9fc05908e5386b96", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Gnosis", + "icon": "https://get.celer.app/cbridge-icons/GNO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "GOV", + "address": "0x05b4Af867DCFf2E45D75d04d52Cda919c7A27E08", + "decimal": 18, + "xfer_disabled": true + }, + "name": "GovWorld", + "icon": "https://get.celer.app/cbridge-icons/GOV.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "GOVI", + "address": "0xeEAA40B28A2d1b0B08f6f97bB1DD4B75316c6107", + "decimal": 18, + "xfer_disabled": false + }, + "name": "CVI Finance", + "icon": "https://get.celer.app/cbridge-icons/GOVI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "HAY", + "address": "0xCD086225f47155937cc57b320f8D37933B683197", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Hay Destablecoin", + "icon": "https://i.postimg.cc/3xQ6TT1T/logo-256x-256.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "HUH", + "address": "0x86D49fbD3B6f989d641E700a15599d3b165002AB", + "decimal": 9, + "xfer_disabled": true + }, + "name": "HUH Token", + "icon": "https://get.celer.app/cbridge-icons/HUH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "IBEX", + "address": "0xF655C8567E0f213e6C634CD2A68d992152161dC6", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Impermax", + "icon": "https://i.postimg.cc/VvRQDGR2/IBEX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ICHI", + "address": "0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6", + "decimal": 18, + "xfer_disabled": true + }, + "name": "ICHI", + "icon": "https://i.postimg.cc/zXhJc5Zy/ICHI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "IMX", + "address": "0x7b35Ce522CB72e4077BaeB96Cb923A5529764a00", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Impermax", + "icon": "https://get.celer.app/cbridge-icons/Impermax.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "JPEG", + "address": "0x4BFcE5A1aCC3B847AFa9579bA91DA33b08e66fb7", + "decimal": 18, + "xfer_disabled": true + }, + "name": "JPEG", + "icon": "https://i.postimg.cc/Njj9DxPW/69.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "JPYC", + "address": "0x431D5dfF03120AFA4bDf332c61A6e1766eF37BDB", + "decimal": 18, + "xfer_disabled": false + }, + "name": "JPY Coin", + "icon": "https://get.celer.app/cbridge-icons/JPYC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "KDOE", + "address": "0x5f190F9082878cA141F858c1c90B4C59fe2782C5", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Kudoe", + "icon": "https://i.postimg.cc/1zjrp4xH/KDOE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "KROM", + "address": "0x3af33bEF05C2dCb3C7288b77fe1C8d2AeBA4d789", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Kromatika", + "icon": "https://get.celer.app/cbridge-icons/KROM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "LEAP", + "address": "0x53263d9EF74Db583b15fbC6D5D4e8B83833fa134", + "decimal": 18, + "xfer_disabled": true + }, + "name": "LEAP", + "icon": "https://i.postimg.cc/0N805xB9/LEAP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "LFI", + "address": "0xb28f803A8772E6584A65Ab6dfC535aE6fEf8a0b2", + "decimal": 18, + "xfer_disabled": true + }, + "name": "LunaFi", + "icon": "https://get.celer.app/cbridge-icons/LFI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "LUSD", + "address": "0x5f98805A4E8be255a32880FDeC7F6728C6568bA0", + "decimal": 18, + "xfer_disabled": true + }, + "name": "LUSD Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/LUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "LYRA", + "address": "0x01BA67AAC7f75f647D94220Cc98FB30FCc5105Bf", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Lyra Token", + "icon": "https://get.celer.app/cbridge-icons/LYRA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MASK", + "address": "0x69af81e73A73B40adF4f3d4223Cd9b1ECE623074", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Mask Network", + "icon": "https://get.celer.app/cbridge-icons/MASK.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MATTER", + "address": "0x9B99CcA871Be05119B2012fd4474731dd653FEBe", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MATTER", + "icon": "https://i.postimg.cc/NF5h2sTL/image-297.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MCB", + "address": "0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MCDEX Token", + "icon": "https://get.celer.app/cbridge-icons/MCB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MCHC", + "address": "0xD69F306549e9d96f183B1AecA30B8f4353c2ECC3", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MCH Coin", + "icon": "https://i.postimg.cc/CxRGHbgW/MCHC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MELOS", + "address": "0x1afb69DBC9f54d08DAB1bD3436F8Da1af819E647", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Melos Studio", + "icon": "https://get.celer.app/cbridge-icons/MELOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MGH", + "address": "0x8765b1A0eb57ca49bE7EACD35b24A574D0203656", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MetaGameHub", + "icon": "https://get.celer.app/cbridge-icons/MGH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MSM", + "address": "0x2C3b62CdeaB213ff58ad24fe8bBDF224c7F66Dce", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MusmeCoin", + "icon": "https://i.postimg.cc/pLzcjYCg/MSM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MSU", + "address": "0xdfD8D604951eBF1b2297285F1B68de140C43992b", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Metasens Universal Unit", + "icon": "https://i.postimg.cc/Kvzxssxr/86.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MTA", + "address": "0xa3BeD4E1c75D00fa6f4E5E6922DB7261B5E9AcD2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Meta", + "icon": "https://i.postimg.cc/PrQq5Bcg/MTA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MUXLP", + "address": "0x55c6b11d9FA571e1eea371D0cbB160B8FEfB571a", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MUX LP", + "icon": "https://get.celer.app/cbridge-icons/MUXLP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "Metis", + "address": "0x9E32b13ce7f2E80A01932B42553652E053D6ed8e", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Metis", + "icon": "https://i.postimg.cc/sgZTQBNt/89.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "NFTY", + "address": "0xE1D7C7a4596B038CEd2A84bF65B8647271C53208", + "decimal": 18, + "xfer_disabled": true + }, + "name": "NFTY Token", + "icon": "https://get.celer.app/cbridge-icons/NFTY.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "NMX", + "address": "0xE1ebCa67020162B87aCb7Ee758Ff9C7Aa8CC708c", + "decimal": 18, + "xfer_disabled": true + }, + "name": "NMX", + "icon": "https://i.postimg.cc/x8T1vvr8/nmx.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "NPM", + "address": "0x57f12FE6A4e5fe819eec699FAdf9Db2D06606bB4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Neptune Mutual ", + "icon": "https://i.postimg.cc/jjq2Tt9x/NPM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "NYM", + "address": "0x525A8F6F3Ba4752868cde25164382BfbaE3990e1", + "decimal": 6, + "xfer_disabled": true + }, + "name": "NYM", + "icon": "https://i.postimg.cc/9M5ZGnRJ/NYM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OCEAN", + "address": "0x967da4048cD07aB37855c090aAF366e4ce1b9F48", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Ocean Token", + "icon": "https://i.postimg.cc/t4xXD97q/image-504.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OKSE", + "address": "0x683be00CCa798D59bfBc58C818CbC7C72bE947DC", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OLO", + "address": "0xBaDE2a874e27b5B0920DA93EfE6845036C6fb5A4", + "decimal": 18, + "xfer_disabled": true + }, + "name": "OolongSwap Token", + "icon": "https://get.celer.app/cbridge-icons/OLO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ONSTON", + "address": "0x47b9F01B16E9C9cb99191DCA68c9cc5bF6403957", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Onston", + "icon": "https://get.celer.app/cbridge-icons/ONSTON.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OOKI", + "address": "0x0De05F6447ab4D22c8827449EE4bA2D5C288379B", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Ooki", + "icon": "https://get.celer.app/cbridge-icons/OOKI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PBR", + "address": "0x298d492e8c1d909D3F63Bc4A36C66c64ACB3d695", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PolkaBridge", + "icon": "https://i.postimg.cc/nh3dS0V7/100.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PEEL", + "address": "0x1Ed81E03D7DDB67A21755D02ED2f24da71C27C55", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Meta Apes Peel", + "icon": "https://i.postimg.cc/wjvwRZLP/21013-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PENDLE", + "address": "0x808507121B80c02388fAd14726482e061B8da827", + "decimal": 18, + "xfer_disabled": false + }, + "name": "PENDLE", + "icon": "https://i.postimg.cc/ZRZfyf6R/Pendle.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PEOPLE", + "address": "0x7A58c0Be72BE218B41C608b7Fe7C5bB630736C71", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PeopleDAO", + "icon": "https://get.celer.app/cbridge-icons/PEOPLE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PEPE", + "address": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PEPE", + "icon": "https://i.postimg.cc/L50X0cWw/104.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PERL", + "address": "0xeca82185adCE47f39c684352B0439f030f860318", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PERL.eco", + "icon": "https://get.celer.app/cbridge-icons/PERL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PERP", + "address": "0xbC396689893D065F41bc2C6EcbeE5e0085233447", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Perpetual Protocol", + "icon": "https://get.celer.app/cbridge-icons/PERP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PKEX", + "address": "0xE6f143a0e0A8f24F6294CE3432eA10FaD0206920", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PolkaEx", + "icon": "https://get.celer.app/cbridge-icons/PKEX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PLOT", + "address": "0x72F020f8f3E8fd9382705723Cd26380f8D0c66Bb", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PLOT", + "icon": "https://get.celer.app/cbridge-icons/PLOT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PSP", + "address": "0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5", + "decimal": 18, + "xfer_disabled": true + }, + "name": "ParaSwap", + "icon": "https://get.celer.app/cbridge-icons/PSP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PSTAKE", + "address": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "decimal": 18, + "xfer_disabled": false + }, + "name": "pSTAKE Finance", + "icon": "https://i.postimg.cc/gjCF4GVq/PSTAKE-NEW.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "RAGE", + "address": "0x94804dc4948184fFd7355f62Ccbb221c9765886F", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Rage Token", + "icon": "https://get.celer.app/cbridge-icons/RAGE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "REEF", + "address": "0xFE3E6a25e6b192A42a44ecDDCd13796471735ACf", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Reef Finance", + "icon": "https://get.celer.app/cbridge-icons/REEF.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "REVA", + "address": "0x33CcE3a8BA0bf7Ec56B2CCD2aD9306748a84E4cf", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "RING", + "address": "0x9469D013805bFfB7D3DEBe5E7839237e535ec483", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Darwinia Native Token", + "icon": "https://get.celer.app/cbridge-icons/RING.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "RLY", + "address": "0xf1f955016EcbCd7321c7266BccFB96c68ea5E49b", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Rally", + "icon": "https://get.celer.app/cbridge-icons/RLY.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "S2K", + "address": "0xf89354F314faF344Abd754924438bA798E306DF2", + "decimal": 9, + "xfer_disabled": true + }, + "name": "S2K", + "icon": "https://i.postimg.cc/j5MNS7JX/S2K.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SAFLE", + "address": "0x3f95E5099CF3A125145212Afd53039B8d8C5656e", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Safle", + "icon": "https://get.celer.app/cbridge-icons/safle.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SEAN", + "address": "0xA719CB79Af39A9C10eDA2755E0938bCE35e9DE24", + "decimal": 18, + "xfer_disabled": true + }, + "name": "SEAN", + "icon": "https://i.imgur.com/FcQAOjM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SHI", + "address": "0xaD996A45fd2373ed0B10Efa4A8eCB9de445A4302", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Shirtum", + "icon": "https://get.celer.app/cbridge-icons/SHI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SOLACE", + "address": "0x501acE9c35E60f03A2af4d484f49F9B1EFde9f40", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Solace", + "icon": "https://get.celer.app/cbridge-icons/SOLACE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SOS", + "address": "0x3b484b82567a09e2588A13D54D032153f0c0aEe0", + "decimal": 18, + "xfer_disabled": true + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "STND", + "address": "0x9040e237C3bF18347bb00957Dc22167D0f2b999d", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Standard Protocol", + "icon": "https://get.celer.app/cbridge-icons/STND.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "TCGC", + "address": "0x2FFdE077455f81E28bAa675a46B9c085740216d4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "TCGC", + "icon": "https://i.postimg.cc/FKkXtKw1/TCGC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "TCR", + "address": "0x9C4A4204B79dd291D6b6571C5BE8BbcD0622F050", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Tracer DAO", + "icon": "https://get.celer.app/cbridge-icons/TCR.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "THALES", + "address": "0x8947da500Eb47F82df21143D0C01A29862a8C3c5", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Thales", + "icon": "https://get.celer.app/cbridge-icons/THALES.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "TORN", + "address": "0x77777FeDdddFfC19Ff86DB637967013e6C6A116C", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Tornado Cash", + "icon": "https://get.celer.app/cbridge-icons/TORN.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "TRB", + "address": "0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Tellor Tributes", + "icon": "https://i.postimg.cc/Rhp1r2kJ/TRB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "TSD", + "address": "0x212137aDFABbC3525f73183022a403c70c4E8ae6", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Teddy Dollar", + "icon": "https://i.postimg.cc/g2pVyRvh/image-301.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "UCG", + "address": "0x7D92a06808B4c4833623F809218ed403e4A85FE1", + "decimal": 0, + "xfer_disabled": true + }, + "name": "Universe Crystal Gene", + "icon": "https://get.celer.app/cbridge-icons/UCG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "UMA", + "address": "0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828", + "decimal": 18, + "xfer_disabled": true + }, + "name": "UMA", + "icon": "https://i.postimg.cc/qBn6mqBx/138.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "5000000000000", + "inbound_epoch_cap": "10000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC-intermediary", + "address": "0x6521c50810F0d882B2C64a235805D3f5241857DD", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDCFlow", + "address": "0xFca0E59195527B172479A4db4A39f2e2bb7D2E13", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Wrapped USDC (Celer Flow)", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "5000000000000", + "inbound_epoch_cap": "10000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USX", + "address": "0x0a5E677a6A24b2F1A2Bf4F3bFfC443231d2fDEc8", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dForce USD", + "icon": "https://i.postimg.cc/zXtTRBJw/142.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WAGMIV1", + "address": "0x15EEf5ad78C4d9E5f247e68978ca32b5D25cA524", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Boba WAGMI v1 Option", + "icon": "https://get.celer.app/cbridge-icons/WAGMIV1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WAGMIV2", + "address": "0xb4ED26dDc6fe3A1EA5e83C3fe145CA00C086563d", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Boba WAGMI v2 Option", + "icon": "https://get.celer.app/cbridge-icons/WAGMIV2.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WAGMIV3", + "address": "0xb3833Ecd19D4Ff964fA7bc3f8aC070ad5e360E56", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Boba WAGMI v3 Option", + "icon": "https://get.celer.app/cbridge-icons/WAGMIV3.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped ETH", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "2000000000000000000000", + "inbound_epoch_cap": "5000000000000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WFIL", + "address": "0x6cAdd14a6EbD86eD42c6Cdd94fE7a063AB6db362", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped FIL", + "icon": "https://i.postimg.cc/VLYnRFYK/WFIL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WG", + "address": "0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Gravity", + "icon": "https://i.postimg.cc/zXRqWRhD/G.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WING", + "address": "0xDb0f18081b505A7DE20B18ac41856BCB4Ba86A1a", + "decimal": 9, + "xfer_disabled": true + }, + "name": "Wing Finance", + "icon": "https://i.postimg.cc/VLZwnByG/149.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WOAS", + "address": "0x03b4BD7D900dEFe84098665e3d96dCA73a1f608B", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Oasys", + "icon": "https://i.postimg.cc/85N6sVq2/OAS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WOO", + "address": "0x4691937a7508860F876c9c0a2a617E7d9E945D4B", + "decimal": 18, + "xfer_disabled": true + }, + "name": "WOO Network", + "icon": "https://get.celer.app/cbridge-icons/WOO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WREVA", + "address": "0xeb883d9478af15c2C176030849D8Fa31169b63b9", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WXT", + "address": "0xa02120696c7B8fE16C09C749E4598819b2B0E915", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wirex Token", + "icon": "https://get.celer.app/cbridge-icons/WXT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "XBP", + "address": "0x28dee01D53FED0Edf5f6E310BF8Ef9311513Ae40", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BlitzPredict", + "icon": "https://i.postimg.cc/tJYhKw0L/155-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "XMT", + "address": "0x3E5D9D8a63CC8a88748f229999CF59487e90721e", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MetalSwap", + "icon": "https://i.postimg.cc/g2skyfz0/XMT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "XTK", + "address": "0x7F3EDcdD180Dbe4819Bd98FeE8929b5cEdB3AdEB", + "decimal": 18, + "xfer_disabled": false + }, + "name": "xToken", + "icon": "https://get.celer.app/cbridge-icons/XTK.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "celrWFLOW", + "address": "0xB66954619363145a05eF835547449EB9050d82f6", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Flow", + "icon": "https://get.celer.app/cbridge-icons/FLOW.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "cfUSDC", + "address": "0x317F8d18FB16E49a958Becd0EA72f8E153d25654", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "cgUSDT", + "address": "0xFDDf2bD09721F7c6d10DEAE54821cd2E3E9281A5", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "cgWETH", + "address": "0x5d553509f5F486a8f50f97b6F8715933CA082A5C", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "iUSD", + "address": "0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D", + "decimal": 18, + "xfer_disabled": false + }, + "name": "iZUMi Bond USD", + "icon": "https://i.postimg.cc/c6GnmKb6/163.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "iZi", + "address": "0x9ad37205d608B8b219e6a2573f922094CEc5c200", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Izumi Finance", + "icon": "https://get.celer.app/cbridge-icons/IZI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxBTC", + "address": "0x4d4E572b0f3DE11c138017BA22990F2ABe65Dad0", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BTC mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxETH", + "address": "0x3a10C2C549FD4633f3943f8b526bEE87123dE614", + "decimal": 18, + "xfer_disabled": true + }, + "name": "ETH mToken", + "icon": "https://get.celer.app/cbridge-icons/muxETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxUSD", + "address": "0x7120262aB9B9bB387F69456D7332F49075a64989", + "decimal": 18, + "xfer_disabled": true + }, + "name": "USD mToken", + "icon": "https://get.celer.app/cbridge-icons/muxUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "oneDODO", + "address": "0xcA37530E7c5968627BE470081d1C993eb1dEaf90", + "decimal": 18, + "xfer_disabled": true + }, + "name": "oneDODO", + "icon": "https://i.postimg.cc/1XM52fWv/image-296.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "uniETH", + "address": "0xF1376bceF0f78459C0Ed0ba5ddce976F1ddF51F4", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Universal ETH", + "icon": "https://i.postimg.cc/9Mccr83D/uniETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "wstETH", + "address": "0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0", + "decimal": 18, + "xfer_disabled": true + }, + "name": "wstETH", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "xXTKa", + "address": "0x314022E24ceD941781DC295682634B37Bd0d9cFc", + "decimal": 18, + "xfer_disabled": true + }, + "name": "xXTK-Mgmt", + "icon": "https://get.celer.app/cbridge-icons/xXTKa.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "10": { + "token": [ + { + "token": { + "symbol": "AELIN", + "address": "0x61BAADcF22d2565B0F471b291C475db5555e0b76", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Aelin", + "icon": "https://get.celer.app/cbridge-icons/AELIN.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BLID", + "address": "0x048C6bAd48C51436764ed1FdB3c9D1c25d2C0ada", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Bolide", + "icon": "https://i.postimg.cc/v8Njyh4C/BLID.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CANTO", + "address": "0x1F4F04dA5899a604fDb1Ba77656Bd1a365cb8dAD", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Canto", + "icon": "https://i.postimg.cc/LX0KMg5H/Canto-Token.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DF", + "address": "0x9e5AAC1Ba1a2e6aEd6b32689DFcF62A509Ca96f3", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dForce", + "icon": "https://get.celer.app/cbridge-icons/DF.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DHT", + "address": "0xAF9fE3B5cCDAe78188B1F8b9a49Da7ae9510F151", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dHedge DAO Token", + "icon": "https://i.postimg.cc/9XPFF6wG/DHT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FRAX", + "address": "0xea129aE043C4cB73DcB241AAA074F9E667641BA0", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax", + "icon": "https://get.celer.app/cbridge-icons/FRAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FXS", + "address": "0x1619DE6B6B20eD217a58d00f37B9d47C7663feca", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax Share", + "icon": "https://i.postimg.cc/MKhbrNVh/54.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "HAY", + "address": "0x83250FFEC162E084a23e165434a8A110623ABe38", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Hay Destablecoin", + "icon": "https://i.postimg.cc/3xQ6TT1T/logo-256x-256.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "KROM", + "address": "0xF98dCd95217E15E05d8638da4c91125E59590B07", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Kromatika", + "icon": "https://get.celer.app/cbridge-icons/KROM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "KWENTA", + "address": "0x920Cf626a271321C151D027030D5d08aF699456b", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Kwenta", + "icon": "https://i.postimg.cc/43TGJr1T/KWENTA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "LUSD", + "address": "0xc40F949F8a4e094D1b49a23ea9241D289B7b2819", + "decimal": 18, + "xfer_disabled": false + }, + "name": "LUSD Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/LUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "LYRA", + "address": "0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Lyra Token", + "icon": "https://get.celer.app/cbridge-icons/LYRA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MTA", + "address": "0x929B939f8524c3Be977af57A4A0aD3fb1E374b50", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Meta", + "icon": "https://i.postimg.cc/PrQq5Bcg/MTA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MUXLP", + "address": "0x0509474f102b5cd3f1f09e1E91feb25938eF0f17", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MUXLP", + "icon": "https://get.celer.app/cbridge-icons/MUXLP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OKSE", + "address": "0x259479fBeb1CDe194afA297f36f4216e9C87728c", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OP", + "address": "0x4200000000000000000000000000000000000042", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Optimism", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/OP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PERP", + "address": "0x9e1028F5F1D5eDE59748FFceE5532509976840E0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Perpetual Protocol", + "icon": "https://get.celer.app/cbridge-icons/PERP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "REVA", + "address": "0x23C748FeF17518B8DE55065338d7Fa20327472eB", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "THALES", + "address": "0x217D47011b23BB961eB6D93cA9945B7501a5BB11", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Thales", + "icon": "https://get.celer.app/cbridge-icons/THALES.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x7F5c764cBc14f9669B88837ca1490cCa17c31607", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "5000000000000", + "inbound_epoch_cap": "4000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0x94b008aA00579c1307B0EF2c499aD98a8ce58e58", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "5000000000000", + "inbound_epoch_cap": "4000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USX", + "address": "0xbfD291DA8A403DAAF7e5E9DC1ec0aCEaCd4848B9", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dForce USD", + "icon": "https://i.postimg.cc/zXtTRBJw/142.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x4200000000000000000000000000000000000006", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped ETH", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "2000000000000000000000", + "inbound_epoch_cap": "1000000000000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WOO", + "address": "0x871f2F2ff935FD1eD867842FF2a7bfD051A5E527", + "decimal": 18, + "xfer_disabled": false + }, + "name": "WOO Network", + "icon": "https://get.celer.app/cbridge-icons/WOO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "XMT", + "address": "0x3E5D9D8a63CC8a88748f229999CF59487e90721e", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MetalSwap", + "icon": "https://i.postimg.cc/g2skyfz0/XMT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxAVAX", + "address": "0x50Ec9b92b3bD46969B1AE5E10543Ca6fB49Fba4f", + "decimal": 18, + "xfer_disabled": true + }, + "name": "muxAVAX", + "icon": "https://get.celer.app/cbridge-icons/muxAVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxBNB", + "address": "0x253BE9F0e2A8749dF6aC7466D096B264788745e0", + "decimal": 18, + "xfer_disabled": true + }, + "name": "muxBNB", + "icon": "https://get.celer.app/cbridge-icons/muxBNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxBTC", + "address": "0x1bba8683E28078306db88743a387EB34Fb5f34Ed", + "decimal": 18, + "xfer_disabled": true + }, + "name": "muxBTC", + "icon": "https://get.celer.app/cbridge-icons/muxBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxETH", + "address": "0xff86404162BF14Fe50CEdcF82A56941DC5F48c77", + "decimal": 18, + "xfer_disabled": true + }, + "name": "muxETH", + "icon": "https://get.celer.app/cbridge-icons/muxETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxFTM", + "address": "0xfd951e71A8Ec5C03AD6139d35F800374Ba500fA8", + "decimal": 18, + "xfer_disabled": true + }, + "name": "muxFTM", + "icon": "https://get.celer.app/cbridge-icons/muxFTM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxOP", + "address": "0x69663Eb604C7d534e9149fa855D89d9104E75363", + "decimal": 18, + "xfer_disabled": true + }, + "name": "muxOP", + "icon": "https://i.postimg.cc/Hk7NTFLc/muxOP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxUSD", + "address": "0xE80e0B928F8f3024dfeFa56E7608bC3bAF389881", + "decimal": 18, + "xfer_disabled": true + }, + "name": "muxUSD", + "icon": "https://get.celer.app/cbridge-icons/muxUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "44": { + "token": [ + { + "token": { + "symbol": "RING", + "address": "0x7399Ea6C9d35124d893B8d9808930e9d3F211501", + "decimal": 9, + "xfer_disabled": true + }, + "name": "Darwinia Native Token", + "icon": "https://get.celer.app/cbridge-icons/RING.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x81ECac0D6Be0550A00FF064a4f9dd2400585FE9c", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0x6a2d262D56735DbA19Dd70682B39F6bE9a931D98", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "56": { + "token": [ + { + "token": { + "symbol": "AI", + "address": "0xA9b038285F43cD6fE9E16B4C80B4B9bCcd3C161b", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Flourishing AI", + "icon": "https://i.postimg.cc/vTzMmCVW/AI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "AKRO", + "address": "0x426C58f0A9733d874D9962Ed59F529478771751c", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Akropolis", + "icon": "https://get.celer.app/cbridge-icons/AKRO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ALT", + "address": "0x8457CA5040ad67fdebbCC8EdCE889A335Bc0fbFB", + "decimal": 18, + "xfer_disabled": false + }, + "name": "AltLayer Token", + "icon": "https://i.postimg.cc/TP1T0RGn/ALT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ANML", + "address": "0x06FDA0758c17416726f77Cb11305EAC94C074Ec0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Animal Concerts Token", + "icon": "https://i.postimg.cc/vmscrj0G/6-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ARB", + "address": "0xa050FFb3eEb8200eEB7F61ce34FF644420FD3522", + "decimal": 18, + "xfer_disabled": true + }, + "name": "ARB", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ASVA", + "address": "0xF7b6d7E3434cB9441982F9534E6998C43eEF144a", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Asva Finance", + "icon": "https://get.celer.app/cbridge-icons/ASVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ATL", + "address": "0x1fD991fb6c3102873ba68a4e6e6a87B3a5c10271", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Atlantis Loans", + "icon": "https://get.celer.app/cbridge-icons/ATL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "AURA", + "address": "0x01A2df2cA978F9e75E2eCC56Bf7158018fF123c2", + "decimal": 6, + "xfer_disabled": true + }, + "name": "AURA", + "icon": "https://aurascan.io/assets/images/logo/auraTitleLogo.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "AVG", + "address": "0xa41F142b6eb2b164f8164CAE0716892Ce02f311f", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Avocado DAO Token", + "icon": "https://get.celer.app/cbridge-icons/AVG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BANANA", + "address": "0x5a5F095183241f4B23a7Aa7f8949fd02D06CaeCf", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Banana Token", + "icon": "https://get.celer.app/cbridge-icons/BANANA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BLID", + "address": "0x766AFcf83Fd5eaf884B3d529b432CA27A6d84617", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Bolide", + "icon": "https://i.postimg.cc/v8Njyh4C/BLID.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BMI", + "address": "0x3e1b4Ff4AE3Ab8f0Cb40a34a6ad3fC817F7dA2b6", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Bridge Mutual", + "icon": "https://get.celer.app/cbridge-icons/BMI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BNB", + "address": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BUSD", + "address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BZZ", + "address": "0x4fb1ddCbdAE7a86862ccA647B5176D7198C1594c", + "decimal": 16, + "xfer_disabled": true + }, + "name": "BZZ", + "icon": "https://i.postimg.cc/1tPY1cdn/BZZ.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CANTO", + "address": "0x443b4dd51751E38EECd9C426ec6B7655964a2Bc6", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Canto", + "icon": "https://i.postimg.cc/LX0KMg5H/Canto-Token.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CEC", + "address": "0x957c49A76b3e008637cA1Cce23188A8cE884911e", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Chemix Ecosystem Coin", + "icon": "https://get.celer.app/cbridge-icons/CEC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CGG", + "address": "0x1613957159E9B0ac6c80e824F7Eea748a32a0AE2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Chain Guardians", + "icon": "https://get.celer.app/cbridge-icons/CGG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CVP", + "address": "0x5Ec3AdBDae549Dce842e24480Eb2434769e22B2E", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PowerPool CVP Token", + "icon": "https://get.celer.app/cbridge-icons/CVP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DF", + "address": "0x4A9A2b2b04549C3927dd2c9668A5eF3fCA473623", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dForce", + "icon": "https://get.celer.app/cbridge-icons/DF.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DODO", + "address": "0x67ee3Cb086F8a16f34beE3ca72FAD36F7Db929e2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "DODO Bird", + "icon": "https://get.celer.app/cbridge-icons/DODO.jpg", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DOMI", + "address": "0xBBCA42c60b5290F2c48871A596492F93fF0Ddc82", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Domi", + "icon": "https://get.celer.app/cbridge-icons/Domi.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DTR", + "address": "0x79D1041327D8b2c13154831e8916594e25b9c4e0", + "decimal": 18, + "xfer_disabled": true + }, + "name": "DOTORI", + "icon": "https://get.celer.app/cbridge-icons/DTR.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ECG", + "address": "0xB2d09c5723C2D8fcfC89AE50a6d8919dcb2C9aAd", + "decimal": 18, + "xfer_disabled": true + }, + "name": "ECG", + "icon": "https://i.postimg.cc/D0TbS4jV/ECG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "EUX", + "address": "0x367c17D19fCd0f7746764455497D63c8e8b2BbA3", + "decimal": 18, + "xfer_disabled": true + }, + "name": "dForce EUR", + "icon": "https://get.celer.app/cbridge-icons/EUX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FDUSD", + "address": "0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409", + "decimal": 18, + "xfer_disabled": false + }, + "name": "First Digital USD", + "icon": "https://i.postimg.cc/qMCQfxnn/FDUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FLOKI", + "address": "0xBCD9c0c24375F109b216B3486a30f886Fffa759F", + "decimal": 9, + "xfer_disabled": true + }, + "name": "FLOKI", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FNCY", + "address": "0x2294E22000dEFe09A307363f7aCD8aAa1fBc1983", + "decimal": 18, + "xfer_disabled": true + }, + "name": "FNCY", + "icon": "https://i.postimg.cc/zGqcdG3g/FNCY.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FRAX", + "address": "0xB5df797468E6e8f2Cb293Cd6e32939366e0F8733", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax", + "icon": "https://get.celer.app/cbridge-icons/FRAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FXS", + "address": "0xFC27e5d3fBdFcE33fE3226d368b75E59e9CdcA7E", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax Share", + "icon": "https://i.postimg.cc/MKhbrNVh/54.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "GGG", + "address": "0xD8047AFECB86e44eFf3aDd991B9F063eD4ca716B", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Good Games Guild", + "icon": "https://i.postimg.cc/QMK7DyNG/GGG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "GHX", + "address": "0xbd7B8e4de08D9b01938F7FF2058F110ee1E0E8d4", + "decimal": 18, + "xfer_disabled": true + }, + "name": "GamerCoin", + "icon": "https://get.celer.app/cbridge-icons/GHX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "GNO", + "address": "0xCB949dd56eB78208547BA5b32dFBE59D7A350c6E", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Gnosis", + "icon": "https://get.celer.app/cbridge-icons/GNO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "GOV", + "address": "0xcc7a91413769891de2e9ebBfC96D2eb1874b5760", + "decimal": 18, + "xfer_disabled": true + }, + "name": "GovWorld", + "icon": "https://get.celer.app/cbridge-icons/GOV.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "HAY", + "address": "0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Hay Destablecoin", + "icon": "https://i.postimg.cc/3xQ6TT1T/logo-256x-256.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "HUH", + "address": "0xc15e89f2149bCC0cBd5FB204C9e77fe878f1e9b2", + "decimal": 9, + "xfer_disabled": true + }, + "name": "HUH Token", + "icon": "https://get.celer.app/cbridge-icons/HUH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ICHI", + "address": "0x0EF4A107b48163ab4b57FCa36e1352151a587Be4", + "decimal": 18, + "xfer_disabled": true + }, + "name": "ICHI", + "icon": "https://i.postimg.cc/zXhJc5Zy/ICHI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "IDIA", + "address": "0x0b15Ddf19D47E6a86A56148fb4aFFFc6929BcB89", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Impossible Finance Launchpad", + "icon": "https://get.celer.app/cbridge-icons/IDIA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "JADE", + "address": "0x7ad7242A99F21aa543F9650A56D141C57e4F6081", + "decimal": 9, + "xfer_disabled": true + }, + "name": "Jade Protocol", + "icon": "https://get.celer.app/cbridge-icons/JADE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "JPEG", + "address": "0x4BFcE5A1aCC3B847AFa9579bA91DA33b08e66fb7", + "decimal": 18, + "xfer_disabled": true + }, + "name": "JPEG", + "icon": "https://i.postimg.cc/Njj9DxPW/69.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "KDOE", + "address": "0xB9eEE0069bb54C2aA5762D184455686ec58A431F", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Kudoe", + "icon": "https://i.postimg.cc/1zjrp4xH/KDOE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "LEAP", + "address": "0x6eEd9140F80F9E989CB23AeCBD20b97a29FFc80F", + "decimal": 18, + "xfer_disabled": true + }, + "name": "LEAP", + "icon": "https://i.postimg.cc/0N805xB9/LEAP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "LUSD", + "address": "0x181002D60d504d30a39601Ae13Af3191cb102580", + "decimal": 18, + "xfer_disabled": true + }, + "name": "LUSD Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/LUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MASK", + "address": "0x2eD9a5C8C13b93955103B9a7C167B67Ef4d568a3", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Mask Network", + "icon": "https://get.celer.app/cbridge-icons/MASK.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MCB", + "address": "0x5fE80d2CD054645b9419657d3d10d26391780A7B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MCDEX Token", + "icon": "https://get.celer.app/cbridge-icons/MCB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MELOS", + "address": "0x3CC194Cb21E3B9d86dD516b4d870B82fAfb4C02E", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Melos Studio", + "icon": "https://get.celer.app/cbridge-icons/MELOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MGH", + "address": "0x318dA5dcDB9Cb8638ed5d1824dB7Ab042Fc641AD", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MetaGameHub", + "icon": "https://get.celer.app/cbridge-icons/MGH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MSU", + "address": "0xD6705C0740E6002cE196B08129b2F0f23F24722E", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Metasens Universal Unit", + "icon": "https://i.postimg.cc/Kvzxssxr/86.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MUXLP", + "address": "0x07145Ad7C7351c6FE86b6B841fC9Bed74eb475A7", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MUX LP", + "icon": "https://get.celer.app/cbridge-icons/MUXLP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "NMX", + "address": "0xd32d01A43c869EdcD1117C640fBDcfCFD97d9d65", + "decimal": 18, + "xfer_disabled": true + }, + "name": "NMX", + "icon": "https://i.postimg.cc/x8T1vvr8/nmx.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "NYM", + "address": "0xDD2612c292431aaa727fE24d1a8AfBE4928Bbc55", + "decimal": 6, + "xfer_disabled": true + }, + "name": "NYM", + "icon": "https://i.postimg.cc/9M5ZGnRJ/NYM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OKSE", + "address": "0x606FB7969fC1b5CAd58e64b12Cf827FB65eE4875", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OLO", + "address": "0xa4918c50aadBa9EDCaf302562739c1b1C1367AA9", + "decimal": 18, + "xfer_disabled": true + }, + "name": "OolongSwap Token", + "icon": "https://get.celer.app/cbridge-icons/OLO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OOKI", + "address": "0xa5a6817ac4c164F27df3254B71fE83904B1C3c3e", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Ooki", + "icon": "https://get.celer.app/cbridge-icons/OOKI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OP", + "address": "0x9C4e124141A599482b08492a03c49e26CCA21bAA", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Optimism", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/OP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PBR", + "address": "0x1D1cB8997570e73949930c01Fe5796C88d7336c6", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PolkaBridge", + "icon": "https://i.postimg.cc/nh3dS0V7/100.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PEEL", + "address": "0x734548a9e43d2D564600b1B2ed5bE9C2b911c6aB", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Meta Apes Peel", + "icon": "https://i.postimg.cc/wjvwRZLP/21013-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PEOPLE", + "address": "0x1305b25842778041c4ae0c9e7C264A617c619FD4", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PeopleDAO", + "icon": "https://get.celer.app/cbridge-icons/PEOPLE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PEPE", + "address": "0x79eb6ce49199b79197AB2B5384793B7289F4F8D4", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PEPE", + "icon": "https://i.postimg.cc/L50X0cWw/104.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PERL", + "address": "0x0F9E4D49f25de22c2202aF916B681FBB3790497B", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PERL.eco", + "icon": "https://get.celer.app/cbridge-icons/PERL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PERP", + "address": "0x4e7f408be2d4E9D60F49A64B89Bb619c84C7c6F5", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Perpetual Protocol", + "icon": "https://get.celer.app/cbridge-icons/PERP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PSP", + "address": "0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5", + "decimal": 18, + "xfer_disabled": true + }, + "name": "ParaSwap", + "icon": "https://get.celer.app/cbridge-icons/PSP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PSTAKE", + "address": "0x4C882ec256823eE773B25b414d36F92ef58a7c0C", + "decimal": 18, + "xfer_disabled": true + }, + "name": "pSTAKE Finance", + "icon": "https://i.postimg.cc/gjCF4GVq/PSTAKE-NEW.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "REEF", + "address": "0xF21768cCBC73Ea5B6fd3C687208a7c2def2d966e", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Reef Finance", + "icon": "https://get.celer.app/cbridge-icons/REEF.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "REVA", + "address": "0x4FdD92Bd67Acf0676bfc45ab7168b3996F7B4A3B", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "S2K", + "address": "0x42bfa18f3f7D82BD7240d8Ce5935d51679C5115d", + "decimal": 9, + "xfer_disabled": true + }, + "name": "S2K", + "icon": "https://i.postimg.cc/j5MNS7JX/S2K.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SAFLE", + "address": "0x73afC23510b40dcbEABc25fFBc8C2976eD9f950c", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Safle", + "icon": "https://get.celer.app/cbridge-icons/safle.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SHELL", + "address": "0x208cfEc94d2BA8B8537da7A9BB361c6baAD77272", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Meta Apes Shell", + "icon": "https://get.celer.app/cbridge-icons/SHELL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SHI", + "address": "0x7269d98Af4aA705e0B1A5D8512FadB4d45817d5a", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Shirtum", + "icon": "https://get.celer.app/cbridge-icons/SHI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SNS", + "address": "0xF3A587d1AC967b40DB59223434BAf0C6e11588EA", + "decimal": 18, + "xfer_disabled": false + }, + "name": "SonorusToken", + "icon": "https://i.postimg.cc/rstbd7Hz/SNS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SOS", + "address": "0xBcC128D5221b518e50a1823d374310bDF404f867", + "decimal": 18, + "xfer_disabled": true + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SQUAD", + "address": "0x724A32dFFF9769A0a0e1F0515c0012d1fB14c3bd", + "decimal": 18, + "xfer_disabled": true + }, + "name": "SQUAD", + "icon": "https://i.postimg.cc/GptPRDNq/SQUAD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SWAY", + "address": "0x262B8AA7542004f023B0eB02bc6b96350A02b728", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Sway Social", + "icon": "https://get.celer.app/cbridge-icons/SWAY.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "TORN", + "address": "0x1bA8D3C4c219B124d351F603060663BD1bcd9bbF", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Tornado Cash", + "icon": "https://get.celer.app/cbridge-icons/TORN.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "TSD", + "address": "0xF8bFeac18A838acE22110e499922623D54ea26DA", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Teddy Dollar", + "icon": "https://i.postimg.cc/g2pVyRvh/image-301.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "TestReward", + "address": "0xa8dAeCf4cdEFf1F330fD44F9b2EDdB86B900966d", + "decimal": 18, + "xfer_disabled": true + }, + "name": "TestReward", + "icon": "https://i.postimg.cc/qMCQfxnn/FDUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "UCG", + "address": "0xFef17032D5E87523ACeBFDE6B3A8978B2BEdaD1f", + "decimal": 0, + "xfer_disabled": true + }, + "name": "Universe Crystal Gene", + "icon": "https://get.celer.app/cbridge-icons/UCG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance-Peg USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "5000000000000000000000000", + "inbound_epoch_cap": "4000000000000000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0x55d398326f99059fF775485246999027B3197955", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance-Peg BSC-USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "5000000000000000000000000", + "inbound_epoch_cap": "4000000000000000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USX", + "address": "0xB5102CeE1528Ce2C760893034A4603663495fD72", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dForce USD", + "icon": "https://i.postimg.cc/zXtTRBJw/142.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x2170Ed0880ac9A755fd29B2688956BD959F933F8", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance-Peg Ethereum Token", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "2000000000000000000000", + "inbound_epoch_cap": "1000000000000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WG", + "address": "0x9C7BEBa8F6eF6643aBd725e45a4E8387eF260649", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Gravity", + "icon": "https://i.postimg.cc/zXRqWRhD/G.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WING", + "address": "0x3CB7378565718c64Ab86970802140Cc48eF1f969", + "decimal": 9, + "xfer_disabled": true + }, + "name": "Wing Finance", + "icon": "https://i.postimg.cc/VLZwnByG/149.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WOO", + "address": "0x4691937a7508860F876c9c0a2a617E7d9E945D4B", + "decimal": 18, + "xfer_disabled": true + }, + "name": "WOO Network", + "icon": "https://get.celer.app/cbridge-icons/WOO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WREVA", + "address": "0xec81aA154d470c6857219b529de3F1D755eE2aE7", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WRT", + "address": "0xAA761861322Ca1cB8c0aCEB1471B3B5AF81de5A6", + "decimal": 6, + "xfer_disabled": true + }, + "name": "WingRiders", + "icon": "https://get.celer.app/cbridge-icons/WRT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "XMT", + "address": "0x582C12b30F85162Fa393e5DBe2573f9F601f9D91", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MetalSwap", + "icon": "https://i.postimg.cc/g2skyfz0/XMT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "cUSD", + "address": "0x16365b45EB269B5B5dACB34B4a15399Ec79b95eB", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Open Celo Dollar", + "icon": "https://i.postimg.cc/85RX4D7k/160.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "cgUSDT", + "address": "0x0E0469A84f57F0B3EB997A18484C75DfEfF2FC92", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "cgWETH", + "address": "0x1b8b972C1C37406bB74165E681F2d754d7b17eBE", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "iUSD", + "address": "0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D", + "decimal": 18, + "xfer_disabled": false + }, + "name": "iZUMi Bond USD", + "icon": "https://i.postimg.cc/c6GnmKb6/163.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "iZi", + "address": "0x60D01EC2D5E98Ac51C8B4cF84DfCCE98D527c747", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Izumi Finance", + "icon": "https://get.celer.app/cbridge-icons/IZI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxAVAX", + "address": "0x81421A49c2Bb3F2F77A666F0686B4dB47A26360C", + "decimal": 18, + "xfer_disabled": true + }, + "name": "AVAX mToken", + "icon": "https://get.celer.app/cbridge-icons/muxAVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxBNB", + "address": "0x0Acc63843f9dd5C2A14EE7C2349859c526B9d4D3", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BNB mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxBTC", + "address": "0x904d0221641232fb40f99dc92C1d59c35698Ff0B", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BTC mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxETH", + "address": "0xEA09cBb3f286F7c1a377C4Db825c1cefaD2476AE", + "decimal": 18, + "xfer_disabled": true + }, + "name": "ETH mToken", + "icon": "https://get.celer.app/cbridge-icons/muxETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxFTM", + "address": "0xF234437596B9C90231181a2E80c668C4e5408108", + "decimal": 18, + "xfer_disabled": true + }, + "name": "FTM mToken", + "icon": "https://get.celer.app/cbridge-icons/muxFTM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxOP", + "address": "0x8FEB4121c45265515f36925ca412F85588c00b7E", + "decimal": 18, + "xfer_disabled": true + }, + "name": "muxOP", + "icon": "https://i.postimg.cc/Hk7NTFLc/muxOP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxUSD", + "address": "0x523d3e0DacD7c470Ebe8880AbE808161696CeBeC", + "decimal": 18, + "xfer_disabled": true + }, + "name": "USD mToken", + "icon": "https://get.celer.app/cbridge-icons/muxUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "oneDODO", + "address": "0x2C30B4cB4b3001afa5b8c43c5a7CA548067562A0", + "decimal": 18, + "xfer_disabled": true + }, + "name": "oneDODO", + "icon": "https://i.postimg.cc/1XM52fWv/image-296.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "sJADE", + "address": "0x94CEA04C51E7d3EC0a4A97Ac0C3B3c9254c2aD41", + "decimal": 9, + "xfer_disabled": true + }, + "name": "Staked JADE", + "icon": "https://get.celer.app/cbridge-icons/JADE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "wROSE", + "address": "0xF00600eBC7633462BC4F9C61eA2cE99F5AAEBd4a", + "decimal": 18, + "xfer_disabled": true + }, + "name": "wROSE", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "57": { + "token": [ + { + "token": { + "symbol": "SYS", + "address": "0xd3e822f3ef011Ca5f17D82C956D952D8d7C3A1BB", + "decimal": 18, + "xfer_disabled": true + }, + "name": "SYS", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/Syscoin.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "58": { + "token": [ + { + "token": { + "symbol": "USDC", + "address": "0x08F7e8a161652D9F2FbfE200b18709540dE5cEd1", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USDC", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0x1d46b7b81731014DE66C738329bBDbBA0E1ce05E", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USDT", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "0x4384d5a9D7354C65cE3aee411337bd40493Ad1bC", + "decimal": 8, + "xfer_disabled": true + }, + "name": "WBTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0xc6bc09a723F2314ad22642B6e33AD2ed6BbA3C9C", + "decimal": 18, + "xfer_disabled": true + }, + "name": "WETH", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WING", + "address": "0x6ea9f7B81bdEB047d63A023b1F28Bea481a5785a", + "decimal": 9, + "xfer_disabled": true + }, + "name": "Wing Finance", + "icon": "https://i.postimg.cc/VLZwnByG/149.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "66": { + "token": [ + { + "token": { + "symbol": "MARK", + "address": "0x1fE622E91e54D6AD00B01917351Ea6081426764A", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Mark", + "icon": "https://get.celer.app/cbridge-icons/MARK.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OKSE", + "address": "0xA844C05ae51DdafA6c4d5c801DE1Ef5E6F626bEC", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PEOPLE", + "address": "0xA354846BB4379E581F47814928073778Ed03d48A", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PeopleDAO", + "icon": "https://get.celer.app/cbridge-icons/PEOPLE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PLATO", + "address": "0xC5Ef662b833De914B9bA7a3532C6BB008a9b23a6", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Plato Games", + "icon": "https://get.celer.app/cbridge-icons/PLATO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SOS", + "address": "0x8db213bE5268a2b8B78Af08468ff1EA422073Da0", + "decimal": 18, + "xfer_disabled": true + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WING", + "address": "0x7A47ab305b8a2A3F4020d13FA9EF73cDdCc0e7D4", + "decimal": 9, + "xfer_disabled": true + }, + "name": "Wing Finance", + "icon": "https://i.postimg.cc/VLZwnByG/149.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "73": { + "token": [ + { + "token": { + "symbol": "BUSD", + "address": "0x2790A698e9968a6D46A4142E435f72D7d38da1a8", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FNCY", + "address": "0xA4bABEc52aC418B51591B6Cc823744126014731C", + "decimal": 18, + "xfer_disabled": true + }, + "name": "FNCY", + "icon": "https://i.postimg.cc/zGqcdG3g/FNCY.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "100": { + "token": [ + { + "token": { + "symbol": "PEOPLE", + "address": "0x8db213bE5268a2b8B78Af08468ff1EA422073Da0", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PeopleDAO", + "icon": "https://get.celer.app/cbridge-icons/PEOPLE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SOS", + "address": "0xD606367757BC5E35F53e616EA50F3103Ef6b8498", + "decimal": 18, + "xfer_disabled": true + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "128": { + "token": [ + { + "token": { + "symbol": "MARK", + "address": "0x779a8134750809F79Cf0Ba48ee0fF1A5c41a8fDC", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Mark", + "icon": "https://get.celer.app/cbridge-icons/MARK.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PEOPLE", + "address": "0x3bbaDFf9aeee4a74D3Cf6da05C30868C9Ff85BB8", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PeopleDAO", + "icon": "https://get.celer.app/cbridge-icons/PEOPLE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PLATO", + "address": "0x4668e0E7cC545De886aBF038067F81cD4DC0924b", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Plato Games", + "icon": "https://get.celer.app/cbridge-icons/PLATO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "RING", + "address": "0x15e65456310ecb216B51EfBd8a1dBf753353DcF9", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Darwinia Native Token", + "icon": "https://get.celer.app/cbridge-icons/RING.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SOS", + "address": "0x9D39Fc627A6d9d9F8C831c16995b209548cc3401", + "decimal": 18, + "xfer_disabled": true + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "137": { + "token": [ + { + "token": { + "symbol": "AI", + "address": "0xFA78cBa4ebbf8fE28B4fC1468948F16Fda2752b3", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Flourishing AI", + "icon": "https://i.postimg.cc/vTzMmCVW/AI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ANML", + "address": "0xEcc4176B90613Ed78185f01bd1E42C5640C4F09d", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Animal Concerts Token", + "icon": "https://i.postimg.cc/vmscrj0G/6-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ASVA", + "address": "0xE7E0bA6f84D843d17Cb8410810Bf3E8Bcda0caA1", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Asva Finance", + "icon": "https://get.celer.app/cbridge-icons/ASVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ATL", + "address": "0xb98e169C37ce30Dd47Fdad1f9726Fb832191e60b", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Atlantis Loans", + "icon": "https://get.celer.app/cbridge-icons/ATL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "AX", + "address": "0x5617604BA0a30E0ff1d2163aB94E50d8b6D0B0Df", + "decimal": 18, + "xfer_disabled": true + }, + "name": "AX", + "icon": "https://i.postimg.cc/WpCpmC4x/16-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BIFI", + "address": "0xFbdd194376de19a88118e84E279b977f165d01b8", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BIFI", + "icon": "https://i.postimg.cc/MTcHqSTb/17-6.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BLID", + "address": "0x4b27Cd6E6a5E83d236eAD376D256Fe2F9e9f0d2E", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Bolide", + "icon": "https://i.postimg.cc/v8Njyh4C/BLID.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BMI", + "address": "0x3e1b4Ff4AE3Ab8f0Cb40a34a6ad3fC817F7dA2b6", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Bridge Mutual", + "icon": "https://get.celer.app/cbridge-icons/BMI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CANTO", + "address": "0x0E2B41a1D8285624D96df35ea57F7Ae44034b9B8", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Canto", + "icon": "https://i.postimg.cc/LX0KMg5H/Canto-Token.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CGG", + "address": "0x2Ab4f9aC80F33071211729e45Cfc346C1f8446d5", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Chain Guardians", + "icon": "https://get.celer.app/cbridge-icons/CGG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DEVT", + "address": "0x17D9dd3F1f1E2E5F723edd26Ebc14d042A4125b0", + "decimal": 18, + "xfer_disabled": true + }, + "name": "DeHorizon", + "icon": "https://get.celer.app/cbridge-icons/DEVT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DF", + "address": "0x08C15FA26E519A78a666D19CE5C646D55047e0a3", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dForce", + "icon": "https://get.celer.app/cbridge-icons/DF.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DHT", + "address": "0x8C92e38eCA8210f4fcBf17F0951b198Dd7668292", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dHedge DAO Token (PoS) ", + "icon": "https://i.postimg.cc/9XPFF6wG/DHT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ESW", + "address": "0xd2A2a353D28e4833FAFfC882f6649c9c884a7D8f", + "decimal": 18, + "xfer_disabled": true + }, + "name": "EmiSwap", + "icon": "https://get.celer.app/cbridge-icons/ESW.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "EUX", + "address": "0x448BBbDB706cD0a6AB74fA3d1157e7A33Dd3A4a8", + "decimal": 18, + "xfer_disabled": true + }, + "name": "dForce EUR", + "icon": "https://get.celer.app/cbridge-icons/EUX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FLOKI", + "address": "0xF752D6f597c116EB844E67cAB1FCf3320fB266FE", + "decimal": 9, + "xfer_disabled": true + }, + "name": "FLOKI", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FRAX", + "address": "0x5427FEFA711Eff984124bFBB1AB6fbf5E3DA1820", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax", + "icon": "https://get.celer.app/cbridge-icons/FRAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FXS", + "address": "0x2A98D03d1A593F0f3E0AA7c17B24fca68302051e", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax Share", + "icon": "https://i.postimg.cc/MKhbrNVh/54.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "GEL", + "address": "0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Gelato Network Token", + "icon": "https://get.celer.app/cbridge-icons/GEL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "GOVI", + "address": "0x43Df9c0a1156c96cEa98737b511ac89D0e2A1F46", + "decimal": 18, + "xfer_disabled": false + }, + "name": "CVI Finance", + "icon": "https://get.celer.app/cbridge-icons/GOVI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "GREEN", + "address": "0x40DB6d7812b8288eCA452F912ca9F262b186f278", + "decimal": 18, + "xfer_disabled": true + }, + "name": "GREEN", + "icon": "https://get.celer.app/cbridge-icons/GREEN.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "HUH", + "address": "0x08648471B5AAd25fEEeb853d6829048f3Fc37786", + "decimal": 9, + "xfer_disabled": true + }, + "name": "HUH Token", + "icon": "https://get.celer.app/cbridge-icons/HUH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "IBEX", + "address": "0xf972DACEd7C6b03223710C11413036D17eB298f6", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Impermax", + "icon": "https://i.postimg.cc/VvRQDGR2/IBEX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ICHI", + "address": "0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6", + "decimal": 18, + "xfer_disabled": false + }, + "name": "ICHI", + "icon": "https://i.postimg.cc/zXhJc5Zy/ICHI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "IMX", + "address": "0x60bB3D364B765C497C8cE50AE0Ae3f0882c5bD05", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Impermax", + "icon": "https://get.celer.app/cbridge-icons/Impermax.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "JONES", + "address": "0xB657457141Db5D3eC564BDf778a2F5d367e7af28", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Jones DAO", + "icon": "https://get.celer.app/cbridge-icons/JONES.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "JPYC", + "address": "0x431D5dfF03120AFA4bDf332c61A6e1766eF37BDB", + "decimal": 18, + "xfer_disabled": false + }, + "name": "JPY Coin", + "icon": "https://get.celer.app/cbridge-icons/JPYC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "KROM", + "address": "0x14Af1F2f02DCcB1e43402339099A05a5E363b83c", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Kromatika", + "icon": "https://get.celer.app/cbridge-icons/KROM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "LEAP", + "address": "0xa47150F5c615dcf4f2e47aad1862a0f2b54C3973", + "decimal": 18, + "xfer_disabled": true + }, + "name": "LEAP", + "icon": "https://i.postimg.cc/0N805xB9/LEAP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "LFI", + "address": "0x77D97db5615dFE8a2D16b38EAa3f8f34524a0a74", + "decimal": 18, + "xfer_disabled": true + }, + "name": "LFI", + "icon": "https://get.celer.app/cbridge-icons/LFI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MAI", + "address": "0xa3Fa99A148fA48D14Ed51d610c367C61876997F1", + "decimal": 18, + "xfer_disabled": true + }, + "name": "miMATIC", + "icon": "https://i.postimg.cc/X7r8mG4p/77-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MATIC", + "address": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MATIC Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MCHC", + "address": "0xee7666aACAEFaa6efeeF62ea40176d3eB21953B9", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MCH Coin", + "icon": "https://i.postimg.cc/CxRGHbgW/MCHC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MVX", + "address": "0x2760E46d9BB43dafCbEcaad1F64b93207f9f0eD7", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Metavault Trade", + "icon": "https://i.postimg.cc/bNCCnHb6/MVX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "NMX", + "address": "0x0cb93b5c42437FE78b3697740D15b46707f97361", + "decimal": 18, + "xfer_disabled": true + }, + "name": "NMX", + "icon": "https://i.postimg.cc/x8T1vvr8/nmx.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OKSE", + "address": "0xFf1674D39dEf5d3840f4021FAD2c5D4F20520557", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ONSTON", + "address": "0xA4Ce4a467E51aEfEc683a649C3F14427f104667f", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Onston", + "icon": "https://get.celer.app/cbridge-icons/ONSTON.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OOKI", + "address": "0xCd150B1F528F326f5194c012f32Eb30135C7C2c9", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Ooki", + "icon": "https://get.celer.app/cbridge-icons/OOKI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PEEL", + "address": "0x76dB25EEbc0E6Ac00A6F171B77e465ABe7c5276E", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Meta Apes Peel", + "icon": "https://i.postimg.cc/wjvwRZLP/21013-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PEOPLE", + "address": "0x5248fEbc5130575F98A4ff285535b94a0595a817", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PeopleDAO", + "icon": "https://get.celer.app/cbridge-icons/PEOPLE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PEPE", + "address": "0x3537024Ec79AA80d283a6E92c089bC486be4342b", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PEPE", + "icon": "https://i.postimg.cc/L50X0cWw/104.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "QI", + "address": "0x580A84C73811E1839F75d86d75d88cCa0c241fF4", + "decimal": 18, + "xfer_disabled": true + }, + "name": "QI", + "icon": "https://i.postimg.cc/9F5FzBhG/112.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "RAYS", + "address": "0x2D027E55B85429e9F205930A8afF6D8E6C8c3021", + "decimal": 18, + "xfer_disabled": true + }, + "name": "RAYS", + "icon": "https://i.postimg.cc/vHGTsnHC/RAYS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "REVA", + "address": "0x7C83CaEB3166a53aEE0681549E6452a1f5D94107", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "RING", + "address": "0x9C1C23E60B72Bc88a043bf64aFdb16A02540Ae8f", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Darwinia Native Token", + "icon": "https://get.celer.app/cbridge-icons/RING.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SAFLE", + "address": "0x04b33078Ea1aEf29bf3fB29c6aB7B200C58ea126", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Safle", + "icon": "https://get.celer.app/cbridge-icons/safle.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SOLACE", + "address": "0x8dd56c42B0e5B38CeAA17179E11318eC6841b136", + "decimal": 18, + "xfer_disabled": true + }, + "name": "SOLACE", + "icon": "https://get.celer.app/cbridge-icons/SOLACE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SWAY", + "address": "0x262B8AA7542004f023B0eB02bc6b96350A02b728", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Sway Social", + "icon": "https://get.celer.app/cbridge-icons/SWAY.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "TCGC", + "address": "0x44ACD96620B708162af4A90524F29A6839675533", + "decimal": 18, + "xfer_disabled": false + }, + "name": "TCGC", + "icon": "https://i.postimg.cc/FKkXtKw1/TCGC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "THALES", + "address": "0x692C44990E4F408ba0917f5c78A83160c1557237", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Thales", + "icon": "https://get.celer.app/cbridge-icons/THALES.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "TSUGT", + "address": "0x70e29b7E036B14D496431b77e0B6EB0008be6165", + "decimal": 8, + "xfer_disabled": false + }, + "name": "TSUBASA Governance Token", + "icon": "https://i.postimg.cc/dQ6MM99M/TSUGT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin (POS)", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "5000000000000", + "inbound_epoch_cap": "4000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0xc2132D05D31c914a87C6611C10748AEb04B58e8F", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "5000000000000", + "inbound_epoch_cap": "4000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USX", + "address": "0xCf66EB3D546F0415b368d98A95EAF56DeD7aA752", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dForce USD", + "icon": "https://i.postimg.cc/zXtTRBJw/142.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x7ceB23fD6bC0adD59E62ac25578270cFf1b9f619", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped ETH", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "1000000000000000000000", + "inbound_epoch_cap": "1000000000000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WOAS", + "address": "0xE4C3d8E3B9D5848FBa6BC6014C02e747eb95509b", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Oasys", + "icon": "https://i.postimg.cc/85N6sVq2/OAS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WOO", + "address": "0x1B815d120B3eF02039Ee11dC2d33DE7aA4a8C603", + "decimal": 18, + "xfer_disabled": true + }, + "name": "WOO Network", + "icon": "https://get.celer.app/cbridge-icons/WOO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WREVA", + "address": "0x4A52b891eC0670f547BEDAc5959cA3e9FDEd4849", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Reva Matic", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WXT", + "address": "0xBBCA42c60b5290F2c48871A596492F93fF0Ddc82", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wirex Token", + "icon": "https://get.celer.app/cbridge-icons/WXT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "XMT", + "address": "0xadBe0eac80F955363f4Ff47B0f70189093908c04", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MetalSwap", + "icon": "https://i.postimg.cc/g2skyfz0/XMT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "iUSD", + "address": "0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D", + "decimal": 18, + "xfer_disabled": false + }, + "name": "iZUMi Bond USD", + "icon": "https://i.postimg.cc/c6GnmKb6/163.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "iZi", + "address": "0x60D01EC2D5E98Ac51C8B4cF84DfCCE98D527c747", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Izumi Finance", + "icon": "https://get.celer.app/cbridge-icons/IZI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "169": { + "token": [ + { + "token": { + "symbol": "AVAX", + "address": "0x7d43AABC515C356145049227CeE54B608342c0ad", + "decimal": 18, + "xfer_disabled": true + }, + "name": "AVAX", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BNB", + "address": "0xf5C6825015280CdfD0b56903F9F8B5A2233476F5", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BNB", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MANTA", + "address": "0x95CeF13441Be50d20cA4558CC0a27B601aC544E5", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Manta Network", + "icon": "https://get.celer.app/cbridge-icons/manta.png", + "inbound_lmt": "30000000000000000000000000", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MATIC", + "address": "0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MATIC", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "196": { + "token": [ + { + "token": { + "symbol": "uniETH", + "address": "0x15EEfE5B297136b8712291B632404B66A8eF4D25", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Universal ETH", + "icon": "https://i.postimg.cc/9Mccr83D/uniETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "204": { + "token": [ + { + "token": { + "symbol": "BNB", + "address": "0x4200000000000000000000000000000000000006", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FDUSD", + "address": "0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb", + "decimal": 18, + "xfer_disabled": false + }, + "name": "First Digital USD", + "icon": "https://i.postimg.cc/qMCQfxnn/FDUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "248": { + "token": [ + { + "token": { + "symbol": "AVAX", + "address": "0xB88d147DE8951EE637758138f2d6D2312B2c4141", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CGG", + "address": "0x07A27F90707Ef989C1614a5660f84bCFb535C4B6", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Chain Guardians", + "icon": "https://get.celer.app/cbridge-icons/CGG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "EPL", + "address": "0xd2e426eA2fFa72DD1DC75e7bD148fb959E3E04b2", + "decimal": 18, + "xfer_disabled": true + }, + "name": "EPL", + "icon": "https://i.postimg.cc/VLQrdfb4/EPL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MATIC", + "address": "0x96DE4B1F5345E0d812c574193D75278ffB48B438", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Matic Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MCHC", + "address": "0x5B1CC635E524cAbb63a581c050C895534755F297", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MCH Coin", + "icon": "https://i.postimg.cc/CxRGHbgW/MCHC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MSM", + "address": "0xd11E0F63B04868567c297A3119e491707DB19E4e", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MusmeCoin", + "icon": "https://i.postimg.cc/pLzcjYCg/MSM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "RAYS", + "address": "0xC885f4eE4E4c0C3A36E11BAC28E2E1a2Ba644d39", + "decimal": 18, + "xfer_disabled": true + }, + "name": "RAYS", + "icon": "https://i.postimg.cc/vHGTsnHC/RAYS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "TCGC", + "address": "0xdDB07cc0f2F9fB7899DbA5a21964f3C6D2740e44", + "decimal": 18, + "xfer_disabled": false + }, + "name": "TCGC", + "icon": "https://i.postimg.cc/FKkXtKw1/TCGC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "TSUGT", + "address": "0xC938B80729EFbf601be1979C6e7b10902c8635C5", + "decimal": 18, + "xfer_disabled": true + }, + "name": "TSUBASA Governance Token", + "icon": "https://i.postimg.cc/dQ6MM99M/TSUGT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0xE1aB220E37AC55A4E2dD5Ba148298A9c09fBD716", + "decimal": 18, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC-intermediary", + "address": "0x92cd9aA44Dad9FE20b9e3205a896a15bCCb221Fe", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0xDc3af65eCBD339309Ec55F109CB214E0325c5eD4", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "0xdd30c42D57a0f14DD44c809F59836D57392FDbC9", + "decimal": 18, + "xfer_disabled": true + }, + "name": "WBTC", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x5801E5a61164024Be2554248E33127c6ebC8C113", + "decimal": 18, + "xfer_disabled": true + }, + "name": "WETH", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WOAS", + "address": "0x5200000000000000000000000000000000000001", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Oasys", + "icon": "https://i.postimg.cc/85N6sVq2/OAS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "250": { + "token": [ + { + "token": { + "symbol": "BLANK", + "address": "0x09aB991d898713FB8e9B6d949DcB6e846076d765", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BlockWallet", + "icon": "https://i.postimg.cc/W3nXB8T0/18.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FRAX", + "address": "0xB0d8cF9560EF31B8Fe6D9727708D19b31F7C90Dc", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax", + "icon": "https://get.celer.app/cbridge-icons/FRAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FTM", + "address": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Fantom", + "icon": "https://i.postimg.cc/90JnpvdK/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FXS", + "address": "0x153A59d48AcEAbedbDCf7a13F67Ae52b434B810B", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax Share", + "icon": "https://i.postimg.cc/MKhbrNVh/54.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "GEL", + "address": "0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Gelato Network Token", + "icon": "https://get.celer.app/cbridge-icons/GEL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "GNO", + "address": "0x92f97bea4Aca122C6459889602fF4DD84E5fcCD4", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Gnosis", + "icon": "https://get.celer.app/cbridge-icons/GNO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "IMX", + "address": "0xeA38F1CCF77Bf43F352636241b05dd8f6F5f52B2", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Impermax", + "icon": "https://get.celer.app/cbridge-icons/Impermax.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "LUSD", + "address": "0x16365b45EB269B5B5dACB34B4a15399Ec79b95eB", + "decimal": 18, + "xfer_disabled": true + }, + "name": "LUSD Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/LUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MUXLP", + "address": "0xDDAde9a8dA4851960DFcff1AE4A18EE75C39eDD2", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MUX LP", + "icon": "https://get.celer.app/cbridge-icons/MUXLP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OKSE", + "address": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PEOPLE", + "address": "0xb74527786818aE18B69B6A823960bfAF3906182F", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PeopleDAO", + "icon": "https://get.celer.app/cbridge-icons/PEOPLE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "REVA", + "address": "0xbdd2739AE69A054895Be33A22b2D2ed71a1DE778", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SOLACE", + "address": "0x25FBfcfAC72c75B77CBeB915706Ce098f0B3a849", + "decimal": 18, + "xfer_disabled": true + }, + "name": "SOLACE", + "icon": "https://get.celer.app/cbridge-icons/SOLACE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SOS", + "address": "0xAB0C1da69e383edB087D09b1eFD333321e5d6493", + "decimal": 18, + "xfer_disabled": true + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x04068DA6C83AFCFA0e13ba15A6696662335D5B75", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "2000000000000", + "inbound_epoch_cap": "1000000000000", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0x049d68029688eAbF473097a2fC38ef61633A3C7A", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Frapped USDT", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "2000000000000", + "inbound_epoch_cap": "1000000000000", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x74b23882a30290451A17c44f4F05243b6b58C76d", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped ETH", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "500000000000000000000", + "inbound_epoch_cap": "500000000000000000000", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WOO", + "address": "0x6626c47c00F1D87902fc13EECfaC3ed06D5E8D8a", + "decimal": 18, + "xfer_disabled": true + }, + "name": "WOO Network", + "icon": "https://get.celer.app/cbridge-icons/WOO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WREVA", + "address": "0x66acEA0f41656711f58FF840c8857e3E5356F64F", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxAVAX", + "address": "0x746Ba48fC973596d0077573BDa6185cA3BB9c3dC", + "decimal": 18, + "xfer_disabled": true + }, + "name": "AVAX mToken", + "icon": "https://get.celer.app/cbridge-icons/muxAVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxBNB", + "address": "0x0b70Ad251761fCFf7Cb42dB35b10Ea0208ECd07c", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BNB mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxBTC", + "address": "0x1305b25842778041c4ae0c9e7C264A617c619FD4", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BTC mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxETH", + "address": "0x13cCB790Cc6e3735b6b0eC11fef1A81703892861", + "decimal": 18, + "xfer_disabled": true + }, + "name": "ETH mToken", + "icon": "https://get.celer.app/cbridge-icons/muxETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxFTM", + "address": "0xFCCa7fA56e26f0C86339Ec06D304151aa2E9647A", + "decimal": 18, + "xfer_disabled": true + }, + "name": "FTM mToken", + "icon": "https://get.celer.app/cbridge-icons/muxFTM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxOP", + "address": "0xF16f662BC827C7e2D28F4B5F4f47cA9Cad63E424", + "decimal": 18, + "xfer_disabled": true + }, + "name": "muxOP", + "icon": "https://i.postimg.cc/Hk7NTFLc/muxOP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxUSD", + "address": "0xC70107ae20A976C958bF39B32eF8A6E0D2f04878", + "decimal": 18, + "xfer_disabled": true + }, + "name": "USD mToken", + "icon": "https://get.celer.app/cbridge-icons/muxUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "288": { + "token": [ + { + "token": { + "symbol": "BOBA", + "address": "0xa18bF3994C0Cc6E3b63ac420308E5383f53120D7", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Boba Token", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/boba.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FRAX", + "address": "0xB0d8cF9560EF31B8Fe6D9727708D19b31F7C90Dc", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax", + "icon": "https://get.celer.app/cbridge-icons/FRAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FXS", + "address": "0x5803457E3074E727FA7F9aED60454bf2F127853b", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax Share", + "icon": "https://i.postimg.cc/MKhbrNVh/54.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OLO", + "address": "0x5008F837883EA9a07271a1b5eB0658404F5a9610", + "decimal": 18, + "xfer_disabled": true + }, + "name": "OolongSwap Token", + "icon": "https://get.celer.app/cbridge-icons/OLO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x66a2A913e447d6b4BF33EFbec43aAeF87890FBbc", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WAGMIV1", + "address": "0xCe055Ea4f29fFB8bf35E852522B96aB67Cbe8197", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Boba WAGMI v1 Option", + "icon": "https://get.celer.app/cbridge-icons/WAGMIV1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WAGMIV2", + "address": "0x76B5908ecd0ae3DB23011ae96b7C1f803D63136c", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Boba WAGMI v2 Option", + "icon": "https://get.celer.app/cbridge-icons/WAGMIV2.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WAGMIV3", + "address": "0xC6158B1989f89977bcc3150fC1F2eB2260F6cabE", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Boba WAGMI v3 Option", + "icon": "https://get.celer.app/cbridge-icons/WAGMIV3.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0xDeadDeAddeAddEAddeadDEaDDEAdDeaDDeAD0000", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Ethereum Token", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "314": { + "token": [ + { + "token": { + "symbol": "TRB", + "address": "0x045CE60839d108B43dF9e703d4b25402a6a28a0d", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Tellor Tributes", + "icon": "https://i.postimg.cc/Rhp1r2kJ/TRB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x2421db204968A367CC2C866CD057fA754Cb84EdF", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0x422849B355039bC58F2780cc4854919fC9cfaF94", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "0x592786E04c47844Aa3B343b19eF2f50A255a477F", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x522B61755b5FF8176B2931DA7bF1a5F9414Eb710", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WFIL", + "address": "0x60E1773636CF5E4A227d9AC24F20fEca034ee25A", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped FIL", + "icon": "https://i.postimg.cc/VLYnRFYK/WFIL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "324": { + "token": [ + { + "token": { + "symbol": "AVAX", + "address": "0x6A5279E99CA7786fb13F827Fc1Fb4F61684933d6", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BLID", + "address": "0x7DF222b011DcbD450E2104C5ecffa73ACE2FEFB6", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Bolide", + "icon": "https://i.postimg.cc/v8Njyh4C/BLID.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BNB", + "address": "0x7400793aAd94C8CA801aa036357d10F5Fd0ce08f", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB-coin.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BUSD", + "address": "0x2039bb4116B4EFc145Ec4f0e2eA75012D6C0f181", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DCA", + "address": "0x8b69A4e5AEB67858E3d03d0124176E85C3DFa51d", + "decimal": 18, + "xfer_disabled": true + }, + "name": "AutoDCA", + "icon": "https://i.postimg.cc/0N8CwkRJ/DCA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FLOKI", + "address": "0xbcADdDAD3F224115fC7efA8f0C5d3778a41D24Dc", + "decimal": 9, + "xfer_disabled": true + }, + "name": "FLOKI", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "GGG", + "address": "0x7E2A6456Bb3eCEcbdb38bC76Ad8dF9e448B15835", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Good Games Guild", + "icon": "https://i.postimg.cc/QMK7DyNG/GGG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "GOVI", + "address": "0xD63eF5e9C628c8a0E8984CDfb7444AEE44B09044", + "decimal": 18, + "xfer_disabled": false + }, + "name": "CVI Finance", + "icon": "https://get.celer.app/cbridge-icons/GOVI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "IBEX", + "address": "0xbe9f8C0d6f0Fd7e46CDaCCA340747EA2f247991D", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Impermax", + "icon": "https://i.postimg.cc/VvRQDGR2/IBEX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MATIC", + "address": "0x28a487240e4D45CfF4A2980D334CC933B7483842", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MATIC Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MVX", + "address": "0xC8Ac6191CDc9c7bF846AD6b52aaAA7a0757eE305", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Metavault Trade", + "icon": "https://i.postimg.cc/bNCCnHb6/MVX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OKSE", + "address": "0x8483bf6d5E45e467f2979c5d51B76100AAB60294", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PEPE", + "address": "0x68a8b2DBce73a9221A8cd981Ad6A70d2BaE40668", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PEPE", + "icon": "https://i.postimg.cc/L50X0cWw/104.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "2500000000000", + "inbound_epoch_cap": "4000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USX", + "address": "0xdb89D7b0Dccd0C0e5aC3571133A9aa1a037945cb", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dForce USD", + "icon": "https://i.postimg.cc/zXtTRBJw/142.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x5AEa5775959fBC2557Cc8789bC1bf90A239D9a91", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Ethereum Token", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "500000000000000000000", + "inbound_epoch_cap": "1000000000000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "iUSD", + "address": "0x1382628e018010035999A1FF330447a0751aa84f", + "decimal": 18, + "xfer_disabled": false + }, + "name": "iZUMi Bond USD", + "icon": "https://i.postimg.cc/c6GnmKb6/163.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "iZi", + "address": "0x16A9494e257703797D747540f01683952547EE5b", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Izumi Finance", + "icon": "https://get.celer.app/cbridge-icons/IZI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "336": { + "token": [ + { + "token": { + "symbol": "ESW", + "address": "0xb4BcA5955F26d2fA6B57842655d7aCf2380Ac854", + "decimal": 18, + "xfer_disabled": true + }, + "name": "EmiSwap", + "icon": "https://get.celer.app/cbridge-icons/ESW.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PKEX", + "address": "0xDC42728B0eA910349ed3c6e1c9Dc06b5FB591f98", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PolkaEx", + "icon": "https://get.celer.app/cbridge-icons/PKEX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SDN", + "address": "0x0f933Dc137D21cA519ae4C7E93f87a4C8EF365Ef", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Shiden Network", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/shiden.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "416": { + "token": [ + { + "token": { + "symbol": "AX", + "address": "0xd9Fd6e207a2196e1C3FEd919fCFE91482f705909", + "decimal": 18, + "xfer_disabled": true + }, + "name": "AX", + "icon": "https://i.postimg.cc/WpCpmC4x/16-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BIFI", + "address": "0x98f529E6d8616B95a79a3600413A10BfFAc46Fba", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BIFI", + "icon": "https://i.postimg.cc/MTcHqSTb/17-6.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CELR", + "address": "0x75DD23c0Dbfc369C231134E3046D0835E69aE6Cf", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Celer Network", + "icon": "https://get.celer.app/cbridge-icons/celr.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DAI", + "address": "0x53813CD4aCD7145A716B4686b195511FA93e4Cb7", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FLX", + "address": "0xE6a4a6d1E937D9eB3f0A24143194b10DcF7b6268", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Flux Token", + "icon": "https://i.postimg.cc/QCJ3r4pJ/50-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "GREEN", + "address": "0x5Ba4c160a474dC67F0bc1d3456385c78567a5A0f", + "decimal": 18, + "xfer_disabled": true + }, + "name": "GREEN", + "icon": "https://get.celer.app/cbridge-icons/GREEN.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "IMX", + "address": "0xe4871Cede6e17c28a633453CDd14b90c2E31C23D", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Impermax", + "icon": "https://get.celer.app/cbridge-icons/Impermax.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "LFI", + "address": "0x4C882ec256823eE773B25b414d36F92ef58a7c0C", + "decimal": 18, + "xfer_disabled": true + }, + "name": "LunaFi", + "icon": "https://get.celer.app/cbridge-icons/LFI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MAI", + "address": "0xF9AbB1Ef0dAb68cEdf1acbD6859510B0af4ca1d5", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MAI", + "icon": "https://i.postimg.cc/X7r8mG4p/77-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MATIC", + "address": "0xfa6F64DFbad14e6883321C2f756f5B22fF658f9C", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MATIC Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PLOT", + "address": "0x2D4e10Ee64CCF407C7F765B363348f7F62D2E06e", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PLOT", + "icon": "https://get.celer.app/cbridge-icons/PLOT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "QI", + "address": "0x541b1155e2cb9a13e6E1bBCA8084E30E7C756d82", + "decimal": 18, + "xfer_disabled": true + }, + "name": "QI", + "icon": "https://i.postimg.cc/9F5FzBhG/112.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "RAGE", + "address": "0x394022F5d20475D37d6904Cc2Df0BaE43DACa610", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Rage Token", + "icon": "https://get.celer.app/cbridge-icons/RAGE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "UMA", + "address": "0xD58b7Cd93103D05eb081Ec97F22d8e1FfF90f8f9", + "decimal": 18, + "xfer_disabled": true + }, + "name": "UMA", + "icon": "https://i.postimg.cc/qBn6mqBx/138.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0xe2aa35C2039Bd0Ff196A6Ef99523CC0D3972ae3e", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0x03Cc0D20B5eA163Aa3c0851235f4653F6Fe61017", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "0xaeb14DEC3d7B387997E8f543acac093d5B5D404e", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0xA173954Cc4b1810C0dBdb007522ADbC182DaB380", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped ETH", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "XBP", + "address": "0x7F251FBdB17Ae50fbc24d5e712e6cd1288C4Cec3", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BlitzPredict", + "icon": "https://i.postimg.cc/tJYhKw0L/155-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "592": { + "token": [ + { + "token": { + "symbol": "AAVE", + "address": "0xfcDe4A87b8b6FA58326BB462882f1778158B02F1", + "decimal": 18, + "xfer_disabled": true + }, + "name": "AAVE Token", + "icon": "https://get.celer.app/cbridge-icons/aave.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ASTR", + "address": "0xAeaaf0e2c81Af264101B9129C00F4440cCF0F720", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Astar", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/Astar.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ATOM", + "address": "0xfc6b18d694F2D137dB762B152736Ba098F9808d9", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Cosmos Hub", + "icon": "https://i.postimg.cc/zf4hRjfm/ATOM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BNB", + "address": "0x7f27352D5F83Db87a5A3E00f4B07Cc2138D8ee52", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BNB Token", + "icon": "https://get.celer.app/cbridge-icons/BNB-coin.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BUSD", + "address": "0x4Bf769b05E832FCdc9053fFFBC78Ca889aCb5E1E", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CERES", + "address": "0xe69583B62D7B7d8a568E1eC08f34B648589F4cF1", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Ceres Token", + "icon": "https://i.postimg.cc/6pqCj2Qb/CERES.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CRV", + "address": "0x7756a83563f0f56937A6FdF668E7D9F387c0D199", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Curve DAO Token", + "icon": "https://get.celer.app/cbridge-icons/CRV.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DAI", + "address": "0x6De33698e9e9b787e09d3Bd7771ef63557E148bb", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DEO", + "address": "0xb51541df05DE07be38dcfc4a80c05389A54502BB", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Demeter Token", + "icon": "https://i.postimg.cc/5jcSRqXB/DEO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DOT", + "address": "0xFFfFfFffFFfffFFfFFfFFFFFffFFFffffFfFFFfF", + "decimal": 10, + "xfer_disabled": true + }, + "name": "Polkadot", + "icon": "https://i.postimg.cc/CLkHjdBB/DOT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ESW", + "address": "0xb361DAD0Cc1a03404b650A69d9a5ADB5aF8A531F", + "decimal": 18, + "xfer_disabled": true + }, + "name": "EmiSwap", + "icon": "https://get.celer.app/cbridge-icons/ESW.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "INJ", + "address": "0x2c2E3812742Ab2DA53a728A09F5DE670Aba584b6", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Injective", + "icon": "https://i.postimg.cc/vZk23WdJ/INJtoken.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "JPYC", + "address": "0x431D5dfF03120AFA4bDf332c61A6e1766eF37BDB", + "decimal": 18, + "xfer_disabled": false + }, + "name": "JPY Coin", + "icon": "https://get.celer.app/cbridge-icons/JPYC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MATIC", + "address": "0xdd90E5E87A2081Dcf0391920868eBc2FFB81a1aF", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MATIC Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "NFTY", + "address": "0xe59817a90EBc1F9bf441065042b8913afFc771d5", + "decimal": 18, + "xfer_disabled": true + }, + "name": "NFTY Token", + "icon": "https://get.celer.app/cbridge-icons/NFTY.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PKEX", + "address": "0x1fE622E91e54D6AD00B01917351Ea6081426764A", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PolkaEx", + "icon": "https://get.celer.app/cbridge-icons/PKEX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SDN", + "address": "0x75364D4F779d0Bd0facD9a218c67f87dD9Aff3b4", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Shiden Network", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/shiden.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SEAN", + "address": "0xEe8138B3bd03905cF84aFE10cCD0dCcb820eE08E", + "decimal": 18, + "xfer_disabled": true + }, + "name": "SEAN", + "icon": "https://i.imgur.com/FcQAOjM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x6a2d262D56735DbA19Dd70682B39F6bE9a931D98", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "100000000000", + "inbound_epoch_cap": "500000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0x3795C36e7D12A8c252A20C5a7B455f7c57b60283", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "0xad543f18cFf85c77E140E3E5E3c3392f6Ba9d5CA", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x81ECac0D6Be0550A00FF064a4f9dd2400585FE9c", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ZLK", + "address": "0x998082C488e548820F970Df5173bD2061Ce90635", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Zenlink Network Token", + "icon": "https://get.celer.app/cbridge-icons/ZLK.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "747": { + "token": [ + { + "token": { + "symbol": "USDC-intermediary", + "address": "0x8d50a024B2F5593605d3cE8183Ca8969226Fcbf8", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "1024": { + "token": [ + { + "token": { + "symbol": "DAI", + "address": "0x6De33698e9e9b787e09d3Bd7771ef63557E148bb", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x6a2d262D56735DbA19Dd70682B39F6bE9a931D98", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0x3795C36e7D12A8c252A20C5a7B455f7c57b60283", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "0x7f27352D5F83Db87a5A3E00f4B07Cc2138D8ee52", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x81ECac0D6Be0550A00FF064a4f9dd2400585FE9c", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "1030": { + "token": [ + { + "token": { + "symbol": "DAI", + "address": "0x74eaE367d018A5F29be559752e4B67d01cc6b151", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DF", + "address": "0x53AA2b7BeaD41614577BA5B636c482790C5f54C5", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dForce", + "icon": "https://get.celer.app/cbridge-icons/DF.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FLOKI", + "address": "0x9B36f165baB9ebe611d491180418d8De4b8f3a1f", + "decimal": 9, + "xfer_disabled": true + }, + "name": "FLOKI", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x6963EfED0aB40F6C3d7BdA44A05dcf1437C44372", + "decimal": 18, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0xfe97E85d13ABD9c1c33384E796F10B73905637cE", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USX", + "address": "0x422a86f57b6b6F1e557d406331c25EEeD075E7aA", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dForce USD", + "icon": "https://i.postimg.cc/zXtTRBJw/142.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "0x1F545487c62e5ACfEa45dcAdd9c627361d1616D8", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped BTC ", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0xa47f43DE2f9623aCb395CA4905746496D2014d57", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "1088": { + "token": [ + { + "token": { + "symbol": "ATL", + "address": "0x4C882ec256823eE773B25b414d36F92ef58a7c0C", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Atlantis Loans", + "icon": "https://get.celer.app/cbridge-icons/ATL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CELR", + "address": "0x516e6D96896Aea92cE5e78B0348FD997F13802ad", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Celer Network", + "icon": "https://get.celer.app/cbridge-icons/celr.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "Metis", + "address": "0xDeadDeAddeAddEAddeadDEaDDEAdDeaDDeAD0000", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Metis", + "icon": "https://i.postimg.cc/sgZTQBNt/89.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PEOPLE", + "address": "0x4a63Afc71427807586dA190Bb0D3adB461fF9589", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PeopleDAO", + "icon": "https://get.celer.app/cbridge-icons/PEOPLE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SOS", + "address": "0x5d96d4287D1ff115eE50faC0526cf43eCf79bFc6", + "decimal": 18, + "xfer_disabled": true + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "STND", + "address": "0xc12caC7090baa48Ec750CceeC57C80768F6ee58E", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Standard Protocol", + "icon": "https://get.celer.app/cbridge-icons/STND.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "1101": { + "token": [ + { + "token": { + "symbol": "WETH", + "address": "0x4F9A0e7FD2Bf6067db6994CF12E4495Df938E6e9", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Ethereum Token", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "1000000000000000000000", + "inbound_epoch_cap": "1000000000000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "1284": { + "token": [ + { + "token": { + "symbol": "BUSD", + "address": "0xCb4A7569a61300C50Cf80A2be16329AD9F5F8F9e", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CELR", + "address": "0x3795C36e7D12A8c252A20C5a7B455f7c57b60283", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Celer Network", + "icon": "https://get.celer.app/cbridge-icons/celr.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CONV", + "address": "0x8006320739fC281da67Ee62eB9b4Ef8ADD5C903a", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Convergence", + "icon": "https://get.celer.app/cbridge-icons/CONV.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FRAX", + "address": "0xC5Ef662b833De914B9bA7a3532C6BB008a9b23a6", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax", + "icon": "https://get.celer.app/cbridge-icons/FRAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FXS", + "address": "0x54f2980A851376CcBC561Ab4631dF2556Ad03386", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax Share", + "icon": "https://i.postimg.cc/MKhbrNVh/54.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MANTA", + "address": "0xfFFffFFf7D3875460d4509eb8d0362c611B4E841", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Manta Network", + "icon": "https://get.celer.app/cbridge-icons/manta.png", + "inbound_lmt": "60000000000000000000000000", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PEOPLE", + "address": "0x8c75adB1D9f38F6C2AF54BE8120F598b9dba446C", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PeopleDAO", + "icon": "https://get.celer.app/cbridge-icons/PEOPLE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x6a2d262D56735DbA19Dd70682B39F6bE9a931D98", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0x81ECac0D6Be0550A00FF064a4f9dd2400585FE9c", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Tether USD (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "0x8a4B4C2aCAdeAa7206Df96F00052e41d74a015CE", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Wrapped BTC (Celer)", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x6959027f7850Adf4916ff5Fdc898d958819E5375", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Ether (Celer)", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ZLK", + "address": "0x3Fd9b6C9A24E09F67b7b706d72864aEbb439100C", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Zenlink Network Token", + "icon": "https://get.celer.app/cbridge-icons/ZLK.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "1285": { + "token": [ + { + "token": { + "symbol": "DODO", + "address": "0xE9460BD2FFB12b668fA32919C785C239f974D37C", + "decimal": 18, + "xfer_disabled": true + }, + "name": "DODO bird", + "icon": "https://get.celer.app/cbridge-icons/DODO.jpg", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FRAX", + "address": "0x8c75adB1D9f38F6C2AF54BE8120F598b9dba446C", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax", + "icon": "https://get.celer.app/cbridge-icons/FRAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FXS", + "address": "0xC1d6E421a062Fdbb26C31Db4a2113dF0F678CD04", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax Share", + "icon": "https://i.postimg.cc/MKhbrNVh/54.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "IMX", + "address": "0x900f1Ec5819FA087d368877cD03B265Bf1802667", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Impermax", + "icon": "https://get.celer.app/cbridge-icons/Impermax.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MAI", + "address": "0x48421FF1c6B93988138130865C4B7Cce10358271", + "decimal": 18, + "xfer_disabled": true + }, + "name": "miMATIC", + "icon": "https://i.postimg.cc/X7r8mG4p/77-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PEOPLE", + "address": "0x31d95c7fc6b5520B4BdCD78Efa689dD1CCa5741E", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PeopleDAO", + "icon": "https://get.celer.app/cbridge-icons/PEOPLE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SOS", + "address": "0xad543f18cFf85c77E140E3E5E3c3392f6Ba9d5CA", + "decimal": 18, + "xfer_disabled": true + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ZLK", + "address": "0x0f47ba9d9Bde3442b42175e51d6A367928A1173B", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Zenlink Network Token", + "icon": "https://get.celer.app/cbridge-icons/ZLK.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "1625": { + "token": [ + { + "token": { + "symbol": "WG", + "address": "0xBB859E225ac8Fb6BE1C7e38D87b767e95Fef0EbD", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Gravity", + "icon": "https://i.postimg.cc/zXRqWRhD/G.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "cgUSDT", + "address": "0xD03ee9632901D1E355D39158A474fA42b248BC05", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "cgWETH", + "address": "0xe2913E5d24E42303E7D4B2a5BF3f9D2Ccd399424", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "1990": { + "token": [ + { + "token": { + "symbol": "MATTER", + "address": "0x0000000000000000000000000000000000007006", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MATTER", + "icon": "https://i.postimg.cc/NF5h2sTL/image-297.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "2001": { + "token": [ + { + "token": { + "symbol": "AVAX", + "address": "0x86c28C9a6f2DC3C156AA2ad450F0F9d3A5Dec12e", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BNB", + "address": "0x7f27352D5F83Db87a5A3E00f4B07Cc2138D8ee52", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BUSD", + "address": "0x4Bf769b05E832FCdc9053fFFBC78Ca889aCb5E1E", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DAI", + "address": "0x6De33698e9e9b787e09d3Bd7771ef63557E148bb", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FTM", + "address": "0xc3FEc6F18dDb7583DA572374Ca8d11c6F0590dAe", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Fantom", + "icon": "https://i.postimg.cc/90JnpvdK/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MATIC", + "address": "0x8006320739fC281da67Ee62eB9b4Ef8ADD5C903a", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Matic Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x6a2d262D56735DbA19Dd70682B39F6bE9a931D98", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0x3795C36e7D12A8c252A20C5a7B455f7c57b60283", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "0x8d50a024B2F5593605d3cE8183Ca8969226Fcbf8", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x81ECac0D6Be0550A00FF064a4f9dd2400585FE9c", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WRT", + "address": "0xAA761861322Ca1cB8c0aCEB1471B3B5AF81de5A6", + "decimal": 6, + "xfer_disabled": true + }, + "name": "WingRiders", + "icon": "https://get.celer.app/cbridge-icons/WRT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "2002": { + "token": [ + { + "token": { + "symbol": "AVAX", + "address": "0x088Ee5ad5d6389D9F479024E1916a24F437C1568", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Avalanche (Celer)", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BNB", + "address": "0xbc0990862515F95e01D16C2C1Afd1104c279D48d", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB-coin.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BUSD", + "address": "0x8Dc0Dfa2AeC0d4410c8C60c5f9cD0CD37b05a06a", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DAI", + "address": "0x150d2421E09eEa31beaa68b7a248700EEcEda87a", + "decimal": 18, + "xfer_disabled": true + }, + "name": "DAI", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FTM", + "address": "0x353b7134A88085129Cbde051f04b0edB03A3b83b", + "decimal": 18, + "xfer_disabled": true + }, + "name": "FTM", + "icon": "https://i.postimg.cc/90JnpvdK/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MATIC", + "address": "0x20fEbcF2Eb5d59B90AacC03b5afcA3843A57b3Ad", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MATIC Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x2421db204968A367CC2C866CD057fA754Cb84EdF", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USDC", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0x522B61755b5FF8176B2931DA7bF1a5F9414Eb710", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USDT", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "0x22d23e80193D7a77EF6177a2D0c79Af0F4A68790", + "decimal": 8, + "xfer_disabled": true + }, + "name": "WBTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x592786E04c47844Aa3B343b19eF2f50A255a477F", + "decimal": 18, + "xfer_disabled": true + }, + "name": "WETH", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "2222": { + "token": [ + { + "token": { + "symbol": "DAI", + "address": "0x49f2c0add1A345F4c76831c1AA3884fc523Ca5FE", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "IDIA", + "address": "0xd2A837AED9ae01bd3fB2112ddda06fEAFda9B51D", + "decimal": 18, + "xfer_disabled": true + }, + "name": "IDIA", + "icon": "https://get.celer.app/cbridge-icons/IDIA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x23367BEA9B6931690960d8c59f6e708630f24E58", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0xfB1af1baFE108906C0f1f3B36D15919B95ee95BD", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USX", + "address": "0xDb0E1e86B01c4ad25241b1843E407Efc4D615248", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dForce USD", + "icon": "https://i.postimg.cc/zXtTRBJw/142.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "0xaEa7D9Bc694a92ad0EFFfF0F30B700F7c4B23ba6", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x9591865D9d4BBD3b5FA8a8E2400fD530D1a16191", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "7700": { + "token": [ + { + "token": { + "symbol": "BNB", + "address": "0xFb7F77faaA3b69ef4C15d6305C79AD92B387C89F", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BNB", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BUSD", + "address": "0x381Ea7A7EE6a1e2982e01E7b6837f775a1a4B07F", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BUSD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CANTO", + "address": "0x826551890Dc65655a0Aceca109aB11AbDbD7a07B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Canto", + "icon": "https://i.postimg.cc/LX0KMg5H/Canto-Token.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "IBEX", + "address": "0xFbdd194376de19a88118e84E279b977f165d01b8", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Impermax", + "icon": "https://i.postimg.cc/VvRQDGR2/IBEX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "0x08638a74A8134c747Dce29B57472cc2B57F35653", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "8217": { + "token": [ + { + "token": { + "symbol": "DAI", + "address": "0x317F8d18FB16E49a958Becd0EA72f8E153d25654", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Dai Stablecoin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x53bB26dc8C5EFC6c95C37155aCa487d1D043436a", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0x3c790b38f466514ffCB4230e7B2334e52B64c942", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Tether USD (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "0x1C428a6539A40eC5Bb481631266a51cd19b233B1", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Wrapped BTC (Celer)", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0xB66954619363145a05eF835547449EB9050d82f6", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Ether (Celer)", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "8453": { + "token": [ + { + "token": { + "symbol": "AVAX", + "address": "0xDc44EdEde02bC11D31e1BcBC04b17C02F11ac4d7", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BNB", + "address": "0x265B25e22bcd7f10a5bD6E6410F10537Cc7567e8", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BUSD", + "address": "0xa55C7E1274bE5db2275a0BDd055f81e8263b7954", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DHT", + "address": "0x54BC229d1cB15F8B6415EfEab4290a40bc8b7D84", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dHedge DAO Token (PoS)", + "icon": "https://i.postimg.cc/9XPFF6wG/DHT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "IBEX", + "address": "0xb8A9a92DFE1303728394dD0f8362a09962dEC24f", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Impermax", + "icon": "https://i.postimg.cc/VvRQDGR2/IBEX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "KWENTA", + "address": "0x37Ab9F42051C112CAAba55AB6487dd74286A0B29", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Kwenta", + "icon": "https://i.postimg.cc/43TGJr1T/KWENTA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MATIC", + "address": "0x223fB0CeB2C6e5310264EFe38151d7D083db91f1", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Matic Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MTA", + "address": "0xba7D47f471ADD16875e765edEe0858C3413A56Fd", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Meta", + "icon": "https://i.postimg.cc/PrQq5Bcg/MTA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PSTAKE", + "address": "0x38815A4455921667d673B4cb3d48F0383eE93400", + "decimal": 18, + "xfer_disabled": false + }, + "name": "pSTAKE Finance", + "icon": "https://i.postimg.cc/gjCF4GVq/PSTAKE-NEW.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "THALES", + "address": "0xf34e0cff046e154CAfCae502C7541b9E5FD8C249", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Thales", + "icon": "https://get.celer.app/cbridge-icons/THALES.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USX", + "address": "0xc142171B138DB17a1B7Cb999C44526094a4dae05", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dForce USD", + "icon": "https://i.postimg.cc/zXtTRBJw/142.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "cgWETH", + "address": "0x6065A982F04F759b7d2D042D2864e569fad84214", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "9001": { + "token": [ + { + "token": { + "symbol": "AURORA", + "address": "0x48421FF1c6B93988138130865C4B7Cce10358271", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Aurora (Celer)", + "icon": "https://get.celer.app/cbridge-icons/AURORA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "AVAX", + "address": "0x8006320739fC281da67Ee62eB9b4Ef8ADD5C903a", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Avalanche (Celer)", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BNB", + "address": "0x75364D4F779d0Bd0facD9a218c67f87dD9Aff3b4", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance Coin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BUSD", + "address": "0x516e6D96896Aea92cE5e78B0348FD997F13802ad", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance USD (Celer)", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CELR", + "address": "0xFe6998C5c22936CCa749b14Fcf5F190398cfa8F8", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Celer Network", + "icon": "https://get.celer.app/cbridge-icons/celr.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DAI", + "address": "0x940dAAbA3F713abFabD79CdD991466fe698CBe54", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Dai Stablecoin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FRAX", + "address": "0xf5A178cf150216449630EAD9d0FDAEE09e06187b", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax", + "icon": "https://get.celer.app/cbridge-icons/FRAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FTM", + "address": "0x729416B1F442f204989f1C9f0d58321F878808eD", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Fantom (Celer)", + "icon": "https://i.postimg.cc/90JnpvdK/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FXS", + "address": "0xFc6Da929c031162841370af240dEc19099861d3B", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax Share", + "icon": "https://i.postimg.cc/MKhbrNVh/54.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0xe46910336479F254723710D57e7b683F3315b22B", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0xb72A7567847abA28A2819B855D7fE679D4f59846", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Tether USD (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "0xb98e169C37ce30Dd47Fdad1f9726Fb832191e60b", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Wrapped BTC (Celer)", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x153A59d48AcEAbedbDCf7a13F67Ae52b434B810B", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Ether (Celer)", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "13000": { + "token": [ + { + "token": { + "symbol": "ECG", + "address": "0xad96F2Bc03247D111255b3712E2043fdD3BBAD34", + "decimal": 18, + "xfer_disabled": true + }, + "name": "ECG", + "icon": "https://i.postimg.cc/D0TbS4jV/ECG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "HAY", + "address": "0xfc6b18d694F2D137dB762B152736Ba098F9808d9", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Hay Destablecoin", + "icon": "https://i.postimg.cc/3xQ6TT1T/logo-256x-256.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SQUAD", + "address": "0x1E56b632c30A23C6c96af35b0D7a1B5EAB9bde23", + "decimal": 18, + "xfer_disabled": true + }, + "name": "SQUAD", + "icon": "https://i.postimg.cc/GptPRDNq/SQUAD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "16350": { + "token": [ + { + "token": { + "symbol": "BANANA", + "address": "0xDc44EdEde02bC11D31e1BcBC04b17C02F11ac4d7", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Banana Token", + "icon": "https://get.celer.app/cbridge-icons/BANANA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PEEL", + "address": "0x4c2815FD6875EEAcC9c5C08DB3Bbea36bc07cE95", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Meta Apes Peel", + "icon": "https://i.postimg.cc/wjvwRZLP/21013-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SHELL", + "address": "0x8fc47164A79b2e2aF29C43C80EC377BbcAcb8f14", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Meta Apes Shell", + "icon": "https://get.celer.app/cbridge-icons/SHELL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "23294": { + "token": [ + { + "token": { + "symbol": "BNB", + "address": "0xe95E3a9f1a45B5EDa71781448F6047d7B7e31cbF", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MATIC", + "address": "0xa349005a68FA33e8DACAAa850c45175bbcD49B19", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Matic Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OCEAN", + "address": "0x39d22B78A7651A76Ffbde2aaAB5FD92666Aca520", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Ocean Token", + "icon": "https://i.postimg.cc/t4xXD97q/image-504.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x2c2E3812742Ab2DA53a728A09F5DE670Aba584b6", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0xE48151964556381B33f93E05E36381Fd53Ec053E", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "0xE9533976C590200E32d95C53f06AE12d292cFc47", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0xfc6b18d694F2D137dB762B152736Ba098F9808d9", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "wROSE", + "address": "0x8Bc2B030b299964eEfb5e1e0b36991352E56D2D3", + "decimal": 18, + "xfer_disabled": false + }, + "name": "wROSE", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "42161": { + "token": [ + { + "token": { + "symbol": "AI", + "address": "0x8d7c2588c365b9e98Ea464b63DBCCDf13ECd9809", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Flourishing AI", + "icon": "https://i.postimg.cc/vTzMmCVW/AI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "AICODE", + "address": "0x7C8a1A80FDd00C9Cccd6EbD573E9EcB49BFa2a59", + "decimal": 18, + "xfer_disabled": false + }, + "name": "AICODE", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "AKRO", + "address": "0x3CFB19B6cFb4fD9D2cd532C7c74CD0cD0Fe7E5b6", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Akropolis", + "icon": "https://get.celer.app/cbridge-icons/AKRO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "AMY", + "address": "0x8Fbd420956FDD301f4493500fd0BCaAa80f2389C", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Amy Finance Token", + "icon": "https://get.celer.app/cbridge-icons/AMY.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ARB", + "address": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Arbitrum", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/arbitrum.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BLID", + "address": "0x81dE4945807bb31425362F8F7109C18E3dc4f8F0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Bolide", + "icon": "https://i.postimg.cc/v8Njyh4C/BLID.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CANTO", + "address": "0x75E4fd0Ab0E94F6B5E9907066b10829EB1d15c5a", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Canto", + "icon": "https://i.postimg.cc/LX0KMg5H/Canto-Token.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DCA", + "address": "0x965F298E4ade51C0b0bB24e3369deB6C7D5b3951", + "decimal": 18, + "xfer_disabled": true + }, + "name": "AutoDCA", + "icon": "https://i.postimg.cc/0N8CwkRJ/DCA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DERI", + "address": "0x21E60EE73F17AC0A411ae5D690f908c3ED66Fe12", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Deri", + "icon": "https://i.postimg.cc/gkGQhHjh/DERI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DF", + "address": "0xaE6aab43C4f3E0cea4Ab83752C278f8dEbabA689", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dForce", + "icon": "https://get.celer.app/cbridge-icons/DF.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DODO", + "address": "0x69Eb4FA4a2fbd498C257C57Ea8b7655a2559A581", + "decimal": 18, + "xfer_disabled": false + }, + "name": "DODO Bird", + "icon": "https://get.celer.app/cbridge-icons/DODO.jpg", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ECG", + "address": "0x6eEd9140F80F9E989CB23AeCBD20b97a29FFc80F", + "decimal": 18, + "xfer_disabled": true + }, + "name": "ECG", + "icon": "https://i.postimg.cc/D0TbS4jV/ECG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "EUX", + "address": "0xC2125882318d04D266720B598d620f28222F3ABd", + "decimal": 18, + "xfer_disabled": true + }, + "name": "dForce EUR", + "icon": "https://get.celer.app/cbridge-icons/EUX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FRAX", + "address": "0x330066cf308Cea289f74585e85fA001048E8A5C0", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax", + "icon": "https://get.celer.app/cbridge-icons/FRAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FXS", + "address": "0x1215107d442d70D43DC5EAd1Bfd2268525015c4f", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax Share", + "icon": "https://i.postimg.cc/MKhbrNVh/54.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "GOVI", + "address": "0x07E49d5dE43DDA6162Fa28D24d5935C151875283", + "decimal": 18, + "xfer_disabled": false + }, + "name": "CVI Finance", + "icon": "https://get.celer.app/cbridge-icons/GOVI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "HAY", + "address": "0x8E591f583409F4eb89BDE3795d836E5d17FEC592", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Hay Destablecoin", + "icon": "https://i.postimg.cc/3xQ6TT1T/logo-256x-256.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "IBEX", + "address": "0x56659245931CB6920e39C189D2a0e7DD0dA2d57b", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Impermax", + "icon": "https://i.postimg.cc/VvRQDGR2/IBEX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ICHI", + "address": "0xadf5DD3E51bF28aB4F07e684eCF5d00691818790", + "decimal": 18, + "xfer_disabled": false + }, + "name": "ICHI", + "icon": "https://i.postimg.cc/zXhJc5Zy/ICHI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "IMX", + "address": "0x9c67eE39e3C4954396b9142010653F17257dd39C", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Impermax", + "icon": "https://get.celer.app/cbridge-icons/Impermax.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "JONES", + "address": "0x10393c20975cF177a3513071bC110f7962CD67da", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Jones DAO", + "icon": "https://get.celer.app/cbridge-icons/JONES.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "KROM", + "address": "0x55fF62567f09906A85183b866dF84bf599a4bf70", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Kromatika", + "icon": "https://get.celer.app/cbridge-icons/KROM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "KWENTA", + "address": "0x7fe5e5befa99A57CD690f2e220C251c90422da8B", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Kwenta", + "icon": "https://i.postimg.cc/43TGJr1T/KWENTA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "LYRA", + "address": "0x079504b86d38119F859c4194765029F692b7B7aa", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Lyra Token", + "icon": "https://get.celer.app/cbridge-icons/LYRA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MCB", + "address": "0x4e352cF164E64ADCBad318C3a1e222E9EBa4Ce42", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MCDEX Token", + "icon": "https://get.celer.app/cbridge-icons/MCB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MOON", + "address": "0x24404DC041d74cd03cFE28855F555559390C931b", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Moons", + "icon": "https://i.postimg.cc/8z2PpcpS/MOON.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MUX", + "address": "0xB3022De15628D44c51AaAAf68E9E0fD9a23C5fCA", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MUX", + "icon": "https://get.celer.app/cbridge-icons/MUX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MUXLP", + "address": "0x7CbaF5a14D953fF896E5B3312031515c858737C8", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MUX LP", + "icon": "https://get.celer.app/cbridge-icons/MUXLP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "NPM", + "address": "0x57f12FE6A4e5fe819eec699FAdf9Db2D06606bB4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Neptune Mutual ", + "icon": "https://i.postimg.cc/jjq2Tt9x/NPM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OKSE", + "address": "0x4313DDa7bc940F3f2B2ddDACF568300165C878CA", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OOKI", + "address": "0x400F3ff129Bc9C9d239a567EaF5158f1850c65a4", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Ooki", + "icon": "https://get.celer.app/cbridge-icons/OOKI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ORDI", + "address": "0x9c63f7829a4134e35f65cb8603c14c8738ce9460", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Ordi", + "icon": "https://i.postimg.cc/W3gBcKvs/ordi.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PENDLE", + "address": "0x0c880f6761F1af8d9Aa9C466984b80DAb9a8c9e8", + "decimal": 18, + "xfer_disabled": false + }, + "name": "PENDLE", + "icon": "https://i.postimg.cc/ZRZfyf6R/Pendle.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PERP", + "address": "0x753D224bCf9AAFaCD81558c32341416df61D3DAC", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Perpetual Protocol", + "icon": "https://get.celer.app/cbridge-icons/PERP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "REVA", + "address": "0x6C68eB45D5c2019136C8362cC928FB4f13F5385d", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SEAN", + "address": "0x37596F20adEf5CC9618c8b6Ddfa9DCB6329CB0fD", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Starfish Token", + "icon": "https://i.imgur.com/FcQAOjM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SQUAD", + "address": "0xd45e486A90eBb84E9336d371A35dCb021424B96C", + "decimal": 18, + "xfer_disabled": true + }, + "name": "SQUAD", + "icon": "https://i.postimg.cc/GptPRDNq/SQUAD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "TCR", + "address": "0xA72159FC390f0E3C6D415e658264c7c4051E9b87", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Tracer DAO", + "icon": "https://get.celer.app/cbridge-icons/TCR.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "THALES", + "address": "0xE85B662Fe97e8562f4099d8A1d5A92D4B453bF30", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Thales", + "icon": "https://get.celer.app/cbridge-icons/THALES.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin (Arb1)", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "5000000000000", + "inbound_epoch_cap": "4000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "5000000000000", + "inbound_epoch_cap": "4000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USX", + "address": "0x641441c631e2F909700d2f41FD87F0aA6A6b4EDb", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dForce USD", + "icon": "https://i.postimg.cc/zXtTRBJw/142.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped ETH", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "2000000000000000000000", + "inbound_epoch_cap": "1000000000000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WOO", + "address": "0xcAFcD85D8ca7Ad1e1C6F82F651fA15E33AEfD07b", + "decimal": 18, + "xfer_disabled": true + }, + "name": "WOO Network", + "icon": "https://get.celer.app/cbridge-icons/WOO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WREVA", + "address": "0x746Ba48fC973596d0077573BDa6185cA3BB9c3dC", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "XTK", + "address": "0xF0A5717Ec0883eE56438932b0fe4A20822735fBa", + "decimal": 18, + "xfer_disabled": false + }, + "name": "xToken", + "icon": "https://get.celer.app/cbridge-icons/XTK.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "cgUSDT", + "address": "0x6aB7a4Ed30e9cD8128d6971AB41aeFa1CeBC6669", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "cgWETH", + "address": "0xc474Cd2aEb2161a0dc1e03bedc2187C3CF788F8B", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "iUSD", + "address": "0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D", + "decimal": 18, + "xfer_disabled": false + }, + "name": "iZUMi Bond USD", + "icon": "https://i.postimg.cc/c6GnmKb6/163.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "iZi", + "address": "0x60D01EC2D5E98Ac51C8B4cF84DfCCE98D527c747", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Izumi Finance", + "icon": "https://get.celer.app/cbridge-icons/IZI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxAVAX", + "address": "0xd8d05915cf0AccBBBa78720707920Aff6eef3943", + "decimal": 18, + "xfer_disabled": true + }, + "name": "AVAX mToken", + "icon": "https://get.celer.app/cbridge-icons/muxAVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxBNB", + "address": "0xdd3CF6B0182993eced98fD71962dfA18E2eae2E4", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BNB mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxBTC", + "address": "0x2aC61dd4fBb11919b20A3859D4dDc4Fa192c8ba1", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BTC mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxETH", + "address": "0xE03b9Bf45B8b717237380AB934C5A6a5CA4C2Af1", + "decimal": 18, + "xfer_disabled": true + }, + "name": "ETH mToken", + "icon": "https://get.celer.app/cbridge-icons/muxETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxFTM", + "address": "0x198F152D3F34cb49A926333cD935D864D398753F", + "decimal": 18, + "xfer_disabled": true + }, + "name": "FTM mToken", + "icon": "https://get.celer.app/cbridge-icons/muxFTM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxOP", + "address": "0x854CF75e51782dE84478B1518543920f35a13eaE", + "decimal": 18, + "xfer_disabled": true + }, + "name": "muxOP", + "icon": "https://i.postimg.cc/Hk7NTFLc/muxOP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxUSD", + "address": "0x458cd4Bd5ae8FCF602a910423C30323997E497c3", + "decimal": 18, + "xfer_disabled": true + }, + "name": "USD mToken", + "icon": "https://get.celer.app/cbridge-icons/muxUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "uniETH", + "address": "0x3d15fD46CE9e551498328B1C83071D9509E2C3a0", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Universal ETH", + "icon": "https://i.postimg.cc/9Mccr83D/uniETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "xXTKa", + "address": "0xD8083e393985530b7Cf6798D44a2f1536E211Ab6", + "decimal": 18, + "xfer_disabled": true + }, + "name": "xXTK-Mgmt", + "icon": "https://get.celer.app/cbridge-icons/xXTKa.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "42170": { + "token": [ + { + "token": { + "symbol": "ARB", + "address": "0xf823C3cD3CeBE0a1fA952ba88Dc9EEf8e0Bf46AD", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Arbitrum", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/arbitrum.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ECG", + "address": "0xDc44EdEde02bC11D31e1BcBC04b17C02F11ac4d7", + "decimal": 18, + "xfer_disabled": true + }, + "name": "ECG", + "icon": "https://i.postimg.cc/D0TbS4jV/ECG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MOON", + "address": "0x0057Ac2d777797d31CD3f8f13bF5e927571D6Ad0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Moons", + "icon": "https://i.postimg.cc/8z2PpcpS/MOON.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SQUAD", + "address": "0x223fB0CeB2C6e5310264EFe38151d7D083db91f1", + "decimal": 18, + "xfer_disabled": true + }, + "name": "SQUAD", + "icon": "https://i.postimg.cc/GptPRDNq/SQUAD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x750ba8b76187092B0D1E87E28daaf484d1b5273b", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "1500000000000", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x722E8BdD2ce80A4422E880164f2079488e115365", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Ethereum Token", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "1000000000000000000000", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "42220": { + "token": [ + { + "token": { + "symbol": "PEOPLE", + "address": "0xCb4A7569a61300C50Cf80A2be16329AD9F5F8F9e", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PeopleDAO", + "icon": "https://get.celer.app/cbridge-icons/PEOPLE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SOS", + "address": "0xa8961Be06550c09C1bC14c483F3932B969eFf5E0", + "decimal": 18, + "xfer_disabled": true + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "cUSD", + "address": "0x765DE816845861e75A25fCA122bb6898B8B1282a", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Celo Dollar", + "icon": "https://i.postimg.cc/85RX4D7k/160.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "42262": { + "token": [ + { + "token": { + "symbol": "AMY", + "address": "0x78a21C1D3ED53A82d4247b9Ee5bF001f4620Ceec", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Amy Finance Token", + "icon": "https://get.celer.app/cbridge-icons/AMY.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "AVAX", + "address": "0x6De33698e9e9b787e09d3Bd7771ef63557E148bb", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Avalanche (Celer)", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BNB", + "address": "0x3795C36e7D12A8c252A20C5a7B455f7c57b60283", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BNB Token (Celer)", + "icon": "https://get.celer.app/cbridge-icons/BNB-coin.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CELR", + "address": "0xf6a939e773fa4A63fd53f86bbbB279CaAD955035", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Celer Network", + "icon": "https://get.celer.app/cbridge-icons/celr.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DAI", + "address": "0x5a4Ba16C2AeB295822A95280A7c7149E87769E6A", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Dai Stablecoin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FTM", + "address": "0x7f27352D5F83Db87a5A3E00f4B07Cc2138D8ee52", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Fantom (Celer)", + "icon": "https://i.postimg.cc/90JnpvdK/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x81ECac0D6Be0550A00FF064a4f9dd2400585FE9c", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0x4Bf769b05E832FCdc9053fFFBC78Ca889aCb5E1E", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Tether USD (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x6a2d262D56735DbA19Dd70682B39F6bE9a931D98", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped ETH (Celer)", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "43114": { + "token": [ + { + "token": { + "symbol": "AI", + "address": "0x10B3AAF66D90Cb54fca62Dd37d17022555399EE1", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Flourishing AI", + "icon": "https://i.postimg.cc/vTzMmCVW/AI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ATL", + "address": "0x90fBE9dfe76F6EF971c7A297641dfa397099a13e", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Atlantis Loans", + "icon": "https://get.celer.app/cbridge-icons/ATL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "AVAX", + "address": "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Avalanche (Celer)", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CGG", + "address": "0xE4F66600c1396C530393430C590BF8c17EA06B18", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Chain Guardians", + "icon": "https://get.celer.app/cbridge-icons/CGG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CRA", + "address": "0xA32608e873F9DdEF944B24798db69d80Bbb4d1ed", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Crabada", + "icon": "https://i.postimg.cc/0Nj20spR/31-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CRAM", + "address": "0xD2cd7a59Aa8f8FDc68d01b1e8A95747730b927d3", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Crabda Amulet", + "icon": "https://i.postimg.cc/yYK1r9FT/32-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DGNX", + "address": "0x51e48670098173025C477D9AA3f0efF7BF9f7812", + "decimal": 18, + "xfer_disabled": true + }, + "name": "DGNX", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DODO", + "address": "0xAEDB70D42161e6e135250150EA561dD77a694798", + "decimal": 18, + "xfer_disabled": true + }, + "name": "DODO bird", + "icon": "https://get.celer.app/cbridge-icons/DODO.jpg", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DOMI", + "address": "0xFc6Da929c031162841370af240dEc19099861d3B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Domi", + "icon": "https://get.celer.app/cbridge-icons/Domi.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FRAX", + "address": "0x693B47a7fC3d33AE9eBec15e5F42f2dB480066f3", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax", + "icon": "https://get.celer.app/cbridge-icons/FRAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FXS", + "address": "0xdb84EA36FcddfE5febae7da8b2806EffE9C8B353", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax Share", + "icon": "https://i.postimg.cc/MKhbrNVh/54.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "GNO", + "address": "0x7af0a3F5bcD7b37439Fa6B888617043d92d43637", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Gnosis", + "icon": "https://get.celer.app/cbridge-icons/GNO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "IBEX", + "address": "0x089d3dAF549f99553C2182DB24bC4336A4F0C824", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Impermax", + "icon": "https://i.postimg.cc/VvRQDGR2/IBEX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "IMX", + "address": "0xeA6887e4a9CdA1B77E70129E5Fba830CdB5cdDef", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Impermax", + "icon": "https://get.celer.app/cbridge-icons/Impermax.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "JADE", + "address": "0x80B010450fDAf6a3f8dF033Ee296E92751D603B3", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Jade Protocol", + "icon": "https://get.celer.app/cbridge-icons/JADE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "JONES", + "address": "0x746Ba48fC973596d0077573BDa6185cA3BB9c3dC", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Jones DAO", + "icon": "https://get.celer.app/cbridge-icons/JONES.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "JPEG", + "address": "0x6241af3817Db48a7F9E19FD9446d78E50936d275", + "decimal": 18, + "xfer_disabled": true + }, + "name": "JPEG", + "icon": "https://i.postimg.cc/Njj9DxPW/69.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "JPYC", + "address": "0x431D5dfF03120AFA4bDf332c61A6e1766eF37BDB", + "decimal": 18, + "xfer_disabled": false + }, + "name": "JPY Coin", + "icon": "https://get.celer.app/cbridge-icons/JPYC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "LUSD", + "address": "0xDA0019E7e50Ee4990440b1aa5dFFCAC6E27Ee27B", + "decimal": 18, + "xfer_disabled": true + }, + "name": "LUSD Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/LUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MAI", + "address": "0x61f85fF2a2f4289Be4bb9B72Fc7010B3142B5f41", + "decimal": 18, + "xfer_disabled": true + }, + "name": "miMATIC", + "icon": "https://i.postimg.cc/X7r8mG4p/77-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MUXLP", + "address": "0xAf2D365e668bAaFEdcFd256c0FBbe519e594E390", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MUX LP", + "icon": "https://get.celer.app/cbridge-icons/MUXLP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OKSE", + "address": "0xbc7B0223Dd16cbc679c0D04bA3F4530D76DFbA87", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ONSTON", + "address": "0x72BC9D71dd9ad563F52270C6ce5FB30F617C7a1d", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Onston", + "icon": "https://get.celer.app/cbridge-icons/ONSTON.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PEOPLE", + "address": "0xcdA140dE9873E8F912f12c864Be786442DE8a818", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PeopleDAO", + "icon": "https://get.celer.app/cbridge-icons/PEOPLE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "REVA", + "address": "0xeE396D4eE16Fd8C7d9bFB039d05F271D3c92e57D", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SOS", + "address": "0x63B0B80ee068D3CF46392c34025FA13a1F3B3F80", + "decimal": 18, + "xfer_disabled": true + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "TSD", + "address": "0x4fbf0429599460D327BD5F55625E30E4fC066095", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Teddy Dollar", + "icon": "https://i.postimg.cc/g2pVyRvh/image-301.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "TUS", + "address": "0xf693248F96Fe03422FEa95aC0aFbBBc4a8FdD172", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Treasure Under Sea", + "icon": "https://get.celer.app/cbridge-icons/TUS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0xA7D7079b0FEaD91F3e65f86E8915Cb59c1a4C664", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "1000000000000", + "inbound_epoch_cap": "4000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC.c", + "address": "0x0000000000000000000000000000000000000000", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0xc7198437980c041c805A1EDcbA50c1Ce5db95118", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "1000000000000", + "inbound_epoch_cap": "4000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USX", + "address": "0x853ea32391AaA14c112C645FD20BA389aB25C5e0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "dForce USD", + "icon": "https://i.postimg.cc/zXtTRBJw/142.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x49D5c2BdFfac6CE2BFdB6640F4F80f226bc10bAB", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped ETH", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "1000000000000000000000", + "inbound_epoch_cap": "1000000000000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WOAS", + "address": "0xd1CBE1f826a427128cB9a33BCe9224d2D742D518", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Oasys", + "icon": "https://i.postimg.cc/85N6sVq2/OAS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WOO", + "address": "0xaBC9547B534519fF73921b1FBA6E672b5f58D083", + "decimal": 18, + "xfer_disabled": true + }, + "name": "WOO Network", + "icon": "https://get.celer.app/cbridge-icons/WOO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WREVA", + "address": "0xa4918c50aadBa9EDCaf302562739c1b1C1367AA9", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WXT", + "address": "0xfcDe4A87b8b6FA58326BB462882f1778158B02F1", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wirex Token", + "icon": "https://get.celer.app/cbridge-icons/WXT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "avaxUSDC", + "address": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxAVAX", + "address": "0xaC80096d53c5965D9432592D28687C521472b9EB", + "decimal": 18, + "xfer_disabled": true + }, + "name": "AVAX mToken", + "icon": "https://get.celer.app/cbridge-icons/muxAVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxBNB", + "address": "0x30a667dF8562a2460F45AC297D833a36FEaC0C2F", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BNB mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxBTC", + "address": "0xCd7D33c265c811ee12c956D28c0e91f32a65119d", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BTC mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxETH", + "address": "0xDE53842F87c95362B2912DB5dBBA404E7D5Ff842", + "decimal": 18, + "xfer_disabled": true + }, + "name": "ETH mToken", + "icon": "https://get.celer.app/cbridge-icons/muxETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxFTM", + "address": "0x70D30270ccC356f47E5782a1A905ea85B9E08CEa", + "decimal": 18, + "xfer_disabled": true + }, + "name": "FTM mToken", + "icon": "https://get.celer.app/cbridge-icons/muxFTM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxOP", + "address": "0xE80e0B928F8f3024dfeFa56E7608bC3bAF389881", + "decimal": 18, + "xfer_disabled": true + }, + "name": "muxOP", + "icon": "https://i.postimg.cc/Hk7NTFLc/muxOP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "muxUSD", + "address": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "decimal": 18, + "xfer_disabled": true + }, + "name": "USD mToken", + "icon": "https://get.celer.app/cbridge-icons/muxUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "47805": { + "token": [ + { + "token": { + "symbol": "BUSD", + "address": "0x02CD448123E3Ef625D3A3Eb04A30E6ACa29C7786", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DAI", + "address": "0x0ba85980B122353D77fBb494222a10a46E4FB1f6", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x8d5E1225981359E2E09A3AB8F599A51486f53314", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0x988a631Caf24E14Bb77EE0f5cA881e8B5dcfceC7", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "0x8059E671Be1e76f8db5155bF4520f86ACfDc5561", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x7a5313468c1C1a3Afb2Cf5ec46558A7D0fc2884A", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "59144": { + "token": [ + { + "token": { + "symbol": "AVAX", + "address": "0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Avalanche (Celer)", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BNB", + "address": "0xf5C6825015280CdfD0b56903F9F8B5A2233476F5", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB-coin.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BUSD", + "address": "0x7d43AABC515C356145049227CeE54B608342c0ad", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "IBEX", + "address": "0xcf0f95E34F25d1BB3D9cad3Cbb2EB40dAb7c3841", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Impermax", + "icon": "https://i.postimg.cc/VvRQDGR2/IBEX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MATIC", + "address": "0x265B25e22bcd7f10a5bD6E6410F10537Cc7567e8", + "decimal": 18, + "xfer_disabled": true + }, + "name": "MATIC Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SNS", + "address": "0x2AAC15cEaEeC361d904997c102e5be2A7DB25625", + "decimal": 18, + "xfer_disabled": true + }, + "name": "SonorusToken", + "icon": "https://i.postimg.cc/rstbd7Hz/SNS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0xe5D7C2a44FfDDf6b295A15c148167daaAf5Cf34f", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Ethereum Token", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "1000000000000000000000", + "inbound_epoch_cap": "1000000000000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "iUSD", + "address": "0x0A3BB08b3a15A19b4De82F8AcFc862606FB69A2D", + "decimal": 18, + "xfer_disabled": false + }, + "name": " iZUMi Bond USD", + "icon": "https://i.postimg.cc/c6GnmKb6/163.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "iZi", + "address": "0x60D01EC2D5E98Ac51C8B4cF84DfCCE98D527c747", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Izumi Finance", + "icon": "https://get.celer.app/cbridge-icons/IZI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "uniETH", + "address": "0x15EEfE5B297136b8712291B632404B66A8eF4D25", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Universal ETH", + "icon": "https://i.postimg.cc/9Mccr83D/uniETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "71402": { + "token": [ + { + "token": { + "symbol": "BUSD", + "address": "0xcD7bC9fC617a4F82eC1c8359D1C8610B90e3B44C", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DAI", + "address": "0x317F8d18FB16E49a958Becd0EA72f8E153d25654", + "decimal": 18, + "xfer_disabled": true + }, + "name": "DAI", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x53bB26dc8C5EFC6c95C37155aCa487d1D043436a", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USDC", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0x3c790b38f466514ffCB4230e7B2334e52B64c942", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USDT", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "0x1C428a6539A40eC5Bb481631266a51cd19b233B1", + "decimal": 8, + "xfer_disabled": true + }, + "name": "WBTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0xB66954619363145a05eF835547449EB9050d82f6", + "decimal": 18, + "xfer_disabled": true + }, + "name": "WETH", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "73772": { + "token": [ + { + "token": { + "symbol": "CRA", + "address": "0xC1a1F40D558a3E82C3981189f61EF21e17d6EB48", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Crabada", + "icon": "https://i.postimg.cc/0Nj20spR/31-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "CRAM", + "address": "0xE71928E2CB1A19986936bfcE7b1fFFd0657da655", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Crabda Amulet", + "icon": "https://i.postimg.cc/yYK1r9FT/32-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "TUS", + "address": "0x9c765eEE6Eff9CF1337A1846c0D93370785F6C92", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Treasure Under Sea", + "icon": "https://get.celer.app/cbridge-icons/TUS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "avaxUSDC", + "address": "0xdc7E0bE5ca46b433AA0b47165A506079978221E6", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "81457": { + "token": [ + { + "token": { + "symbol": "IBEX", + "address": "0x9f04B6CEfd5BCd67d76aB708F17553Ce40188e6A", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Impermax", + "icon": "https://i.postimg.cc/VvRQDGR2/IBEX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PSTAKE", + "address": "0xcBf7B47E9da345812e3Bd732E3EE369a7203B5ae", + "decimal": 18, + "xfer_disabled": false + }, + "name": "pSTAKE Finance", + "icon": "https://i.postimg.cc/gjCF4GVq/PSTAKE-NEW.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x4300000000000000000000000000000000000004", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "100000000000000000000", + "inbound_epoch_cap": "1000000000000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "112358": { + "token": [ + { + "token": { + "symbol": "BNB", + "address": "0xDF58388BABD2dD275A769E968cC9794cd31dFd57", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "210425": { + "token": [ + { + "token": { + "symbol": "DAI", + "address": "0x3795C36e7D12A8c252A20C5a7B455f7c57b60283", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x81ECac0D6Be0550A00FF064a4f9dd2400585FE9c", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0x6a2d262D56735DbA19Dd70682B39F6bE9a931D98", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "0x7f27352D5F83Db87a5A3E00f4B07Cc2138D8ee52", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x4Bf769b05E832FCdc9053fFFBC78Ca889aCb5E1E", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "534352": { + "token": [ + { + "token": { + "symbol": "IBEX", + "address": "0x78Ab77F7D590FB101AA18affc238cbfEA31EAd5b", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Impermax", + "icon": "https://i.postimg.cc/VvRQDGR2/IBEX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x5300000000000000000000000000000000000004", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "1000000000000000000000", + "inbound_epoch_cap": "1000000000000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "uniETH", + "address": "0x15EEfE5B297136b8712291B632404B66A8eF4D25", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Universal ETH", + "icon": "https://i.postimg.cc/9Mccr83D/uniETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "12340001": { + "token": [ + { + "token": { + "symbol": "AVAX", + "address": "A.231cc0dbbcffc4b7.ceAVAX.Vault", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BNB", + "address": "A.231cc0dbbcffc4b7.ceBNB.Vault", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BUSD", + "address": "A.231cc0dbbcffc4b7.ceBUSD.Vault", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DAI", + "address": "A.231cc0dbbcffc4b7.ceDAI.Vault", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FTM", + "address": "A.231cc0dbbcffc4b7.ceFTM.Vault", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Fantom", + "icon": "https://i.postimg.cc/90JnpvdK/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MATIC", + "address": "A.231cc0dbbcffc4b7.ceMATIC.Vault", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Matic Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "RLY", + "address": "A.231cc0dbbcffc4b7.RLY.Vault", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Rally", + "icon": "https://get.celer.app/cbridge-icons/RLY.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDCFlow", + "address": "A.f1ab99c82dee3526.USDCFlow.Vault", + "decimal": 8, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "A.231cc0dbbcffc4b7.ceUSDT.Vault", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WBTC", + "address": "A.231cc0dbbcffc4b7.ceWBTC.Vault", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "A.231cc0dbbcffc4b7.ceWETH.Vault", + "decimal": 8, + "xfer_disabled": true + }, + "name": "TWrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "celrWFLOW", + "address": "A.1654653399040a61.FlowToken.Vault", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Flow Token", + "icon": "https://get.celer.app/cbridge-icons/FLOW.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "cfUSDC", + "address": "A.b19436aae4d94622.FiatToken.Vault", + "decimal": 8, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "12360001": { + "token": [ + { + "token": { + "symbol": "BNB", + "address": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BnbCoin", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB-coin.png", + "inbound_lmt": "", + "inbound_epoch_cap": "20000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "20000000000", + "delay_period": 1800 + }, + { + "token": { + "symbol": "BUSD", + "address": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BusdCoin", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "200000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "200000000000", + "delay_period": 86400 + }, + { + "token": { + "symbol": "DAI", + "address": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::DaiCoin", + "decimal": 8, + "xfer_disabled": true + }, + "name": "DAI", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "5000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "5000000000000", + "delay_period": 1800 + }, + { + "token": { + "symbol": "USDC", + "address": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdcCoin", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USDC", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "50000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "50000000000", + "delay_period": 1800 + }, + { + "token": { + "symbol": "USDT", + "address": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdtCoin", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USDT", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "50000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "50000000000", + "delay_period": 1800 + }, + { + "token": { + "symbol": "WBTC", + "address": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WbtcCoin", + "decimal": 8, + "xfer_disabled": true + }, + "name": "WBTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "250000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "250000000", + "delay_period": 1800 + }, + { + "token": { + "symbol": "WETH", + "address": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WethCoin", + "decimal": 8, + "xfer_disabled": true + }, + "name": "WETH", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "4000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "4000000000", + "delay_period": 1800 + } + ] + }, + "12370001": { + "token": [ + { + "token": { + "symbol": "DAI", + "address": "94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690::celer_dai_coin::CELER_DAI_COIN", + "decimal": 9, + "xfer_disabled": true + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "50000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "50000000000000", + "delay_period": 1800 + }, + { + "token": { + "symbol": "FRAX", + "address": "94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690::celer_frax_coin::CELER_FRAX_COIN", + "decimal": 9, + "xfer_disabled": true + }, + "name": "Frax", + "icon": "https://get.celer.app/cbridge-icons/FRAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "50000000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "50000000000000", + "delay_period": 1800 + }, + { + "token": { + "symbol": "FXS", + "address": "94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690::celer_fxs_coin::CELER_FXS_COIN", + "decimal": 9, + "xfer_disabled": true + }, + "name": "Frax Share", + "icon": "https://i.postimg.cc/MKhbrNVh/54.png", + "inbound_lmt": "", + "inbound_epoch_cap": "8333000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "8333000000000", + "delay_period": 1800 + }, + { + "token": { + "symbol": "PSTAKE", + "address": "b66e9e1cd25e8be90091c4f20b42f0472ea22d4244f3bc2241891ed7ad2d80de::celer_pstake_coin::CELER_PSTAKE_COIN", + "decimal": 9, + "xfer_disabled": true + }, + "name": "pSTAKE Finance", + "icon": "https://i.postimg.cc/gjCF4GVq/PSTAKE-NEW.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690::celer_usdc_coin::CELER_USDC_COIN", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "50000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "50000000000", + "delay_period": 1800 + }, + { + "token": { + "symbol": "USDT", + "address": "94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690::celer_usdt_coin::CELER_USDT_COIN", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "50000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "50000000000", + "delay_period": 1800 + }, + { + "token": { + "symbol": "WBTC", + "address": "94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690::celer_wbtc_coin::CELER_WBTC_COIN", + "decimal": 8, + "xfer_disabled": true + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "2500000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "2500000000", + "delay_period": 1800 + }, + { + "token": { + "symbol": "WETH", + "address": "94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690::celer_weth_coin::CELER_WETH_COIN", + "decimal": 9, + "xfer_disabled": true + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "40000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "40000000000", + "delay_period": 1800 + }, + { + "token": { + "symbol": "wstETH", + "address": "94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690::celer_wsteth_coin::CELER_WSTETH_COIN", + "decimal": 9, + "xfer_disabled": true + }, + "name": "Wrapped liquid staked Ether 2.0", + "icon": "https://i.postimg.cc/y8zxq4qy/wstETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "40000000000", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "40000000000", + "delay_period": 1800 + } + ] + }, + "20080001": { + "token": [ + { + "token": { + "symbol": "ORDI", + "address": "", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Ordi", + "icon": "https://i.postimg.cc/W3gBcKvs/ordi.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "999999996": { + "token": [ + { + "token": { + "symbol": "AURA", + "address": "0xc21dcaa1608a7f2559cee58352794db567f5576a7803bb5ae422314766191f15", + "decimal": 6, + "xfer_disabled": true + }, + "name": "AURA", + "icon": "https://aurascan.io/assets/images/logo/auraTitleLogo.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x4a133e0f9ab0f2e42ca2173d31647813dfe2a8fc10dca5a97fd5ff1ce28fde54", + "decimal": 18, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "999999997": { + "token": [ + { + "token": { + "symbol": "ASTR", + "address": "0xdDf7f9E95E8776bb71D9Ad0A4F83Da88Eb3f4F45", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Astar", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/Astar.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ATOM", + "address": "0xA6214Ccc545a3BFb979851b09DeBEd43F124bf63", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Cosmos Hub", + "icon": "https://i.postimg.cc/zf4hRjfm/ATOM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "DOT", + "address": "0x8044e72C6aFf3F21c5Ef9A148E5142479D3F4ab5", + "decimal": 10, + "xfer_disabled": true + }, + "name": "Polkadot", + "icon": "https://i.postimg.cc/CLkHjdBB/DOT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "INJ", + "address": "0xA6214ccC545A3BfB979851b09deBed43F124Bf62", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Injective", + "icon": "https://i.postimg.cc/vZk23WdJ/INJtoken.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "1313161554": { + "token": [ + { + "token": { + "symbol": "AURORA", + "address": "0x8BEc47865aDe3B172A928df8f990Bc7f2A3b9f79", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Aurora", + "icon": "https://get.celer.app/cbridge-icons/AURORA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "AVAX", + "address": "0xef3c714c9425a8F3697A9C969Dc1af30ba82e5d4", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Avalanche (Celer)", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BNB", + "address": "0xc6bc09a723F2314ad22642B6e33AD2ed6BbA3C9C", + "decimal": 18, + "xfer_disabled": true + }, + "name": "BNB Token", + "icon": "https://get.celer.app/cbridge-icons/BNB-coin.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "BUSD", + "address": "0x3b40D173b5802733108E047CF538Be178646b2e4", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "ESW", + "address": "0xd2Fa7C9386040f260e3Ec934601982aD4Cd7902B", + "decimal": 18, + "xfer_disabled": true + }, + "name": "EmiSwap", + "icon": "https://get.celer.app/cbridge-icons/ESW.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FRAX", + "address": "0x22953AF8b73f4f876FC09e836a14a1f64B209FEF", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax", + "icon": "https://get.celer.app/cbridge-icons/FRAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FTM", + "address": "0x1fE622E91e54D6AD00B01917351Ea6081426764A", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Fantom", + "icon": "https://i.postimg.cc/90JnpvdK/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FXS", + "address": "0xAB0C1da69e383edB087D09b1eFD333321e5d6493", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax Share", + "icon": "https://i.postimg.cc/MKhbrNVh/54.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "OKSE", + "address": "0xF942C7bf8721732e936AD3e5F9e7cAe6183637D8", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SOLACE", + "address": "0xD34597729E2322b90FB9856dC94E48B41D40646c", + "decimal": 18, + "xfer_disabled": true + }, + "name": "SOLACE", + "icon": "https://get.celer.app/cbridge-icons/SOLACE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0xB12BFcA5A55806AaF64E99521918A4bf0fC40802", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "2000000000000", + "inbound_epoch_cap": "500000000000", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDT", + "address": "0x4988a896b1227218e4A686fdE5EabdcAbd91571f", + "decimal": 6, + "xfer_disabled": true + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "2000000000000", + "inbound_epoch_cap": "500000000000", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + }, + "1666600000": { + "token": [ + { + "token": { + "symbol": "FRAX", + "address": "0xa8961Be06550c09C1bC14c483F3932B969eFf5E0", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax", + "icon": "https://get.celer.app/cbridge-icons/FRAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "FXS", + "address": "0x194Ad4574808D3E840221BeedF2209dfBc10b6ea", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Frax Share", + "icon": "https://i.postimg.cc/MKhbrNVh/54.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "IMX", + "address": "0xBD8064CdB96C00A73540922504F989c64B7b8B96", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Impermax", + "icon": "https://get.celer.app/cbridge-icons/Impermax.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": true, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "MAI", + "address": "0x6fA10d3052372118E976948184ABaCaB569209ee", + "decimal": 18, + "xfer_disabled": true + }, + "name": "miMATIC", + "icon": "https://i.postimg.cc/X7r8mG4p/77-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "PEOPLE", + "address": "0x63B0B80ee068D3CF46392c34025FA13a1F3B3F80", + "decimal": 18, + "xfer_disabled": true + }, + "name": "PeopleDAO", + "icon": "https://get.celer.app/cbridge-icons/PEOPLE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "REVA", + "address": "0x99DE0d484da36127597C0578c0D623026b6fc79f", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "SOS", + "address": "0x5427FEFA711Eff984124bFBB1AB6fbf5E3DA1820", + "decimal": 18, + "xfer_disabled": true + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "USDC", + "address": "0x985458E523dB3d53125813eD68c274899e9DfAb4", + "decimal": 6, + "xfer_disabled": true + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + }, + { + "token": { + "symbol": "WETH", + "address": "0x6983D1E6DEf3690C4d616b13597A09e6193EA013", + "decimal": 18, + "xfer_disabled": true + }, + "name": "Ethereum Token", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": true, + "liq_add_disabled": true, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": true, + "delay_threshold": "", + "delay_period": 0 + } + ] + } + }, + "farming_reward_contract_addr": "0x61f85fF2a2f4289Be4bb9B72Fc7010B3142B5f41", + "pegged_pair_configs": [ + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "FRAX", + "address": "0x853d955aCEf822Db058eb8505911ED77F175b99e", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Frax", + "icon": "https://get.celer.app/cbridge-icons/FRAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 10, + "pegged_token": { + "token": { + "symbol": "FRAX", + "address": "0xea129aE043C4cB73DcB241AAA074F9E667641BA0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Frax", + "icon": "https://get.celer.app/cbridge-icons/FRAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x61f85fF2a2f4289Be4bb9B72Fc7010B3142B5f41", + "canonical_token_contract_addr": "0x2E3D870790dC77A83DD1d18184Acc7439A53f475", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "FXS", + "address": "0x3432B6A60D23Ca0dFCa7761B7ab56459D9C964D0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Frax Share", + "icon": "https://i.postimg.cc/MKhbrNVh/54.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 10, + "pegged_token": { + "token": { + "symbol": "FXS", + "address": "0x1619DE6B6B20eD217a58d00f37B9d47C7663feca", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Frax Share", + "icon": "https://i.postimg.cc/MKhbrNVh/54.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x61f85fF2a2f4289Be4bb9B72Fc7010B3142B5f41", + "canonical_token_contract_addr": "0x67CCEA5bb16181E7b4109c9c2143c24a1c2205Be", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "ANML", + "address": "0x38B0e3A59183814957D83dF2a97492AED1F003e2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Animal Concerts Token", + "icon": "https://get.celer.app/cbridge-icons/ANML.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "ANML", + "address": "0x06FDA0758c17416726f77Cb11305EAC94C074Ec0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Animal Concerts Token", + "icon": "https://get.celer.app/cbridge-icons/ANML.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xd443FE6bf23A4C9B78312391A30ff881a097580E", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "AVG", + "address": "0xa41F142b6eb2b164f8164CAE0716892Ce02f311f", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Avocado DAO Token", + "icon": "https://get.celer.app/cbridge-icons/AVG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "AVG", + "address": "0xa41F142b6eb2b164f8164CAE0716892Ce02f311f", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Avocado DAO Token", + "icon": "https://get.celer.app/cbridge-icons/AVG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xd443FE6bf23A4C9B78312391A30ff881a097580E", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "DOMI", + "address": "0x45C2F8c9B4c0bDC76200448cc26C48ab6ffef83F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Domi", + "icon": "https://get.celer.app/cbridge-icons/Domi.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "DOMI", + "address": "0xBBCA42c60b5290F2c48871A596492F93fF0Ddc82", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Domi", + "icon": "https://get.celer.app/cbridge-icons/Domi.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xd443FE6bf23A4C9B78312391A30ff881a097580E", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "FLOKI", + "address": "0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E", + "decimal": 9, + "xfer_disabled": false + }, + "name": "FLOKI", + "icon": "https://i.postimg.cc/d3ZT6L1B/FLOKI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "FLOKI", + "address": "0xBCD9c0c24375F109b216B3486a30f886Fffa759F", + "decimal": 9, + "xfer_disabled": false + }, + "name": "FLOKI", + "icon": "https://i.postimg.cc/d3ZT6L1B/FLOKI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "GHX", + "address": "0x728f30fa2f100742C7949D1961804FA8E0B1387d", + "decimal": 18, + "xfer_disabled": false + }, + "name": "GamerCoin", + "icon": "https://get.celer.app/cbridge-icons/GHX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "GHX", + "address": "0xbd7B8e4de08D9b01938F7FF2058F110ee1E0E8d4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "GamerCoin", + "icon": "https://get.celer.app/cbridge-icons/GHX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xd443FE6bf23A4C9B78312391A30ff881a097580E", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "ICHI", + "address": "0x111111517e4929D3dcbdfa7CCe55d30d4B6BC4d6", + "decimal": 18, + "xfer_disabled": false + }, + "name": "ICHI", + "icon": "https://i.postimg.cc/zXhJc5Zy/ICHI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "ICHI", + "address": "0x0EF4A107b48163ab4b57FCa36e1352151a587Be4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "ICHI", + "icon": "https://i.postimg.cc/zXhJc5Zy/ICHI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "LEAP", + "address": "0x53263d9EF74Db583b15fbC6D5D4e8B83833fa134", + "decimal": 18, + "xfer_disabled": false + }, + "name": "LEAP", + "icon": "https://i.postimg.cc/0N805xB9/LEAP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "LEAP", + "address": "0x6eEd9140F80F9E989CB23AeCBD20b97a29FFc80F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "LEAP", + "icon": "https://i.postimg.cc/0N805xB9/LEAP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "LUSD", + "address": "0x5f98805A4E8be255a32880FDeC7F6728C6568bA0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Liquity USD", + "icon": "https://get.celer.app/cbridge-icons/LUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "LUSD", + "address": "0x181002D60d504d30a39601Ae13Af3191cb102580", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Liquity USD", + "icon": "https://get.celer.app/cbridge-icons/LUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xd443FE6bf23A4C9B78312391A30ff881a097580E", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "MELOS", + "address": "0x1afb69DBC9f54d08DAB1bD3436F8Da1af819E647", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Melos Studio", + "icon": "https://get.celer.app/cbridge-icons/MELOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "MELOS", + "address": "0x3CC194Cb21E3B9d86dD516b4d870B82fAfb4C02E", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Melos Studio", + "icon": "https://get.celer.app/cbridge-icons/MELOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xd443FE6bf23A4C9B78312391A30ff881a097580E", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "OOKI", + "address": "0x0De05F6447ab4D22c8827449EE4bA2D5C288379B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Ooki", + "icon": "https://get.celer.app/cbridge-icons/OOKI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "OOKI", + "address": "0xa5a6817ac4c164F27df3254B71fE83904B1C3c3e", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Ooki", + "icon": "https://get.celer.app/cbridge-icons/OOKI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "PSP", + "address": "0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5", + "decimal": 18, + "xfer_disabled": false + }, + "name": "ParaSwap", + "icon": "https://get.celer.app/cbridge-icons/PSP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "PSP", + "address": "0xcAfE001067cDEF266AfB7Eb5A286dCFD277f3dE5", + "decimal": 18, + "xfer_disabled": false + }, + "name": "ParaSwap", + "icon": "https://get.celer.app/cbridge-icons/PSP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xd443FE6bf23A4C9B78312391A30ff881a097580E", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "PSTAKE", + "address": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "decimal": 18, + "xfer_disabled": false + }, + "name": "pSTAKE Finance", + "icon": "https://i.postimg.cc/gjCF4GVq/PSTAKE-NEW.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "PSTAKE", + "address": "0x4C882ec256823eE773B25b414d36F92ef58a7c0C", + "decimal": 18, + "xfer_disabled": false + }, + "name": "pSTAKE Finance", + "icon": "https://i.postimg.cc/gjCF4GVq/PSTAKE-NEW.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "SOS", + "address": "0x3b484b82567a09e2588A13D54D032153f0c0aEe0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "SOS", + "address": "0xBcC128D5221b518e50a1823d374310bDF404f867", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xd443FE6bf23A4C9B78312391A30ff881a097580E", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WETH", + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 58, + "pegged_token": { + "token": { + "symbol": "WETH", + "address": "0xc6bc09a723F2314ad22642B6e33AD2ed6BbA3C9C", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Ether Token", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0xd4c058380D268d85bC7c758072f561e8f2dB5975", + "canonical_token_contract_addr": "0xd18F97592a1AdF4fa18d041ABB7Bd89491d3a8BE", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "SOS", + "address": "0x3b484b82567a09e2588A13D54D032153f0c0aEe0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 100, + "pegged_token": { + "token": { + "symbol": "SOS", + "address": "0xD606367757BC5E35F53e616EA50F3103Ef6b8498", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xd4c058380D268d85bC7c758072f561e8f2dB5975", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "PEOPLE", + "address": "0x7A58c0Be72BE218B41C608b7Fe7C5bB630736C71", + "decimal": 18, + "xfer_disabled": false + }, + "name": "PeopleDAO", + "icon": "https://get.celer.app/cbridge-icons/PEOPLE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 128, + "pegged_token": { + "token": { + "symbol": "PEOPLE", + "address": "0x3bbaDFf9aeee4a74D3Cf6da05C30868C9Ff85BB8", + "decimal": 18, + "xfer_disabled": false + }, + "name": "PeopleDAO", + "icon": "https://get.celer.app/cbridge-icons/PEOPLE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "", + "pegged_burn_contract_addr": "", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "SOS", + "address": "0x3b484b82567a09e2588A13D54D032153f0c0aEe0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 128, + "pegged_token": { + "token": { + "symbol": "SOS", + "address": "0x9D39Fc627A6d9d9F8C831c16995b209548cc3401", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "", + "pegged_burn_contract_addr": "", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "FLOKI", + "address": "0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E", + "decimal": 9, + "xfer_disabled": false + }, + "name": "FLOKI", + "icon": "https://i.postimg.cc/d3ZT6L1B/FLOKI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 137, + "pegged_token": { + "token": { + "symbol": "FLOKI", + "address": "0xF752D6f597c116EB844E67cAB1FCf3320fB266FE", + "decimal": 9, + "xfer_disabled": false + }, + "name": "FLOKI", + "icon": "https://i.postimg.cc/d3ZT6L1B/FLOKI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0xb51541df05DE07be38dcfc4a80c05389A54502BB", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "GEL", + "address": "0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Gelato Network Token", + "icon": "https://get.celer.app/cbridge-icons/GEL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 137, + "pegged_token": { + "token": { + "symbol": "GEL", + "address": "0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Gelato Network Token", + "icon": "https://get.celer.app/cbridge-icons/GEL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xb51541df05DE07be38dcfc4a80c05389A54502BB", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "LEAP", + "address": "0x53263d9EF74Db583b15fbC6D5D4e8B83833fa134", + "decimal": 18, + "xfer_disabled": false + }, + "name": "LEAP", + "icon": "https://i.postimg.cc/0N805xB9/LEAP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 137, + "pegged_token": { + "token": { + "symbol": "LEAP", + "address": "0xa47150F5c615dcf4f2e47aad1862a0f2b54C3973", + "decimal": 18, + "xfer_disabled": false + }, + "name": "LEAP", + "icon": "https://i.postimg.cc/0N805xB9/LEAP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0xb51541df05DE07be38dcfc4a80c05389A54502BB", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WXT", + "address": "0xa02120696c7B8fE16C09C749E4598819b2B0E915", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wirex Token", + "icon": "https://get.celer.app/cbridge-icons/WXT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 137, + "pegged_token": { + "token": { + "symbol": "WXT", + "address": "0xBBCA42c60b5290F2c48871A596492F93fF0Ddc82", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wirex Token", + "icon": "https://get.celer.app/cbridge-icons/WXT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x4d58FDC7d0Ee9b674F49a0ADE11F26C3c9426F7A", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "uniETH", + "address": "0xF1376bceF0f78459C0Ed0ba5ddce976F1ddF51F4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Universal ETH", + "icon": "https://i.postimg.cc/9Mccr83D/uniETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 196, + "pegged_token": { + "token": { + "symbol": "uniETH", + "address": "0x15EEfE5B297136b8712291B632404B66A8eF4D25", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Universal ETH", + "icon": "https://i.postimg.cc/9Mccr83D/uniETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0xf5C6825015280CdfD0b56903F9F8B5A2233476F5", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "CGG", + "address": "0x1fE24F25b1Cf609B9c4e7E12D802e3640dFA5e43", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Chain Guardians", + "icon": "https://get.celer.app/cbridge-icons/CGG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 248, + "pegged_token": { + "token": { + "symbol": "CGG", + "address": "0x07A27F90707Ef989C1614a5660f84bCFb535C4B6", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Chain Guardians", + "icon": "https://get.celer.app/cbridge-icons/CGG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x5200000000000000000000000000000000000017", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "EPL", + "address": "0x1236ea13c7339287Cd00AB196aAA8217006b04dc", + "decimal": 18, + "xfer_disabled": false + }, + "name": "EPL", + "icon": "https://i.postimg.cc/VLQrdfb4/EPL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 248, + "pegged_token": { + "token": { + "symbol": "EPL", + "address": "0xd2e426eA2fFa72DD1DC75e7bD148fb959E3E04b2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "EPL", + "icon": "https://i.postimg.cc/VLQrdfb4/EPL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x5200000000000000000000000000000000000017", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "MCHC", + "address": "0xD69F306549e9d96f183B1AecA30B8f4353c2ECC3", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MCH Coin", + "icon": "https://i.postimg.cc/CxRGHbgW/MCHC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 248, + "pegged_token": { + "token": { + "symbol": "MCHC", + "address": "0x5B1CC635E524cAbb63a581c050C895534755F297", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MCH Coin", + "icon": "https://i.postimg.cc/CxRGHbgW/MCHC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x5200000000000000000000000000000000000017", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "MSM", + "address": "0x2C3b62CdeaB213ff58ad24fe8bBDF224c7F66Dce", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MusmeCoin", + "icon": "https://i.postimg.cc/pLzcjYCg/MSM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 248, + "pegged_token": { + "token": { + "symbol": "MSM", + "address": "0xd11E0F63B04868567c297A3119e491707DB19E4e", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MusmeCoin", + "icon": "https://i.postimg.cc/pLzcjYCg/MSM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x5200000000000000000000000000000000000017", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "TCGC", + "address": "0x2FFdE077455f81E28bAa675a46B9c085740216d4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "TCGC", + "icon": "https://i.postimg.cc/FKkXtKw1/TCGC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 248, + "pegged_token": { + "token": { + "symbol": "TCGC", + "address": "0xdDB07cc0f2F9fB7899DbA5a21964f3C6D2740e44", + "decimal": 18, + "xfer_disabled": false + }, + "name": "TCGC", + "icon": "https://i.postimg.cc/FKkXtKw1/TCGC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x5200000000000000000000000000000000000017", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDC", + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 248, + "pegged_token": { + "token": { + "symbol": "USDC", + "address": "0xE1aB220E37AC55A4E2dD5Ba148298A9c09fBD716", + "decimal": 18, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x5200000000000000000000000000000000000017", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDC-intermediary", + "address": "0x6521c50810F0d882B2C64a235805D3f5241857DD", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 248, + "pegged_token": { + "token": { + "symbol": "USDC-intermediary", + "address": "0x92cd9aA44Dad9FE20b9e3205a896a15bCCb221Fe", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x5200000000000000000000000000000000000017", + "canonical_token_contract_addr": "0x4D17C0609B77e456Fb98Ea99a62bCeF09adae32D", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDT", + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 248, + "pegged_token": { + "token": { + "symbol": "USDT", + "address": "0xDc3af65eCBD339309Ec55F109CB214E0325c5eD4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x5200000000000000000000000000000000000017", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WBTC", + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 248, + "pegged_token": { + "token": { + "symbol": "WBTC", + "address": "0xdd30c42D57a0f14DD44c809F59836D57392FDbC9", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x5200000000000000000000000000000000000017", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WETH", + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 248, + "pegged_token": { + "token": { + "symbol": "WETH", + "address": "0x5801E5a61164024Be2554248E33127c6ebC8C113", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x5200000000000000000000000000000000000017", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "GEL", + "address": "0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Gelato", + "icon": "https://get.celer.app/cbridge-icons/GEL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 250, + "pegged_token": { + "token": { + "symbol": "GEL", + "address": "0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Gelato", + "icon": "https://get.celer.app/cbridge-icons/GEL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x38D1e20B0039bFBEEf4096be00175227F8939E51", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "LUSD", + "address": "0x5f98805A4E8be255a32880FDeC7F6728C6568bA0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Liquity USD", + "icon": "https://get.celer.app/cbridge-icons/LUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 250, + "pegged_token": { + "token": { + "symbol": "LUSD", + "address": "0x16365b45EB269B5B5dACB34B4a15399Ec79b95eB", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Liquity USD", + "icon": "https://get.celer.app/cbridge-icons/LUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x38D1e20B0039bFBEEf4096be00175227F8939E51", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "SOS", + "address": "0x3b484b82567a09e2588A13D54D032153f0c0aEe0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 250, + "pegged_token": { + "token": { + "symbol": "SOS", + "address": "0xAB0C1da69e383edB087D09b1eFD333321e5d6493", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x38D1e20B0039bFBEEf4096be00175227F8939E51", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "TRB", + "address": "0x88dF592F8eb5D7Bd38bFeF7dEb0fBc02cf3778a0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Tellor Tributes", + "icon": "https://i.postimg.cc/Rhp1r2kJ/TRB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 314, + "pegged_token": { + "token": { + "symbol": "TRB", + "address": "0x045CE60839d108B43dF9e703d4b25402a6a28a0d", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Tellor Tributes", + "icon": "https://i.postimg.cc/Rhp1r2kJ/TRB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0xa7C9FeDe809b6af10dC52590804c69F40f6f8154", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDC", + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 314, + "pegged_token": { + "token": { + "symbol": "USDC", + "address": "0x2421db204968A367CC2C866CD057fA754Cb84EdF", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xa7C9FeDe809b6af10dC52590804c69F40f6f8154", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDT", + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 314, + "pegged_token": { + "token": { + "symbol": "USDT", + "address": "0x422849B355039bC58F2780cc4854919fC9cfaF94", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xa7C9FeDe809b6af10dC52590804c69F40f6f8154", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WBTC", + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 314, + "pegged_token": { + "token": { + "symbol": "WBTC", + "address": "0x592786E04c47844Aa3B343b19eF2f50A255a477F", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xa7C9FeDe809b6af10dC52590804c69F40f6f8154", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WETH", + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 314, + "pegged_token": { + "token": { + "symbol": "WETH", + "address": "0x522B61755b5FF8176B2931DA7bF1a5F9414Eb710", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0xa7C9FeDe809b6af10dC52590804c69F40f6f8154", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "FLOKI", + "address": "0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E", + "decimal": 9, + "xfer_disabled": false + }, + "name": "FLOKI", + "icon": "https://i.postimg.cc/d3ZT6L1B/FLOKI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 324, + "pegged_token": { + "token": { + "symbol": "FLOKI", + "address": "0xbcADdDAD3F224115fC7efA8f0C5d3778a41D24Dc", + "decimal": 9, + "xfer_disabled": false + }, + "name": "FLOKI", + "icon": "https://i.postimg.cc/d3ZT6L1B/FLOKI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x0D72Be73619e29A67fbD28348AC952288CC9ee46", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "PEPE", + "address": "0x6982508145454Ce325dDbE47a25d4ec3d2311933", + "decimal": 18, + "xfer_disabled": false + }, + "name": "PEPE", + "icon": "https://i.postimg.cc/L50X0cWw/104.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 324, + "pegged_token": { + "token": { + "symbol": "PEPE", + "address": "0x68a8b2DBce73a9221A8cd981Ad6A70d2BaE40668", + "decimal": 18, + "xfer_disabled": false + }, + "name": "PEPE", + "icon": "https://i.postimg.cc/L50X0cWw/104.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x0D72Be73619e29A67fbD28348AC952288CC9ee46", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "CERES", + "address": "0x2e7B0d4F9B2EaF782eD3D160e3a0a4b1a7930aDA", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Ceres Token", + "icon": "https://i.postimg.cc/6pqCj2Qb/CERES.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 592, + "pegged_token": { + "token": { + "symbol": "CERES", + "address": "0xe69583B62D7B7d8a568E1eC08f34B648589F4cF1", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Ceres Token", + "icon": "https://i.postimg.cc/6pqCj2Qb/CERES.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "DAI", + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 592, + "pegged_token": { + "token": { + "symbol": "DAI", + "address": "0x6De33698e9e9b787e09d3Bd7771ef63557E148bb", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "DEO", + "address": "0x5E7F20e72C21f6D0Bf0A2814FD4164176401cf8e", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Demeter Token", + "icon": "https://i.postimg.cc/5jcSRqXB/DEO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 592, + "pegged_token": { + "token": { + "symbol": "DEO", + "address": "0xb51541df05DE07be38dcfc4a80c05389A54502BB", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Demeter Token", + "icon": "https://i.postimg.cc/5jcSRqXB/DEO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDC", + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 592, + "pegged_token": { + "token": { + "symbol": "USDC", + "address": "0x6a2d262D56735DbA19Dd70682B39F6bE9a931D98", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDT", + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 592, + "pegged_token": { + "token": { + "symbol": "USDT", + "address": "0x3795C36e7D12A8c252A20C5a7B455f7c57b60283", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WBTC", + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 592, + "pegged_token": { + "token": { + "symbol": "WBTC", + "address": "0xad543f18cFf85c77E140E3E5E3c3392f6Ba9d5CA", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WETH", + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 592, + "pegged_token": { + "token": { + "symbol": "WETH", + "address": "0x81ECac0D6Be0550A00FF064a4f9dd2400585FE9c", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDC-intermediary", + "address": "0x6521c50810F0d882B2C64a235805D3f5241857DD", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 747, + "pegged_token": { + "token": { + "symbol": "USDC-intermediary", + "address": "0x8d50a024B2F5593605d3cE8183Ca8969226Fcbf8", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573", + "canonical_token_contract_addr": "0x7f27352D5F83Db87a5A3E00f4B07Cc2138D8ee52", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "DAI", + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1030, + "pegged_token": { + "token": { + "symbol": "DAI", + "address": "0x74eaE367d018A5F29be559752e4B67d01cc6b151", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "FLOKI", + "address": "0xcf0C122c6b73ff809C693DB761e7BaeBe62b6a2E", + "decimal": 9, + "xfer_disabled": false + }, + "name": "FLOKI", + "icon": "https://i.postimg.cc/d3ZT6L1B/FLOKI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1030, + "pegged_token": { + "token": { + "symbol": "FLOKI", + "address": "0x9B36f165baB9ebe611d491180418d8De4b8f3a1f", + "decimal": 9, + "xfer_disabled": false + }, + "name": "FLOKI", + "icon": "https://i.postimg.cc/d3ZT6L1B/FLOKI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDC", + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1030, + "pegged_token": { + "token": { + "symbol": "USDC", + "address": "0x6963EfED0aB40F6C3d7BdA44A05dcf1437C44372", + "decimal": 18, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDT", + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1030, + "pegged_token": { + "token": { + "symbol": "USDT", + "address": "0xfe97E85d13ABD9c1c33384E796F10B73905637cE", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WBTC", + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1030, + "pegged_token": { + "token": { + "symbol": "WBTC", + "address": "0x1F545487c62e5ACfEa45dcAdd9c627361d1616D8", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WETH", + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1030, + "pegged_token": { + "token": { + "symbol": "WETH", + "address": "0xa47f43DE2f9623aCb395CA4905746496D2014d57", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "SOS", + "address": "0x3b484b82567a09e2588A13D54D032153f0c0aEe0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1088, + "pegged_token": { + "token": { + "symbol": "SOS", + "address": "0x5d96d4287D1ff115eE50faC0526cf43eCf79bFc6", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x3bbaDFf9aeee4a74D3Cf6da05C30868C9Ff85BB8", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "CONV", + "address": "0xc834Fa996fA3BeC7aAD3693af486ae53D8aA8B50", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Convergence", + "icon": "https://get.celer.app/cbridge-icons/CONV.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1284, + "pegged_token": { + "token": { + "symbol": "CONV", + "address": "0x8006320739fC281da67Ee62eB9b4Ef8ADD5C903a", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Convergence", + "icon": "https://get.celer.app/cbridge-icons/CONV.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDC", + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1284, + "pegged_token": { + "token": { + "symbol": "USDC", + "address": "0x6a2d262D56735DbA19Dd70682B39F6bE9a931D98", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDT", + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1284, + "pegged_token": { + "token": { + "symbol": "USDT", + "address": "0x81ECac0D6Be0550A00FF064a4f9dd2400585FE9c", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WBTC", + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1284, + "pegged_token": { + "token": { + "symbol": "WBTC", + "address": "0x8a4B4C2aCAdeAa7206Df96F00052e41d74a015CE", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC (Celer)", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WETH", + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1284, + "pegged_token": { + "token": { + "symbol": "WETH", + "address": "0x6959027f7850Adf4916ff5Fdc898d958819E5375", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether (Celer)", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "DODO", + "address": "0x43Dfc4159D86F3A37A5A4B3D4580b888ad7d4DDd", + "decimal": 18, + "xfer_disabled": false + }, + "name": "DODO bird", + "icon": "https://get.celer.app/cbridge-icons/DODO.jpg", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1285, + "pegged_token": { + "token": { + "symbol": "DODO", + "address": "0xE9460BD2FFB12b668fA32919C785C239f974D37C", + "decimal": 18, + "xfer_disabled": false + }, + "name": "DODO bird", + "icon": "https://get.celer.app/cbridge-icons/DODO.jpg", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x374B8a9f3eC5eB2D97ECA84Ea27aCa45aa1C57EF", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "SOS", + "address": "0x3b484b82567a09e2588A13D54D032153f0c0aEe0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1285, + "pegged_token": { + "token": { + "symbol": "SOS", + "address": "0xad543f18cFf85c77E140E3E5E3c3392f6Ba9d5CA", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x374B8a9f3eC5eB2D97ECA84Ea27aCa45aa1C57EF", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "DAI", + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 2222, + "pegged_token": { + "token": { + "symbol": "DAI", + "address": "0x49f2c0add1A345F4c76831c1AA3884fc523Ca5FE", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xF8Bf9988206c4de87F52A3c24486E4367B7088CB", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDC", + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 2222, + "pegged_token": { + "token": { + "symbol": "USDC", + "address": "0x23367BEA9B6931690960d8c59f6e708630f24E58", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xF8Bf9988206c4de87F52A3c24486E4367B7088CB", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDT", + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 2222, + "pegged_token": { + "token": { + "symbol": "USDT", + "address": "0xfB1af1baFE108906C0f1f3B36D15919B95ee95BD", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xF8Bf9988206c4de87F52A3c24486E4367B7088CB", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WBTC", + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 2222, + "pegged_token": { + "token": { + "symbol": "WBTC", + "address": "0xaEa7D9Bc694a92ad0EFFfF0F30B700F7c4B23ba6", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xF8Bf9988206c4de87F52A3c24486E4367B7088CB", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WETH", + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 2222, + "pegged_token": { + "token": { + "symbol": "WETH", + "address": "0x9591865D9d4BBD3b5FA8a8E2400fD530D1a16191", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0xF8Bf9988206c4de87F52A3c24486E4367B7088CB", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WBTC", + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 7700, + "pegged_token": { + "token": { + "symbol": "WBTC", + "address": "0x08638a74A8134c747Dce29B57472cc2B57F35653", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xa7C9FeDe809b6af10dC52590804c69F40f6f8154", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "DAI", + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 8217, + "pegged_token": { + "token": { + "symbol": "DAI", + "address": "0x317F8d18FB16E49a958Becd0EA72f8E153d25654", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Dai Stablecoin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xb3833Ecd19D4Ff964fA7bc3f8aC070ad5e360E56", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDC", + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 8217, + "pegged_token": { + "token": { + "symbol": "USDC", + "address": "0x53bB26dc8C5EFC6c95C37155aCa487d1D043436a", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xb3833Ecd19D4Ff964fA7bc3f8aC070ad5e360E56", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDT", + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 8217, + "pegged_token": { + "token": { + "symbol": "USDT", + "address": "0x3c790b38f466514ffCB4230e7B2334e52B64c942", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xb3833Ecd19D4Ff964fA7bc3f8aC070ad5e360E56", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WBTC", + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 8217, + "pegged_token": { + "token": { + "symbol": "WBTC", + "address": "0x1C428a6539A40eC5Bb481631266a51cd19b233B1", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC (Celer)", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xb3833Ecd19D4Ff964fA7bc3f8aC070ad5e360E56", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WETH", + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 8217, + "pegged_token": { + "token": { + "symbol": "WETH", + "address": "0xB66954619363145a05eF835547449EB9050d82f6", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether (Celer)", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0xb3833Ecd19D4Ff964fA7bc3f8aC070ad5e360E56", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "DAI", + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 9001, + "pegged_token": { + "token": { + "symbol": "DAI", + "address": "0x940dAAbA3F713abFabD79CdD991466fe698CBe54", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Dai Stablecoin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xC1d6E421a062Fdbb26C31Db4a2113dF0F678CD04", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDC", + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 9001, + "pegged_token": { + "token": { + "symbol": "USDC", + "address": "0xe46910336479F254723710D57e7b683F3315b22B", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xC1d6E421a062Fdbb26C31Db4a2113dF0F678CD04", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDT", + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 9001, + "pegged_token": { + "token": { + "symbol": "USDT", + "address": "0xb72A7567847abA28A2819B855D7fE679D4f59846", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xC1d6E421a062Fdbb26C31Db4a2113dF0F678CD04", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WBTC", + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 9001, + "pegged_token": { + "token": { + "symbol": "WBTC", + "address": "0xb98e169C37ce30Dd47Fdad1f9726Fb832191e60b", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC (Celer)", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xC1d6E421a062Fdbb26C31Db4a2113dF0F678CD04", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WETH", + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 9001, + "pegged_token": { + "token": { + "symbol": "WETH", + "address": "0x153A59d48AcEAbedbDCf7a13F67Ae52b434B810B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether (Celer)", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0xC1d6E421a062Fdbb26C31Db4a2113dF0F678CD04", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "OCEAN", + "address": "0x967da4048cD07aB37855c090aAF366e4ce1b9F48", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Ocean Token", + "icon": "https://i.postimg.cc/t4xXD97q/image-504.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 23294, + "pegged_token": { + "token": { + "symbol": "OCEAN", + "address": "0x39d22B78A7651A76Ffbde2aaAB5FD92666Aca520", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Ocean Token", + "icon": "https://i.postimg.cc/t4xXD97q/image-504.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0xEF3967C8A80f6090D509f822Cf11C2F2795BE0C8", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDC", + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 23294, + "pegged_token": { + "token": { + "symbol": "USDC", + "address": "0x2c2E3812742Ab2DA53a728A09F5DE670Aba584b6", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xEF3967C8A80f6090D509f822Cf11C2F2795BE0C8", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDT", + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 23294, + "pegged_token": { + "token": { + "symbol": "USDT", + "address": "0xE48151964556381B33f93E05E36381Fd53Ec053E", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xEF3967C8A80f6090D509f822Cf11C2F2795BE0C8", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WBTC", + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 23294, + "pegged_token": { + "token": { + "symbol": "WBTC", + "address": "0xE9533976C590200E32d95C53f06AE12d292cFc47", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xEF3967C8A80f6090D509f822Cf11C2F2795BE0C8", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WETH", + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 23294, + "pegged_token": { + "token": { + "symbol": "WETH", + "address": "0xfc6b18d694F2D137dB762B152736Ba098F9808d9", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0xEF3967C8A80f6090D509f822Cf11C2F2795BE0C8", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "uniETH", + "address": "0xF1376bceF0f78459C0Ed0ba5ddce976F1ddF51F4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Universal ETH", + "icon": "https://i.postimg.cc/9Mccr83D/uniETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 42161, + "pegged_token": { + "token": { + "symbol": "uniETH", + "address": "0x3d15fD46CE9e551498328B1C83071D9509E2C3a0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Universal ETH", + "icon": "https://i.postimg.cc/9Mccr83D/uniETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0xc72e7fC220e650e93495622422F3c14fb03aAf6B", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "DAI", + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 42262, + "pegged_token": { + "token": { + "symbol": "DAI", + "address": "0x5a4Ba16C2AeB295822A95280A7c7149E87769E6A", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Dai Stablecoin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDC", + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 42262, + "pegged_token": { + "token": { + "symbol": "USDC", + "address": "0x81ECac0D6Be0550A00FF064a4f9dd2400585FE9c", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDT", + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 42262, + "pegged_token": { + "token": { + "symbol": "USDT", + "address": "0x4Bf769b05E832FCdc9053fFFBC78Ca889aCb5E1E", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WETH", + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 42262, + "pegged_token": { + "token": { + "symbol": "WETH", + "address": "0x6a2d262D56735DbA19Dd70682B39F6bE9a931D98", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether (Celer)", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "DODO", + "address": "0x43Dfc4159D86F3A37A5A4B3D4580b888ad7d4DDd", + "decimal": 18, + "xfer_disabled": false + }, + "name": "DODO bird", + "icon": "https://get.celer.app/cbridge-icons/DODO.jpg", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "DODO", + "address": "0xAEDB70D42161e6e135250150EA561dD77a694798", + "decimal": 18, + "xfer_disabled": false + }, + "name": "DODO bird", + "icon": "https://get.celer.app/cbridge-icons/DODO.jpg", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x88DCDC47D2f83a99CF0000FDF667A468bB958a78", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "DOMI", + "address": "0x45C2F8c9B4c0bDC76200448cc26C48ab6ffef83F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Domi", + "icon": "https://get.celer.app/cbridge-icons/Domi.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "DOMI", + "address": "0xFc6Da929c031162841370af240dEc19099861d3B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Domi", + "icon": "https://get.celer.app/cbridge-icons/Domi.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x88DCDC47D2f83a99CF0000FDF667A468bB958a78", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "IBEX", + "address": "0xF655C8567E0f213e6C634CD2A68d992152161dC6", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Impermax", + "icon": "https://i.postimg.cc/VvRQDGR2/IBEX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "IBEX", + "address": "0x089d3dAF549f99553C2182DB24bC4336A4F0C824", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Impermax", + "icon": "https://i.postimg.cc/VvRQDGR2/IBEX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0xb774C6f82d1d5dBD36894762330809e512feD195", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "LUSD", + "address": "0x5f98805A4E8be255a32880FDeC7F6728C6568bA0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Liquity USD", + "icon": "https://get.celer.app/cbridge-icons/LUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "LUSD", + "address": "0xDA0019E7e50Ee4990440b1aa5dFFCAC6E27Ee27B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Liquity USD", + "icon": "https://get.celer.app/cbridge-icons/LUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x88DCDC47D2f83a99CF0000FDF667A468bB958a78", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "SOS", + "address": "0x3b484b82567a09e2588A13D54D032153f0c0aEe0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "SOS", + "address": "0x63B0B80ee068D3CF46392c34025FA13a1F3B3F80", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OpenDAO", + "icon": "https://get.celer.app/cbridge-icons/SOS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x88DCDC47D2f83a99CF0000FDF667A468bB958a78", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WXT", + "address": "0xa02120696c7B8fE16C09C749E4598819b2B0E915", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wirex Token", + "icon": "https://get.celer.app/cbridge-icons/WXT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "WXT", + "address": "0xfcDe4A87b8b6FA58326BB462882f1778158B02F1", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wirex Token", + "icon": "https://get.celer.app/cbridge-icons/WXT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0x88DCDC47D2f83a99CF0000FDF667A468bB958a78", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "uniETH", + "address": "0xF1376bceF0f78459C0Ed0ba5ddce976F1ddF51F4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Universal ETH", + "icon": "https://i.postimg.cc/9Mccr83D/uniETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 59144, + "pegged_token": { + "token": { + "symbol": "uniETH", + "address": "0x15EEfE5B297136b8712291B632404B66A8eF4D25", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Universal ETH", + "icon": "https://i.postimg.cc/9Mccr83D/uniETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x9Bb46D5100d2Db4608112026951c9C965b233f4D", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "DAI", + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 210425, + "pegged_token": { + "token": { + "symbol": "DAI", + "address": "0x3795C36e7D12A8c252A20C5a7B455f7c57b60283", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xD340BC3Ec35e63BcF929C5A9ad3AE5B1EBDbE678", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0x31d95c7fc6b5520B4BdCD78Efa689dD1CCa5741E" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDC", + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 210425, + "pegged_token": { + "token": { + "symbol": "USDC", + "address": "0x81ECac0D6Be0550A00FF064a4f9dd2400585FE9c", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xD340BC3Ec35e63BcF929C5A9ad3AE5B1EBDbE678", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0x31d95c7fc6b5520B4BdCD78Efa689dD1CCa5741E" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDT", + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 210425, + "pegged_token": { + "token": { + "symbol": "USDT", + "address": "0x6a2d262D56735DbA19Dd70682B39F6bE9a931D98", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xD340BC3Ec35e63BcF929C5A9ad3AE5B1EBDbE678", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0x31d95c7fc6b5520B4BdCD78Efa689dD1CCa5741E" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WBTC", + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 210425, + "pegged_token": { + "token": { + "symbol": "WBTC", + "address": "0x7f27352D5F83Db87a5A3E00f4B07Cc2138D8ee52", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "0xD340BC3Ec35e63BcF929C5A9ad3AE5B1EBDbE678", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0x31d95c7fc6b5520B4BdCD78Efa689dD1CCa5741E" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WETH", + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 210425, + "pegged_token": { + "token": { + "symbol": "WETH", + "address": "0x4Bf769b05E832FCdc9053fFFBC78Ca889aCb5E1E", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0xD340BC3Ec35e63BcF929C5A9ad3AE5B1EBDbE678", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0x31d95c7fc6b5520B4BdCD78Efa689dD1CCa5741E" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "uniETH", + "address": "0xF1376bceF0f78459C0Ed0ba5ddce976F1ddF51F4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Universal ETH", + "icon": "https://i.postimg.cc/9Mccr83D/uniETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 534352, + "pegged_token": { + "token": { + "symbol": "uniETH", + "address": "0x15EEfE5B297136b8712291B632404B66A8eF4D25", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Universal ETH", + "icon": "https://i.postimg.cc/9Mccr83D/uniETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "0x2E8DD00e5793a316144CC77b59f80ACcF7cc41Ce", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "DAI", + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12340001, + "pegged_token": { + "token": { + "symbol": "DAI", + "address": "A.231cc0dbbcffc4b7.ceDAI.Vault", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "08dd120226ec2213", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "RLY", + "address": "0xf1f955016EcbCd7321c7266BccFB96c68ea5E49b", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Rally", + "icon": "https://get.celer.app/cbridge-icons/RLY.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12340001, + "pegged_token": { + "token": { + "symbol": "RLY", + "address": "A.231cc0dbbcffc4b7.RLY.Vault", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Rally", + "icon": "https://get.celer.app/cbridge-icons/RLY.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "08dd120226ec2213", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDT", + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12340001, + "pegged_token": { + "token": { + "symbol": "USDT", + "address": "A.231cc0dbbcffc4b7.ceUSDT.Vault", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "08dd120226ec2213", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WBTC", + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC ", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12340001, + "pegged_token": { + "token": { + "symbol": "WBTC", + "address": "A.231cc0dbbcffc4b7.ceWBTC.Vault", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC ", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "08dd120226ec2213", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WETH", + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12340001, + "pegged_token": { + "token": { + "symbol": "WETH", + "address": "A.231cc0dbbcffc4b7.ceWETH.Vault", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/ETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "08dd120226ec2213", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "DAI", + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12360001, + "pegged_token": { + "token": { + "symbol": "DAI", + "address": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::DaiCoin", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Dai Stablecoin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDC", + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12360001, + "pegged_token": { + "token": { + "symbol": "USDC", + "address": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdcCoin", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDT", + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12360001, + "pegged_token": { + "token": { + "symbol": "USDT", + "address": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::UsdtCoin", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WBTC", + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12360001, + "pegged_token": { + "token": { + "symbol": "WBTC", + "address": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WbtcCoin", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC (Celer)", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WETH", + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12360001, + "pegged_token": { + "token": { + "symbol": "WETH", + "address": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::WethCoin", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped Ether (Celer)", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "DAI", + "address": "0x6B175474E89094C44Da98b954EedeAC495271d0F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Dai Stablecoin", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12370001, + "pegged_token": { + "token": { + "symbol": "DAI", + "address": "94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690::celer_dai_coin::CELER_DAI_COIN", + "decimal": 9, + "xfer_disabled": false + }, + "name": "Dai Stablecoin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/DAI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "PSTAKE", + "address": "0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "decimal": 18, + "xfer_disabled": false + }, + "name": "pSTAKE Finance", + "icon": "https://i.postimg.cc/gjCF4GVq/PSTAKE-NEW.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12370001, + "pegged_token": { + "token": { + "symbol": "PSTAKE", + "address": "b66e9e1cd25e8be90091c4f20b42f0472ea22d4244f3bc2241891ed7ad2d80de::celer_pstake_coin::CELER_PSTAKE_COIN", + "decimal": 9, + "xfer_disabled": false + }, + "name": "pSTAKE Finance", + "icon": "https://i.postimg.cc/gjCF4GVq/PSTAKE-NEW.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDC", + "address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12370001, + "pegged_token": { + "token": { + "symbol": "USDC", + "address": "94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690::celer_usdc_coin::CELER_USDC_COIN", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "USDT", + "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12370001, + "pegged_token": { + "token": { + "symbol": "USDT", + "address": "94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690::celer_usdt_coin::CELER_USDT_COIN", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD (Celer)", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WBTC", + "address": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12370001, + "pegged_token": { + "token": { + "symbol": "WBTC", + "address": "94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690::celer_wbtc_coin::CELER_WBTC_COIN", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Wrapped BTC (Celer)", + "icon": "https://get.celer.app/cbridge-icons/WBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xB37D31b2A74029B5951a2778F959282E2D518595", + "pegged_burn_contract_addr": "94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1, + "org_token": { + "token": { + "symbol": "WETH", + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12370001, + "pegged_token": { + "token": { + "symbol": "WETH", + "address": "94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690::celer_weth_coin::CELER_WETH_COIN", + "decimal": 9, + "xfer_disabled": false + }, + "name": "Wrapped Ether (Celer)", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7510792A3B1969F9307F3845CE88e39578f2bAE1", + "pegged_burn_contract_addr": "94e7a8e71830d2b34b3edaa195dc24c45d142584f06fa257b73af753d766e690", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 10, + "org_token": { + "token": { + "symbol": "AELIN", + "address": "0x61BAADcF22d2565B0F471b291C475db5555e0b76", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Aelin", + "icon": "https://get.celer.app/cbridge-icons/AELIN.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "AELIN", + "address": "0xa9C125BF4C8bB26f299c00969532B66732b1F758", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Aelin", + "icon": "https://get.celer.app/cbridge-icons/AELIN.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xbCfeF6Bb4597e724D720735d32A9249E0640aA11", + "pegged_burn_contract_addr": "0x16365b45EB269B5B5dACB34B4a15399Ec79b95eB", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 10, + "org_token": { + "token": { + "symbol": "OP", + "address": "0x4200000000000000000000000000000000000042", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Optimism", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/OP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "OP", + "address": "0x170C84E3b1D282f9628229836086716141995200", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Optimism", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/OP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x6e380ad5D15249eF2DE576E3189fc49B5713BE4f", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 10, + "org_token": { + "token": { + "symbol": "KWENTA", + "address": "0x920Cf626a271321C151D027030D5d08aF699456b", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Kwenta", + "icon": "https://i.postimg.cc/43TGJr1T/KWENTA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 8453, + "pegged_token": { + "token": { + "symbol": "KWENTA", + "address": "0x37Ab9F42051C112CAAba55AB6487dd74286A0B29", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Kwenta", + "icon": "https://i.postimg.cc/43TGJr1T/KWENTA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x6e380ad5D15249eF2DE576E3189fc49B5713BE4f", + "pegged_burn_contract_addr": "0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 10, + "org_token": { + "token": { + "symbol": "KWENTA", + "address": "0x920Cf626a271321C151D027030D5d08aF699456b", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Kwenta", + "icon": "https://i.postimg.cc/43TGJr1T/KWENTA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 42161, + "pegged_token": { + "token": { + "symbol": "KWENTA", + "address": "0x7fe5e5befa99A57CD690f2e220C251c90422da8B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Kwenta", + "icon": "https://i.postimg.cc/43TGJr1T/KWENTA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x6e380ad5D15249eF2DE576E3189fc49B5713BE4f", + "pegged_burn_contract_addr": "0xc72e7fC220e650e93495622422F3c14fb03aAf6B", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "AI", + "address": "0xA9b038285F43cD6fE9E16B4C80B4B9bCcd3C161b", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Flourishing AI", + "icon": "https://i.postimg.cc/vTzMmCVW/AI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "AI", + "address": "0x6aB4CE36260F201e4E2391Eca2FD7538f71e4131", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Flourishing AI", + "icon": "https://i.postimg.cc/vTzMmCVW/AI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x11a0c9270D88C99e221360BCA50c2f6Fda44A980", + "pegged_burn_contract_addr": "0x52E4f244f380f8fA51816c8a10A63105dd4De084", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "GOV", + "address": "0xcc7a91413769891de2e9ebBfC96D2eb1874b5760", + "decimal": 18, + "xfer_disabled": false + }, + "name": "GovWorld", + "icon": "https://get.celer.app/cbridge-icons/GOV.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "GOV", + "address": "0x05b4Af867DCFf2E45D75d04d52Cda919c7A27E08", + "decimal": 18, + "xfer_disabled": false + }, + "name": "GovWorld", + "icon": "https://get.celer.app/cbridge-icons/GOV.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x11a0c9270D88C99e221360BCA50c2f6Fda44A980", + "pegged_burn_contract_addr": "0x52E4f244f380f8fA51816c8a10A63105dd4De084", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "NMX", + "address": "0xd32d01A43c869EdcD1117C640fBDcfCFD97d9d65", + "decimal": 18, + "xfer_disabled": false + }, + "name": "NMX", + "icon": "https://i.postimg.cc/x8T1vvr8/nmx.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "NMX", + "address": "0xE1ebCa67020162B87aCb7Ee758Ff9C7Aa8CC708c", + "decimal": 18, + "xfer_disabled": false + }, + "name": "NMX", + "icon": "https://i.postimg.cc/x8T1vvr8/nmx.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x11a0c9270D88C99e221360BCA50c2f6Fda44A980", + "pegged_burn_contract_addr": "0x52E4f244f380f8fA51816c8a10A63105dd4De084", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "OKSE", + "address": "0x606FB7969fC1b5CAd58e64b12Cf827FB65eE4875", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "OKSE", + "address": "0x683be00CCa798D59bfBc58C818CbC7C72bE947DC", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x11a0c9270D88C99e221360BCA50c2f6Fda44A980", + "pegged_burn_contract_addr": "0x52E4f244f380f8fA51816c8a10A63105dd4De084", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "REVA", + "address": "0x4FdD92Bd67Acf0676bfc45ab7168b3996F7B4A3B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "REVA", + "address": "0x33CcE3a8BA0bf7Ec56B2CCD2aD9306748a84E4cf", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0x16365b45EB269B5B5dACB34B4a15399Ec79b95eB", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "HAY", + "address": "0x0782b6d8c4551B9760e74c0545a9bCD90bdc41E5", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Hay Destablecoin", + "icon": "https://i.postimg.cc/3xQ6TT1T/logo-256x-256.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 10, + "pegged_token": { + "token": { + "symbol": "HAY", + "address": "0x83250FFEC162E084a23e165434a8A110623ABe38", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Hay Destablecoin", + "icon": "https://i.postimg.cc/3xQ6TT1T/logo-256x-256.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x11a0c9270D88C99e221360BCA50c2f6Fda44A980", + "pegged_burn_contract_addr": "0xC3c5B9474273113efB74e7Da43B5AAba0Cd9699A", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "OKSE", + "address": "0x606FB7969fC1b5CAd58e64b12Cf827FB65eE4875", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 10, + "pegged_token": { + "token": { + "symbol": "OKSE", + "address": "0x259479fBeb1CDe194afA297f36f4216e9C87728c", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x11a0c9270D88C99e221360BCA50c2f6Fda44A980", + "pegged_burn_contract_addr": "0xC3c5B9474273113efB74e7Da43B5AAba0Cd9699A", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "REVA", + "address": "0x4FdD92Bd67Acf0676bfc45ab7168b3996F7B4A3B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 10, + "pegged_token": { + "token": { + "symbol": "REVA", + "address": "0x23C748FeF17518B8DE55065338d7Fa20327472eB", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0x61f85fF2a2f4289Be4bb9B72Fc7010B3142B5f41", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BUSD", + "address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 73, + "pegged_token": { + "token": { + "symbol": "BUSD", + "address": "0x2790A698e9968a6D46A4142E435f72D7d38da1a8", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0xf5C6825015280CdfD0b56903F9F8B5A2233476F5", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "AI", + "address": "0xA9b038285F43cD6fE9E16B4C80B4B9bCcd3C161b", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Flourishing AI", + "icon": "https://i.postimg.cc/vTzMmCVW/AI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 137, + "pegged_token": { + "token": { + "symbol": "AI", + "address": "0xFA78cBa4ebbf8fE28B4fC1468948F16Fda2752b3", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Flourishing AI", + "icon": "https://i.postimg.cc/vTzMmCVW/AI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x11a0c9270D88C99e221360BCA50c2f6Fda44A980", + "pegged_burn_contract_addr": "0xb51541df05DE07be38dcfc4a80c05389A54502BB", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "ATL", + "address": "0x1fD991fb6c3102873ba68a4e6e6a87B3a5c10271", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Atlantis Loan", + "icon": "https://get.celer.app/cbridge-icons/ATL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 137, + "pegged_token": { + "token": { + "symbol": "ATL", + "address": "0xb98e169C37ce30Dd47Fdad1f9726Fb832191e60b", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Atlantis Loan", + "icon": "https://get.celer.app/cbridge-icons/ATL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0x4d58FDC7d0Ee9b674F49a0ADE11F26C3c9426F7A", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "NMX", + "address": "0xd32d01A43c869EdcD1117C640fBDcfCFD97d9d65", + "decimal": 18, + "xfer_disabled": false + }, + "name": "NMX", + "icon": "https://i.postimg.cc/x8T1vvr8/nmx.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 137, + "pegged_token": { + "token": { + "symbol": "NMX", + "address": "0x0cb93b5c42437FE78b3697740D15b46707f97361", + "decimal": 18, + "xfer_disabled": false + }, + "name": "NMX", + "icon": "https://i.postimg.cc/x8T1vvr8/nmx.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x11a0c9270D88C99e221360BCA50c2f6Fda44A980", + "pegged_burn_contract_addr": "0xb51541df05DE07be38dcfc4a80c05389A54502BB", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "OKSE", + "address": "0x606FB7969fC1b5CAd58e64b12Cf827FB65eE4875", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 137, + "pegged_token": { + "token": { + "symbol": "OKSE", + "address": "0xFf1674D39dEf5d3840f4021FAD2c5D4F20520557", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x11a0c9270D88C99e221360BCA50c2f6Fda44A980", + "pegged_burn_contract_addr": "0xb51541df05DE07be38dcfc4a80c05389A54502BB", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "REVA", + "address": "0x4FdD92Bd67Acf0676bfc45ab7168b3996F7B4A3B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 137, + "pegged_token": { + "token": { + "symbol": "REVA", + "address": "0x7C83CaEB3166a53aEE0681549E6452a1f5D94107", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0x4d58FDC7d0Ee9b674F49a0ADE11F26C3c9426F7A", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BNB", + "address": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 169, + "pegged_token": { + "token": { + "symbol": "BNB", + "address": "0xf5C6825015280CdfD0b56903F9F8B5A2233476F5", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0x9Bb46D5100d2Db4608112026951c9C965b233f4D", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "OKSE", + "address": "0x606FB7969fC1b5CAd58e64b12Cf827FB65eE4875", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 250, + "pegged_token": { + "token": { + "symbol": "OKSE", + "address": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x11a0c9270D88C99e221360BCA50c2f6Fda44A980", + "pegged_burn_contract_addr": "0x30F7Aa65d04d289cE319e88193A33A8eB1857fb9", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "REVA", + "address": "0x4FdD92Bd67Acf0676bfc45ab7168b3996F7B4A3B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 250, + "pegged_token": { + "token": { + "symbol": "REVA", + "address": "0xbdd2739AE69A054895Be33A22b2D2ed71a1DE778", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0x38D1e20B0039bFBEEf4096be00175227F8939E51", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BNB", + "address": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB-coin.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 324, + "pegged_token": { + "token": { + "symbol": "BNB", + "address": "0x7400793aAd94C8CA801aa036357d10F5Fd0ce08f", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB-coin.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0x0D72Be73619e29A67fbD28348AC952288CC9ee46", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BUSD", + "address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 324, + "pegged_token": { + "token": { + "symbol": "BUSD", + "address": "0x2039bb4116B4EFc145Ec4f0e2eA75012D6C0f181", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0x0D72Be73619e29A67fbD28348AC952288CC9ee46", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "GGG", + "address": "0xD8047AFECB86e44eFf3aDd991B9F063eD4ca716B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Good Games Guild", + "icon": "https://i.postimg.cc/QMK7DyNG/GGG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 324, + "pegged_token": { + "token": { + "symbol": "GGG", + "address": "0x7E2A6456Bb3eCEcbdb38bC76Ad8dF9e448B15835", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Good Games Guild", + "icon": "https://i.postimg.cc/QMK7DyNG/GGG.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x11a0c9270D88C99e221360BCA50c2f6Fda44A980", + "pegged_burn_contract_addr": "0x0D72Be73619e29A67fbD28348AC952288CC9ee46", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "OKSE", + "address": "0x606FB7969fC1b5CAd58e64b12Cf827FB65eE4875", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 324, + "pegged_token": { + "token": { + "symbol": "OKSE", + "address": "0x8483bf6d5E45e467f2979c5d51B76100AAB60294", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x11a0c9270D88C99e221360BCA50c2f6Fda44A980", + "pegged_burn_contract_addr": "0x0D72Be73619e29A67fbD28348AC952288CC9ee46", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BNB", + "address": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BNB Token", + "icon": "https://get.celer.app/cbridge-icons/BNB-coin.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 592, + "pegged_token": { + "token": { + "symbol": "BNB", + "address": "0x7f27352D5F83Db87a5A3E00f4B07Cc2138D8ee52", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BNB Token", + "icon": "https://get.celer.app/cbridge-icons/BNB-coin.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BUSD", + "address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 592, + "pegged_token": { + "token": { + "symbol": "BUSD", + "address": "0x4Bf769b05E832FCdc9053fFFBC78Ca889aCb5E1E", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "ATL", + "address": "0x1fD991fb6c3102873ba68a4e6e6a87B3a5c10271", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Atlantis Loans", + "icon": "https://get.celer.app/cbridge-icons/ATL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1088, + "pegged_token": { + "token": { + "symbol": "ATL", + "address": "0x4C882ec256823eE773B25b414d36F92ef58a7c0C", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Atlantis Loans", + "icon": "https://get.celer.app/cbridge-icons/ATL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0xb3833Ecd19D4Ff964fA7bc3f8aC070ad5e360E56", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BUSD", + "address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1284, + "pegged_token": { + "token": { + "symbol": "BUSD", + "address": "0xCb4A7569a61300C50Cf80A2be16329AD9F5F8F9e", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance USD (Celer)", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BNB", + "address": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BNB", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 7700, + "pegged_token": { + "token": { + "symbol": "BNB", + "address": "0xFb7F77faaA3b69ef4C15d6305C79AD92B387C89F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BNB", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0xa7C9FeDe809b6af10dC52590804c69F40f6f8154", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BUSD", + "address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 7700, + "pegged_token": { + "token": { + "symbol": "BUSD", + "address": "0x381Ea7A7EE6a1e2982e01E7b6837f775a1a4B07F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0xa7C9FeDe809b6af10dC52590804c69F40f6f8154", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BNB", + "address": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 8453, + "pegged_token": { + "token": { + "symbol": "BNB", + "address": "0x265B25e22bcd7f10a5bD6E6410F10537Cc7567e8", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BUSD", + "address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 8453, + "pegged_token": { + "token": { + "symbol": "BUSD", + "address": "0xa55C7E1274bE5db2275a0BDd055f81e8263b7954", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BNB", + "address": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 9001, + "pegged_token": { + "token": { + "symbol": "BNB", + "address": "0x75364D4F779d0Bd0facD9a218c67f87dD9Aff3b4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance Coin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0xC1d6E421a062Fdbb26C31Db4a2113dF0F678CD04", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BUSD", + "address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 9001, + "pegged_token": { + "token": { + "symbol": "BUSD", + "address": "0x516e6D96896Aea92cE5e78B0348FD997F13802ad", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance USD (Celer)", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0xC1d6E421a062Fdbb26C31Db4a2113dF0F678CD04", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BNB", + "address": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 23294, + "pegged_token": { + "token": { + "symbol": "BNB", + "address": "0xe95E3a9f1a45B5EDa71781448F6047d7B7e31cbF", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0xEF3967C8A80f6090D509f822Cf11C2F2795BE0C8", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "AI", + "address": "0xA9b038285F43cD6fE9E16B4C80B4B9bCcd3C161b", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Flourishing AI", + "icon": "https://i.postimg.cc/vTzMmCVW/AI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 42161, + "pegged_token": { + "token": { + "symbol": "AI", + "address": "0x8d7c2588c365b9e98Ea464b63DBCCDf13ECd9809", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Flourishing AI", + "icon": "https://i.postimg.cc/vTzMmCVW/AI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x11a0c9270D88C99e221360BCA50c2f6Fda44A980", + "pegged_burn_contract_addr": "0xc72e7fC220e650e93495622422F3c14fb03aAf6B", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "OKSE", + "address": "0x606FB7969fC1b5CAd58e64b12Cf827FB65eE4875", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 42161, + "pegged_token": { + "token": { + "symbol": "OKSE", + "address": "0x4313DDa7bc940F3f2B2ddDACF568300165C878CA", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x11a0c9270D88C99e221360BCA50c2f6Fda44A980", + "pegged_burn_contract_addr": "0xc72e7fC220e650e93495622422F3c14fb03aAf6B", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "REVA", + "address": "0x4FdD92Bd67Acf0676bfc45ab7168b3996F7B4A3B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 42161, + "pegged_token": { + "token": { + "symbol": "REVA", + "address": "0x6C68eB45D5c2019136C8362cC928FB4f13F5385d", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0xbdd2739AE69A054895Be33A22b2D2ed71a1DE778", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BNB", + "address": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BNB Token", + "icon": "https://get.celer.app/cbridge-icons/BNB-coin.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 42262, + "pegged_token": { + "token": { + "symbol": "BNB", + "address": "0x3795C36e7D12A8c252A20C5a7B455f7c57b60283", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BNB Token (Celer)", + "icon": "https://get.celer.app/cbridge-icons/BNB-coin.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "AI", + "address": "0xA9b038285F43cD6fE9E16B4C80B4B9bCcd3C161b", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Flourishing AI", + "icon": "https://i.postimg.cc/vTzMmCVW/AI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "AI", + "address": "0x10B3AAF66D90Cb54fca62Dd37d17022555399EE1", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Flourishing AI", + "icon": "https://i.postimg.cc/vTzMmCVW/AI.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x11a0c9270D88C99e221360BCA50c2f6Fda44A980", + "pegged_burn_contract_addr": "0xb774C6f82d1d5dBD36894762330809e512feD195", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "ATL", + "address": "0x1fD991fb6c3102873ba68a4e6e6a87B3a5c10271", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Atlantis Loan", + "icon": "https://get.celer.app/cbridge-icons/ATL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "ATL", + "address": "0x90fBE9dfe76F6EF971c7A297641dfa397099a13e", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Atlantis Loan", + "icon": "https://get.celer.app/cbridge-icons/ATL.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0x88DCDC47D2f83a99CF0000FDF667A468bB958a78", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "OKSE", + "address": "0x606FB7969fC1b5CAd58e64b12Cf827FB65eE4875", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OKSE", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "OKSE", + "address": "0xbc7B0223Dd16cbc679c0D04bA3F4530D76DFbA87", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OKSE", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x11a0c9270D88C99e221360BCA50c2f6Fda44A980", + "pegged_burn_contract_addr": "0xb774C6f82d1d5dBD36894762330809e512feD195", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "REVA", + "address": "0x4FdD92Bd67Acf0676bfc45ab7168b3996F7B4A3B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "REVA", + "address": "0xeE396D4eE16Fd8C7d9bFB039d05F271D3c92e57D", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Reva Token", + "icon": "https://get.celer.app/cbridge-icons/WREVA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0x88DCDC47D2f83a99CF0000FDF667A468bB958a78", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BNB", + "address": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB-coin.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 59144, + "pegged_token": { + "token": { + "symbol": "BNB", + "address": "0xf5C6825015280CdfD0b56903F9F8B5A2233476F5", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB-coin.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0x9Bb46D5100d2Db4608112026951c9C965b233f4D", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BUSD", + "address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 59144, + "pegged_token": { + "token": { + "symbol": "BUSD", + "address": "0x7d43AABC515C356145049227CeE54B608342c0ad", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0x9Bb46D5100d2Db4608112026951c9C965b233f4D", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "SNS", + "address": "0xF3A587d1AC967b40DB59223434BAf0C6e11588EA", + "decimal": 18, + "xfer_disabled": false + }, + "name": "SonorusToken", + "icon": "https://i.postimg.cc/rstbd7Hz/SNS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 59144, + "pegged_token": { + "token": { + "symbol": "SNS", + "address": "0x2AAC15cEaEeC361d904997c102e5be2A7DB25625", + "decimal": 18, + "xfer_disabled": false + }, + "name": "SonorusToken", + "icon": "https://i.postimg.cc/rstbd7Hz/SNS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x11a0c9270D88C99e221360BCA50c2f6Fda44A980", + "pegged_burn_contract_addr": "0x9Bb46D5100d2Db4608112026951c9C965b233f4D", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BNB", + "address": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12340001, + "pegged_token": { + "token": { + "symbol": "BNB", + "address": "A.231cc0dbbcffc4b7.ceBNB.Vault", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "08dd120226ec2213", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BNB", + "address": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance Coin", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12360001, + "pegged_token": { + "token": { + "symbol": "BNB", + "address": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BnbCoin", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Binance Coin (Celer)", + "icon": "https://get.celer.app/cbridge-icons/BNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BUSD", + "address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12360001, + "pegged_token": { + "token": { + "symbol": "BUSD", + "address": "0x8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d::celer_coin_manager::BusdCoin", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Binance USD (Celer)", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "8d87a65ba30e09357fa2edea2c80dbac296e5dec2b18287113500b902942929d", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "USDC", + "address": "0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d", + "decimal": 18, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 999999996, + "pegged_token": { + "token": { + "symbol": "USDC", + "address": "0x4a133e0f9ab0f2e42ca2173d31647813dfe2a8fc10dca5a97fd5ff1ce28fde54", + "decimal": 18, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x11a0c9270D88C99e221360BCA50c2f6Fda44A980", + "pegged_burn_contract_addr": "0xb687d7fb0fcf2a6a9dbe6b9f855d9ed6f028311529b1eec8bb6578a14b90f42c", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BNB", + "address": "0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BNB Token", + "icon": "https://get.celer.app/cbridge-icons/BNB-coin.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1313161554, + "pegged_token": { + "token": { + "symbol": "BNB", + "address": "0xc6bc09a723F2314ad22642B6e33AD2ed6BbA3C9C", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BNB Token", + "icon": "https://get.celer.app/cbridge-icons/BNB-coin.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0xbdd2739AE69A054895Be33A22b2D2ed71a1DE778", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0x4384d5a9D7354C65cE3aee411337bd40493Ad1bC" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "BUSD", + "address": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1313161554, + "pegged_token": { + "token": { + "symbol": "BUSD", + "address": "0x3b40D173b5802733108E047CF538Be178646b2e4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Binance USD", + "icon": "https://get.celer.app/cbridge-icons/BUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x78bc5Ee9F11d133A08b331C2e18fE81BE0Ed02DC", + "pegged_burn_contract_addr": "0xbdd2739AE69A054895Be33A22b2D2ed71a1DE778", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0x4384d5a9D7354C65cE3aee411337bd40493Ad1bC" + }, + { + "org_chain_id": 56, + "org_token": { + "token": { + "symbol": "OKSE", + "address": "0x606FB7969fC1b5CAd58e64b12Cf827FB65eE4875", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1313161554, + "pegged_token": { + "token": { + "symbol": "OKSE", + "address": "0xF942C7bf8721732e936AD3e5F9e7cAe6183637D8", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Okse", + "icon": "https://get.celer.app/cbridge-icons/OKSE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x11a0c9270D88C99e221360BCA50c2f6Fda44A980", + "pegged_burn_contract_addr": "0xbdd2739AE69A054895Be33A22b2D2ed71a1DE778", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 137, + "org_token": { + "token": { + "symbol": "SAFLE", + "address": "0x04b33078Ea1aEf29bf3fB29c6aB7B200C58ea126", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Safle", + "icon": "https://get.celer.app/cbridge-icons/safle.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "SAFLE", + "address": "0x73afC23510b40dcbEABc25fFBc8C2976eD9f950c", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Safle", + "icon": "https://get.celer.app/cbridge-icons/safle.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xc1a2D967DfAa6A10f3461bc21864C23C1DD51EeA", + "pegged_burn_contract_addr": "0xd443FE6bf23A4C9B78312391A30ff881a097580E", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 137, + "org_token": { + "token": { + "symbol": "MATIC", + "address": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Matic Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 169, + "pegged_token": { + "token": { + "symbol": "MATIC", + "address": "0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Matic Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xc1a2D967DfAa6A10f3461bc21864C23C1DD51EeA", + "pegged_burn_contract_addr": "0x9Bb46D5100d2Db4608112026951c9C965b233f4D", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 137, + "org_token": { + "token": { + "symbol": "MATIC", + "address": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Matic Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 248, + "pegged_token": { + "token": { + "symbol": "MATIC", + "address": "0x96DE4B1F5345E0d812c574193D75278ffB48B438", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Matic Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xc1a2D967DfAa6A10f3461bc21864C23C1DD51EeA", + "pegged_burn_contract_addr": "0x5200000000000000000000000000000000000017", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 137, + "org_token": { + "token": { + "symbol": "RAYS", + "address": "0x2D027E55B85429e9F205930A8afF6D8E6C8c3021", + "decimal": 18, + "xfer_disabled": false + }, + "name": "RAYS", + "icon": "https://i.postimg.cc/vHGTsnHC/RAYS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 248, + "pegged_token": { + "token": { + "symbol": "RAYS", + "address": "0xC885f4eE4E4c0C3A36E11BAC28E2E1a2Ba644d39", + "decimal": 18, + "xfer_disabled": false + }, + "name": "RAYS", + "icon": "https://i.postimg.cc/vHGTsnHC/RAYS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x4C882ec256823eE773B25b414d36F92ef58a7c0C", + "pegged_burn_contract_addr": "0x5200000000000000000000000000000000000017", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 137, + "org_token": { + "token": { + "symbol": "TSUGT", + "address": "0x70e29b7E036B14D496431b77e0B6EB0008be6165", + "decimal": 8, + "xfer_disabled": false + }, + "name": "TSUBASA Governance Token", + "icon": "https://i.postimg.cc/dQ6MM99M/TSUGT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 248, + "pegged_token": { + "token": { + "symbol": "TSUGT", + "address": "0xC938B80729EFbf601be1979C6e7b10902c8635C5", + "decimal": 18, + "xfer_disabled": false + }, + "name": "TSUBASA Governance Token", + "icon": "https://i.postimg.cc/dQ6MM99M/TSUGT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x4C882ec256823eE773B25b414d36F92ef58a7c0C", + "pegged_burn_contract_addr": "0x5200000000000000000000000000000000000017", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 137, + "org_token": { + "token": { + "symbol": "MATIC", + "address": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MATIC Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 324, + "pegged_token": { + "token": { + "symbol": "MATIC", + "address": "0x28a487240e4D45CfF4A2980D334CC933B7483842", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MATIC Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xc1a2D967DfAa6A10f3461bc21864C23C1DD51EeA", + "pegged_burn_contract_addr": "0x0D72Be73619e29A67fbD28348AC952288CC9ee46", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 137, + "org_token": { + "token": { + "symbol": "MATIC", + "address": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Matic Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 592, + "pegged_token": { + "token": { + "symbol": "MATIC", + "address": "0xdd90E5E87A2081Dcf0391920868eBc2FFB81a1aF", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Matic Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xc1a2D967DfAa6A10f3461bc21864C23C1DD51EeA", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573" + }, + { + "org_chain_id": 137, + "org_token": { + "token": { + "symbol": "MAI", + "address": "0xa3Fa99A148fA48D14Ed51d610c367C61876997F1", + "decimal": 18, + "xfer_disabled": false + }, + "name": "miMATIC", + "icon": "https://i.postimg.cc/X7r8mG4p/77-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1285, + "pegged_token": { + "token": { + "symbol": "MAI", + "address": "0x48421FF1c6B93988138130865C4B7Cce10358271", + "decimal": 18, + "xfer_disabled": false + }, + "name": "miMATIC", + "icon": "https://i.postimg.cc/X7r8mG4p/77-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xc1a2D967DfAa6A10f3461bc21864C23C1DD51EeA", + "pegged_burn_contract_addr": "0x374B8a9f3eC5eB2D97ECA84Ea27aCa45aa1C57EF", + "canonical_token_contract_addr": "0xFb2019DfD635a03cfFF624D210AEe6AF2B00fC2C", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 137, + "org_token": { + "token": { + "symbol": "MATIC", + "address": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Matic Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 8453, + "pegged_token": { + "token": { + "symbol": "MATIC", + "address": "0x223fB0CeB2C6e5310264EFe38151d7D083db91f1", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Matic Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xc1a2D967DfAa6A10f3461bc21864C23C1DD51EeA", + "pegged_burn_contract_addr": "0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 137, + "org_token": { + "token": { + "symbol": "MATIC", + "address": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Matic Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 23294, + "pegged_token": { + "token": { + "symbol": "MATIC", + "address": "0xa349005a68FA33e8DACAAa850c45175bbcD49B19", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Matic Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xc1a2D967DfAa6A10f3461bc21864C23C1DD51EeA", + "pegged_burn_contract_addr": "0xEF3967C8A80f6090D509f822Cf11C2F2795BE0C8", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 137, + "org_token": { + "token": { + "symbol": "MAI", + "address": "0xa3Fa99A148fA48D14Ed51d610c367C61876997F1", + "decimal": 18, + "xfer_disabled": false + }, + "name": "miMATIC", + "icon": "https://i.postimg.cc/X7r8mG4p/77-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "MAI", + "address": "0x61f85fF2a2f4289Be4bb9B72Fc7010B3142B5f41", + "decimal": 18, + "xfer_disabled": false + }, + "name": "miMATIC", + "icon": "https://i.postimg.cc/X7r8mG4p/77-1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xc1a2D967DfAa6A10f3461bc21864C23C1DD51EeA", + "pegged_burn_contract_addr": "0x88DCDC47D2f83a99CF0000FDF667A468bB958a78", + "canonical_token_contract_addr": "0x5c49b268c9841AFF1Cc3B0a418ff5c3442eE3F3b", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 137, + "org_token": { + "token": { + "symbol": "MATIC", + "address": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MATIC Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 59144, + "pegged_token": { + "token": { + "symbol": "MATIC", + "address": "0x265B25e22bcd7f10a5bD6E6410F10537Cc7567e8", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MATIC Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xc1a2D967DfAa6A10f3461bc21864C23C1DD51EeA", + "pegged_burn_contract_addr": "0x9Bb46D5100d2Db4608112026951c9C965b233f4D", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 137, + "org_token": { + "token": { + "symbol": "MATIC", + "address": "0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Matic Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12340001, + "pegged_token": { + "token": { + "symbol": "MATIC", + "address": "A.231cc0dbbcffc4b7.ceMATIC.Vault", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Matic Token", + "icon": "https://i.postimg.cc/4dxQXmk7/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xc1a2D967DfAa6A10f3461bc21864C23C1DD51EeA", + "pegged_burn_contract_addr": "08dd120226ec2213", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 248, + "org_token": { + "token": { + "symbol": "WOAS", + "address": "0x5200000000000000000000000000000000000001", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Oasys", + "icon": "https://i.postimg.cc/85N6sVq2/OAS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "WOAS", + "address": "0x03b4BD7D900dEFe84098665e3d96dCA73a1f608B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Oasys", + "icon": "https://i.postimg.cc/85N6sVq2/OAS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xAbFFc70d4434D374c85B10860A8Be1851c0b838c", + "pegged_burn_contract_addr": "0x52E4f244f380f8fA51816c8a10A63105dd4De084", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 248, + "org_token": { + "token": { + "symbol": "WOAS", + "address": "0x5200000000000000000000000000000000000001", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Oasys", + "icon": "https://i.postimg.cc/85N6sVq2/OAS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 137, + "pegged_token": { + "token": { + "symbol": "WOAS", + "address": "0xE4C3d8E3B9D5848FBa6BC6014C02e747eb95509b", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Oasys", + "icon": "https://i.postimg.cc/85N6sVq2/OAS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xAbFFc70d4434D374c85B10860A8Be1851c0b838c", + "pegged_burn_contract_addr": "0xb51541df05DE07be38dcfc4a80c05389A54502BB", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 248, + "org_token": { + "token": { + "symbol": "WOAS", + "address": "0x5200000000000000000000000000000000000001", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Oasys", + "icon": "https://i.postimg.cc/85N6sVq2/OAS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "WOAS", + "address": "0xd1CBE1f826a427128cB9a33BCe9224d2D742D518", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Oasys", + "icon": "https://i.postimg.cc/85N6sVq2/OAS.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xAbFFc70d4434D374c85B10860A8Be1851c0b838c", + "pegged_burn_contract_addr": "0xb774C6f82d1d5dBD36894762330809e512feD195", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 250, + "org_token": { + "token": { + "symbol": "FTM", + "address": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Fantom", + "icon": "https://i.postimg.cc/90JnpvdK/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 9001, + "pegged_token": { + "token": { + "symbol": "FTM", + "address": "0x729416B1F442f204989f1C9f0d58321F878808eD", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Fantom (Celer)", + "icon": "https://i.postimg.cc/90JnpvdK/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7D91603E79EA89149BAf73C9038c51669D8F03E9", + "pegged_burn_contract_addr": "0xC1d6E421a062Fdbb26C31Db4a2113dF0F678CD04", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 250, + "org_token": { + "token": { + "symbol": "FTM", + "address": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Fantom", + "icon": "https://i.postimg.cc/90JnpvdK/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 42262, + "pegged_token": { + "token": { + "symbol": "FTM", + "address": "0x7f27352D5F83Db87a5A3E00f4B07Cc2138D8ee52", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Fantom (Celer)", + "icon": "https://i.postimg.cc/90JnpvdK/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7D91603E79EA89149BAf73C9038c51669D8F03E9", + "pegged_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 250, + "org_token": { + "token": { + "symbol": "FTM", + "address": "0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Fantom", + "icon": "https://i.postimg.cc/90JnpvdK/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1313161554, + "pegged_token": { + "token": { + "symbol": "FTM", + "address": "0x1fE622E91e54D6AD00B01917351Ea6081426764A", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Fantom", + "icon": "https://i.postimg.cc/90JnpvdK/image-294.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x7D91603E79EA89149BAf73C9038c51669D8F03E9", + "pegged_burn_contract_addr": "0x4384d5a9D7354C65cE3aee411337bd40493Ad1bC", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 288, + "org_token": { + "token": { + "symbol": "OLO", + "address": "0x5008F837883EA9a07271a1b5eB0658404F5a9610", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OolongSwap Token", + "icon": "https://get.celer.app/cbridge-icons/OLO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "OLO", + "address": "0xBaDE2a874e27b5B0920DA93EfE6845036C6fb5A4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OolongSwap Token", + "icon": "https://get.celer.app/cbridge-icons/OLO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x8db213bE5268a2b8B78Af08468ff1EA422073Da0", + "pegged_burn_contract_addr": "0x16365b45EB269B5B5dACB34B4a15399Ec79b95eB", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 288, + "org_token": { + "token": { + "symbol": "WAGMIV1", + "address": "0xCe055Ea4f29fFB8bf35E852522B96aB67Cbe8197", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Boba WAGMI v1 Option", + "icon": "https://get.celer.app/cbridge-icons/WAGMIV1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "WAGMIV1", + "address": "0x15EEf5ad78C4d9E5f247e68978ca32b5D25cA524", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Boba WAGMI v1 Option", + "icon": "https://get.celer.app/cbridge-icons/WAGMIV1.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x8db213bE5268a2b8B78Af08468ff1EA422073Da0", + "pegged_burn_contract_addr": "0x16365b45EB269B5B5dACB34B4a15399Ec79b95eB", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 288, + "org_token": { + "token": { + "symbol": "OLO", + "address": "0x5008F837883EA9a07271a1b5eB0658404F5a9610", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OolongSwap Token", + "icon": "https://get.celer.app/cbridge-icons/OLO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "OLO", + "address": "0xa4918c50aadBa9EDCaf302562739c1b1C1367AA9", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OolongSwap Token", + "icon": "https://get.celer.app/cbridge-icons/OLO.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x8db213bE5268a2b8B78Af08468ff1EA422073Da0", + "pegged_burn_contract_addr": "0xd443FE6bf23A4C9B78312391A30ff881a097580E", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 336, + "org_token": { + "token": { + "symbol": "SDN", + "address": "0x0f933Dc137D21cA519ae4C7E93f87a4C8EF365Ef", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Shiden Network", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/shiden.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 592, + "pegged_token": { + "token": { + "symbol": "SDN", + "address": "0x75364D4F779d0Bd0facD9a218c67f87dD9Aff3b4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Shiden Network", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/shiden.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573", + "pegged_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 592, + "org_token": { + "token": { + "symbol": "ASTR", + "address": "0xAeaaf0e2c81Af264101B9129C00F4440cCF0F720", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Astar", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/Astar.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "ASTR", + "address": "0xe593F3509eb2a620DC61078bcdEDbA355F083E8B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Astar", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/Astar.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xbCfeF6Bb4597e724D720735d32A9249E0640aA11", + "pegged_burn_contract_addr": "0x16365b45EB269B5B5dACB34B4a15399Ec79b95eB", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 592, + "org_token": { + "token": { + "symbol": "SEAN", + "address": "0xEe8138B3bd03905cF84aFE10cCD0dCcb820eE08E", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Starfish Token", + "icon": "https://i.imgur.com/FcQAOjM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "SEAN", + "address": "0xA719CB79Af39A9C10eDA2755E0938bCE35e9DE24", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Starfish Token", + "icon": "https://i.imgur.com/FcQAOjM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x243F56Bad0170a6c050a91925245AD8360350108", + "pegged_burn_contract_addr": "0x52E4f244f380f8fA51816c8a10A63105dd4De084", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 592, + "org_token": { + "token": { + "symbol": "SEAN", + "address": "0xEe8138B3bd03905cF84aFE10cCD0dCcb820eE08E", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Starfish Token", + "icon": "https://i.imgur.com/FcQAOjM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 42161, + "pegged_token": { + "token": { + "symbol": "SEAN", + "address": "0x37596F20adEf5CC9618c8b6Ddfa9DCB6329CB0fD", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Starfish Token", + "icon": "https://i.imgur.com/FcQAOjM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x243F56Bad0170a6c050a91925245AD8360350108", + "pegged_burn_contract_addr": "0xc72e7fC220e650e93495622422F3c14fb03aAf6B", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 592, + "org_token": { + "token": { + "symbol": "ASTR", + "address": "0xAeaaf0e2c81Af264101B9129C00F4440cCF0F720", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Astar", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/Astar.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 999999997, + "pegged_token": { + "token": { + "symbol": "ASTR", + "address": "0xdDf7f9E95E8776bb71D9Ad0A4F83Da88Eb3f4F45", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Astar", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/Astar.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xbCfeF6Bb4597e724D720735d32A9249E0640aA11", + "pegged_burn_contract_addr": "0x0ec4a924e58b579049c67979bfabb454424e74de", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1625, + "org_token": { + "token": { + "symbol": "cgUSDT", + "address": "0xD03ee9632901D1E355D39158A474fA42b248BC05", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "cgUSDT", + "address": "0xFDDf2bD09721F7c6d10DEAE54821cd2E3E9281A5", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xf5C6825015280CdfD0b56903F9F8B5A2233476F5", + "pegged_burn_contract_addr": "0x52E4f244f380f8fA51816c8a10A63105dd4De084", + "canonical_token_contract_addr": "0xdAC17F958D2ee523a2206206994597C13D831ec7", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1625, + "org_token": { + "token": { + "symbol": "cgWETH", + "address": "0xe2913E5d24E42303E7D4B2a5BF3f9D2Ccd399424", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "cgWETH", + "address": "0x5d553509f5F486a8f50f97b6F8715933CA082A5C", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xf5C6825015280CdfD0b56903F9F8B5A2233476F5", + "pegged_burn_contract_addr": "0x52E4f244f380f8fA51816c8a10A63105dd4De084", + "canonical_token_contract_addr": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1625, + "org_token": { + "token": { + "symbol": "cgUSDT", + "address": "0xD03ee9632901D1E355D39158A474fA42b248BC05", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "cgUSDT", + "address": "0x0E0469A84f57F0B3EB997A18484C75DfEfF2FC92", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xf5C6825015280CdfD0b56903F9F8B5A2233476F5", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "0x55d398326f99059fF775485246999027B3197955", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1625, + "org_token": { + "token": { + "symbol": "cgWETH", + "address": "0xe2913E5d24E42303E7D4B2a5BF3f9D2Ccd399424", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "cgWETH", + "address": "0x1b8b972C1C37406bB74165E681F2d754d7b17eBE", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xf5C6825015280CdfD0b56903F9F8B5A2233476F5", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "0x2170Ed0880ac9A755fd29B2688956BD959F933F8", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1625, + "org_token": { + "token": { + "symbol": "cgWETH", + "address": "0xe2913E5d24E42303E7D4B2a5BF3f9D2Ccd399424", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 8453, + "pegged_token": { + "token": { + "symbol": "cgWETH", + "address": "0x6065A982F04F759b7d2D042D2864e569fad84214", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xf5C6825015280CdfD0b56903F9F8B5A2233476F5", + "pegged_burn_contract_addr": "0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4", + "canonical_token_contract_addr": "0x4200000000000000000000000000000000000006", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1625, + "org_token": { + "token": { + "symbol": "cgUSDT", + "address": "0xD03ee9632901D1E355D39158A474fA42b248BC05", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 42161, + "pegged_token": { + "token": { + "symbol": "cgUSDT", + "address": "0x6aB7a4Ed30e9cD8128d6971AB41aeFa1CeBC6669", + "decimal": 6, + "xfer_disabled": false + }, + "name": "Tether USD", + "icon": "https://get.celer.app/cbridge-icons/USDT.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xf5C6825015280CdfD0b56903F9F8B5A2233476F5", + "pegged_burn_contract_addr": "0xc72e7fC220e650e93495622422F3c14fb03aAf6B", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 1625, + "org_token": { + "token": { + "symbol": "cgWETH", + "address": "0xe2913E5d24E42303E7D4B2a5BF3f9D2Ccd399424", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 42161, + "pegged_token": { + "token": { + "symbol": "cgWETH", + "address": "0xc474Cd2aEb2161a0dc1e03bedc2187C3CF788F8B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Wrapped Ether", + "icon": "https://get.celer.app/cbridge-icons/WETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xf5C6825015280CdfD0b56903F9F8B5A2233476F5", + "pegged_burn_contract_addr": "0xc72e7fC220e650e93495622422F3c14fb03aAf6B", + "canonical_token_contract_addr": "0x82aF49447D8a07e3bd95BD0d56f35241523fBab1", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 7700, + "org_token": { + "token": { + "symbol": "CANTO", + "address": "0x826551890Dc65655a0Aceca109aB11AbDbD7a07B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Canto", + "icon": "https://i.postimg.cc/LX0KMg5H/Canto-Token.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "CANTO", + "address": "0x394D854E577CF53609459c677fbdFc40c656849d", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Canto", + "icon": "https://i.postimg.cc/LX0KMg5H/Canto-Token.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xD33289644740eF5F488b0270f812F7B18B500935", + "pegged_burn_contract_addr": "0x52E4f244f380f8fA51816c8a10A63105dd4De084", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 7700, + "org_token": { + "token": { + "symbol": "CANTO", + "address": "0x826551890Dc65655a0Aceca109aB11AbDbD7a07B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Canto", + "icon": "https://i.postimg.cc/LX0KMg5H/Canto-Token.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 10, + "pegged_token": { + "token": { + "symbol": "CANTO", + "address": "0x1F4F04dA5899a604fDb1Ba77656Bd1a365cb8dAD", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Canto", + "icon": "https://i.postimg.cc/LX0KMg5H/Canto-Token.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xD33289644740eF5F488b0270f812F7B18B500935", + "pegged_burn_contract_addr": "0xC3c5B9474273113efB74e7Da43B5AAba0Cd9699A", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 7700, + "org_token": { + "token": { + "symbol": "CANTO", + "address": "0x826551890Dc65655a0Aceca109aB11AbDbD7a07B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Canto", + "icon": "https://i.postimg.cc/LX0KMg5H/Canto-Token.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "CANTO", + "address": "0x443b4dd51751E38EECd9C426ec6B7655964a2Bc6", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Canto", + "icon": "https://i.postimg.cc/LX0KMg5H/Canto-Token.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xD33289644740eF5F488b0270f812F7B18B500935", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 7700, + "org_token": { + "token": { + "symbol": "CANTO", + "address": "0x826551890Dc65655a0Aceca109aB11AbDbD7a07B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Canto", + "icon": "https://i.postimg.cc/LX0KMg5H/Canto-Token.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 137, + "pegged_token": { + "token": { + "symbol": "CANTO", + "address": "0x0E2B41a1D8285624D96df35ea57F7Ae44034b9B8", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Canto", + "icon": "https://i.postimg.cc/LX0KMg5H/Canto-Token.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xD33289644740eF5F488b0270f812F7B18B500935", + "pegged_burn_contract_addr": "0xb51541df05DE07be38dcfc4a80c05389A54502BB", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 7700, + "org_token": { + "token": { + "symbol": "CANTO", + "address": "0x826551890Dc65655a0Aceca109aB11AbDbD7a07B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Canto", + "icon": "https://i.postimg.cc/LX0KMg5H/Canto-Token.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 42161, + "pegged_token": { + "token": { + "symbol": "CANTO", + "address": "0x75E4fd0Ab0E94F6B5E9907066b10829EB1d15c5a", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Canto", + "icon": "https://i.postimg.cc/LX0KMg5H/Canto-Token.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xD33289644740eF5F488b0270f812F7B18B500935", + "pegged_burn_contract_addr": "0xc72e7fC220e650e93495622422F3c14fb03aAf6B", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 23294, + "org_token": { + "token": { + "symbol": "wROSE", + "address": "0x8Bc2B030b299964eEfb5e1e0b36991352E56D2D3", + "decimal": 18, + "xfer_disabled": false + }, + "name": "wROSE", + "icon": "https://i.postimg.cc/XvyTzngM/img.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "wROSE", + "address": "0xF00600eBC7633462BC4F9C61eA2cE99F5AAEBd4a", + "decimal": 18, + "xfer_disabled": false + }, + "name": "wROSE", + "icon": "https://i.postimg.cc/XvyTzngM/img.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xf39e2D6f40EEeFbec021BaDC6ef5a4F201F5dC4a", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "AICODE", + "address": "0x7C8a1A80FDd00C9Cccd6EbD573E9EcB49BFa2a59", + "decimal": 18, + "xfer_disabled": false + }, + "name": "AICODE", + "icon": "https://i.postimg.cc/N0rsb8nY/AICODE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "AICODE", + "address": "0x10B3AAF66D90Cb54fca62Dd37d17022555399EE1", + "decimal": 18, + "xfer_disabled": false + }, + "name": "AICODE", + "icon": "https://i.postimg.cc/N0rsb8nY/AICODE.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x52E4f244f380f8fA51816c8a10A63105dd4De084", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "MUX", + "address": "0xB3022De15628D44c51AaAAf68E9E0fD9a23C5fCA", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MUX", + "icon": "https://get.celer.app/cbridge-icons/MUX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "MUX", + "address": "0x94d2FdF684158875B99AdAbBa8A5977730642550", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MUX", + "icon": "https://get.celer.app/cbridge-icons/MUX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x52E4f244f380f8fA51816c8a10A63105dd4De084", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "MUXLP", + "address": "0x7CbaF5a14D953fF896E5B3312031515c858737C8", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MUX LP", + "icon": "https://get.celer.app/cbridge-icons/MUXLP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "MUXLP", + "address": "0x55c6b11d9FA571e1eea371D0cbB160B8FEfB571a", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MUX LP", + "icon": "https://get.celer.app/cbridge-icons/MUXLP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x52E4f244f380f8fA51816c8a10A63105dd4De084", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxBTC", + "address": "0x2aC61dd4fBb11919b20A3859D4dDc4Fa192c8ba1", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BTC mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "muxBTC", + "address": "0x4d4E572b0f3DE11c138017BA22990F2ABe65Dad0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BTC mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x52E4f244f380f8fA51816c8a10A63105dd4De084", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxETH", + "address": "0xE03b9Bf45B8b717237380AB934C5A6a5CA4C2Af1", + "decimal": 18, + "xfer_disabled": false + }, + "name": "ETH mToken", + "icon": "https://get.celer.app/cbridge-icons/muxETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "muxETH", + "address": "0x3a10C2C549FD4633f3943f8b526bEE87123dE614", + "decimal": 18, + "xfer_disabled": false + }, + "name": "ETH mToken", + "icon": "https://get.celer.app/cbridge-icons/muxETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x52E4f244f380f8fA51816c8a10A63105dd4De084", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxUSD", + "address": "0x458cd4Bd5ae8FCF602a910423C30323997E497c3", + "decimal": 18, + "xfer_disabled": false + }, + "name": "USD mToken", + "icon": "https://get.celer.app/cbridge-icons/muxUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "muxUSD", + "address": "0x7120262aB9B9bB387F69456D7332F49075a64989", + "decimal": 18, + "xfer_disabled": false + }, + "name": "USD mToken", + "icon": "https://get.celer.app/cbridge-icons/muxUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x52E4f244f380f8fA51816c8a10A63105dd4De084", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "MUXLP", + "address": "0x7CbaF5a14D953fF896E5B3312031515c858737C8", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MUXLP", + "icon": "https://get.celer.app/cbridge-icons/MUXLP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 10, + "pegged_token": { + "token": { + "symbol": "MUXLP", + "address": "0x0509474f102b5cd3f1f09e1E91feb25938eF0f17", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MUXLP", + "icon": "https://get.celer.app/cbridge-icons/MUXLP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0xC3c5B9474273113efB74e7Da43B5AAba0Cd9699A", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxAVAX", + "address": "0xd8d05915cf0AccBBBa78720707920Aff6eef3943", + "decimal": 18, + "xfer_disabled": false + }, + "name": "AVAX mToken", + "icon": "https://get.celer.app/cbridge-icons/muxAVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 10, + "pegged_token": { + "token": { + "symbol": "muxAVAX", + "address": "0x50Ec9b92b3bD46969B1AE5E10543Ca6fB49Fba4f", + "decimal": 18, + "xfer_disabled": false + }, + "name": "AVAX mToken", + "icon": "https://get.celer.app/cbridge-icons/muxAVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0xC3c5B9474273113efB74e7Da43B5AAba0Cd9699A", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxBNB", + "address": "0xdd3CF6B0182993eced98fD71962dfA18E2eae2E4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BNB mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 10, + "pegged_token": { + "token": { + "symbol": "muxBNB", + "address": "0x253BE9F0e2A8749dF6aC7466D096B264788745e0", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BNB mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0xC3c5B9474273113efB74e7Da43B5AAba0Cd9699A", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxBTC", + "address": "0x2aC61dd4fBb11919b20A3859D4dDc4Fa192c8ba1", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BTC mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 10, + "pegged_token": { + "token": { + "symbol": "muxBTC", + "address": "0x1bba8683E28078306db88743a387EB34Fb5f34Ed", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BTC mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0xC3c5B9474273113efB74e7Da43B5AAba0Cd9699A", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxETH", + "address": "0xE03b9Bf45B8b717237380AB934C5A6a5CA4C2Af1", + "decimal": 18, + "xfer_disabled": false + }, + "name": "ETH mToken", + "icon": "https://get.celer.app/cbridge-icons/muxETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 10, + "pegged_token": { + "token": { + "symbol": "muxETH", + "address": "0xff86404162BF14Fe50CEdcF82A56941DC5F48c77", + "decimal": 18, + "xfer_disabled": false + }, + "name": "ETH mToken", + "icon": "https://get.celer.app/cbridge-icons/muxETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0xC3c5B9474273113efB74e7Da43B5AAba0Cd9699A", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxFTM", + "address": "0x198F152D3F34cb49A926333cD935D864D398753F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "FTM mToken", + "icon": "https://get.celer.app/cbridge-icons/muxFTM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 10, + "pegged_token": { + "token": { + "symbol": "muxFTM", + "address": "0xfd951e71A8Ec5C03AD6139d35F800374Ba500fA8", + "decimal": 18, + "xfer_disabled": false + }, + "name": "FTM mToken", + "icon": "https://get.celer.app/cbridge-icons/muxFTM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0xC3c5B9474273113efB74e7Da43B5AAba0Cd9699A", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxOP", + "address": "0x854CF75e51782dE84478B1518543920f35a13eaE", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OP mToken", + "icon": "https://i.postimg.cc/Hk7NTFLc/muxOP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 10, + "pegged_token": { + "token": { + "symbol": "muxOP", + "address": "0x69663Eb604C7d534e9149fa855D89d9104E75363", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OP mToken", + "icon": "https://i.postimg.cc/Hk7NTFLc/muxOP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0xC3c5B9474273113efB74e7Da43B5AAba0Cd9699A", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxUSD", + "address": "0x458cd4Bd5ae8FCF602a910423C30323997E497c3", + "decimal": 18, + "xfer_disabled": false + }, + "name": "USD mToken", + "icon": "https://get.celer.app/cbridge-icons/muxUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 10, + "pegged_token": { + "token": { + "symbol": "muxUSD", + "address": "0xE80e0B928F8f3024dfeFa56E7608bC3bAF389881", + "decimal": 18, + "xfer_disabled": false + }, + "name": "USD mToken", + "icon": "https://get.celer.app/cbridge-icons/muxUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0xC3c5B9474273113efB74e7Da43B5AAba0Cd9699A", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "ARB", + "address": "0x912CE59144191C1204E64559FE8253a0e49E6548", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Arbitrum", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/arbitrum.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "ARB", + "address": "0xa050FFb3eEb8200eEB7F61ce34FF644420FD3522", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Arbitrum", + "icon": "https://get.celer.app/cbridge-icons/chain-icon/arbitrum.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "MUXLP", + "address": "0x7CbaF5a14D953fF896E5B3312031515c858737C8", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MUX LP", + "icon": "https://get.celer.app/cbridge-icons/MUXLP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "MUXLP", + "address": "0x07145Ad7C7351c6FE86b6B841fC9Bed74eb475A7", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MUX LP", + "icon": "https://get.celer.app/cbridge-icons/MUXLP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxAVAX", + "address": "0xd8d05915cf0AccBBBa78720707920Aff6eef3943", + "decimal": 18, + "xfer_disabled": false + }, + "name": "AVAX mToken", + "icon": "https://get.celer.app/cbridge-icons/muxAVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "muxAVAX", + "address": "0x81421A49c2Bb3F2F77A666F0686B4dB47A26360C", + "decimal": 18, + "xfer_disabled": false + }, + "name": "AVAX mToken", + "icon": "https://get.celer.app/cbridge-icons/muxAVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxBNB", + "address": "0xdd3CF6B0182993eced98fD71962dfA18E2eae2E4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BNB mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "muxBNB", + "address": "0x0Acc63843f9dd5C2A14EE7C2349859c526B9d4D3", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BNB mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxBTC", + "address": "0x2aC61dd4fBb11919b20A3859D4dDc4Fa192c8ba1", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BTC mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "muxBTC", + "address": "0x904d0221641232fb40f99dc92C1d59c35698Ff0B", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BTC mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxETH", + "address": "0xE03b9Bf45B8b717237380AB934C5A6a5CA4C2Af1", + "decimal": 18, + "xfer_disabled": false + }, + "name": "ETH mToken", + "icon": "https://get.celer.app/cbridge-icons/muxETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "muxETH", + "address": "0xEA09cBb3f286F7c1a377C4Db825c1cefaD2476AE", + "decimal": 18, + "xfer_disabled": false + }, + "name": "ETH mToken", + "icon": "https://get.celer.app/cbridge-icons/muxETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxFTM", + "address": "0x198F152D3F34cb49A926333cD935D864D398753F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "FTM mToken", + "icon": "https://get.celer.app/cbridge-icons/muxFTM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "muxFTM", + "address": "0xF234437596B9C90231181a2E80c668C4e5408108", + "decimal": 18, + "xfer_disabled": false + }, + "name": "FTM mToken", + "icon": "https://get.celer.app/cbridge-icons/muxFTM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxOP", + "address": "0x854CF75e51782dE84478B1518543920f35a13eaE", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OP mToken", + "icon": "https://i.postimg.cc/Hk7NTFLc/muxOP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "muxOP", + "address": "0x8FEB4121c45265515f36925ca412F85588c00b7E", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OP mToken", + "icon": "https://i.postimg.cc/Hk7NTFLc/muxOP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxUSD", + "address": "0x458cd4Bd5ae8FCF602a910423C30323997E497c3", + "decimal": 18, + "xfer_disabled": false + }, + "name": "USD mToken", + "icon": "https://get.celer.app/cbridge-icons/muxUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "muxUSD", + "address": "0x523d3e0DacD7c470Ebe8880AbE808161696CeBeC", + "decimal": 18, + "xfer_disabled": false + }, + "name": "USD mToken", + "icon": "https://get.celer.app/cbridge-icons/muxUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "MUXLP", + "address": "0x7CbaF5a14D953fF896E5B3312031515c858737C8", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MUX LP", + "icon": "https://get.celer.app/cbridge-icons/MUXLP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 250, + "pegged_token": { + "token": { + "symbol": "MUXLP", + "address": "0xDDAde9a8dA4851960DFcff1AE4A18EE75C39eDD2", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MUX LP", + "icon": "https://get.celer.app/cbridge-icons/MUXLP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x30F7Aa65d04d289cE319e88193A33A8eB1857fb9", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxAVAX", + "address": "0xd8d05915cf0AccBBBa78720707920Aff6eef3943", + "decimal": 18, + "xfer_disabled": false + }, + "name": "AVAX mToken", + "icon": "https://get.celer.app/cbridge-icons/muxAVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 250, + "pegged_token": { + "token": { + "symbol": "muxAVAX", + "address": "0x746Ba48fC973596d0077573BDa6185cA3BB9c3dC", + "decimal": 18, + "xfer_disabled": false + }, + "name": "AVAX mToken", + "icon": "https://get.celer.app/cbridge-icons/muxAVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x30F7Aa65d04d289cE319e88193A33A8eB1857fb9", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxBNB", + "address": "0xdd3CF6B0182993eced98fD71962dfA18E2eae2E4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BNB mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 250, + "pegged_token": { + "token": { + "symbol": "muxBNB", + "address": "0x0b70Ad251761fCFf7Cb42dB35b10Ea0208ECd07c", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BNB mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x30F7Aa65d04d289cE319e88193A33A8eB1857fb9", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxBTC", + "address": "0x2aC61dd4fBb11919b20A3859D4dDc4Fa192c8ba1", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BTC mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 250, + "pegged_token": { + "token": { + "symbol": "muxBTC", + "address": "0x1305b25842778041c4ae0c9e7C264A617c619FD4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BTC mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x30F7Aa65d04d289cE319e88193A33A8eB1857fb9", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxETH", + "address": "0xE03b9Bf45B8b717237380AB934C5A6a5CA4C2Af1", + "decimal": 18, + "xfer_disabled": false + }, + "name": "ETH mToken", + "icon": "https://get.celer.app/cbridge-icons/muxETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 250, + "pegged_token": { + "token": { + "symbol": "muxETH", + "address": "0x13cCB790Cc6e3735b6b0eC11fef1A81703892861", + "decimal": 18, + "xfer_disabled": false + }, + "name": "ETH mToken", + "icon": "https://get.celer.app/cbridge-icons/muxETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x30F7Aa65d04d289cE319e88193A33A8eB1857fb9", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxFTM", + "address": "0x198F152D3F34cb49A926333cD935D864D398753F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "FTM mToken", + "icon": "https://get.celer.app/cbridge-icons/muxFTM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 250, + "pegged_token": { + "token": { + "symbol": "muxFTM", + "address": "0xFCCa7fA56e26f0C86339Ec06D304151aa2E9647A", + "decimal": 18, + "xfer_disabled": false + }, + "name": "FTM mToken", + "icon": "https://get.celer.app/cbridge-icons/muxFTM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x30F7Aa65d04d289cE319e88193A33A8eB1857fb9", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxOP", + "address": "0x854CF75e51782dE84478B1518543920f35a13eaE", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OP mToken", + "icon": "https://i.postimg.cc/Hk7NTFLc/muxOP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 250, + "pegged_token": { + "token": { + "symbol": "muxOP", + "address": "0xF16f662BC827C7e2D28F4B5F4f47cA9Cad63E424", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OP mToken", + "icon": "https://i.postimg.cc/Hk7NTFLc/muxOP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x30F7Aa65d04d289cE319e88193A33A8eB1857fb9", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxUSD", + "address": "0x458cd4Bd5ae8FCF602a910423C30323997E497c3", + "decimal": 18, + "xfer_disabled": false + }, + "name": "USD mToken", + "icon": "https://get.celer.app/cbridge-icons/muxUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 250, + "pegged_token": { + "token": { + "symbol": "muxUSD", + "address": "0xC70107ae20A976C958bF39B32eF8A6E0D2f04878", + "decimal": 18, + "xfer_disabled": false + }, + "name": "USD mToken", + "icon": "https://get.celer.app/cbridge-icons/muxUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x30F7Aa65d04d289cE319e88193A33A8eB1857fb9", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "DCA", + "address": "0x965F298E4ade51C0b0bB24e3369deB6C7D5b3951", + "decimal": 18, + "xfer_disabled": false + }, + "name": "AutoDCA", + "icon": "https://i.postimg.cc/0N8CwkRJ/DCA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 324, + "pegged_token": { + "token": { + "symbol": "DCA", + "address": "0x8b69A4e5AEB67858E3d03d0124176E85C3DFa51d", + "decimal": 18, + "xfer_disabled": false + }, + "name": "AutoDCA", + "icon": "https://i.postimg.cc/0N8CwkRJ/DCA.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0x0D72Be73619e29A67fbD28348AC952288CC9ee46", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "MUXLP", + "address": "0x7CbaF5a14D953fF896E5B3312031515c858737C8", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MUX LP", + "icon": "https://get.celer.app/cbridge-icons/MUXLP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "MUXLP", + "address": "0xAf2D365e668bAaFEdcFd256c0FBbe519e594E390", + "decimal": 18, + "xfer_disabled": false + }, + "name": "MUX LP", + "icon": "https://get.celer.app/cbridge-icons/MUXLP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0xb774C6f82d1d5dBD36894762330809e512feD195", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxAVAX", + "address": "0xd8d05915cf0AccBBBa78720707920Aff6eef3943", + "decimal": 18, + "xfer_disabled": false + }, + "name": "AVAX mToken", + "icon": "https://get.celer.app/cbridge-icons/muxAVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "muxAVAX", + "address": "0xaC80096d53c5965D9432592D28687C521472b9EB", + "decimal": 18, + "xfer_disabled": false + }, + "name": "AVAX mToken", + "icon": "https://get.celer.app/cbridge-icons/muxAVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0xb774C6f82d1d5dBD36894762330809e512feD195", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxBNB", + "address": "0xdd3CF6B0182993eced98fD71962dfA18E2eae2E4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BNB mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "muxBNB", + "address": "0x30a667dF8562a2460F45AC297D833a36FEaC0C2F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BNB mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBNB.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0xb774C6f82d1d5dBD36894762330809e512feD195", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxBTC", + "address": "0x2aC61dd4fBb11919b20A3859D4dDc4Fa192c8ba1", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BTC mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "muxBTC", + "address": "0xCd7D33c265c811ee12c956D28c0e91f32a65119d", + "decimal": 18, + "xfer_disabled": false + }, + "name": "BTC mToken", + "icon": "https://get.celer.app/cbridge-icons/muxBTC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0xb774C6f82d1d5dBD36894762330809e512feD195", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxETH", + "address": "0xE03b9Bf45B8b717237380AB934C5A6a5CA4C2Af1", + "decimal": 18, + "xfer_disabled": false + }, + "name": "ETH mToken", + "icon": "https://get.celer.app/cbridge-icons/muxETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "muxETH", + "address": "0xDE53842F87c95362B2912DB5dBBA404E7D5Ff842", + "decimal": 18, + "xfer_disabled": false + }, + "name": "ETH mToken", + "icon": "https://get.celer.app/cbridge-icons/muxETH.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0xb774C6f82d1d5dBD36894762330809e512feD195", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxFTM", + "address": "0x198F152D3F34cb49A926333cD935D864D398753F", + "decimal": 18, + "xfer_disabled": false + }, + "name": "FTM mToken", + "icon": "https://get.celer.app/cbridge-icons/muxFTM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "muxFTM", + "address": "0x70D30270ccC356f47E5782a1A905ea85B9E08CEa", + "decimal": 18, + "xfer_disabled": false + }, + "name": "FTM mToken", + "icon": "https://get.celer.app/cbridge-icons/muxFTM.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0xb774C6f82d1d5dBD36894762330809e512feD195", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxOP", + "address": "0x854CF75e51782dE84478B1518543920f35a13eaE", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OP mToken", + "icon": "https://i.postimg.cc/Hk7NTFLc/muxOP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "muxOP", + "address": "0xE80e0B928F8f3024dfeFa56E7608bC3bAF389881", + "decimal": 18, + "xfer_disabled": false + }, + "name": "OP mToken", + "icon": "https://i.postimg.cc/Hk7NTFLc/muxOP.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0xb774C6f82d1d5dBD36894762330809e512feD195", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 42161, + "org_token": { + "token": { + "symbol": "muxUSD", + "address": "0x458cd4Bd5ae8FCF602a910423C30323997E497c3", + "decimal": 18, + "xfer_disabled": false + }, + "name": "USD mToken", + "icon": "https://get.celer.app/cbridge-icons/muxUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 43114, + "pegged_token": { + "token": { + "symbol": "muxUSD", + "address": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "decimal": 18, + "xfer_disabled": false + }, + "name": "USD mToken", + "icon": "https://get.celer.app/cbridge-icons/muxUSD.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xEA4B1b0aa3C110c55f650d28159Ce4AD43a4a58b", + "pegged_burn_contract_addr": "0xb774C6f82d1d5dBD36894762330809e512feD195", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 43114, + "org_token": { + "token": { + "symbol": "DGNX", + "address": "0x51e48670098173025C477D9AA3f0efF7BF9f7812", + "decimal": 18, + "xfer_disabled": false + }, + "name": "DGNX", + "icon": "https://i.postimg.cc/cLK43csy/DGNX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "DGNX", + "address": "0x0000000000300dd8B0230efcfEf136eCdF6ABCDE", + "decimal": 18, + "xfer_disabled": false + }, + "name": "DGNX", + "icon": "https://i.postimg.cc/cLK43csy/DGNX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xb51541df05DE07be38dcfc4a80c05389A54502BB", + "pegged_burn_contract_addr": "0x52E4f244f380f8fA51816c8a10A63105dd4De084", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 43114, + "org_token": { + "token": { + "symbol": "AVAX", + "address": "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 169, + "pegged_token": { + "token": { + "symbol": "AVAX", + "address": "0x7d43AABC515C356145049227CeE54B608342c0ad", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x5427FEFA711Eff984124bFBB1AB6fbf5E3DA1820", + "pegged_burn_contract_addr": "0x9Bb46D5100d2Db4608112026951c9C965b233f4D", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 43114, + "org_token": { + "token": { + "symbol": "AVAX", + "address": "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 248, + "pegged_token": { + "token": { + "symbol": "AVAX", + "address": "0xB88d147DE8951EE637758138f2d6D2312B2c4141", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x5427FEFA711Eff984124bFBB1AB6fbf5E3DA1820", + "pegged_burn_contract_addr": "0x5200000000000000000000000000000000000017", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 43114, + "org_token": { + "token": { + "symbol": "AVAX", + "address": "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 324, + "pegged_token": { + "token": { + "symbol": "AVAX", + "address": "0x6A5279E99CA7786fb13F827Fc1Fb4F61684933d6", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x5427FEFA711Eff984124bFBB1AB6fbf5E3DA1820", + "pegged_burn_contract_addr": "0x0D72Be73619e29A67fbD28348AC952288CC9ee46", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 43114, + "org_token": { + "token": { + "symbol": "AVAX", + "address": "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 8453, + "pegged_token": { + "token": { + "symbol": "AVAX", + "address": "0xDc44EdEde02bC11D31e1BcBC04b17C02F11ac4d7", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x5427FEFA711Eff984124bFBB1AB6fbf5E3DA1820", + "pegged_burn_contract_addr": "0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 43114, + "org_token": { + "token": { + "symbol": "AVAX", + "address": "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 9001, + "pegged_token": { + "token": { + "symbol": "AVAX", + "address": "0x8006320739fC281da67Ee62eB9b4Ef8ADD5C903a", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Avalanche (Celer)", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x5427FEFA711Eff984124bFBB1AB6fbf5E3DA1820", + "pegged_burn_contract_addr": "0xC1d6E421a062Fdbb26C31Db4a2113dF0F678CD04", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 43114, + "org_token": { + "token": { + "symbol": "AVAX", + "address": "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 42262, + "pegged_token": { + "token": { + "symbol": "AVAX", + "address": "0x6De33698e9e9b787e09d3Bd7771ef63557E148bb", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Avalanche (Celer)", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x5427FEFA711Eff984124bFBB1AB6fbf5E3DA1820", + "pegged_burn_contract_addr": "0xBB7684Cc5408F4DD0921E5c2Cadd547b8f1AD573", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 43114, + "org_token": { + "token": { + "symbol": "AVAX", + "address": "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7", + "decimal": 18, + "xfer_disabled": false + }, + "name": "AVAX", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 59144, + "pegged_token": { + "token": { + "symbol": "AVAX", + "address": "0x5471ea8f739dd37E9B81Be9c5c77754D8AA953E4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "AVAX", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x5427FEFA711Eff984124bFBB1AB6fbf5E3DA1820", + "pegged_burn_contract_addr": "0x9Bb46D5100d2Db4608112026951c9C965b233f4D", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 43114, + "org_token": { + "token": { + "symbol": "AVAX", + "address": "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 12340001, + "pegged_token": { + "token": { + "symbol": "AVAX", + "address": "A.231cc0dbbcffc4b7.ceAVAX.Vault", + "decimal": 8, + "xfer_disabled": false + }, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x5427FEFA711Eff984124bFBB1AB6fbf5E3DA1820", + "pegged_burn_contract_addr": "08dd120226ec2213", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 43114, + "org_token": { + "token": { + "symbol": "AVAX", + "address": "0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1313161554, + "pegged_token": { + "token": { + "symbol": "AVAX", + "address": "0xef3c714c9425a8F3697A9C969Dc1af30ba82e5d4", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Avalanche", + "icon": "https://get.celer.app/cbridge-icons/AVAX.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0x5427FEFA711Eff984124bFBB1AB6fbf5E3DA1820", + "pegged_burn_contract_addr": "0x4384d5a9D7354C65cE3aee411337bd40493Ad1bC", + "canonical_token_contract_addr": "", + "vault_version": 0, + "bridge_version": 0, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 12340001, + "org_token": { + "token": { + "symbol": "USDCFlow", + "address": "A.f1ab99c82dee3526.USDCFlow.Vault", + "decimal": 8, + "xfer_disabled": false + }, + "name": "USDC (Flow)", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 1, + "pegged_token": { + "token": { + "symbol": "USDCFlow", + "address": "0xFca0E59195527B172479A4db4A39f2e2bb7D2E13", + "decimal": 6, + "xfer_disabled": false + }, + "name": "USD Coin", + "icon": "https://get.celer.app/cbridge-icons/USDC.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "08dd120226ec2213", + "pegged_burn_contract_addr": "0x52E4f244f380f8fA51816c8a10A63105dd4De084", + "canonical_token_contract_addr": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "vault_version": 0, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 999999996, + "org_token": { + "token": { + "symbol": "AURA", + "address": "0xc21dcaa1608a7f2559cee58352794db567f5576a7803bb5ae422314766191f15", + "decimal": 6, + "xfer_disabled": false + }, + "name": "AURA", + "icon": "https://aurascan.io/assets/images/logo/auraTitleLogo.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 56, + "pegged_token": { + "token": { + "symbol": "AURA", + "address": "0x01A2df2cA978F9e75E2eCC56Bf7158018fF123c2", + "decimal": 6, + "xfer_disabled": false + }, + "name": "AURA", + "icon": "https://aurascan.io/assets/images/logo/auraTitleLogo.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xc21dcaa1608a7f2559cee58352794db567f5576a7803bb5ae422314766191f14", + "pegged_burn_contract_addr": "0x26c76F7FeF00e02a5DD4B5Cc8a0f717eB61e1E4b", + "canonical_token_contract_addr": "", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + }, + { + "org_chain_id": 999999997, + "org_token": { + "token": { + "symbol": "INJ", + "address": "0xA6214ccC545A3BfB979851b09deBed43F124Bf62", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Injective", + "icon": "https://i.postimg.cc/vZk23WdJ/INJtoken.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_chain_id": 592, + "pegged_token": { + "token": { + "symbol": "INJ", + "address": "0x2c2E3812742Ab2DA53a728A09F5DE670Aba584b6", + "decimal": 18, + "xfer_disabled": false + }, + "name": "Injective", + "icon": "https://i.postimg.cc/vZk23WdJ/INJtoken.png", + "inbound_lmt": "", + "inbound_epoch_cap": "", + "transfer_disabled": false, + "liq_add_disabled": false, + "liq_rm_disabled": false, + "liq_agg_rm_src_disabled": false, + "delay_threshold": "", + "delay_period": 0 + }, + "pegged_deposit_contract_addr": "0xa6214ccc545a3bfb979851b09debed43f124bf61", + "pegged_burn_contract_addr": "0x3b53D2C7B44d40BE05Fa5E2309FFeB6eB2492d88", + "canonical_token_contract_addr": "0xFfFfFfFF000000000000000000000000000186a1", + "vault_version": 2, + "bridge_version": 2, + "migration_peg_burn_contract_addr": "" + } + ], + "blocked_bridge_direct": [ + { + "symbol": "WETH", + "src_chain_id": "1101", + "dst_chain_id": "42161", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "1101", + "dst_chain_id": "56", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "1101", + "dst_chain_id": "81457", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "137", + "dst_chain_id": "81457", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "43114", + "dst_chain_id": "81457", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "324", + "dst_chain_id": "81457", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "59144", + "dst_chain_id": "81457", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "10", + "dst_chain_id": "81457", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "56", + "dst_chain_id": "81457", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "1", + "dst_chain_id": "81457", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "534352", + "dst_chain_id": "81457", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "42161", + "dst_chain_id": "81457", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "81457", + "dst_chain_id": "1101", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "1101", + "dst_chain_id": "1", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "1101", + "dst_chain_id": "324", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "1101", + "dst_chain_id": "137", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "1101", + "dst_chain_id": "59144", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "1101", + "dst_chain_id": "43114", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "1101", + "dst_chain_id": "10", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "1", + "dst_chain_id": "58", + "web_env": "0" + }, + { + "symbol": "USDC", + "src_chain_id": "43114", + "dst_chain_id": "592", + "web_env": "0" + }, + { + "symbol": "LFI", + "src_chain_id": "1", + "dst_chain_id": "416", + "web_env": "0" + }, + { + "symbol": "BIFI", + "src_chain_id": "137", + "dst_chain_id": "416", + "web_env": "0" + }, + { + "symbol": "GREEN", + "src_chain_id": "137", + "dst_chain_id": "416", + "web_env": "0" + }, + { + "symbol": "QI", + "src_chain_id": "137", + "dst_chain_id": "416", + "web_env": "0" + }, + { + "symbol": "AX", + "src_chain_id": "137", + "dst_chain_id": "416", + "web_env": "0" + }, + { + "symbol": "FLX", + "src_chain_id": "1", + "dst_chain_id": "416", + "web_env": "0" + }, + { + "symbol": "XBP", + "src_chain_id": "1", + "dst_chain_id": "416", + "web_env": "0" + }, + { + "symbol": "UMA", + "src_chain_id": "1", + "dst_chain_id": "416", + "web_env": "0" + }, + { + "symbol": "RAGE", + "src_chain_id": "1", + "dst_chain_id": "416", + "web_env": "0" + }, + { + "symbol": "PLOT", + "src_chain_id": "1", + "dst_chain_id": "416", + "web_env": "0" + }, + { + "symbol": "WBTC", + "src_chain_id": "1", + "dst_chain_id": "416", + "web_env": "0" + }, + { + "symbol": "DAI", + "src_chain_id": "1", + "dst_chain_id": "416", + "web_env": "0" + }, + { + "symbol": "WETH", + "src_chain_id": "1", + "dst_chain_id": "416", + "web_env": "0" + }, + { + "symbol": "USDT", + "src_chain_id": "1", + "dst_chain_id": "416", + "web_env": "0" + }, + { + "symbol": "USDC", + "src_chain_id": "1", + "dst_chain_id": "416", + "web_env": "0" + }, + { + "symbol": "MAI", + "src_chain_id": "137", + "dst_chain_id": "416", + "web_env": "0" + }, + { + "symbol": "PEOPLE", + "src_chain_id": "1", + "dst_chain_id": "56", + "web_env": "0" + }, + { + "symbol": "FRAX", + "src_chain_id": "1", + "dst_chain_id": "12370001", + "web_env": "0" + } + ], + "redirect_to_aggregators_config": [] +} diff --git a/packages/canonical-bridge/src/token-config/mainnet/chains.ts b/packages/canonical-bridge/src/token-config/mainnet/chains.ts new file mode 100644 index 0000000000000..0893c04a4d469 --- /dev/null +++ b/packages/canonical-bridge/src/token-config/mainnet/chains.ts @@ -0,0 +1,1145 @@ +import { IChainConfig } from '@bnb-chain/canonical-bridge-widget' + +export const chains: IChainConfig[] = [ + { + id: 1, + name: 'Ethereum', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://ethereum-rpc.publicnode.com/', + explorer: { + name: 'Etherscan', + url: 'https://etherscan.io', + }, + }, + { + id: 10, + name: 'Optimism', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://mainnet.optimism.io', + explorer: { + name: 'OP Mainnet Explorer', + url: 'https://optimistic.etherscan.io', + }, + }, + { + id: 14, + name: 'Flare', + nativeCurrency: { + name: 'FLR', + symbol: 'FLR', + decimals: 18, + }, + rpcUrl: 'https://flare-api.flare.network/ext/bc/C/rpc', + explorer: { + name: 'Flare Scan', + url: 'https://flarescan.com/', + }, + }, + { + id: 25, + name: 'Cronos', + nativeCurrency: { + name: 'CRO', + symbol: 'CRO', + decimals: 18, + }, + rpcUrl: 'https://evm.cronos.org', + explorer: { + name: 'Crono Scan', + url: 'https://cronoscan.com/', + }, + }, + { + id: 44, + name: 'Crab Network', + nativeCurrency: { + name: 'Crab Network Native Token', + symbol: 'CRAB', + decimals: 18, + }, + rpcUrl: 'https://crab-rpc.darwinia.network', + explorer: { + name: 'Crab explorer', + url: 'https://crab-scan.darwinia.network', + }, + }, + { + id: 56, + name: 'BNB Smart Chain', + nativeCurrency: { + name: 'BNB Chain Native Token', + symbol: 'BNB', + decimals: 18, + }, + rpcUrl: 'https://bsc-dataseed.bnbchain.org', + explorer: { + name: 'bscscan', + url: 'https://bscscan.com', + }, + }, + { + id: 57, + name: 'Syscoin', + nativeCurrency: { + name: 'Syscoin', + symbol: 'SYS', + decimals: 18, + }, + rpcUrl: 'https://rpc.syscoin.org', + explorer: { + name: 'Syscoin Block Explorer', + url: 'https://explorer.syscoin.org', + }, + }, + { + id: 58, + name: 'Ontology', + nativeCurrency: { + name: 'ONG', + symbol: 'ONG', + decimals: 18, + }, + rpcUrl: 'https://dappnode1.ont.io:10339', + explorer: { + name: 'explorer', + url: 'https://explorer.ont.io', + }, + }, + { + id: 66, + name: 'OKXChain', + nativeCurrency: { + name: 'OKXChain Global Utility Token', + symbol: 'OKT', + decimals: 18, + }, + rpcUrl: 'https://exchainrpc.okex.org', + explorer: { + name: 'oklink', + url: 'https://www.oklink.com/oktc', + }, + }, + { + id: 73, + name: 'FNCY', + nativeCurrency: { + name: 'FNCY', + symbol: 'FNCY', + decimals: 18, + }, + rpcUrl: 'https://fncy-seed1.fncy.world', + explorer: { + name: 'fncy scan', + url: 'https://fncyscan.fncy.world', + }, + }, + { + id: 100, + name: 'Gnosis', + nativeCurrency: { + name: 'xDAI', + symbol: 'XDAI', + decimals: 18, + }, + rpcUrl: 'https://rpc.gnosischain.com', + explorer: { + name: 'gnosisscan', + url: 'https://gnosisscan.io', + }, + }, + { + id: 128, + name: 'Huobi ECO Chain', + nativeCurrency: { + name: 'Huobi ECO Chain Native Token', + symbol: 'HT', + decimals: 18, + }, + rpcUrl: 'https://http-mainnet.hecochain.com', + explorer: { + name: 'hecoinfo', + url: 'https://hecoinfo.com', + tokenUrlPattern: 'https://hecoscan.io/#/token20/{0}', + }, + }, + { + id: 137, + name: 'Polygon', + nativeCurrency: { + name: 'MATIC', + symbol: 'MATIC', + decimals: 18, + }, + rpcUrl: 'https://polygon-rpc.com', + explorer: { + name: 'polygonscan', + url: 'https://polygonscan.com', + }, + }, + { + id: 169, + name: 'Manta Pacific', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://pacific-rpc.manta.network/http', + explorer: { + name: 'manta-pacific Explorer', + url: 'https://pacific-explorer.manta.network', + }, + }, + { + id: 196, + name: 'X Layer', + nativeCurrency: { + name: 'X Layer Global Utility Token', + symbol: 'OKB', + decimals: 18, + }, + rpcUrl: 'https://rpc.xlayer.tech', + explorer: { + name: 'OKLink', + url: 'https://www.oklink.com/xlayer', + }, + }, + { + id: 204, + name: 'opBNB', + nativeCurrency: { + name: 'BNB Chain Native Token', + symbol: 'BNB', + decimals: 18, + }, + rpcUrl: 'https://opbnb-mainnet-rpc.bnbchain.org', + explorer: { + name: 'opbnbscan', + url: 'https://mainnet.opbnbscan.com', + }, + }, + { + id: 223, + name: 'b2', + nativeCurrency: { + name: 'BTC', + symbol: 'BTC', + decimals: 18, + }, + rpcUrl: 'https://rpc.bsquared.network', + explorer: { + name: 'B2 Network Explorer', + url: 'https://explorer.bsquared.network', + }, + }, + { + id: 248, + name: 'Oasys', + nativeCurrency: { + name: 'OAS', + symbol: 'OAS', + decimals: 18, + }, + rpcUrl: 'https://rpc.mainnet.oasys.games', + explorer: { + name: 'Oasys-Mainnet explorer', + url: 'https://explorer.oasys.games', + }, + }, + { + id: 250, + name: 'Fantom Opera', + nativeCurrency: { + name: 'Fantom', + symbol: 'FTM', + decimals: 18, + }, + rpcUrl: 'https://rpcapi.fantom.network', + explorer: { + name: 'ftmscan', + url: 'https://ftmscan.com', + }, + }, + { + id: 255, + name: 'Kroma', + nativeCurrency: { + name: 'ETH', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://api.kroma.network', + explorer: { + name: 'Kroma Scan', + url: 'https://kromascan.com', + }, + }, + { + id: 288, + name: 'Boba Network', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://mainnet.boba.network', + explorer: { + name: 'Bobascan', + url: 'https://bobascan.com', + }, + }, + { + id: 314, + name: 'Filecoin', + nativeCurrency: { + name: 'filecoin', + symbol: 'FIL', + decimals: 18, + }, + rpcUrl: 'https://api.node.glif.io', + explorer: { + name: 'Filfox', + url: 'https://filfox.info/en', + }, + }, + { + id: 324, + name: 'zkSync', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://mainnet.era.zksync.io', + explorer: { + name: 'zkSync Era Block Explorer', + url: 'https://explorer.zksync.io', + tokenUrlPattern: 'https://explorer.zksync.io/address/{0}', + }, + }, + { + id: 336, + name: 'Shiden', + nativeCurrency: { + name: 'Shiden', + symbol: 'SDN', + decimals: 18, + }, + rpcUrl: 'https://shiden.public.blastapi.io', + explorer: { + name: 'subscan', + url: 'https://shiden.subscan.io', + }, + }, + { + id: 416, + name: 'SX Network', + nativeCurrency: { + name: 'SX Network', + symbol: 'SX', + decimals: 18, + }, + rpcUrl: 'https://rpc.sx.technology', + explorer: { + name: 'SX Network Explorer', + url: 'https://explorer.sx.technology', + }, + }, + { + id: 592, + name: 'Astar', + nativeCurrency: { + name: 'Astar', + symbol: 'ASTR', + decimals: 18, + }, + rpcUrl: 'https://evm.astar.network', + explorer: { + name: 'subscan', + url: 'https://astar.subscan.io', + }, + }, + { + id: 1024, + name: 'CLV Parachain', + nativeCurrency: { + name: 'CLV', + symbol: 'CLV', + decimals: 18, + }, + rpcUrl: 'https://api-para.clover.finance', + explorer: { + name: 'CLV Blockchain Explore', + url: 'https://clvscan.com/', + }, + }, + { + id: 1030, + name: 'Conflux eSpace', + nativeCurrency: { + name: 'CFX', + symbol: 'CFX', + decimals: 18, + }, + rpcUrl: 'https://evm.confluxrpc.com', + explorer: { + name: 'Conflux Scan', + url: 'https://evm.confluxscan.net', + }, + }, + { + id: 1088, + name: 'Metis Andromeda', + nativeCurrency: { + name: 'Metis', + symbol: 'METIS', + decimals: 18, + }, + rpcUrl: 'https://andromeda.metis.io/?owner=1088', + explorer: { + name: 'Metis Andromeda explorer', + url: 'https://andromeda-explorer.metis.io', + }, + }, + { + id: 1101, + name: 'Polygon zkEVM', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://zkevm-rpc.com', + explorer: { + name: 'PolygonScan', + url: 'https://zkevm.polygonscan.com', + }, + }, + { + id: 1116, + name: 'Core', + nativeCurrency: { + name: 'CORE', + symbol: 'CORE', + decimals: 18, + }, + rpcUrl: 'https://rpc.coredao.org', + explorer: { + name: 'Core Explorer', + url: 'https://scan.coredao.org', + }, + }, + { + id: 1284, + name: 'Moonbeam', + nativeCurrency: { + name: 'Glimmer', + symbol: 'GLMR', + decimals: 18, + }, + rpcUrl: 'https://rpc.api.moonbeam.network', + explorer: { + name: 'moonscan', + url: 'https://moonbeam.moonscan.io', + }, + }, + { + id: 1285, + name: 'Moonriver', + nativeCurrency: { + name: 'Moonriver', + symbol: 'MOVR', + decimals: 18, + }, + rpcUrl: 'https://rpc.api.moonriver.moonbeam.network', + explorer: { + name: 'moonscan', + url: 'https://moonriver.moonscan.io', + }, + }, + { + id: 1329, + name: 'Sei Network', + nativeCurrency: { + name: 'SEI', + symbol: 'SEI', + decimals: 18, + }, + rpcUrl: 'https://evm-rpc.sei-apis.com', + explorer: { + name: 'Sei Scan', + url: 'https://www.seiscan.app/', + }, + }, + { + id: 1625, + name: 'Gravity Alpha', + nativeCurrency: { + name: 'Gravity', + symbol: 'G.', + decimals: 18, + }, + rpcUrl: 'https://rpc.gravity.xyz', + explorer: { + name: 'Gravity Alpha Mainnet Explorer', + url: 'https://explorer.gravity.xyz', + }, + }, + { + id: 2001, + name: 'Milkomeda C1', + nativeCurrency: { + name: 'milkAda', + symbol: 'mADA', + decimals: 18, + }, + rpcUrl: 'https://rpc-mainnet-cardano-evm.c1.milkomeda.com', + explorer: { + name: 'Blockscout', + url: 'https://explorer-mainnet-cardano-evm.c1.milkomeda.com', + }, + }, + { + id: 2002, + name: 'Milkomeda A1', + nativeCurrency: { + name: 'milkALGO', + symbol: 'mALGO', + decimals: 18, + }, + rpcUrl: 'https://rpc-mainnet-algorand-rollup.a1.milkomeda.com', + explorer: { + name: '', + url: '', + }, + }, + { + id: 2222, + name: 'Kava', + nativeCurrency: { + name: 'Kava', + symbol: 'KAVA', + decimals: 18, + }, + rpcUrl: 'https://evm.kava.io', + explorer: { + name: 'Kava EVM Explorer', + url: 'https://kavascan.com', + }, + }, + { + id: 2525, + name: 'inEVM', + nativeCurrency: { + name: 'INJ', + symbol: 'INJ', + decimals: 18, + }, + rpcUrl: 'https://mainnet.rpc.inevm.com/http', + explorer: { + name: 'inEVM Explorer', + url: 'https://explorer.inevm.com', + }, + }, + { + id: 2649, + name: 'AILayer', + nativeCurrency: { + name: 'BTC', + symbol: 'BTC', + decimals: 18, + }, + rpcUrl: 'https://mainnet-rpc.ailayer.xyz', + explorer: { + name: 'AI Layer Explorer', + url: 'https://mainnet-explorer.ailayer.xyz', + }, + }, + { + id: 4200, + name: 'Merlin', + nativeCurrency: { + name: 'BTC', + symbol: 'BTC', + decimals: 18, + }, + rpcUrl: 'https://rpc.merlinchain.io', + explorer: { + name: 'Merlin Scan', + url: 'https://scan.merlinchain.io', + }, + }, + { + id: 5000, + name: 'Mantle', + nativeCurrency: { + name: 'Mantle', + symbol: 'MNT', + decimals: 18, + }, + rpcUrl: 'https://rpc.mantle.xyz/', + explorer: { + name: 'Mantle Mainnet Explorer', + url: 'https://explorer.mantle.xyz/', + }, + }, + { + id: 6001, + name: 'BB', + nativeCurrency: { + name: 'BB', + symbol: 'BB', + decimals: 18, + }, + rpcUrl: 'https://fullnode-mainnet.bouncebitapi.com', + explorer: { + name: 'BB Scan', + url: 'https://bbscan.io', + }, + }, + { + id: 7000, + name: 'ZetaChain', + nativeCurrency: { + name: 'ZETA', + symbol: 'ZETA', + decimals: 18, + }, + rpcUrl: 'https://zetachain-evm.blockpi.network:443/v1/rpc/public', + explorer: { + name: 'Zeta Chain Explorer', + url: 'https://explorer.zetachain.com/', + }, + }, + { + id: 7700, + name: 'Canto', + nativeCurrency: { + name: 'Canto', + symbol: 'CANTO', + decimals: 18, + }, + rpcUrl: 'https://canto.gravitychain.io', + explorer: { + name: 'Canto Explorer (OKLink)', + url: 'https://www.oklink.com/canto', + }, + }, + { + id: 8217, + name: 'Klaytn', + nativeCurrency: { + name: 'KLAY', + symbol: 'KLAY', + decimals: 18, + }, + rpcUrl: 'https://klaytn.blockpi.network/v1/rpc/public', + explorer: { + name: 'Klaytnscope', + url: 'https://scope.klaytn.com', + }, + }, + { + id: 8453, + name: 'Base', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://mainnet.base.org', + explorer: { + name: 'basescan', + url: 'https://basescan.org', + }, + }, + { + id: 8822, + name: 'IOTA EVM', + nativeCurrency: { + name: 'IOTA Token', + symbol: 'IOTA', + decimals: 18, + }, + rpcUrl: 'https://json-rpc.evm.iotaledger.net', + explorer: { + name: 'IOTA EVM explorer', + url: 'https://explorer.evm.iota.org', + }, + }, + { + id: 9001, + name: 'Evmos', + nativeCurrency: { + name: 'Evmos', + symbol: 'EVMOS', + decimals: 18, + }, + rpcUrl: 'https://evmos-mainnet.public.blastapi.io', + explorer: { + name: 'Evmos Explorer (Escan)', + url: 'https://www.mintscan.io/evmos', + tokenUrlPattern: 'https://www.mintscan.io/evmos/address/{0}', + }, + }, + { + id: 11501, + name: 'BEVM', + nativeCurrency: { + name: 'BTC', + symbol: 'BTC', + decimals: 18, + }, + rpcUrl: 'https://rpc-mainnet-1.bevm.io', + explorer: { + name: 'BEVM Explorer', + url: 'https://scan-mainnet.bevm.io', + }, + }, + { + id: 13000, + name: 'SPS', + nativeCurrency: { + name: 'ECG', + symbol: 'ECG', + decimals: 18, + }, + rpcUrl: 'https://rpc.ssquad.games', + explorer: { + name: 'SPS Explorer', + url: 'http://spsscan.ssquad.games', + }, + }, + { + id: 17777, + name: 'EOS EVM', + nativeCurrency: { + name: 'EOS', + symbol: 'EOS', + decimals: 18, + }, + rpcUrl: 'https://api.evm.eosnetwork.com', + explorer: { + name: 'EOS EVM Explorer', + url: 'https://explorer.evm.eosnetwork.com', + }, + }, + { + id: 22776, + name: 'MAP Protocol', + nativeCurrency: { + name: 'MAPO', + symbol: 'MAPO', + decimals: 18, + }, + rpcUrl: 'https://rpc.maplabs.io', + explorer: { + name: 'MAPO Scan', + url: 'https://maposcan.io', + }, + }, + { + id: 23294, + name: 'Oasis Sapphire', + nativeCurrency: { + name: 'Sapphire Rose', + symbol: 'ROSE', + decimals: 18, + }, + rpcUrl: 'https://sapphire.oasis.io', + explorer: { + name: 'Oasis Sapphire Explorer', + url: 'https://explorer.oasis.io/mainnet/sapphire', + }, + }, + { + id: 34443, + name: 'Mode', + nativeCurrency: { + name: 'ETH', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://mainnet.mode.network', + explorer: { + name: 'Mode Explorer', + url: 'https://explorer.mode.network', + }, + }, + { + id: 42161, + name: 'Arbitrum One', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://arb1.arbitrum.io/rpc', + explorer: { + name: 'Arbiscan', + url: 'https://arbiscan.io', + }, + }, + { + id: 42170, + name: 'Arbitrum Nova', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://nova.arbitrum.io/rpc', + explorer: { + name: 'Arbitrum Nova Chain Explorer', + url: 'https://nova-explorer.arbitrum.io', + }, + }, + { + id: 42220, + name: 'Celo', + nativeCurrency: { + name: 'CELO', + symbol: 'CELO', + decimals: 18, + }, + rpcUrl: 'https://forno.celo.org', + explorer: { + name: 'Celoscan', + url: 'https://celoscan.io', + }, + }, + { + id: 42262, + name: 'Oasis Emerald', + nativeCurrency: { + name: 'Emerald Rose', + symbol: 'ROSE', + decimals: 18, + }, + rpcUrl: 'https://emerald.oasis.io', + explorer: { + name: 'Oasis Emerald Explorer', + url: 'https://explorer.oasis.io/mainnet/emerald', + }, + }, + { + id: 42766, + name: 'ZKFair', + nativeCurrency: { + name: 'USDC', + symbol: 'USDC', + decimals: 18, + }, + rpcUrl: 'https://rpc.zkfair.io', + explorer: { + name: 'Zkfair Scan', + url: 'https://scan.zkfair.io', + }, + }, + { + id: 43114, + name: 'Avalanche', + nativeCurrency: { + name: 'Avalanche', + symbol: 'AVAX', + decimals: 18, + }, + rpcUrl: 'https://api.avax.network/ext/bc/C/rpc', + explorer: { + name: 'snowtrace', + url: 'https://snowtrace.io', + }, + }, + { + id: 47805, + name: 'REI Network', + nativeCurrency: { + name: 'REI', + symbol: 'REI', + decimals: 18, + }, + rpcUrl: 'https://rpc.rei.network', + explorer: { + name: 'rei-scan', + url: 'https://scan.rei.network', + }, + }, + { + id: 48900, + name: 'Zircuit', + nativeCurrency: { + name: 'ETH', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://zircuit-mainnet.drpc.org', + explorer: { + name: 'Zircuit Explorer', + url: 'https://explorer.zircuit.com', + }, + }, + { + id: 59144, + name: 'Linea', + nativeCurrency: { + name: 'Linea Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://rpc.linea.build', + explorer: { + name: 'Etherscan', + url: 'https://lineascan.build', + }, + }, + { + id: 71402, + name: 'Godwoken', + nativeCurrency: { + name: 'pCKB', + symbol: 'pCKB', + decimals: 18, + }, + rpcUrl: 'https://v1.mainnet.godwoken.io/rpc', + explorer: { + name: 'GWScan Block Explorer', + url: 'https://v1.gwscan.com', + tokenUrlPattern: 'https://v1.gwscan.com/account/{0}', + }, + }, + { + id: 81457, + name: 'Blast', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://rpc.blast.io', + explorer: { + name: 'Blastscan', + url: 'https://blastscan.io', + }, + }, + { + id: 112358, + name: 'Metachain One', + nativeCurrency: { + name: 'Metao', + symbol: 'METAO', + decimals: 18, + }, + rpcUrl: 'https://rpc.metachain.one', + explorer: { + name: 'blockscout', + url: 'https://explorer.metachain.one', + }, + }, + { + id: 167000, + name: 'Taiko', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://rpc.mainnet.taiko.xyz', + explorer: { + name: 'Taiko Scan', + url: 'https://taikoscan.io', + }, + }, + { + id: 200901, + name: 'Bitlayer Mainnet', + nativeCurrency: { + name: 'BTC', + symbol: 'BTC', + decimals: 18, + }, + rpcUrl: 'https://rpc.bitlayer.org', + explorer: { + name: 'Bitlayer Scan', + url: 'https://www.btrscan.com', + }, + }, + { + id: 210425, + name: 'PlatON', + nativeCurrency: { + name: 'LAT', + symbol: 'lat', + decimals: 18, + }, + rpcUrl: 'https://openapi2.platon.network/rpc', + explorer: { + name: 'PlatON explorer', + url: 'https://scan.platon.network', + tokenUrlPattern: 'https://scan.platon.network/tokens-detail?type=erc20&address={0}', + }, + }, + { + id: 534352, + name: 'Scroll', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://rpc.scroll.io', + explorer: { + name: 'Scrollscan', + url: 'https://scrollscan.com', + }, + }, + { + id: 60808, + name: 'BOB', + nativeCurrency: { + name: 'ETH', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://rpc.gobob.xyz', + explorer: { + name: 'BOB Explorer', + url: 'https://explorer.gobob.xyz', + }, + }, + { + id: 810180, + name: 'zkLink', + nativeCurrency: { + name: 'ETH', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://rpc.zklink.io', + explorer: { + name: 'ZKLink Explorer', + url: 'https://explorer.zklink.io', + }, + }, + { + id: 888888888, + name: 'Ancient8', + nativeCurrency: { + name: 'ETH', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://rpc.ancient8.gg', + explorer: { + name: 'Ancient8 Scan', + url: 'https://scan.ancient8.gg', + }, + }, + { + id: 1313161554, + name: 'Aurora', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://mainnet.aurora.dev', + explorer: { + name: 'aurorascan.dev', + url: 'https://aurorascan.dev', + }, + }, + { + id: 1380012617, + name: 'RARI Chain', + nativeCurrency: { + name: 'Ether', + symbol: 'ETH', + decimals: 18, + }, + rpcUrl: 'https://mainnet.rpc.rarichain.org/http', + explorer: { + name: 'Rari Mainnet Explorer', + url: 'https://mainnet.explorer.rarichain.org/', + }, + }, + { + id: 1482601649, + name: 'SKALE Nebula Hub', + nativeCurrency: { + name: 'sFUEL', + symbol: 'sFUEL', + decimals: 18, + }, + rpcUrl: 'https://mainnet.skalenodes.com/v1/green-giddy-denebola', + explorer: { + name: 'SKALE Nebula Explorer', + url: 'https://green-giddy-denebola.explorer.mainnet.skalenodes.com', + }, + }, + { + id: 1564830818, + name: 'SKALE Calypso', + nativeCurrency: { + name: 'sFUEL', + symbol: 'sFUEL', + decimals: 18, + }, + rpcUrl: 'https://mainnet.skalenodes.com/v1/honorable-steel-rasalhague', + explorer: { + name: 'SKALE Calypso Hub Explorer', + url: 'https://honorable-steel-rasalhague.explorer.mainnet.skalenodes.com/', + }, + }, + { + id: 1666600000, + name: 'Harmony One', + nativeCurrency: { + name: 'ONE', + symbol: 'ONE', + decimals: 18, + }, + rpcUrl: 'https://api.harmony.one', + explorer: { + name: 'Harmony Block Explorer', + url: 'https://explorer.harmony.one', + }, + }, + { + id: 2046399126, + name: 'SKALE Europa Hub', + nativeCurrency: { + name: 'sFUEL', + symbol: 'sFUEL', + decimals: 18, + }, + rpcUrl: 'https://mainnet.skalenodes.com/v1/elated-tan-skat', + explorer: { + name: 'SKALE Europa Hub Explorer', + url: 'https://elated-tan-skat.explorer.mainnet.skalenodes.com', + }, + }, + { + id: 728126428, + name: 'Tron', + nativeCurrency: { + name: 'TRX', + symbol: 'TRX', + decimals: 6, + }, + rpcUrl: 'https://api.trongrid.io', + explorer: { + name: 'Tron Scan', + url: 'https://tronscan.io/', + tokenUrlPattern: 'https://tronscan.io/#/token20/{0}', + }, + chainType: 'tron', + }, +] diff --git a/packages/canonical-bridge/src/token-config/mainnet/layerZero/config.json b/packages/canonical-bridge/src/token-config/mainnet/layerZero/config.json new file mode 100644 index 0000000000000..603ce78e78a82 --- /dev/null +++ b/packages/canonical-bridge/src/token-config/mainnet/layerZero/config.json @@ -0,0 +1,120 @@ +{ + "tokens": { + "1": [ + { + "address": "0x152649eA73beAb28c5b49B26eb48f7EAD6d4c898", + "bridgeAddress": "0x152649eA73beAb28c5b49B26eb48f7EAD6d4c898", + "decimals": 18, + "symbol": "CAKE", + "name": "Cake", + "endpointID": 101, + "version": 1 + } + ], + "56": [ + { + "address": "0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82", + "bridgeAddress": "0xb274202daBA6AE180c665B4fbE59857b7c3a8091", + "decimals": 18, + "symbol": "CAKE", + "name": "Cake", + "endpointID": 102, + "version": 1 + } + ], + "204": [ + { + "address": "0x2779106e4F4A8A28d77A24c18283651a2AE22D1C", + "bridgeAddress": "0x2779106e4F4A8A28d77A24c18283651a2AE22D1C", + "decimals": 18, + "symbol": "CAKE", + "name": "Cake", + "endpointID": 202, + "version": 1 + } + ], + "324": [ + { + "address": "0x3a287a06c66f9e95a56327185ca2bdf5f031cecd", + "bridgeAddress": "0x3a287a06c66f9e95a56327185ca2bdf5f031cecd", + "decimals": 18, + "symbol": "CAKE", + "name": "Cake", + "endpointID": 165, + "version": 1 + } + ], + "1101": [ + { + "address": "0x0D1E753a25eBda689453309112904807625bEFBe", + "bridgeAddress": "0x0D1E753a25eBda689453309112904807625bEFBe", + "decimals": 18, + "symbol": "CAKE", + "name": "Cake", + "endpointID": 158, + "version": 1 + } + ], + "8453": [ + { + "address": "0x3055913c90Fcc1A6CE9a358911721eEb942013A1", + "bridgeAddress": "0x3055913c90Fcc1A6CE9a358911721eEb942013A1", + "decimals": 18, + "symbol": "CAKE", + "name": "Cake", + "endpointID": 184, + "version": 1 + } + ], + "42161": [ + { + "address": "0x1b896893dfc86bb67Cf57767298b9073D2c1bA2c", + "bridgeAddress": "0x1b896893dfc86bb67Cf57767298b9073D2c1bA2c", + "decimals": 18, + "symbol": "CAKE", + "name": "Cake", + "endpointID": 110, + "version": 1 + } + ], + "59144": [ + { + "address": "0x0D1E753a25eBda689453309112904807625bEFBe", + "bridgeAddress": "0x0D1E753a25eBda689453309112904807625bEFBe", + "decimals": 18, + "symbol": "CAKE", + "name": "Cake", + "endpointID": 183, + "version": 1 + } + ] + }, + "chains": [ + { + "chainId": 1, + "chainName": "Ethereum" + }, + { + "chainId": 56, + "chainName": "BSC" + }, + { + "chainId": 204, + "chainName": "Opbnb Mainnet" + }, + { "chainId": 324, "chainName": "Zksync Era" }, + { "chainId": 1101, "chainName": "Polygon zkEvm" }, + { + "chainId": 8453, + "chainName": "Base" + }, + { + "chainId": 42161, + "chainName": "Arbitrum" + }, + { + "chainId": 59144, + "chainName": "Linea" + } + ] +} diff --git a/packages/canonical-bridge/src/token-config/mainnet/meson/config.json b/packages/canonical-bridge/src/token-config/mainnet/meson/config.json new file mode 100644 index 0000000000000..1bd493524b744 --- /dev/null +++ b/packages/canonical-bridge/src/token-config/mainnet/meson/config.json @@ -0,0 +1,1057 @@ +{ + "result": [ + { + "id": "ancient8", + "name": "Ancient8", + "chainId": "0x34fb5e38", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "eth", + "addr": "0x0000000000000000000000000000000000000000", + "min": "0.001", + "decimals": 18, + "max": "2" + } + ] + }, + { + "id": "arb", + "name": "Arbitrum", + "chainId": "0xa4b1", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "eth", + "addr": "0x0000000000000000000000000000000000000000", + "min": "0.001", + "decimals": 18, + "max": "2" + } + ] + }, + { + "id": "aurora", + "name": "Aurora", + "chainId": "0x4e454152", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0xB12BFcA5A55806AaF64E99521918A4bf0fC40802", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0x4988a896b1227218e4A686fdE5EabdcAbd91571f", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "eth", + "addr": "0x0000000000000000000000000000000000000000", + "min": "0.002", + "decimals": 18, + "max": "2" + } + ] + }, + { + "id": "avax", + "name": "Avalanche", + "chainId": "0xa86a", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0x9702230A8Ea53601f5cD2dc00fDBc13d4dF4A8c7", + "decimals": 6, + "min": "1.0", + "max": "20000" + } + ] + }, + { + "id": "b2", + "name": "B² Network", + "chainId": "0xdf", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0xE544e8a38aDD9B1ABF21922090445Ba93f74B9E5", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0x681202351a488040Fa4FdCc24188AfB582c9DD62", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "fdusd", + "addr": "0xc2fe4f673455ef92299770a09cdb5e8756a525d5", + "decimals": 18, + "min": "1.0", + "max": "20000" + }, + { + "id": "eth", + "addr": "0xD48d3A551757ac47655fCe25BDE1B0B6b1Cb2a5A", + "decimals": 18, + "min": "0.001", + "max": "2" + } + ] + }, + { + "id": "base", + "name": "Base", + "chainId": "0x2105", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913", + "decimals": 6, + "min": "1.5", + "max": "20000" + }, + { + "id": "eth", + "min": "0.001", + "addr": "0x0000000000000000000000000000000000000000", + "decimals": 18, + "max": "2" + } + ] + }, + { + "id": "bb", + "name": "BounceBit", + "chainId": "0x1771", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "btc", + "addr": "0xF5e11df1ebCf78b6b6D26E04FF19cD786a1e81dC", + "decimals": 18, + "min": "0.0005", + "max": "0.05" + }, + { + "id": "busd", + "addr": "0x77776b40C3d75cb07ce54dEA4b2Fd1D07F865222", + "decimals": 18, + "min": "0.5", + "max": "20000" + } + ] + }, + { + "id": "beam", + "name": "Moonbeam", + "chainId": "0x504", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdt", + "addr": "0xFFFFFFfFea09FB06d082fd1275CD48b191cbCD1d", + "decimals": 6, + "min": "1.0", + "max": "20000" + } + ] + }, + { + "id": "bevm2", + "name": "BEVM", + "chainId": "0x2ced", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "btc", + "addr": "0x0000000000000000000000000000000000000000", + "decimals": 18, + "min": "0.00055", + "max": "0.05" + }, + { + "id": "usdc", + "addr": "0x2f5ee356fAeBE9C51f5996f09ce807AaeCF14dDF", + "decimals": 6, + "min": "0.5", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0x48CfbeC43a29dD3bfb8933e4A183678826494ac7", + "decimals": 6, + "min": "0.5", + "max": "20000" + }, + { + "id": "eth", + "addr": "0xc68Ddbe40A24Ab7FE7987F3c97d4094f4dC68f21", + "decimals": 18, + "min": "0.001", + "max": "2" + } + ] + }, + { + "id": "bitlayer", + "name": "Bitlayer", + "chainId": "0x310c5", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0xf8C374CE88A3BE3d374e8888349C7768B607c755", + "decimals": 6, + "min": "1.5", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0xfe9f969faf8ad72a83b761138bf25de87eff9dd2", + "decimals": 6, + "min": "1.5", + "max": "20000" + }, + { + "id": "eth", + "addr": "0xef63d4e178b3180beec9b0e143e0f37f4c93f4c2", + "decimals": 18, + "min": "0.001", + "max": "2" + } + ] + }, + { + "id": "blast", + "name": "Blast", + "chainId": "0x13e31", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdb", + "addr": "0x4300000000000000000000000000000000000003", + "decimals": 18, + "min": "1.0", + "max": "20000" + }, + { + "id": "eth", + "addr": "0x0000000000000000000000000000000000000000", + "decimals": 18, + "min": "0.001", + "max": "2" + } + ] + }, + { + "id": "bnb", + "name": "BNB Smart Chain", + "chainId": "0x38", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdt", + "addr": "0x55d398326f99059ff775485246999027b3197955", + "decimals": 18, + "min": "1.0", + "max": "20000" + }, + { + "id": "usdc", + "addr": "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", + "decimals": 18, + "min": "1.0", + "max": "20000" + }, + { + "id": "fdusd", + "addr": "0xc5f0f7b66764F6ec8C8Dff7BA683102295E16409", + "decimals": 18, + "min": "1.0", + "max": "20000" + } + ] + }, + { + "id": "bob", + "name": "Bob", + "chainId": "0xed88", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdt", + "addr": "0x05d032ac25d322df992303dca074ee7392c117b9", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "eth", + "addr": "0x0000000000000000000000000000000000000000", + "decimals": 18, + "min": "0.001", + "max": "2" + } + ] + }, + { + "id": "celo", + "name": "Celo", + "chainId": "0xa4ec", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "cusd", + "addr": "0x765DE816845861e75A25fCA122bb6898B8B1282a", + "decimals": 18, + "min": "1.0", + "max": "20000" + } + ] + }, + { + "id": "cfx", + "name": "Conflux eSpace", + "chainId": "0x406", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0x6963efed0ab40f6c3d7bda44a05dcf1437c44372", + "decimals": 18, + "min": "1.0", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0xfe97e85d13abd9c1c33384e796f10b73905637ce", + "decimals": 18, + "min": "1.0", + "max": "20000" + } + ] + }, + { + "id": "core", + "name": "Core", + "chainId": "0x45c", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0xa4151B2B3e269645181dCcF2D426cE75fcbDeca9", + "decimals": 6, + "min": "0.5", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0x900101d06A7426441Ae63e9AB3B9b0F63Be145F1", + "decimals": 6, + "min": "0.5", + "max": "20000" + }, + { + "id": "eth", + "addr": "0xeAB3aC417c4d6dF6b143346a46fEe1B847B50296", + "decimals": 18, + "min": "0.001", + "max": "2" + } + ] + }, + { + "id": "cronos", + "name": "Cronos", + "chainId": "0x19", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0xc21223249ca28397b4b6541dffaecc539bff0c59", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0x66e428c3f67a68878562e79a0234c1f83c208770", + "decimals": 6, + "min": "1.0", + "max": "20000" + } + ] + }, + { + "id": "eos", + "name": "EOS EVM", + "chainId": "0x4571", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdt", + "addr": "0x33B57dC70014FD7AA6e1ed3080eeD2B619632B8e", + "decimals": 6, + "min": "1.0", + "max": "20000" + } + ] + }, + { + "id": "eth", + "name": "Ethereum", + "chainId": "0x1", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "decimals": 6, + "min": "2.0", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "decimals": 6, + "min": "2.0", + "max": "20000" + }, + { + "id": "eth", + "addr": "0x0000000000000000000000000000000000000000", + "decimals": 18, + "min": "0.001", + "max": "2" + } + ] + }, + { + "id": "ftm", + "name": "Fantom", + "chainId": "0xfa", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0x28a92dde19D9989F39A49905d7C9C2FAc7799bDf", + "decimals": 6, + "min": "1.0", + "max": "20000" + } + ] + }, + { + "id": "gnosis", + "name": "Gnosis", + "chainId": "0x64", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "dai", + "addr": "0x0000000000000000000000000000000000000000", + "decimals": 18, + "min": "1.0", + "max": "20000" + } + ] + }, + { + "id": "inevm", + "name": "inEVM", + "chainId": "0x9dd", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0x8358D8291e3bEDb04804975eEa0fe9fe0fAfB147", + "decimals": 6, + "min": "1.5", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0x97423A68BAe94b5De52d767a17aBCc54c157c0E5", + "decimals": 6, + "min": "1.5", + "max": "20000" + } + ] + }, + { + "id": "kava", + "name": "Kava", + "chainId": "0x8ae", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdt", + "addr": "0x919C1c267BC06a7039e03fcc2eF738525769109c", + "decimals": 6, + "min": "1.0", + "max": "20000" + } + ] + }, + { + "id": "linea", + "name": "Linea", + "chainId": "0xe708", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0x176211869cA2b568f2A7D4EE941E073a821EE1ff", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0xA219439258ca9da29E9Cc4cE5596924745e12B93", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "eth", + "addr": "0x0000000000000000000000000000000000000000", + "decimals": 18, + "min": "0.001", + "max": "2" + } + ] + }, + { + "id": "manta", + "name": "Manta", + "chainId": "0xa9", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "eth", + "addr": "0x0000000000000000000000000000000000000000", + "decimals": 18, + "min": "0.001", + "max": "2" + }, + { + "id": "usdc", + "addr": "0xb73603C5d87fA094B7314C74ACE2e64D165016fb", + "decimals": 6, + "min": "1.5", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0xf417F5A458eC102B90352F697D6e2Ac3A3d2851f", + "decimals": 6, + "min": "1.5", + "max": "20000" + } + ] + }, + { + "id": "map", + "name": "MAP Protocol", + "chainId": "0x58f8", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "eth", + "addr": "0x05aB928d446d8ce6761e368c8e7bE03C3168A9ec", + "decimals": 18, + "min": "0.001", + "max": "2" + } + ] + }, + { + "id": "merlin", + "name": "Merlin", + "chainId": "0x1068", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0x6b4eCAdA640F1B30dBdB68f77821A03A5f282EbE", + "decimals": 6, + "min": "1.5", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0x967aEC3276b63c5E2262da9641DB9dbeBB07dC0d", + "decimals": 6, + "min": "1.5", + "max": "20000" + } + ] + }, + { + "id": "metis", + "name": "Metis", + "chainId": "0x440", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0xEA32A96608495e54156Ae48931A7c20f0dcc1a21", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0xbB06DCA3AE6887fAbF931640f67cab3e3a16F4dC", + "decimals": 6, + "min": "1.0", + "max": "20000" + } + ] + }, + { + "id": "mnt", + "name": "Mantle", + "chainId": "0x1388", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0x09Bc4E0D864854c6aFB6eB9A9cdF58aC190D0dF9", + "decimals": 6, + "min": "0.5", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0x201EBa5CC46D216Ce6DC03F6a759e8E766e956aE", + "decimals": 6, + "min": "0.5", + "max": "20000" + } + ] + }, + { + "id": "mode", + "name": "Mode", + "chainId": "0x868b", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0xd988097fb8612cc24eeC14542bC03424c656005f", + "decimals": 6, + "min": "1.5", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0xf0F161fDA2712DB8b566946122a5af183995e2eD", + "decimals": 6, + "min": "1.5", + "max": "20000" + }, + { + "id": "eth", + "addr": "0x0000000000000000000000000000000000000000", + "decimals": 18, + "min": "0.002", + "max": "2" + } + ] + }, + { + "id": "opbnb", + "name": "opBNB", + "chainId": "0xcc", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdt", + "addr": "0x9e5aac1ba1a2e6aed6b32689dfcf62a509ca96f3", + "decimals": 18, + "min": "1.0", + "max": "20000" + } + ] + }, + { + "id": "opt", + "name": "Optimism", + "chainId": "0xa", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0x94b008aA00579c1307B0EF2c499aD98a8ce58e58", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "eth", + "addr": "0x0000000000000000000000000000000000000000", + "decimals": 18, + "min": "0.001", + "max": "2" + } + ] + }, + { + "id": "polygon", + "name": "Polygon PoS", + "chainId": "0x89", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "btc", + "addr": "0x1BFD67037B42Cf73acF2047067bd4F2C47D9BfD6", + "decimals": 8, + "min": "0.00055", + "max": "0.05" + } + ] + }, + { + "id": "scroll", + "name": "Scroll", + "chainId": "0x82750", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0x06eFdBFf2a14a7c8E15944D1F4A48F9F95F663A4", + "decimals": 6, + "min": "1.5", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df", + "decimals": 6, + "min": "1.5", + "max": "20000" + }, + { + "id": "eth", + "addr": "0x0000000000000000000000000000000000000000", + "decimals": 18, + "min": "0.001", + "max": "2" + } + ] + }, + { + "id": "skale-calypso", + "name": "SKALE Calypso", + "chainId": "0x5d456c62", + "address": "0x4c2F26ba59cD10C605b669add14966547CA93d02", + "tokens": [ + { + "id": "usdc", + "addr": "0x7Cf76E740Cb23b99337b21F392F22c47Ad910c67", + "decimals": 6, + "min": "0.5", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0xf9B5736E74b37Ec2EDd37B1B3c8e1aF9fa426F2A", + "decimals": 6, + "min": "0.5", + "max": "20000" + } + ] + }, + { + "id": "skale-europa", + "name": "SKALE Europa", + "chainId": "0x79f99296", + "address": "0x529c2945c257CC737A15733d43a1fD1cBBe79C67", + "tokens": [ + { + "id": "usdc", + "addr": "0x5F795bb52dAC3085f578f4877D450e2929D2F13d", + "decimals": 6, + "min": "0.5", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0x1c0491E3396AD6a35f061c62387a95d7218FC515", + "decimals": 6, + "min": "0.5", + "max": "20000" + } + ] + }, + { + "id": "skale-nebula", + "name": "SKALE Nebula", + "chainId": "0x585eb4b1", + "address": "0x4c2F26ba59cD10C605b669add14966547CA93d02", + "tokens": [ + { + "id": "usdc", + "addr": "0xCC205196288B7A26f6D43bBD68AaA98dde97276d", + "decimals": 6, + "min": "0.5", + "max": "20000" + } + ] + }, + { + "id": "taiko", + "name": "Taiko", + "chainId": "0x28c58", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0x07d83526730c7438048D55A4fc0b850e2aaB6f0b", + "decimals": 6, + "min": "0.5", + "max": "20000" + }, + { + "id": "eth", + "addr": "0x0000000000000000000000000000000000000000", + "decimals": 18, + "min": "0.001", + "max": "2" + } + ] + }, + { + "id": "tron", + "name": "Tron", + "chainId": "728126428", + "address": "TKWqpzNucNNBMpfaE47F8CLhA8vzfNndH4", + "tokens": [ + { + "id": "usdt", + "addr": "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t", + "decimals": 6, + "min": "6.5", + "max": "20000" + } + ] + }, + { + "id": "xlayer", + "name": "XLayer", + "chainId": "0xc4", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0x74b7F16337b8972027F6196A17a631aC6dE26d22", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0x1E4a5963aBFD975d8c9021ce480b42188849D41d", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "eth", + "addr": "0x5A77f1443D16ee5761d310e38b62f77f726bC71c", + "decimals": 18, + "min": "0.001", + "max": "2" + }, + { + "id": "btc", + "addr": "0xEA034fb02eB1808C2cc3adbC15f447B93CbE08e1", + "decimals": 8, + "min": "0.00055", + "max": "0.05" + } + ] + }, + { + "id": "zeta", + "name": "ZetaChain", + "chainId": "0x1b58", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "eth", + "addr": "0xd97b1de3619ed2c6beb3860147e30ca8a7dc9891", + "decimals": 18, + "min": "0.002", + "max": "2" + } + ] + }, + { + "id": "zkevm", + "name": "Polygon zkEVM", + "chainId": "0x44d", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0x37eAA0eF3549a5Bb7D431be78a3D99BD360d19e5", + "decimals": 6, + "min": "2.0", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0x1E4a5963aBFD975d8c9021ce480b42188849D41d", + "decimals": 6, + "min": "2.0", + "max": "20000" + }, + { + "id": "eth", + "addr": "0x0000000000000000000000000000000000000000", + "decimals": 18, + "min": "0.001", + "max": "2" + } + ] + }, + { + "id": "zkfair", + "name": "ZKFair", + "chainId": "0xa70e", + "address": "0x25aB3Efd52e6470681CE037cD546Dc60726948D3", + "tokens": [ + { + "id": "usdc", + "addr": "0x0000000000000000000000000000000000000000", + "decimals": 18, + "min": "2.5", + "max": "20000" + }, + { + "id": "eth", + "addr": "0x4b21b980d0Dc7D3C0C6175b0A412694F3A1c7c6b", + "decimals": 18, + "min": "0.001", + "max": "2" + } + ] + }, + { + "id": "zklink", + "name": "zkLink Nova", + "chainId": "0xc5cc4", + "address": "0x2DcC88Fa6b6950EE28245C3238B8993BE5feeA42", + "tokens": [ + { + "id": "usdc", + "addr": "0x1a1A3b2ff016332e866787B311fcB63928464509", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "usdt", + "addr": "0x2F8A25ac62179B31D62D7F80884AE57464699059", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "eth", + "addr": "0x0000000000000000000000000000000000000000", + "decimals": 18, + "min": "0.001", + "max": "2" + }, + { + "id": "busd", + "addr": "0x7F934E97101e2239b9cB438A4B07d9474AD51406", + "decimals": 18, + "min": "1.0", + "max": "20000" + } + ] + }, + { + "id": "zksync", + "name": "zkSync Era", + "chainId": "0x144", + "address": "0x2DcC88Fa6b6950EE28245C3238B8993BE5feeA42", + "tokens": [ + { + "id": "usdc", + "addr": "0x1d17CBcF0D6D143135aE902365D2E5e2A16538D4", + "decimals": 6, + "min": "1.0", + "max": "20000" + }, + { + "id": "eth", + "addr": "0x0000000000000000000000000000000000000000", + "decimals": 18, + "min": "0.001", + "max": "2" + } + ] + } + ] +} diff --git a/packages/canonical-bridge/src/token-config/mainnet/stargate/config.json b/packages/canonical-bridge/src/token-config/mainnet/stargate/config.json new file mode 100644 index 0000000000000..a9efa18118cdb --- /dev/null +++ b/packages/canonical-bridge/src/token-config/mainnet/stargate/config.json @@ -0,0 +1,601 @@ +{ + "tokens": { + "1": [ + { + "address": "0x0000000000000000000000000000000000000000", + "bridgeAddress": "0x77b2043768d28E9C9aB44E1aBfC95944bcE57931", + "decimals": 18, + "symbol": "ETH", + "endpointID": 30101, + "name": "Ether" + }, + { + "address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", + "bridgeAddress": "0xc026395860Db2d07ee33e05fE50ed7bD583189C7", + "decimals": 6, + "symbol": "USDC", + "endpointID": 30101, + "name": "USD Coin" + }, + { + "address": "0xdac17f958d2ee523a2206206994597c13d831ec7", + "bridgeAddress": "0x933597a323Eb81cAe705C5bC29985172fd5A3973", + "decimals": 6, + "symbol": "USDT", + "endpointID": 30101, + "name": "Tether USD" + }, + { + "address": "0x9e32b13ce7f2e80a01932b42553652e053d6ed8e", + "bridgeAddress": "0xcDafB1b2dB43f366E48e6F614b8DCCBFeeFEEcD3", + "decimals": 18, + "symbol": "METIS", + "endpointID": 30101, + "name": "Metis" + }, + { + "address": "0xd5f7838f5c461feff7fe49ea5ebaf7728bb0adfa", + "bridgeAddress": "0x268Ca24DAefF1FaC2ed883c598200CcbB79E931D", + "decimals": 18, + "symbol": "mETH", + "endpointID": 30101, + "name": "Mantle Staked Ether" + } + ], + "10": [ + { + "address": "0x0b2c639c533813f4aa9d7837caf62653d097ff85", + "bridgeAddress": "0xcE8CcA271Ebc0533920C83d39F417ED6A0abB7D0", + "decimals": 6, + "symbol": "USDC", + "endpointID": 30111, + "name": "USD Coin" + }, + { + "address": "0x94b008aa00579c1307b0ef2c499ad98a8ce58e58", + "bridgeAddress": "0x19cFCE47eD54a88614648DC3f19A5980097007dD", + "decimals": 6, + "symbol": "USDT", + "endpointID": 30111, + "name": "Tether USD" + }, + { + "address": "0x0000000000000000000000000000000000000000", + "bridgeAddress": "0xe8CDF27AcD73a434D661C84887215F7598e7d0d3", + "symbol": "ETH", + "decimals": 18, + "endpointID": 30111, + "name": "Ether" + } + ], + "14": [ + { + "address": "0xFbDa5F676cB37624f28265A144A48B0d6e87d3b6", + "bridgeAddress": "0x77C71633C34C3784ede189d74223122422492a0f", + "decimals": 6, + "symbol": "USDC", + "endpointID": 30295, + "type": "hydra", + "name": "USD Coin" + }, + { + "address": "0x0B38e83B86d491735fEaa0a791F65c2B99535396", + "bridgeAddress": "0x1C10CC06DC6D35970d1D53B2A23c76ef370d4135", + "decimals": 6, + "symbol": "USDT", + "endpointID": 30295, + "type": "hydra", + "name": "Tether USD" + }, + { + "address": "0x1502FA4be69d526124D453619276FacCab275d3D", + "bridgeAddress": "0x8e8539e4CcD69123c623a106773F2b0cbbc58746", + "decimals": 18, + "symbol": "WETH", + "endpointID": 30295, + "type": "hydra", + "name": "Wrapped ETH" + } + ], + "56": [ + { + "address": "0x55d398326f99059fF775485246999027B3197955", + "bridgeAddress": "0x138EB30f73BC423c6455C53df6D89CB01d9eBc63", + "decimals": 18, + "symbol": "USDT", + "endpointID": 30102, + "name": "Tether USD" + }, + { + "address": "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d", + "bridgeAddress": "0x962Bd449E630b0d928f308Ce63f1A21F02576057", + "decimals": 18, + "symbol": "USDC", + "endpointID": 30102, + "name": "USD Coin" + } + ], + "97": [ + { + "address": "0xe37bdc6f09dab6ce6e4ebc4d2e72792994ef3765", + "bridgeAddress": "0x0a0C1221f451Ac54Ef9F21940569E252161a2495", + "decimals": 6, + "symbol": "USDT", + "endpointID": 40102, + "network": "testnet", + "name": "Tether USD" + } + ], + "137": [ + { + "address": "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359", + "bridgeAddress": "0x9Aa02D4Fae7F58b8E8f34c66E756cC734DAc7fe4", + "decimals": 6, + "symbol": "USDC", + "endpointID": 30109, + "name": "USD Coin" + }, + { + "address": "0xc2132d05d31c914a87c6611c10748aeb04b58e8f", + "bridgeAddress": "0xd47b03ee6d86Cf251ee7860FB2ACf9f91B9fD4d7", + "decimals": 6, + "symbol": "USDT", + "endpointID": 30109, + "name": "Tether USD" + } + ], + "1088": [ + { + "address": "0xbb06dca3ae6887fabf931640f67cab3e3a16f4dc", + "bridgeAddress": "0x4dCBFC0249e8d5032F89D6461218a9D2eFff5125", + "decimals": 6, + "symbol": "m.USDT", + "endpointID": 30151, + "name": "USDT Token" + }, + { + "address": "0x420000000000000000000000000000000000000a", + "bridgeAddress": "0x36ed193dc7160D3858EC250e69D12B03Ca087D08", + "decimals": 18, + "symbol": "WETH", + "endpointID": 30151, + "name": "Wrapped ETH" + }, + { + "address": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead0000", + "bridgeAddress": "0xD9050e7043102a0391F81462a3916326F86331F0", + "decimals": 18, + "symbol": "METIS", + "endpointID": 30151, + "name": "Metis" + } + ], + "1329": [ + { + "address": "0x160345fC359604fC6e70E3c5fAcbdE5F7A9342d8", + "bridgeAddress": "0x5c386D85b1B82FD9Db681b9176C8a4248bb6345B", + "decimals": 18, + "symbol": "WETH", + "type": "hydra", + "endpointID": 30280, + "name": "Wrapped ETH" + } + ], + "2222": [ + { + "address": "0x919c1c267bc06a7039e03fcc2ef738525769109c", + "bridgeAddress": "0x41A5b0470D96656Fb3e8f68A218b39AdBca3420b", + "decimals": 6, + "symbol": "USDT", + "endpointID": 30177, + "type": "pool", + "name": "Tether USD" + } + ], + "5000": [ + { + "address": "0x09bc4e0d864854c6afb6eb9a9cdf58ac190d0df9", + "bridgeAddress": "0xAc290Ad4e0c891FDc295ca4F0a6214cf6dC6acDC", + "decimals": 6, + "symbol": "USDC", + "endpointID": 30181, + "type": "pool", + "name": "USD Coin" + }, + { + "address": "0x201eba5cc46d216ce6dc03f6a759e8e766e956ae", + "bridgeAddress": "0xa81274AFac523D639DbcA2C32c1470f1600cCEBe", + "decimals": 6, + "symbol": "USDT", + "endpointID": 30181, + "type": "pool", + "name": "Tether USD" + }, + { + "address": "0xdeaddeaddeaddeaddeaddeaddeaddeaddead1111", + "bridgeAddress": "0x4c1d3Fc3fC3c177c3b633427c2F769276c547463", + "decimals": 18, + "symbol": "WETH", + "endpointID": 30181, + "type": "pool", + "name": "Wrapped ETH" + }, + { + "address": "0xcda86a272531e8640cd7f1a92c01839911b90bb0", + "bridgeAddress": "0xF7628d84a2BbD9bb9c8E686AC95BB5d55169F3F1", + "decimals": 18, + "symbol": "mETH", + "endpointID": 30181, + "type": "pool", + "name": "Mantle Staked Ether" + } + ], + "8217": [ + { + "address": "0xe2053bcf56d2030d2470fb454574237cf9ee3d4b", + "bridgeAddress": "0x01A7c805cc47AbDB254CD8AaD29dE5e447F59224", + "decimals": 6, + "symbol": "USDC", + "type": "hydra", + "endpointID": 30150, + "name": "USD Coin" + }, + { + "address": "0x9025095263d1e548dc890a7589a4c78038ac40ab", + "bridgeAddress": "0x8619bA1B324e099CB2227060c4BC5bDEe14456c6", + "decimals": 6, + "symbol": "USDT", + "type": "hydra", + "endpointID": 30150, + "name": "Tether USD" + }, + { + "address": "0x55acee547df909cf844e32dd66ee55a6f81dc71b", + "bridgeAddress": "0xBB4957E44401a31ED81Cab33539d9e8993FA13Ce", + "decimals": 18, + "symbol": "WETH", + "type": "hydra", + "endpointID": 30150, + "name": "Wrapped ETH" + } + ], + "8453": [ + { + "address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", + "bridgeAddress": "0x27a16dc786820B16E5c9028b75B99F6f604b5d26", + "decimals": 6, + "symbol": "USDC", + "type": "pool", + "endpointID": 30184, + "name": "USD Coin" + }, + { + "address": "0x0000000000000000000000000000000000000000", + "bridgeAddress": "0xdc181Bd607330aeeBEF6ea62e03e5e1Fb4B6F7C7", + "decimals": 18, + "symbol": "ETH", + "type": "pool", + "endpointID": 30184, + "name": "Ether" + } + ], + "8822": [ + { + "address": "0xFbDa5F676cB37624f28265A144A48B0d6e87d3b6", + "bridgeAddress": "0x8e8539e4CcD69123c623a106773F2b0cbbc58746", + "decimals": 6, + "symbol": "USDC", + "type": "hydra", + "endpointID": 30284, + "name": "USD Coin" + }, + { + "address": "0xC1B8045A6ef2934Cf0f78B0dbD489969Fa9Be7E4", + "bridgeAddress": "0x77C71633C34C3784ede189d74223122422492a0f", + "decimals": 6, + "symbol": "USDT", + "type": "hydra", + "endpointID": 30284, + "name": "Tether USD" + }, + { + "address": "0x160345fC359604fC6e70E3c5fAcbdE5F7A9342d8", + "bridgeAddress": "0x9c2dc7377717603eB92b2655c5f2E7997a4945BD", + "decimals": 18, + "symbol": "WETH", + "type": "hydra", + "endpointID": 30284, + "name": "Wrapped ETH" + } + ], + "42161": [ + { + "address": "0xaf88d065e77c8cc2239327c5edb3a432268e5831", + "bridgeAddress": "0xe8CDF27AcD73a434D661C84887215F7598e7d0d3", + "decimals": 6, + "symbol": "USDC", + "endpointID": 30110, + "name": "USD Coin" + }, + { + "address": "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9", + "bridgeAddress": "0xcE8CcA271Ebc0533920C83d39F417ED6A0abB7D0", + "decimals": 6, + "symbol": "USDT", + "endpointID": 30110, + "name": "Tether USD" + }, + { + "address": "0x0000000000000000000000000000000000000000", + "bridgeAddress": "0xA45B5130f36CDcA45667738e2a258AB09f4A5f7F", + "decimals": 18, + "symbol": "ETH", + "endpointID": 30110, + "name": "Ether" + } + ], + "43114": [ + { + "address": "0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e", + "bridgeAddress": "0x5634c4a5FEd09819E3c46D86A965Dd9447d86e47", + "decimals": 6, + "symbol": "USDC", + "endpointID": 30106, + "name": "USD Coin" + }, + { + "address": "0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7", + "bridgeAddress": "0x12dC9256Acc9895B076f6638D628382881e62CeE", + "decimals": 6, + "symbol": "USDT", + "endpointID": 30106, + "name": "Tether USD" + } + ], + "59144": [ + { + "address": "0x0000000000000000000000000000000000000000", + "bridgeAddress": "0x81F6138153d473E8c5EcebD3DC8Cd4903506B075", + "decimals": 18, + "symbol": "ETH", + "endpointID": 30183, + "name": "Ether" + } + ], + "167000": [ + { + "address": "0x19e26B0638bf63aa9fa4d14c6baF8D52eBE86C5C", + "bridgeAddress": "0x77C71633C34C3784ede189d74223122422492a0f", + "decimals": 6, + "symbol": "USDC.e", + "type": "hydra", + "endpointID": 30290, + "name": "USD Coin" + }, + { + "address": "0x9c2dc7377717603eB92b2655c5f2E7997a4945BD", + "bridgeAddress": "0x1C10CC06DC6D35970d1D53B2A23c76ef370d4135", + "decimals": 6, + "symbol": "USDT", + "type": "hydra", + "endpointID": 30290, + "name": "Tether USD" + } + ], + "421614": [ + { + "address": "0x3253a335e7bffb4790aa4c25c4250d206e9b9773", + "bridgeAddress": "0x0d7aB83370b492f2AB096c80111381674456e8d8", + "decimals": 6, + "symbol": "USDC", + "endpointID": 40231, + "network": "testnet", + "name": "USD Coin" + }, + { + "address": "0x3c0dea5955cb490f78e330a213c960ca63f66314", + "bridgeAddress": "0xC48c0736C8ae67A8C54DFb01D7ECc7190C12a042", + "decimals": 6, + "symbol": "USDT", + "endpointID": 40231, + "network": "testnet", + "name": "Tether USD" + } + ], + "534352": [ + { + "address": "0x06efdbff2a14a7c8e15944d1f4a48f9f95f663a4", + "bridgeAddress": "0x3Fc69CC4A842838bCDC9499178740226062b14E4", + "decimals": 6, + "symbol": "USDC", + "endpointID": 30214, + "name": "USD Coin" + }, + { + "address": "0x0000000000000000000000000000000000000000", + "bridgeAddress": "0xC2b638Cb5042c1B3c5d5C969361fB50569840583", + "decimals": 18, + "symbol": "ETH", + "endpointID": 30214, + "name": "Ether" + } + ], + "11155111": [ + { + "address": "0x0000000000000000000000000000000000000000", + "bridgeAddress": "0xa5A8481790BB57CF3FA0a4f24Dc28121A491447f", + "decimals": 18, + "symbol": "ETH", + "endpointID": 40161, + "network": "testnet", + "name": "Ether" + }, + { + "address": "0x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590", + "bridgeAddress": "0xa4e97dFd56E0E30A2542d666Ef04ACC102310083", + "decimals": 6, + "symbol": "USDC", + "endpointID": 40161, + "network": "testnet", + "name": "USD Coin" + }, + { + "address": "0xb15a3f6e64d2caffaf7927431ab0d1c21e429644", + "bridgeAddress": "0xc9c7A3Ae8F1059867247a009b32Ad7AAD9a52D1c", + "decimals": 18, + "symbol": "USDT", + "endpointID": 40161, + "network": "testnet", + "name": "Tether USD" + } + ], + "11155420": [ + { + "address": "0x488327236b65c61a6c083e8d811a4e0d3d1d4268", + "bridgeAddress": "0x0d7aB83370b492f2AB096c80111381674456e8d8", + "decimals": 6, + "symbol": "USDC", + "endpointID": 40232, + "network": "testnet", + "name": "USD Coin" + }, + { + "address": "0x9352001271a0af0d09a4e7f6c431663a2d5aa9d2", + "bridgeAddress": "0xC48c0736C8ae67A8C54DFb01D7ECc7190C12a042", + "decimals": 18, + "symbol": "USDT", + "endpointID": 40232, + "network": "testnet", + "name": "Tether USD" + } + ], + "1313161554": [ + { + "address": "0x368ebb46aca6b8d0787c96b2b20bd3cc3f2c45f7", + "bridgeAddress": "0x81F6138153d473E8c5EcebD3DC8Cd4903506B075", + "decimals": 6, + "symbol": "USDC", + "endpointID": 30211, + "name": "USD Coin" + } + ], + "1380012617": [ + { + "address": "0xFbDa5F676cB37624f28265A144A48B0d6e87d3b6", + "bridgeAddress": "0x875bee36739e7Ce6b60E056451c556a88c59b086", + "decimals": 6, + "symbol": "USDC", + "type": "hydra", + "endpointID": 30235, + "name": "USD Coin" + }, + { + "address": "0x362FAE9A75B27BBc550aAc28a7c1F96C8D483120", + "bridgeAddress": "0x17d65bF79E77B6Ab21d8a0afed3bC8657d8Ee0B2", + "decimals": 6, + "symbol": "USDT", + "type": "hydra", + "endpointID": 30235, + "name": "Tether USD" + } + ] + }, + "chains": [ + { + "chainId": 1, + "chainName": "Ethereum" + }, + { + "chainId": 10, + "chainName": "Optimism" + }, + { + "chainId": 14, + "chainName": "Flare Mainnet" + }, + { + "chainId": 56, + "chainName": "BSC" + }, + { + "chainId": 97, + "chainName": "BSC Testnet", + "network": "testnet" + }, + { + "chainId": 137, + "chainName": "Polygon" + }, + { + "chainId": 1088, + "chainName": "Metis" + }, + { + "chainId": 1329, + "chainName": "Sei Network" + }, + { + "chainId": 2222, + "chainName": "Kava" + }, + { + "chainId": 5000, + "chainName": "Mantle" + }, + { + "chainId": 8217, + "chainName": "Klaytn" + }, + { + "chainId": 8453, + "chainName": "Base" + }, + { + "chainId": 8822, + "chainName": "IOTA" + }, + { + "chainId": 42161, + "chainName": "Arbitrum" + }, + { + "chainId": 43114, + "chainName": "Avalanche" + }, + { + "chainId": 59144, + "chainName": "Linea" + }, + { + "chainId": 167000, + "chainName": "Taiko Mainnet" + }, + { + "chainId": 421614, + "chainName": "Arbitrum Sepolia", + "network": "testnet" + }, + { + "chainId": 11155420, + "chainName": "OP Sepolia Testnet", + "network": "testnet" + }, + { + "chainId": 534352, + "chainName": "Scroll" + }, + { + "chainId": 11155111, + "chainName": "Sepolia", + "network": "testnet" + }, + { + "chainId": 1313161554, + "chainName": "Aurora" + }, + { + "chainId": 1380012617, + "chainName": "RARI Chain" + } + ] +} diff --git a/packages/canonical-bridge/src/views/GlobalStyle/index.ts b/packages/canonical-bridge/src/views/GlobalStyle/index.ts new file mode 100644 index 0000000000000..481415cd727e1 --- /dev/null +++ b/packages/canonical-bridge/src/views/GlobalStyle/index.ts @@ -0,0 +1,836 @@ +import { rgba } from 'polished' +import { createGlobalStyle } from 'styled-components' + +const GlobalStyle = createGlobalStyle` + * { + font-family: 'Kanit', sans-serif; + } + + html { + scroll-behavior: smooth; + } + + body { + font-family: 'Kanit', sans-serif !important; + .bccb-widget-transfer-widget-wrapper { + border: 1px solid; + border-bottom: 2px solid; + border-color: ${({ theme }) => (theme.isDark ? '#383241' : '#E7E3EB')}; + background: ${({ theme }) => (theme.isDark ? '#27262C ' : '#FFFFFF')}; + padding: 16px; + gap: 16px; + max-width: unset; + box-shadow: none; + .bccb-widget-network { + gap: 2px; + } + .bccb-widget-transfer-widget-title { + font-size: 20px; + font-style: normal; + font-weight: 600; + text-align: left; + line-height: 30px; + display: none; + ${({ theme }) => theme.mediaQueries.sm} { + display: block; + } + } + } + .bccb-widget-network-row { + gap: 8px; + .bccb-widget-network-from, + .bccb-widget-network-to { + height: 40px; + } + &>svg path { + fill: ${({ theme }) => (theme.isDark ? '#B8ADD2' : '#7A6EAA')}; + fill-opacity: 1; + } + } + .bccb-widget-network-title, .bccb-widget-input-title, .bccb-widget-received-info-title, .bccb-widget-to-account-title { + padding: 0 8px; + align-items: center; + color: ${({ theme }) => (theme.isDark ? '#B8ADD2' : '#7A6EAA')}; + & > p { + color: ${({ theme }) => (theme.isDark ? '#B8ADD2' : '#7A6EAA')}; + text-overflow: ellipsis; + display: block; + font-size: 14px; + font-style: normal; + font-weight: 400; + line-height: 21px; + } + } + .bccb-widget-input-title { + height: 29px; + } + .bccb-widget-network-button { + padding: 0 8px; + border-radius: 16px; + border: 1px solid; + outline: none; + height: 40px; + border-bottom-width: 2px; + border-color: ${({ theme }) => (theme.isDark ? '#55496E' : '#D7CAEC')}; + &:hover{ + opacity: 0.65; + } + &>svg { + color: ${({ theme }) => (theme.isDark ? '#B8ADD2' : '#7A6EAA')}; + } + } + .bccb-widget-transfer-input-container { + margin-top: 16px; + .bccb-widget-transfer-max > div { + color: ${({ theme }) => (theme.isDark ? '#48D0DB' : '#02919D')}; + font-size: 14px; + font-weight: 600; + text-decoration: none; + line-height: 150%; /* 21px */ + &:hover { + opacity: 0.65; + } + } + .bccb-widget-transfer-input-error { + padding: 0 8px; + } + .bccb-widget-transfer-input-wrapper { + margin-top: 2px; + border-radius: 16px; + border: 1px solid; + border-color: ${({ theme }) => (theme.isDark ? '#55496E' : '#D7CAEC')}; + padding: 4px 4px 4px 16px; + &:not(.input-error).input-focused { + &, &:hover { + box-shadow: 0px 0px 0px 1px #A881FC, 0px 0px 0px 4px rgba(168, 129, 252, 0.40); + border-color: ${({ theme }) => (theme.isDark ? '#55496E' : '#D7CAEC')}; + } + } + &:not(.input-error):hover { + box-shadow: 0px 0px 0px 1px #A881FC, 0px 0px 0px 4px rgba(168, 129, 252, 0.40); + outline: none; + } + input { + font-size: 20px; + font-style: normal; + font-weight: 600; + line-height: 30px; + letter-spacing: -0.2px; + &::placeholder { + color: ${({ theme }) => (theme.isDark ? '#B8ADD2' : '#7A6EAA')}; + font-size: 20px; + font-style: normal; + font-weight: 600; + line-height: 150%; /* 30px */ + letter-spacing: -0.2px; + } + } + .bccb-widget-token-select-button { + outline: none; + border-radius: 16px; + border: 1px solid rgba(0, 0, 0, 0.20); + border-bottom: 2px solid rgba(0, 0, 0, 0.20); + background: ${({ theme }) => (theme.isDark ? '#B8ADD2' : '#7A6EAA')}; + font-size: 16px; + font-style: normal; + font-weight: 600; + line-height: 24px; + height: 40px; + &, & svg { + color: ${({ theme }) => (theme.isDark ? '#000000' : '#FFFFFF')}; + } + } + } + } + .bccb-widget-received-info-container { + margin-bottom: 0px; + & > div > div { + gap: 6px; + } + + .bccb-widget-received-info-route-content { + border-radius: 16px; + gap: 4px; + border: 1px solid ${({ theme }) => (theme.isDark ? '#383241' : '#E7E3EB')}; + padding: 12px; + > div { + gap: 2.5px; + } + .bccb-widget-route-token { + color: ${({ theme }) => (theme.isDark ? '#F4EEFF' : '#280D5F')}; + .bccb-widget-route-title-amount { + font-family: 'Kanit', sans-serif; + font-size: 24px; + font-style: normal; + font-weight: 600; + line-height: 150%; /* 36px */ + letter-spacing: -0.24px; + } + .bccb-widget-route-token-tooltip { + font-size: 16px; + font-style: normal; + font-weight: 600; + line-height: 150%; + } + .bccb-widget-route-token-icon { + & > div { + font-weight: 600; + font-size: 16px; + } + a { + color: ${({ theme }) => (theme.isDark ? '#F4EEFF' : '#280D5F')}; + &:hover { + opacity: 0.6; + } + } + .alert-icon { + color: #ED4B9E; + } + } + } + } + } + .bccb-widget-to-account-container { + .bccb-widget-to-account-input { + border-radius: 16px; + &:not(.input-error).input-focused { + &, &:hover { + box-shadow: 0px 0px 0px 1px #A881FC, 0px 0px 0px 4px rgba(168, 129, 252, 0.40); + border-color: ${({ theme }) => (theme.isDark ? '#55496E' : '#D7CAEC')}; + } + } + &:not(.input-error):hover { + box-shadow: 0px 0px 0px 1px #A881FC, 0px 0px 0px 4px rgba(168, 129, 252, 0.40); + outline: none; + } + input { + font-size: 16px; + font-weight: 400; + line-height: 24px; + letter-spacing: -0.2px; + border-radius: 16px; + border: 1px solid; + border-color: ${({ theme }) => (theme.isDark ? '#55496E' : '#D7CAEC')}; + &::placeholder { + color: ${({ theme }) => (theme.isDark ? '#B8ADD2' : '#7A6EAA')}; + font-size: 16px; + font-style: normal; + font-weight: 400; + line-height: 150%; /* 30px */ + letter-spacing: -0.2px; + } + &:not(.input-error):focus, &:not(.input-error):hover { + border-color: ${({ theme }) => (theme.isDark ? '#55496E' : '#D7CAEC')}; + box-shadow: none; + outline: none; + } + } + } + + .bccb-widget-to-account-confirm { + margin-top: 8px; + margin-bottom: 0; + & > div:nth-child(2) { + color: ${({ theme }) => (theme.isDark ? '#F4EEFF' : '#280D5F')}; + font-size: 16px; + font-style: normal; + font-weight: 400; + line-height: 150%; /* 24px */ + } + } + } + .bccb-widget-transfer-button-container { + button { + &.disabled, + &.disabled:hover { + background: ${({ theme }) => (theme.isDark ? '#3C3742' : '#F5F5F5')}; + color: ${({ theme }) => (theme.isDark ? '#666171' : '#BDC2C4')}; + border: none; + } + height: 48px; + border-radius: 16px; + border-bottom: 2px solid rgba(0, 0, 0, 0.20); + background: #1FC7D4; + font-size: 16px; + font-style: normal; + font-weight: 600; + line-height: 24px; + &:not(.disabled):hover { + background: #1FC7D4; + opacity: 0.65; + } + } + } + + .bccb-widget-allowed-send-amount { + font-size: 14px; + color: + } + + /* network selection modal */ + .bccb-widget-from-network-modal-overlay, .bccb-widget-to-network-modal-overlay, .bccb-widget-token-modal-overlay, + .bccb-widget-transaction-confirming-modal-overlay, .bccb-widget-transaction-approve-modal-overlay, + .bccb-widget-transaction-failed-modal-overlay, .bccb-widget-transaction-submitted-modal-overlay, + .bccb-widget-modal-route-overlay { + opacity: ${({ theme }) => (theme.isDark ? '0.65' : '0.6')} !important; + background: ${(props: any) => + props.isDark + ? 'linear-gradient(0deg, rgba(109, 101, 146, 0.40) 0%, rgba(109, 101, 146, 0.40) 100%), #534A65' + : '#280D5F'}; + } + .bccb-widget-modal-no-result-found { + margin: 24px auto; + max-width: calc(100% - 32px); + .title { + color: ${({ theme }) => (theme.isDark ? '#F4EEFF' : '#280D5F')}; + margin-top: 16px; + margin-bottom: 4px; + font-size: 20px; + font-weight: 600; + line-height: 150%; /* 30px */ + letter-spacing: -0.2px; + } + .bccb-widget-modal-no-result-found-text { + font-size: 14px; + font-style: normal; + font-weight: 400; + line-height: 150%; /* 21px */ + color: ${({ theme }) => (theme.isDark ? '#B8ADD2' : '#7A6EAA')}; + } + } + .bccb-widget-from-network-modal-content, .bccb-widget-to-network-modal-content { + max-height: unset; + ${({ theme }) => theme.mediaQueries.sm} { + max-height: 80vh; + width: 360px; + } + .bccb-widget-from-network-modal-body, .bccb-widget-to-network-modal-body { + padding: 18px 0 12px; + > div { + margin-bottom: 16px; + padding: 0; + } + } + .bccb-widget-from-network-list-item-active-wrapper, .bccb-widget-to-network-list-item-active-wrapper { + background: ${({ theme }) => (theme.isDark ? '#322B48' : '#EEEAF4')}; + } + .bccb-widget-from-network-list-item, .bccb-widget-from-network-list-item-active, + .bccb-widget-to-network-list-item, .bccb-widget-to-network-list-item-active { + background: none; + border: none; + } + .bccb-widget-from-network-list-item-wrapper, .bccb-widget-from-network-list-item-active-wrapper, + .bccb-widget-to-network-list-item-wrapper, .bccb-widget-to-network-list-item-active-wrapper { + padding: 0 24px; + &:hover { + background: ${({ theme }) => (theme.isDark ? '#322B48' : '#EEEAF4')}; + } + .bccb-widget-from-network-list-item, .bccb-widget-from-network-list-item-active, + .bccb-widget-to-network-list-item, .bccb-widget-to-network-list-item-active { + padding: 12px 0; + font-size: 16px; + font-style: normal; + font-weight: 400; + line-height: 24px; + color: ${({ theme }) => (theme.isDark ? '#F4EEFF' : '#280D5F')}; + img { + outline: 2px solid ${({ theme }) => (theme.isDark ? '#372F47' : '#EEEAF4')}; + } + } + } + } + + .bccb-widget-token-modal-content { + width: 100vw; + height: 100vh; + background: ${({ theme }) => (theme.isDark ? '#27262C' : '#FFFFFF')}; + ${({ theme }) => theme.mediaQueries.sm} { + max-height: 80vh; + width: 360px; + height: 665px; + } + .bccb-widget-token-modal-body { + padding: 12px 0; + & > div { + margin-bottom: 16px; + padding: 0; + } + .bccb-widget-token-modal-list-header { + font-size: 14px; + font-weight: 400; + line-height: 21px; + + & > p:nth-child(2) { + display: none; + } + } + .bccb-widget-token-list-item-active-wrapper { + background: ${({ theme }) => (theme.isDark ? '#322B48' : '#EEEAF4')}; + } + + .bccb-widget-token-list-item-wrapper, .bccb-widget-token-list-item-active-wrapper, .bccb-widget-token-list-item-disabled-wrapper { + padding: 0; + border-radius: 0; + &:hover { + background: ${({ theme }) => (theme.isDark ? '#322B48' : '#EEEAF4')}; + } + .bccb-widget-token-list-item, .bccb-widget-token-list-item-active, .bccb-widget-token-list-item-disabled { + padding: 12px 24px; + border: none; + height: 66px; + border-radius: 0; + background: none; + img, .default-icon { + width: 40px; + height: 40px; + } + .bccb-widget-token-list-symbol { + font-size: 16px; + font-style: normal; + font-weight: 600; + line-height: 150%; /* 24px */ + } + + .bccb-widget-token-address-link { + height: 18px; + .bccb-widget-token-list-address { + &, & > p { + display: block; + height: 18px; + font-size: 12px; + font-style: normal; + font-weight: 400; + line-height: 150%; /* 18px */ + letter-spacing: 0.12px; + } + } + .token-name { + font-size: 12px; + font-weight: 400; + line-height: 150%; /* 18px */ + letter-spacing: 0.12px; + } + } + + .bccb-widget-token-list-token-balance > div { + font-weight: 400; + } + } + } + } + } + .bccb-widget-from-network-modal-header, .bccb-widget-to-network-modal-header, .bccb-widget-token-modal-header, + .bccb-widget-modal-route-header { + margin: 24px 24px 0; + height: 30px; + color: ${({ theme }) => (theme.isDark ? '#F4EEFF' : '#280D5F')}; + font-size: 20px; + font-weight: 600; + line-height: 30px; + letter-spacing: -0.2px; + border-bottom: none; + padding: 0; + svg { + color: ${({ theme }) => (theme.isDark ? '#B8ADD2' : '#7A6EAA')}; + } + } + .bccb-widget-token-modal-list-header { + padding-bottom: 6px; + > p { + display: block; + font-size: 14px; + font-weight: 400; + line-height: 150%; /* 21px */ + } + } + .bccb-widget-from-network-modal-search, + .bccb-widget-to-network-modal-search { + margin-bottom: 8px; + } + .bccb-widget-token-modal-search, + .bccb-widget-from-network-modal-search, + .bccb-widget-to-network-modal-search { + margin: 0 24px; + border: none; + outline: none; + input { + font-size: 16px; + font-weight: 400; + line-height: 150%; /* 24px */ + border-radius: 16px; + color: ${({ theme }) => (theme.isDark ? '#B8ADD2' : '#7A6EAA')}; + background: ${({ theme }) => (theme.isDark ? '#372F47' : '#EEEAF4')}; + outline: none; + border: none; + border: 1px solid ${({ theme }) => (theme.isDark ? '#55496E' : '#D7CAEC')}; + box-shadow: 0px 2px 0px -1px rgba(0, 0, 0, 0.16) inset; + &:focus, &:hover { + box-shadow: 0px 0px 0px 1px #A881FC, 0px 0px 0px 4px rgba(168, 129, 252, 0.40); + border-color: ${({ theme }) => (theme.isDark ? '#55496E' : '#D7CAEC')}; + background: ${({ theme }) => (theme.isDark ? '#372F47' : '#EEEAF4')}; + } + &::placeholder { + color: ${({ theme }) => (theme.isDark ? '#B8ADD2' : '#7A6EAA')}; + font-size: 16px; + font-style: normal; + font-weight: 400; + line-height: 150%; /* 30px */ + letter-spacing: -0.2px; + } + } + .bccb-widget-modal-search-right-element { + button { + background: transparent; + &:hover { + svg { + color: #1E2026; + } + background: transparent; + } + } + } + svg { + width: 24px; + height: 24px; + color: ${({ theme }) => (theme.isDark ? '#B8ADD2' : '#7A6EAA')}; + } + } + .bccb-widget-route-fee-info { + margin-top: -2px; + } + .bccb-widget-route-estimated-time, .bccb-widget-route-fee-info { + font-size: 14px; + font-weight: 400; + line-height: 150%; + overflow: hidden; + color: ${({ theme }) => (theme.isDark ? '#B8ADD2' : '#7A6EAA')}; + } + .bccb-widget-route-error, + .bccb-widget-allowed-send-amount { + display: flex; + align-items: flex-start; + color: ${({ theme }) => (theme.isDark ? '#FF9D00' : '#D67E0A')}; + > div { + font-size: 14px; + font-style: normal; + line-height: 21px; + margin-left: 6px; + } + > svg { + margin-top: -1px; + width: 24px; + height: 24px; + } + } + + /* Route */ + .bccb-widget-route-container { + background: ${({ theme }) => (theme.isDark ? '#27262C' : '#FFFFFF')}; + max-width: 328px; + padding: 0; + box-shadow: none; + .bccb-widget-route-container-inner { + border: 1px solid; + border-radius: 24px; + border-bottom: 2px solid; + border-color: ${({ theme }) => (theme.isDark ? '#383241' : '#E7E3EB')}; + gap: 8px; + padding: 16px 0; + } + .bccb-widget-route-body { + max-width: 328px; + padding: 0 16px; + max-height: unset; + .bccb-widget-route-list { + gap: 8px; + } + } + .bccb-widget-route-header { + padding: 0 16px; + font-size: 12px; + color: ${({ theme }) => (theme.isDark ? '#B8ADD2' : '#7A6EAA')}; + font-weight: 600; + line-height: 150%; /* 18px */ + letter-spacing: 0.12px; + height: 26px; + // .skeleton { + // height: 20px; + // width: 20px; + // } + } + + .bccb-widget-route-wrapper-selected { + border: 2px solid #1FC7D4; + } + .bccb-widget-route-wrapper { + border-color: ${({ theme }) => (theme.isDark ? '#383241' : '#E7E3EB')}; + &.route-error { + .bccb-widget-route-estimated-time, .bccb-widget-route-fee-info, .bccb-widget-route-error, + .bccb-widget-route-token, .bccb-widget-route-name, .bccb-widget-allowed-send-amount { + opacity: 0.6; + } + } + &:not(.route-error):hover { + border-color: #1FC7D4; + } + } + .bccb-widget-route-wrapper, + .bccb-widget-route-wrapper-selected { + color: ${({ theme }) => (theme.isDark ? '#F4EEFF' : '#280D5F')}; + border-radius: 16px; + background: ${({ theme }) => (theme.isDark ? '#08060B' : '#FAF9FA')}; + .bccb-widget-route-name { + svg, img { + width: 24px; + height: 24px; + } + .bccb-widget-route-name-text { + font-size: 14px; + font-weight: 600; + line-height: 150%; /* 21px */ + } + } + .bccb-widget-route-token { + .bccb-widget-route-title-amount { + font-size: 24px; + font-weight: 600; + line-height: 150%; /* 36px */ + letter-spacing: -0.24px; + } + .bccb-widget-route-token-icon > div { + font-weight: 600; + font-size: 16px; + } + .bccb-widget-route-token-tooltip { + font-size: 16px; + font-weight: 600; + line-height: 150%; /* 24px */ + } + } + } + } + + /* Transfer Modal */ + .bccb-widget-transaction-confirming-modal, .bccb-widget-transaction-approve-modal, + .bccb-widget-transaction-failed-modal, .bccb-widget-transaction-submitted-modal + { + background: ${({ theme }) => (theme.isDark ? '#27262C' : '#FFFFFF')}; + box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.16), 0px 4px 8px 0px rgba(0, 0, 0, 0.32); + + .bccb-widget-modal-close-button { + color: ${({ theme }) => (theme.isDark ? '#B8ADD2' : '#7A6EAA')}; + &:hover { + color: ${({ theme }) => (theme.isDark ? '#F4EEFF' : '#280D5F')}; + } + } + .bccb-widget-modal-body { + padding: 20px 24px 0; + .bccb-widget-modal-body-icon { + margin-top: 56px; + &, svg { + width: 64px; + height: 64px; + } + } + .bccb-widget-modal-body-title { + font-size: 20px; + font-weight: 600; + line-height: 150%; /* 30px */ + letter-spacing: -0.2px; + color: ${({ theme }) => (theme.isDark ? '#F4EEFF' : '#280D5F')}; + } + .bccb-widget-modal-body-description { + margin-top: 4px; + font-size: 16px; + font-weight: 400; + line-height: 150%; /* 24px */ + color: ${({ theme }) => (theme.isDark ? '#B8ADD2' : '#7A6EAA')}; + & > p { + font-size: 16px; + font-weight: 600; + line-height: 150%; + color: ${({ theme }) => (theme.isDark ? '#F4EEFF' : '#280D5F')}; + } + } + } + .bccb-widget-modal-footer { + padding: 24px; + gap: 8px; + } + } + .bccb-widget-received-info-route-loading, + .bccb-widget-route-skeleton, + .bccb-widget-route-header { + .chakra-skeleton { + --skeleton-start-color: ${({ theme }) => (theme.isDark ? rgba('#FFFFFF', 0.05) : rgba('#08060B', 0.05))}; + --skeleton-end-color: ${({ theme }) => (theme.isDark ? rgba('#FFFFFF', 0.1) : rgba('#08060B', 0.1))}; + } + } + .bccb-widget-route-skeleton { + border: none; + background: ${({ theme }) => (theme.isDark ? '#08060B' : '#FAF9FA')}; + } + + .bccb-widget-received-info-route-open > div { + color: ${({ theme }) => (theme.isDark ? '#48D0DB' : '#02919D')}; + font-size: 14px; + font-weight: 600; + line-height: 150%; /* 21px */ + &:hover { + color: ${({ theme }) => (theme.isDark ? '#48D0DB' : '#02919D')}; + opacity: 0.6; + } + } + + .bccb-widget-refreshing-button { + &:hover { + opacity: 0.6; + } + } + + .bccb-widget-modal-main-button { + border-radius: 16px; + border-bottom: 2px solid rgba(0, 0, 0, 0.20); + background: #1FC7D4; + font-size: 16px; + font-weight: 600; + line-height: 150%; /* 24px */ + color: #FFF; + &:hover { + background: #1FC7D4; + color: #FFF; + opacity: 0.65; + } + } + + .bccb-widget-modal-second-button { + border-radius: 16px; + border: 2px solid #1FC7D4; + color: #02919D; + &:hover { + border: 2px solid #1FC7D4; + background: none; + opacity: 0.65; + color: #02919D; + } + } + + .bccb-widget-route-name-tag-bestTime, + .bccb-widget-route-name-tag-bestReturn { + color: ${({ theme }) => (theme.isDark ? '#000000' : '#FFFFFF ')}; + font-size: 14px; + font-style: normal; + font-weight: 400; + line-height: 150%; /* 21px */ + background: #1FC7D4; + padding: 2px 9px; + height: 25px; + } + .bccb-widget-route-name-tag-bestTime { + background: ${({ theme }) => (theme.isDark ? '#A881FC' : '#7645D9')}; + } + + .bccb-widget-modal-route-content { + width: 100vw; + height: 100vh; + background: ${({ theme }) => (theme.isDark ? '#27262C' : '#FFFFFF')}; + ${({ theme }) => theme.mediaQueries.sm} { + height: auto; + max-height: 80vh; + width: 360px; + } + ${({ theme }) => theme.mediaQueries.lg} { + width: 360px; + height: auto; + } + .bccb-widget-modal-route-wrapper { + padding: 0; + overflow: auto; + } + .bccb-widget-route-container { + width: 100%; + max-width: unset; + border-radius: none; + .bccb-widget-route-body { + width: 100%; + max-width: unset; + padding: 0 24px; + } + .bccb-widget-route-container-inner { + padding: 24px 0; + border: none; + border-radius: none; + ${({ theme }) => theme.mediaQueries.sm} { + padding: 24px 0; + } + ${({ theme }) => theme.mediaQueries.lg} { + padding: 0; + } + } + } + .bccb-widget-route-bottom { + display: none; + } + } + + .bccb-widget-overview { + &[data-show] { + width: auto; + } + ${({ theme }) => theme.mediaQueries.sm} { + &[data-show] { + width: auto; + } + } + ${({ theme }) => theme.mediaQueries.lg} { + &[data-show] { + width: 352px; + } + } + } + + .bccb-widget-info-tooltip { + background: ${({ theme }) => (theme.isDark ? '#FFFFFF' : '#27262C')}; + color: ${({ theme }) => (theme.isDark ? '#27262C' : '#FFFFFF')}; + border-radius: 16px; + padding: 16px; + font-size: 14px; + line-height: 150%; + max-width: 280px; + .chakra-tooltip__arrow { + background: ${({ theme }) => (theme.isDark ? '#FFFFFF' : '#27262C')}; + } + .bccb-widget-route-info-tooltip-fee { + line-height: 150%; + font-size: 14px; + color: ${({ theme }) => (theme.isDark ? '#27262C' : '#FFFFFF')}; + } + } + + .chakra-portal .chakra-popover__popper { + z-index: 1; + + .bccb-widget-route-token-tooltip-content { + --popper-arrow-bg: ${({ theme }) => (theme.isDark ? '#FFFFFF' : '#27262C')};; + background: ${({ theme }) => (theme.isDark ? '#FFFFFF' : '#27262C')}; + border-radius: 16px; + padding: 16px; + } + + .bccb-widget-route-token-tooltip-body { + padding: 0; + &>div { + color: ${({ theme }) => (theme.isDark ? '#27262C' : '#FFFFFF')}; + font-size: 14px; + line-height: 150%; + font-weight: 400; + &>a:hover { + color: ${({ theme }) => (theme.isDark ? '#27262C' : '#FFFFFF')}; + } + } + } + } + } /* body */ +` + +export default GlobalStyle diff --git a/packages/canonical-bridge/src/views/index.tsx b/packages/canonical-bridge/src/views/index.tsx new file mode 100644 index 0000000000000..59bc71a8eca8e --- /dev/null +++ b/packages/canonical-bridge/src/views/index.tsx @@ -0,0 +1,91 @@ +import { useTranslation } from '@pancakeswap/localization' +import { Flex, useToast } from '@pancakeswap/uikit' +import { useMemo } from 'react' + +import { + BridgeRoutes, + BridgeTransfer, + CanonicalBridgeProvider, + CanonicalBridgeProviderProps, + ICanonicalBridgeConfig, +} from '@bnb-chain/canonical-bridge-widget' +import { useTheme } from 'styled-components' +import { useAccount } from 'wagmi' +import { RefreshingIcon } from '../components/RefreshingIcon' +import { V1BridgeLink } from '../components/V1BridgeLink' +import { chains, env } from '../configs' +import { useTransferConfig } from '../hooks/useTransferConfig' +import { locales } from '../modules/i18n/locales' +import { BridgeWalletProvider } from '../modules/wallet/BridgeWalletProvider' +import { breakpoints } from '../theme/breakpoints' +import { dark } from '../theme/dark' +import { light } from '../theme/light' +import GlobalStyle from './GlobalStyle' + +export interface CanonicalBridgeProps { + connectWalletButton: CanonicalBridgeProviderProps['connectWalletButton'] + supportedChainIds: number[] +} + +export const CanonicalBridge = (props: CanonicalBridgeProps) => { + const { connectWalletButton, supportedChainIds } = props + + const transferConfig = useTransferConfig() + const { currentLanguage } = useTranslation() + const theme = useTheme() + const toast = useToast() + + const config = useMemo( + () => ({ + appName: 'canonical-bridge', + assetPrefix: env.ASSET_PREFIX, + appearance: { + bridgeTitle: 'Bridge', + colorMode: theme.isDark ? 'dark' : 'light', + theme: { + dark, + light, + breakpoints, + }, + locale: currentLanguage.code, + messages: locales[currentLanguage.code] ?? locales.en, + }, + http: { + apiTimeOut: 30 * 1000, + serverEndpoint: env.SERVER_ENDPOINT, + }, + }), + [currentLanguage.code, theme.isDark], + ) + + const { connector } = useAccount() + const supportedChains = useMemo(() => { + return chains + .filter((e) => supportedChainIds.includes(e.id)) + .filter((e) => !(connector?.id === 'BinanceW3WSDK' && e.id === 1101)) + }, [connector?.id, supportedChainIds]) + + return ( + + + } + onError={(params) => { + if (params.message) { + toast.toastError(params.message) + } + }} + > + + + + + + + + ) +} diff --git a/packages/canonical-bridge/tsconfig.json b/packages/canonical-bridge/tsconfig.json new file mode 100644 index 0000000000000..b567ee32a17e4 --- /dev/null +++ b/packages/canonical-bridge/tsconfig.json @@ -0,0 +1,22 @@ +{ + "compilerOptions": { + "outDir": "./dist", + "lib": ["dom", "DOM.Iterable", "ESNext"], + "allowJs": true, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "importHelpers": true, + "forceConsistentCasingInFileNames": true, + "module": "ES2020", + "moduleResolution": "Bundler", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": false, + "jsx": "react-jsx", + "target": "es2020" + }, + "include": ["src"], + "exclude": ["node_modules", "src/**/*.stories.tsx"] +} diff --git a/packages/canonical-bridge/vite.config.ts b/packages/canonical-bridge/vite.config.ts new file mode 100644 index 0000000000000..a6a77181ee301 --- /dev/null +++ b/packages/canonical-bridge/vite.config.ts @@ -0,0 +1,18 @@ +import { defineConfig } from 'vite' +import dts from 'vite-plugin-dts' + +import pkg from './package.json' + +export default defineConfig({ + build: { + lib: { + entry: 'src/index.ts', + fileName: 'index', + formats: ['cjs', 'es'], + }, + rollupOptions: { + external: [...Object.keys(pkg.peerDependencies)], + }, + }, + plugins: [dts()], +}) diff --git a/packages/canonical-bridge/vitest.config.ts b/packages/canonical-bridge/vitest.config.ts new file mode 100644 index 0000000000000..6ba9b228dcb58 --- /dev/null +++ b/packages/canonical-bridge/vitest.config.ts @@ -0,0 +1,12 @@ +import react from '@vitejs/plugin-react' +import { defineConfig } from 'vitest/config' + +export default defineConfig({ + // @ts-ignore + plugins: [react()], + test: { + setupFiles: ['./src/setupTests.js'], + environment: 'happy-dom', + globals: true, + }, +}) diff --git a/packages/hooks/package.json b/packages/hooks/package.json index b217f4fa4a4d5..99d3c9aadb624 100644 --- a/packages/hooks/package.json +++ b/packages/hooks/package.json @@ -21,6 +21,7 @@ "devDependencies": { "@types/js-cookie": "^3.0.2", "styled-components": "6.0.7", - "@types/react": "^18.2.21" + "@types/react": "^18.2.21", + "@babel/core": "^7.23.9" } } diff --git a/packages/uikit/package.json b/packages/uikit/package.json index cd8aaab83ade6..fc1a557201696 100644 --- a/packages/uikit/package.json +++ b/packages/uikit/package.json @@ -52,7 +52,7 @@ "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist" }, "devDependencies": { - "@babel/core": "^7.23.3", + "@babel/core": "^7.23.9", "@babel/preset-env": "^7.23.3", "@babel/preset-react": "^7.23.3", "@pancakeswap/chains": "workspace:*", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9d3de26522e4f..3744f974d836b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -295,7 +295,7 @@ importers: version: link:../../packages/widgets-internal '@reduxjs/toolkit': specifier: ^1.9.1 - version: 1.9.7(react-redux@8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.3)(@babel/preset-env@7.23.3(@babel/core@7.23.3))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1))(react@18.2.0) + version: 1.9.7(react-redux@8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1))(react@18.2.0) '@tanstack/react-query': specifier: ^5.52.1 version: 5.52.1(react@18.2.0) @@ -304,7 +304,7 @@ importers: version: 1.14.0 '@vanilla-extract/next-plugin': specifier: ^2.3.0 - version: 2.3.2(@types/node@18.0.4)(next@14.2.14(@babel/core@7.23.3)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(terser@5.24.0)(webpack@5.89.0(esbuild@0.17.19)) + version: 2.3.2(@types/node@18.0.4)(next@14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(terser@5.24.0)(webpack@5.89.0(esbuild@0.17.19)) '@vanilla-extract/recipes': specifier: ^0.5.0 version: 0.5.1(@vanilla-extract/css@1.14.0) @@ -322,13 +322,13 @@ importers: version: 4.17.21 next: specifier: 'catalog:' - version: 14.2.14(@babel/core@7.23.3)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) next-seo: specifier: ^5.15.0 - version: 5.15.0(next@14.2.14(@babel/core@7.23.3)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 5.15.0(next@14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) next-themes: specifier: ^0.2.1 - version: 0.2.1(next@14.2.14(@babel/core@7.23.3)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 0.2.1(next@14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: specifier: ^18.2.0 version: 18.2.0 @@ -410,16 +410,16 @@ importers: version: 5.52.1(react@18.2.0) '@vanilla-extract/next-plugin': specifier: ^2.3.0 - version: 2.3.2(@types/node@18.0.4)(next@14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(terser@5.24.0)(webpack@5.89.0(esbuild@0.17.19)) + version: 2.3.2(@types/node@18.0.4)(next@14.2.14(@babel/core@7.23.3)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(terser@5.24.0)(webpack@5.89.0(esbuild@0.17.19)) next: specifier: 'catalog:' - version: 14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.2.14(@babel/core@7.23.3)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) next-seo: specifier: ^5.15.0 - version: 5.15.0(next@14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 5.15.0(next@14.2.14(@babel/core@7.23.3)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) next-themes: specifier: ^0.2.1 - version: 0.2.1(next@14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 0.2.1(next@14.2.14(@babel/core@7.23.3)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) qs: specifier: ^6.0.0 version: 6.11.2 @@ -477,7 +477,7 @@ importers: dependencies: '@0xsquid/widget': specifier: ^1.6.0 - version: 1.6.16(@types/react@18.2.37)(@wagmi/core@0.10.17(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) + version: 1.6.16(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(@wagmi/core@0.10.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) '@material-ui/core': specifier: ^4.12.4 version: 4.12.4(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) @@ -501,7 +501,7 @@ importers: version: 2.3.2(@types/node@18.0.4)(next@14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(terser@5.24.0)(webpack@5.89.0(esbuild@0.17.19)) '@wagmi/core': specifier: ^0.10.11 - version: 0.10.17(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) + version: 0.10.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) '@wormhole-foundation/wormhole-connect': specifier: 0.1.7 version: 0.1.7(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@types/react@18.2.37)(react@18.2.0))(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) @@ -537,7 +537,7 @@ importers: version: 2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) wagmi: specifier: 'catalog:' - version: 2.12.17(@tanstack/query-core@5.52.0)(@tanstack/react-query@4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + version: 2.12.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) devDependencies: '@next/eslint-plugin-next': specifier: 14.2.3 @@ -602,7 +602,7 @@ importers: version: 5.52.1(react@18.2.0) '@vanilla-extract/next-plugin': specifier: ^2.3.0 - version: 2.3.2(@types/node@18.0.4)(next@14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(terser@5.24.0)(webpack@5.89.0(esbuild@0.17.19)) + version: 2.3.2(@types/node@18.0.4)(next@14.2.14(@babel/core@7.23.3)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(terser@5.24.0)(webpack@5.89.0(esbuild@0.17.19)) dayjs: specifier: ^1.11.10 version: 1.11.10 @@ -611,13 +611,13 @@ importers: version: 4.17.21 next: specifier: 'catalog:' - version: 14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.2.14(@babel/core@7.23.3)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) next-seo: specifier: ^5.15.0 - version: 5.15.0(next@14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 5.15.0(next@14.2.14(@babel/core@7.23.3)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) next-themes: specifier: ^0.2.1 - version: 0.2.1(next@14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 0.2.1(next@14.2.14(@babel/core@7.23.3)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) qs: specifier: ^6.0.0 version: 6.11.2 @@ -684,10 +684,10 @@ importers: dependencies: '@binance/w3w-wagmi-connector-v2': specifier: ^1.2.3 - version: 1.2.3(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.0.4)(typescript@5.2.2))(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@2.12.17(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)) + version: 1.2.3(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.0.4)(typescript@5.2.2))(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@2.12.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)) '@cyberlab/cyber-app-sdk': specifier: v3.0.0-beta.5 - version: 3.0.0-beta.5(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/node@18.0.4)(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) + version: 3.0.0-beta.5(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/node@18.0.4)(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) '@datadog/browser-logs': specifier: ^5.8.0 version: 5.8.0(@datadog/browser-rum@5.8.0) @@ -750,7 +750,7 @@ importers: version: link:../../packages/widgets-internal '@reduxjs/toolkit': specifier: ^1.9.1 - version: 1.9.7(react-redux@8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1))(react@18.2.0) + version: 1.9.7(react-redux@8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1))(react@18.2.0) '@tanstack/react-query': specifier: ^5.52.1 version: 5.52.1(react@18.2.0) @@ -828,7 +828,7 @@ importers: version: 2.3.0(@popperjs/core@2.11.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react-redux: specifier: ^8.0.5 - version: 8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1) + version: 8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1) react-window: specifier: ^1.8.7 version: 1.8.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) @@ -855,7 +855,7 @@ importers: version: 2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) wagmi: specifier: 'catalog:' - version: 2.12.17(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + version: 2.12.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) devDependencies: '@next/eslint-plugin-next': specifier: 14.2.3 @@ -950,10 +950,10 @@ importers: version: 1.1.4 '@binance/w3w-wagmi-connector-v2': specifier: ^1.2.3 - version: 1.2.3(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@2.12.17(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)) + version: 1.2.3(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@2.12.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)) '@cyberlab/cyber-app-sdk': specifier: v3.0.0-beta.5 - version: 3.0.0-beta.5(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/node@13.13.52)(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) + version: 3.0.0-beta.5(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/node@13.13.52)(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) '@datadog/browser-logs': specifier: ^5.8.0 version: 5.8.0(@datadog/browser-rum@5.8.0) @@ -974,16 +974,19 @@ importers: version: 13.0.7(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@orbs-network/twap-ui': specifier: 0.11.4 - version: 0.11.4(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(@types/react@18.2.37)(bufferutil@4.0.8)(chalk@4.1.2)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4) + version: 0.11.4(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(@types/react@18.2.37)(bufferutil@4.0.8)(chalk@5.3.0)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4) '@orbs-network/twap-ui-pancake': specifier: 0.11.4 - version: 0.11.4(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@types/react@18.2.37)(react@18.2.0))(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(@types/react@18.2.37)(bufferutil@4.0.8)(chalk@4.1.2)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4) + version: 0.11.4(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@types/react@18.2.37)(react@18.2.0))(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(@types/react@18.2.37)(bufferutil@4.0.8)(chalk@5.3.0)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4) '@pancakeswap/achievements': specifier: workspace:* version: link:../../packages/achievements '@pancakeswap/blog': specifier: workspace:* version: link:../../packages/blog + '@pancakeswap/canonical-bridge': + specifier: workspace:* + version: link:../../packages/canonical-bridge '@pancakeswap/chains': specifier: workspace:* version: link:../../packages/chains @@ -1082,7 +1085,7 @@ importers: version: 1.29.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@reduxjs/toolkit': specifier: ^1.9.1 - version: 1.9.7(react-redux@8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1))(react@18.2.0) + version: 1.9.7(react-redux@8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1))(react@18.2.0) '@sentry/nextjs': specifier: ^8.16.0 version: 8.16.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.25.1(@opentelemetry/api@1.9.0))(next@14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)(webpack@5.89.0(esbuild@0.17.19)) @@ -1103,13 +1106,13 @@ importers: version: 0.6.8(bufferutil@4.0.8)(rollup@3.29.4)(utf-8-validate@5.0.10) '@walletconnect/notify-client': specifier: ^1.0.0 - version: 1.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + version: 1.0.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@web3inbox/core': specifier: 1.2.0 - version: 1.2.0(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) + version: 1.2.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) '@web3inbox/react': specifier: 1.2.0 - version: 1.2.0(@web3inbox/core@1.2.0(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)) + version: 1.2.0(@web3inbox/core@1.2.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)) '@yornaath/batshit': specifier: ^0.9.0 version: 0.9.0 @@ -1229,7 +1232,7 @@ importers: version: 1.6.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react-redux: specifier: ^8.0.5 - version: 8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1) + version: 8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1) react-transition-group: specifier: ^4.4.5 version: 4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) @@ -1271,7 +1274,7 @@ importers: version: 2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) wagmi: specifier: 'catalog:' - version: 2.12.17(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + version: 2.12.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) zod: specifier: ^3.22.3 version: 3.22.4 @@ -1476,7 +1479,7 @@ importers: version: 4.0.5 tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/awgmi: dependencies: @@ -1528,7 +1531,7 @@ importers: version: 13.3.8 tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/blog: dependencies: @@ -1549,11 +1552,93 @@ importers: specifier: ^6.0.0 version: 6.9.10 + packages/canonical-bridge: + dependencies: + '@bnb-chain/canonical-bridge-widget': + specifier: 0.5.14-alpha.5 + version: 0.5.14-alpha.5(2b2s7kabqcsjyxwja7i7qf3u64) + '@emotion/react': + specifier: ^11 + version: 11.11.4(@types/react@18.2.37)(react@18.2.0) + '@emotion/styled': + specifier: ^11 + version: 11.11.5(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@types/react@18.2.37)(react@18.2.0) + '@solana/spl-token': + specifier: ^0 + version: 0.4.9(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.2.2)(utf-8-validate@5.0.10) + '@solana/wallet-adapter-react': + specifier: ^0 + version: 0.15.35(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + '@solana/web3.js': + specifier: ^1 + version: 1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@tanstack/react-query': + specifier: ^5.52.1 + version: 5.52.1(react@18.2.0) + '@tronweb3/tronwallet-adapter-react-hooks': + specifier: ^1 + version: 1.1.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + axios: + specifier: ~1.6.8 + version: 1.6.8(debug@4.3.4) + polished: + specifier: ^4.2.2 + version: 4.2.2 + styled-components: + specifier: 6.0.7 + version: 6.0.7(babel-plugin-styled-components@1.13.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + tronweb: + specifier: ^6 + version: 6.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + devDependencies: + '@pancakeswap/localization': + specifier: workspace:* + version: link:../localization + '@pancakeswap/uikit': + specifier: workspace:* + version: link:../uikit + '@types/lodash': + specifier: ^4.14.168 + version: 4.14.202 + '@types/react': + specifier: ^18.2.21 + version: 18.2.37 + '@types/react-dom': + specifier: ^18.0.6 + version: 18.2.15 + '@types/react-router-dom': + specifier: ^5.1.7 + version: 5.3.3 + '@types/react-transition-group': + specifier: ^4.4.1 + version: 4.4.10 + '@vitejs/plugin-react': + specifier: 4.2.1 + version: 4.2.1(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0)) + react: + specifier: ^18.2.0 + version: 18.2.0 + react-dom: + specifier: ^18.2.0 + version: 18.2.0(react@18.2.0) + viem: + specifier: 'catalog:' + version: 2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) + vite: + specifier: 5.0.12 + version: 5.0.12(@types/node@22.7.5)(terser@5.24.0) + vite-plugin-dts: + specifier: ^3.5.3 + version: 3.6.3(@types/node@22.7.5)(rollup@3.29.4)(typescript@5.2.2)(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0)) + wagmi: + specifier: 'catalog:' + version: 2.12.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + packages/chains: devDependencies: tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/eslint-config: dependencies: @@ -1685,7 +1770,7 @@ importers: version: 4.17.21 tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/hooks: dependencies: @@ -1703,11 +1788,14 @@ importers: version: 3.0.5 next-themes: specifier: ^0.2.1 - version: 0.2.1(next@14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 0.2.1(next@14.2.20(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: specifier: ^18.2.0 version: 18.2.0 devDependencies: + '@babel/core': + specifier: ^7.23.9 + version: 7.23.9 '@types/js-cookie': specifier: ^3.0.2 version: 3.0.6 @@ -1747,7 +1835,7 @@ importers: version: 2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) wagmi: specifier: 'catalog:' - version: 2.12.17(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + version: 2.12.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) packages/localization: dependencies: @@ -1788,7 +1876,7 @@ importers: version: link:../utils tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/next-config: devDependencies: @@ -1816,7 +1904,7 @@ importers: devDependencies: tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/permit2-sdk: dependencies: @@ -1838,7 +1926,7 @@ importers: version: 2.6.2 tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/pools: dependencies: @@ -1872,7 +1960,7 @@ importers: version: 4.14.201 tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/position-managers: dependencies: @@ -1959,7 +2047,7 @@ importers: version: link:../tsconfig tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/routing-sdk: dependencies: @@ -1999,7 +2087,7 @@ importers: version: 4.14.202 tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/routing-sdk/addons/quoter: dependencies: @@ -2033,7 +2121,7 @@ importers: version: link:../../../tsconfig tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) viem: specifier: 'catalog:' version: 2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@6.0.3)(zod@3.22.4) @@ -2064,7 +2152,7 @@ importers: version: link:../../../utils tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/routing-sdk/addons/v2: dependencies: @@ -2089,7 +2177,7 @@ importers: version: link:../../../tsconfig tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/routing-sdk/addons/v3: dependencies: @@ -2123,7 +2211,7 @@ importers: version: 4.14.202 tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/smart-router: dependencies: @@ -2208,7 +2296,7 @@ importers: version: 2.2.2 tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/stable-swap-sdk: dependencies: @@ -2239,7 +2327,7 @@ importers: version: link:../utils tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) viem: specifier: 'catalog:' version: 2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@6.0.3)(zod@3.22.4) @@ -2282,7 +2370,7 @@ importers: version: 4.0.5 tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/swap-sdk-core: dependencies: @@ -2307,7 +2395,7 @@ importers: version: 4.0.5 tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/swap-sdk-evm: dependencies: @@ -2332,7 +2420,7 @@ importers: version: link:../tsconfig tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/token-lists: dependencies: @@ -2351,7 +2439,7 @@ importers: version: link:../utils '@reduxjs/toolkit': specifier: ^1.9.1 - version: 1.9.7(react-redux@8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1))(react@18.2.0) + version: 1.9.7(react-redux@8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1))(react@18.2.0) '@types/react': specifier: ^18.2.21 version: 18.2.37 @@ -2366,7 +2454,7 @@ importers: version: 18.2.0 tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/tokens: dependencies: @@ -2385,7 +2473,7 @@ importers: version: link:../utils tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/tsconfig: {} @@ -2498,14 +2586,14 @@ importers: version: 2.6.2 devDependencies: '@babel/core': - specifier: ^7.23.3 + specifier: ^7.23.9 version: 7.23.9 '@babel/preset-env': specifier: ^7.23.3 - version: 7.23.3(@babel/core@7.23.9) + version: 7.26.0(@babel/core@7.23.9) '@babel/preset-react': specifier: ^7.23.3 - version: 7.23.3(@babel/core@7.23.9) + version: 7.26.3(@babel/core@7.23.9) '@pancakeswap/chains': specifier: workspace:* version: link:../chains @@ -2526,13 +2614,13 @@ importers: version: 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@storybook/builder-vite': specifier: ^7.0.7 - version: 7.5.3(typescript@5.2.2)(vite@5.0.12(@types/node@20.5.7)(terser@5.24.0)) + version: 7.5.3(typescript@5.2.2)(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0)) '@storybook/react': specifier: ^7.0.7 version: 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) '@storybook/react-vite': specifier: ^7.0.7 - version: 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.9.6)(typescript@5.2.2)(vite@5.0.12(@types/node@20.5.7)(terser@5.24.0)) + version: 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.9.6)(typescript@5.2.2)(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0)) '@testing-library/jest-dom': specifier: ^5.11.6 version: 5.17.0 @@ -2565,10 +2653,10 @@ importers: version: 5.1.4 '@vanilla-extract/vite-plugin': specifier: ^3.8.0 - version: 3.9.0(@types/node@20.5.7)(terser@5.24.0)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(vite@5.0.12(@types/node@20.5.7)(terser@5.24.0)) + version: 3.9.0(@types/node@22.7.5)(terser@5.24.0)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0)) '@vitejs/plugin-react': specifier: 4.2.1 - version: 4.2.1(vite@5.0.12(@types/node@20.5.7)(terser@5.24.0)) + version: 4.2.1(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0)) babel-loader: specifier: ^9.1.2 version: 9.1.3(@babel/core@7.23.9)(webpack@5.89.0(esbuild@0.18.20)) @@ -2583,13 +2671,13 @@ importers: version: 13.3.8 jest-styled-components: specifier: ^7.0.8 - version: 7.2.0(styled-components@6.0.7) + version: 7.2.0(styled-components@6.0.7(babel-plugin-styled-components@1.13.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)) js-cookie: specifier: '*' version: 3.0.5 next-themes: specifier: ^0.2.1 - version: 0.2.1(next@14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 0.2.1(next@14.2.20(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) polished: specifier: ^4.2.2 version: 4.2.2 @@ -2613,7 +2701,7 @@ importers: version: 6.0.3(@types/react@18.2.37)(react@18.2.0) react-redux: specifier: ^8.0.5 - version: 8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1) + version: 8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1) react-router-dom: specifier: ^5.2.0 version: 5.3.4(react@18.2.0) @@ -2634,13 +2722,13 @@ importers: version: 6.0.7(babel-plugin-styled-components@1.13.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) vite: specifier: 5.0.12 - version: 5.0.12(@types/node@20.5.7)(terser@5.24.0) + version: 5.0.12(@types/node@22.7.5)(terser@5.24.0) vite-plugin-dts: specifier: ^3.5.3 - version: 3.6.3(@types/node@20.5.7)(rollup@4.9.6)(typescript@5.2.2)(vite@5.0.12(@types/node@20.5.7)(terser@5.24.0)) + version: 3.6.3(@types/node@22.7.5)(rollup@4.9.6)(typescript@5.2.2)(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0)) vite-tsconfig-paths: specifier: ^4.0.3 - version: 4.2.1(typescript@5.2.2)(vite@5.0.12(@types/node@20.5.7)(terser@5.24.0)) + version: 4.2.1(typescript@5.2.2)(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0)) packages/universal-router-sdk: dependencies: @@ -2748,7 +2836,7 @@ importers: version: link:../tsconfig tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/v3-sdk: dependencies: @@ -2785,7 +2873,7 @@ importers: version: link:../utils tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/v4-sdk: dependencies: @@ -2807,7 +2895,7 @@ importers: version: link:../swap-sdk tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) packages/wagmi: dependencies: @@ -2816,7 +2904,7 @@ importers: version: 5.52.1(react@18.2.0) '@walletconnect/ethereum-provider': specifier: ^2.14.0 - version: 2.14.0(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) + version: 2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) devDependencies: '@blocto/sdk': specifier: ^0.5.4 @@ -2835,13 +2923,13 @@ importers: version: 18.2.0(react@18.2.0) tsup: specifier: ^6.7.0 - version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2) + version: 6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2) viem: specifier: 'catalog:' version: 2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) wagmi: specifier: 'catalog:' - version: 2.12.17(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + version: 2.12.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) packages/widgets-internal: dependencies: @@ -2902,7 +2990,7 @@ importers: devDependencies: '@sentry/nextjs': specifier: ^8.0.0 - version: 8.16.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.25.1(@opentelemetry/api@1.9.0))(next@14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)(webpack@5.89.0(esbuild@0.17.19)) + version: 8.16.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.25.1(@opentelemetry/api@1.9.0))(next@14.2.14(@babel/core@7.23.3)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)(webpack@5.89.0(esbuild@0.17.19)) '@types/d3': specifier: ^7.4.0 version: 7.4.3 @@ -2920,7 +3008,7 @@ importers: version: 3.1.2 next: specifier: 'catalog:' - version: 14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + version: 14.2.14(@babel/core@7.23.3)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) polished: specifier: ^4.2.2 version: 4.2.2 @@ -2991,6 +3079,9 @@ packages: '@adraffy/ens-normalize@1.10.0': resolution: {integrity: sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q==} + '@adraffy/ens-normalize@1.10.1': + resolution: {integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==} + '@adraffy/ens-normalize@1.11.0': resolution: {integrity: sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg==} @@ -3037,6 +3128,10 @@ packages: resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} engines: {node: '>=6.9.0'} + '@babel/code-frame@7.26.2': + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} + engines: {node: '>=6.9.0'} + '@babel/compat-data@7.23.3': resolution: {integrity: sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==} engines: {node: '>=6.9.0'} @@ -3045,6 +3140,10 @@ packages: resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==} engines: {node: '>=6.9.0'} + '@babel/compat-data@7.26.3': + resolution: {integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==} + engines: {node: '>=6.9.0'} + '@babel/core@7.23.3': resolution: {integrity: sha512-Jg+msLuNuCJDyBvFv5+OKOUjWMZgd85bKjbICd3zWrKAo+bJ49HJufi7CQE0q0uR8NGyO6xkCACScNqyjHSZew==} engines: {node: '>=6.9.0'} @@ -3061,10 +3160,18 @@ packages: resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==} engines: {node: '>=6.9.0'} + '@babel/generator@7.26.3': + resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==} + engines: {node: '>=6.9.0'} + '@babel/helper-annotate-as-pure@7.22.5': resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} + '@babel/helper-annotate-as-pure@7.25.9': + resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==} + engines: {node: '>=6.9.0'} + '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': resolution: {integrity: sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==} engines: {node: '>=6.9.0'} @@ -3077,18 +3184,34 @@ packages: resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==} engines: {node: '>=6.9.0'} + '@babel/helper-compilation-targets@7.25.9': + resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==} + engines: {node: '>=6.9.0'} + '@babel/helper-create-class-features-plugin@7.22.15': resolution: {integrity: sha512-jKkwA59IXcvSaiK2UN45kKwSC9o+KuoXsBDvHvU/7BecYIp8GQ2UwrVvFgJASUT+hBnwJx6MhvMCuMzwZZ7jlg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-create-class-features-plugin@7.25.9': + resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-create-regexp-features-plugin@7.22.15': resolution: {integrity: sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-create-regexp-features-plugin@7.26.3': + resolution: {integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-define-polyfill-provider@0.4.3': resolution: {integrity: sha512-WBrLmuPP47n7PNwsZ57pqam6G/RGo1vw/87b0Blc53tZNGZ4x7YvZ6HgQe2vo1W/FR20OgjeZuGXzudPiXHFug==} peerDependencies: @@ -3099,6 +3222,11 @@ packages: peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/helper-define-polyfill-provider@0.6.3': + resolution: {integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==} + peerDependencies: + '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 + '@babel/helper-environment-visitor@7.22.20': resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} engines: {node: '>=6.9.0'} @@ -3115,6 +3243,10 @@ packages: resolution: {integrity: sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==} engines: {node: '>=6.9.0'} + '@babel/helper-member-expression-to-functions@7.25.9': + resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==} + engines: {node: '>=6.9.0'} + '@babel/helper-module-imports@7.22.15': resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} engines: {node: '>=6.9.0'} @@ -3123,16 +3255,30 @@ packages: resolution: {integrity: sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==} engines: {node: '>=6.9.0'} + '@babel/helper-module-imports@7.25.9': + resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} + engines: {node: '>=6.9.0'} + '@babel/helper-module-transforms@7.23.3': resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-module-transforms@7.26.0': + resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-optimise-call-expression@7.22.5': resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==} engines: {node: '>=6.9.0'} + '@babel/helper-optimise-call-expression@7.25.9': + resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==} + engines: {node: '>=6.9.0'} + '@babel/helper-plugin-utils@7.22.5': resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} engines: {node: '>=6.9.0'} @@ -3141,18 +3287,34 @@ packages: resolution: {integrity: sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==} engines: {node: '>=6.9.0'} + '@babel/helper-plugin-utils@7.25.9': + resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==} + engines: {node: '>=6.9.0'} + '@babel/helper-remap-async-to-generator@7.22.20': resolution: {integrity: sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-remap-async-to-generator@7.25.9': + resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-replace-supers@7.22.20': resolution: {integrity: sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-replace-supers@7.25.9': + resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-simple-access@7.22.5': resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} engines: {node: '>=6.9.0'} @@ -3161,6 +3323,10 @@ packages: resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==} engines: {node: '>=6.9.0'} + '@babel/helper-skip-transparent-expression-wrappers@7.25.9': + resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==} + engines: {node: '>=6.9.0'} + '@babel/helper-split-export-declaration@7.22.6': resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} engines: {node: '>=6.9.0'} @@ -3173,10 +3339,18 @@ packages: resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} engines: {node: '>=6.9.0'} + '@babel/helper-string-parser@7.25.9': + resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.22.20': resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.25.9': + resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.22.15': resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==} engines: {node: '>=6.9.0'} @@ -3185,10 +3359,18 @@ packages: resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.25.9': + resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} + engines: {node: '>=6.9.0'} + '@babel/helper-wrap-function@7.22.20': resolution: {integrity: sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==} engines: {node: '>=6.9.0'} + '@babel/helper-wrap-function@7.25.9': + resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==} + engines: {node: '>=6.9.0'} + '@babel/helpers@7.23.2': resolution: {integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==} engines: {node: '>=6.9.0'} @@ -3215,24 +3397,59 @@ packages: engines: {node: '>=6.0.0'} hasBin: true + '@babel/parser@7.26.3': + resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9': + resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9': + resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3': resolution: {integrity: sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9': + resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3': resolution: {integrity: sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.13.0 + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9': + resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.13.0 + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3': resolution: {integrity: sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9': + resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/plugin-external-helpers@7.23.3': resolution: {integrity: sha512-W2kdnFytYsSB0X49op/t9Re68rb3m+RN+sK7aD/8lCutepSm22Ms4MmPzMQZ2FYSpItsKlRXG3osVYfLWb83Ug==} engines: {node: '>=6.9.0'} @@ -3344,12 +3561,24 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-import-assertions@7.26.0': + resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-import-attributes@7.23.3': resolution: {integrity: sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-import-attributes@7.26.0': + resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-import-meta@7.10.4': resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: @@ -3366,6 +3595,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-jsx@7.25.9': + resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-logical-assignment-operators@7.10.4': resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: @@ -3426,90 +3661,186 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-arrow-functions@7.25.9': + resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-async-generator-functions@7.23.3': resolution: {integrity: sha512-59GsVNavGxAXCDDbakWSMJhajASb4kBCqDjqJsv+p5nKdbz7istmZ3HrX3L2LuiI80+zsOADCvooqQH3qGCucQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-async-generator-functions@7.25.9': + resolution: {integrity: sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-async-to-generator@7.23.3': resolution: {integrity: sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-async-to-generator@7.25.9': + resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-block-scoped-functions@7.23.3': resolution: {integrity: sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-block-scoped-functions@7.25.9': + resolution: {integrity: sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-block-scoping@7.23.3': resolution: {integrity: sha512-QPZxHrThbQia7UdvfpaRRlq/J9ciz1J4go0k+lPBXbgaNeY7IQrBj/9ceWjvMMI07/ZBzHl/F0R/2K0qH7jCVw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-block-scoping@7.25.9': + resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-class-properties@7.23.3': resolution: {integrity: sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-class-properties@7.25.9': + resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-class-static-block@7.23.3': resolution: {integrity: sha512-PENDVxdr7ZxKPyi5Ffc0LjXdnJyrJxyqF5T5YjlVg4a0VFfQHW0r8iAtRiDXkfHlu1wwcvdtnndGYIeJLSuRMQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.12.0 + '@babel/plugin-transform-class-static-block@7.26.0': + resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.12.0 + '@babel/plugin-transform-classes@7.23.3': resolution: {integrity: sha512-FGEQmugvAEu2QtgtU0uTASXevfLMFfBeVCIIdcQhn/uBQsMTjBajdnAtanQlOcuihWh10PZ7+HWvc7NtBwP74w==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-classes@7.25.9': + resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-computed-properties@7.23.3': resolution: {integrity: sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-computed-properties@7.25.9': + resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-destructuring@7.23.3': resolution: {integrity: sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-destructuring@7.25.9': + resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-dotall-regex@7.23.3': resolution: {integrity: sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-dotall-regex@7.25.9': + resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-duplicate-keys@7.23.3': resolution: {integrity: sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-duplicate-keys@7.25.9': + resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9': + resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/plugin-transform-dynamic-import@7.23.3': resolution: {integrity: sha512-vTG+cTGxPFou12Rj7ll+eD5yWeNl5/8xvQvF08y5Gv3v4mZQoyFf8/n9zg4q5vvCWt5jmgymfzMAldO7orBn7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-dynamic-import@7.25.9': + resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-exponentiation-operator@7.23.3': resolution: {integrity: sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-exponentiation-operator@7.26.3': + resolution: {integrity: sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-export-namespace-from@7.23.3': resolution: {integrity: sha512-yCLhW34wpJWRdTxxWtFZASJisihrfyMOTOQexhVzA78jlU+dH7Dw+zQgcPepQ5F3C6bAIiblZZ+qBggJdHiBAg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-export-namespace-from@7.25.9': + resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-flow-strip-types@7.23.3': resolution: {integrity: sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q==} engines: {node: '>=6.9.0'} @@ -3522,144 +3853,288 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-for-of@7.25.9': + resolution: {integrity: sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-function-name@7.23.3': resolution: {integrity: sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-function-name@7.25.9': + resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-json-strings@7.23.3': resolution: {integrity: sha512-H9Ej2OiISIZowZHaBwF0tsJOih1PftXJtE8EWqlEIwpc7LMTGq0rPOrywKLQ4nefzx8/HMR0D3JGXoMHYvhi0A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-json-strings@7.25.9': + resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-literals@7.23.3': resolution: {integrity: sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-literals@7.25.9': + resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-logical-assignment-operators@7.23.3': resolution: {integrity: sha512-+pD5ZbxofyOygEp+zZAfujY2ShNCXRpDRIPOiBmTO693hhyOEteZgl876Xs9SAHPQpcV0vz8LvA/T+w8AzyX8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-logical-assignment-operators@7.25.9': + resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-member-expression-literals@7.23.3': resolution: {integrity: sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-member-expression-literals@7.25.9': + resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-amd@7.23.3': resolution: {integrity: sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-amd@7.25.9': + resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-commonjs@7.23.3': resolution: {integrity: sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-commonjs@7.26.3': + resolution: {integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-systemjs@7.23.3': resolution: {integrity: sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-systemjs@7.25.9': + resolution: {integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-umd@7.23.3': resolution: {integrity: sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-modules-umd@7.25.9': + resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-named-capturing-groups-regex@7.22.5': resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/plugin-transform-named-capturing-groups-regex@7.25.9': + resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/plugin-transform-new-target@7.23.3': resolution: {integrity: sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-new-target@7.25.9': + resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-nullish-coalescing-operator@7.23.3': resolution: {integrity: sha512-xzg24Lnld4DYIdysyf07zJ1P+iIfJpxtVFOzX4g+bsJ3Ng5Le7rXx9KwqKzuyaUeRnt+I1EICwQITqc0E2PmpA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-nullish-coalescing-operator@7.25.9': + resolution: {integrity: sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-numeric-separator@7.23.3': resolution: {integrity: sha512-s9GO7fIBi/BLsZ0v3Rftr6Oe4t0ctJ8h4CCXfPoEJwmvAPMyNrfkOOJzm6b9PX9YXcCJWWQd/sBF/N26eBiMVw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-numeric-separator@7.25.9': + resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-object-rest-spread@7.23.3': resolution: {integrity: sha512-VxHt0ANkDmu8TANdE9Kc0rndo/ccsmfe2Cx2y5sI4hu3AukHQ5wAu4cM7j3ba8B9548ijVyclBU+nuDQftZsog==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-object-rest-spread@7.25.9': + resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-object-super@7.23.3': resolution: {integrity: sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-object-super@7.25.9': + resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-optional-catch-binding@7.23.3': resolution: {integrity: sha512-LxYSb0iLjUamfm7f1D7GpiS4j0UAC8AOiehnsGAP8BEsIX8EOi3qV6bbctw8M7ZvLtcoZfZX5Z7rN9PlWk0m5A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-optional-catch-binding@7.25.9': + resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-optional-chaining@7.23.3': resolution: {integrity: sha512-zvL8vIfIUgMccIAK1lxjvNv572JHFJIKb4MWBz5OGdBQA0fB0Xluix5rmOby48exiJc987neOmP/m9Fnpkz3Tg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-optional-chaining@7.25.9': + resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-parameters@7.23.3': resolution: {integrity: sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-parameters@7.25.9': + resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-methods@7.23.3': resolution: {integrity: sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-methods@7.25.9': + resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-property-in-object@7.23.3': resolution: {integrity: sha512-a5m2oLNFyje2e/rGKjVfAELTVI5mbA0FeZpBnkOWWV7eSmKQ+T/XW0Vf+29ScLzSxX+rnsarvU0oie/4m6hkxA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-private-property-in-object@7.25.9': + resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-property-literals@7.23.3': resolution: {integrity: sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-property-literals@7.25.9': + resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-display-name@7.23.3': resolution: {integrity: sha512-GnvhtVfA2OAtzdX58FJxU19rhoGeQzyVndw3GgtdECQvQFXPEZIOVULHVZGAYmOgmqjXpVpfocAbSjh99V/Fqw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-display-name@7.25.9': + resolution: {integrity: sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-development@7.22.5': resolution: {integrity: sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-development@7.25.9': + resolution: {integrity: sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx-self@7.23.3': resolution: {integrity: sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ==} engines: {node: '>=6.9.0'} @@ -3678,24 +4153,54 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-jsx@7.25.9': + resolution: {integrity: sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-pure-annotations@7.23.3': resolution: {integrity: sha512-qMFdSS+TUhB7Q/3HVPnEdYJDQIk57jkntAwSuz9xfSE4n+3I+vHYCli3HoHawN1Z3RfCz/y1zXA/JXjG6cVImQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-react-pure-annotations@7.25.9': + resolution: {integrity: sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-regenerator@7.23.3': resolution: {integrity: sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-regenerator@7.25.9': + resolution: {integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-regexp-modifiers@7.26.0': + resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/plugin-transform-reserved-words@7.23.3': resolution: {integrity: sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-reserved-words@7.25.9': + resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-runtime@7.24.3': resolution: {integrity: sha512-J0BuRPNlNqlMTRJ72eVptpt9VcInbxO6iP3jaxr+1NPhC0UkKL+6oeX6VXMEYdADnuqmMmsBspt4d5w8Y/TCbQ==} engines: {node: '>=6.9.0'} @@ -3708,30 +4213,60 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-shorthand-properties@7.25.9': + resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-spread@7.23.3': resolution: {integrity: sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-spread@7.25.9': + resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-sticky-regex@7.23.3': resolution: {integrity: sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-sticky-regex@7.25.9': + resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-template-literals@7.23.3': resolution: {integrity: sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-template-literals@7.25.9': + resolution: {integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-typeof-symbol@7.23.3': resolution: {integrity: sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-typeof-symbol@7.25.9': + resolution: {integrity: sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-typescript@7.23.3': resolution: {integrity: sha512-ogV0yWnq38CFwH20l2Afz0dfKuZBx9o/Y2Rmh5vuSS0YD1hswgEgTfyTzuSrT2q9btmHRSqYoSfwFUVaC1M1Jw==} engines: {node: '>=6.9.0'} @@ -3744,30 +4279,60 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-escapes@7.25.9': + resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-property-regex@7.23.3': resolution: {integrity: sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-property-regex@7.25.9': + resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-regex@7.23.3': resolution: {integrity: sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-regex@7.25.9': + resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-transform-unicode-sets-regex@7.23.3': resolution: {integrity: sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/plugin-transform-unicode-sets-regex@7.25.9': + resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/preset-env@7.23.3': resolution: {integrity: sha512-ovzGc2uuyNfNAs/jyjIGxS8arOHS5FENZaNn4rtE7UdKMMkqHCvboHfcuhWLZNX5cB44QfcGNWjaevxMzzMf+Q==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/preset-env@7.26.0': + resolution: {integrity: sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/preset-flow@7.23.3': resolution: {integrity: sha512-7yn6hl8RIv+KNk6iIrGZ+D06VhVY35wLVf23Cz/mMu1zOr7u4MMP4j0nZ9tLf8+4ZFpnib8cFYgB/oYg9hfswA==} engines: {node: '>=6.9.0'} @@ -3785,6 +4350,12 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/preset-react@7.26.3': + resolution: {integrity: sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/preset-typescript@7.23.3': resolution: {integrity: sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==} engines: {node: '>=6.9.0'} @@ -3820,6 +4391,10 @@ packages: resolution: {integrity: sha512-+xrD2BWLpvHKNmX2QbpdpsBaWnRxahMwJjO+KZk2JOElj5nSmKezyS1B4u+QbHMTX69t4ukm6hh9lsYQ7GHCKA==} engines: {node: '>=6.9.0'} + '@babel/template@7.25.9': + resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} + engines: {node: '>=6.9.0'} + '@babel/traverse@7.23.3': resolution: {integrity: sha512-+K0yF1/9yR0oHdE0StHuEj3uTPzwwbrLGfNOndVJVV2TqA5+j3oljJUb4nmB954FLGjNem976+B+eDuLIjesiQ==} engines: {node: '>=6.9.0'} @@ -3828,6 +4403,10 @@ packages: resolution: {integrity: sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==} engines: {node: '>=6.9.0'} + '@babel/traverse@7.26.4': + resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==} + engines: {node: '>=6.9.0'} + '@babel/types@7.23.3': resolution: {integrity: sha512-OZnvoH2l8PK5eUvEcUyCt/sXgr/h+UWpVuBbOljwcrAgUl6lpchoQ++PHGyQy1AtYnVA6CEq3y5xeEI10brpXw==} engines: {node: '>=6.9.0'} @@ -3840,6 +4419,10 @@ packages: resolution: {integrity: sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==} engines: {node: '>=6.9.0'} + '@babel/types@7.26.3': + resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==} + engines: {node: '>=6.9.0'} + '@base2/pretty-print-object@1.0.1': resolution: {integrity: sha512-4iri8i1AqYHJE2DstZYkyEprg6Pq6sKx3xn5FpySk9sNhH7qN2LLlHJCfDTZRILNwQNPD7mATWM0TBui7uC1pA==} @@ -3884,6 +4467,22 @@ packages: aptos: optional: true + '@bnb-chain/canonical-bridge-widget@0.5.14-alpha.5': + resolution: {integrity: sha512-xo/DkBbC3wrn+NVSsAcIRV/Kl3/mbv749hCmYE9cBJsiisWtqD5QDWDMfM9KD6h/wKHSG1A+HotjTUkEH0gmVQ==} + peerDependencies: + '@emotion/react': ^11 + '@emotion/styled': ^11 + '@solana/spl-token': ^0 + '@solana/wallet-adapter-react': ^0 + '@solana/web3.js': ^1 + '@tanstack/react-query': ^5 + '@tronweb3/tronwallet-adapter-react-hooks': ^1 + react: ^18 + react-dom: ^18 + tronweb: ^6 + viem: ^2 + wagmi: ^2 + '@changesets/apply-release-plan@7.0.0': resolution: {integrity: sha512-vfi69JR416qC9hWmFGSxj7N6wA5J222XNBmezSVATPWDVPIF7gkd4d8CpbEbXmRWbVrkoli3oerGS6dcL/BGsQ==} @@ -4105,9 +4704,6 @@ packages: '@emotion/is-prop-valid@0.8.8': resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} - '@emotion/is-prop-valid@1.2.1': - resolution: {integrity: sha512-61Mf7Ufx4aDxx1xlDeOm8aFFigGHE4z+0sKCa+IHCeZKiyP9RLD0Mmx7m8b9/Cf37f7NAvQOOJAbQQGVr5uERw==} - '@emotion/is-prop-valid@1.2.2': resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==} @@ -4205,12 +4801,6 @@ packages: cpu: [arm64] os: [android] - '@esbuild/android-arm64@0.19.8': - resolution: {integrity: sha512-B8JbS61bEunhfx8kasogFENgQfr/dIp+ggYXwTqdbMAgGDhRa3AaPpQMuQU0rNxDLECj6FhDzk1cF9WHMVwrtA==} - engines: {node: '>=12'} - cpu: [arm64] - os: [android] - '@esbuild/android-arm@0.17.19': resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==} engines: {node: '>=12'} @@ -4235,12 +4825,6 @@ packages: cpu: [arm] os: [android] - '@esbuild/android-arm@0.19.8': - resolution: {integrity: sha512-31E2lxlGM1KEfivQl8Yf5aYU/mflz9g06H6S15ITUFQueMFtFjESRMoDSkvMo8thYvLBax+VKTPlpnx+sPicOA==} - engines: {node: '>=12'} - cpu: [arm] - os: [android] - '@esbuild/android-x64@0.17.19': resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==} engines: {node: '>=12'} @@ -4265,12 +4849,6 @@ packages: cpu: [x64] os: [android] - '@esbuild/android-x64@0.19.8': - resolution: {integrity: sha512-rdqqYfRIn4jWOp+lzQttYMa2Xar3OK9Yt2fhOhzFXqg0rVWEfSclJvZq5fZslnz6ypHvVf3CT7qyf0A5pM682A==} - engines: {node: '>=12'} - cpu: [x64] - os: [android] - '@esbuild/darwin-arm64@0.17.19': resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==} engines: {node: '>=12'} @@ -4295,12 +4873,6 @@ packages: cpu: [arm64] os: [darwin] - '@esbuild/darwin-arm64@0.19.8': - resolution: {integrity: sha512-RQw9DemMbIq35Bprbboyf8SmOr4UXsRVxJ97LgB55VKKeJOOdvsIPy0nFyF2l8U+h4PtBx/1kRf0BelOYCiQcw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [darwin] - '@esbuild/darwin-x64@0.17.19': resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==} engines: {node: '>=12'} @@ -4325,12 +4897,6 @@ packages: cpu: [x64] os: [darwin] - '@esbuild/darwin-x64@0.19.8': - resolution: {integrity: sha512-3sur80OT9YdeZwIVgERAysAbwncom7b4bCI2XKLjMfPymTud7e/oY4y+ci1XVp5TfQp/bppn7xLw1n/oSQY3/Q==} - engines: {node: '>=12'} - cpu: [x64] - os: [darwin] - '@esbuild/freebsd-arm64@0.17.19': resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==} engines: {node: '>=12'} @@ -4355,12 +4921,6 @@ packages: cpu: [arm64] os: [freebsd] - '@esbuild/freebsd-arm64@0.19.8': - resolution: {integrity: sha512-WAnPJSDattvS/XtPCTj1tPoTxERjcTpH6HsMr6ujTT+X6rylVe8ggxk8pVxzf5U1wh5sPODpawNicF5ta/9Tmw==} - engines: {node: '>=12'} - cpu: [arm64] - os: [freebsd] - '@esbuild/freebsd-x64@0.17.19': resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==} engines: {node: '>=12'} @@ -4385,12 +4945,6 @@ packages: cpu: [x64] os: [freebsd] - '@esbuild/freebsd-x64@0.19.8': - resolution: {integrity: sha512-ICvZyOplIjmmhjd6mxi+zxSdpPTKFfyPPQMQTK/w+8eNK6WV01AjIztJALDtwNNfFhfZLux0tZLC+U9nSyA5Zg==} - engines: {node: '>=12'} - cpu: [x64] - os: [freebsd] - '@esbuild/linux-arm64@0.17.19': resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==} engines: {node: '>=12'} @@ -4415,12 +4969,6 @@ packages: cpu: [arm64] os: [linux] - '@esbuild/linux-arm64@0.19.8': - resolution: {integrity: sha512-z1zMZivxDLHWnyGOctT9JP70h0beY54xDDDJt4VpTX+iwA77IFsE1vCXWmprajJGa+ZYSqkSbRQ4eyLCpCmiCQ==} - engines: {node: '>=12'} - cpu: [arm64] - os: [linux] - '@esbuild/linux-arm@0.17.19': resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==} engines: {node: '>=12'} @@ -4445,12 +4993,6 @@ packages: cpu: [arm] os: [linux] - '@esbuild/linux-arm@0.19.8': - resolution: {integrity: sha512-H4vmI5PYqSvosPaTJuEppU9oz1dq2A7Mr2vyg5TF9Ga+3+MGgBdGzcyBP7qK9MrwFQZlvNyJrvz6GuCaj3OukQ==} - engines: {node: '>=12'} - cpu: [arm] - os: [linux] - '@esbuild/linux-ia32@0.17.19': resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==} engines: {node: '>=12'} @@ -4475,12 +5017,6 @@ packages: cpu: [ia32] os: [linux] - '@esbuild/linux-ia32@0.19.8': - resolution: {integrity: sha512-1a8suQiFJmZz1khm/rDglOc8lavtzEMRo0v6WhPgxkrjcU0LkHj+TwBrALwoz/OtMExvsqbbMI0ChyelKabSvQ==} - engines: {node: '>=12'} - cpu: [ia32] - os: [linux] - '@esbuild/linux-loong64@0.17.19': resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==} engines: {node: '>=12'} @@ -4505,12 +5041,6 @@ packages: cpu: [loong64] os: [linux] - '@esbuild/linux-loong64@0.19.8': - resolution: {integrity: sha512-fHZWS2JJxnXt1uYJsDv9+b60WCc2RlvVAy1F76qOLtXRO+H4mjt3Tr6MJ5l7Q78X8KgCFudnTuiQRBhULUyBKQ==} - engines: {node: '>=12'} - cpu: [loong64] - os: [linux] - '@esbuild/linux-mips64el@0.17.19': resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==} engines: {node: '>=12'} @@ -4535,12 +5065,6 @@ packages: cpu: [mips64el] os: [linux] - '@esbuild/linux-mips64el@0.19.8': - resolution: {integrity: sha512-Wy/z0EL5qZYLX66dVnEg9riiwls5IYnziwuju2oUiuxVc+/edvqXa04qNtbrs0Ukatg5HEzqT94Zs7J207dN5Q==} - engines: {node: '>=12'} - cpu: [mips64el] - os: [linux] - '@esbuild/linux-ppc64@0.17.19': resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==} engines: {node: '>=12'} @@ -4565,12 +5089,6 @@ packages: cpu: [ppc64] os: [linux] - '@esbuild/linux-ppc64@0.19.8': - resolution: {integrity: sha512-ETaW6245wK23YIEufhMQ3HSeHO7NgsLx8gygBVldRHKhOlD1oNeNy/P67mIh1zPn2Hr2HLieQrt6tWrVwuqrxg==} - engines: {node: '>=12'} - cpu: [ppc64] - os: [linux] - '@esbuild/linux-riscv64@0.17.19': resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==} engines: {node: '>=12'} @@ -4595,12 +5113,6 @@ packages: cpu: [riscv64] os: [linux] - '@esbuild/linux-riscv64@0.19.8': - resolution: {integrity: sha512-T2DRQk55SgoleTP+DtPlMrxi/5r9AeFgkhkZ/B0ap99zmxtxdOixOMI570VjdRCs9pE4Wdkz7JYrsPvsl7eESg==} - engines: {node: '>=12'} - cpu: [riscv64] - os: [linux] - '@esbuild/linux-s390x@0.17.19': resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==} engines: {node: '>=12'} @@ -4625,12 +5137,6 @@ packages: cpu: [s390x] os: [linux] - '@esbuild/linux-s390x@0.19.8': - resolution: {integrity: sha512-NPxbdmmo3Bk7mbNeHmcCd7R7fptJaczPYBaELk6NcXxy7HLNyWwCyDJ/Xx+/YcNH7Im5dHdx9gZ5xIwyliQCbg==} - engines: {node: '>=12'} - cpu: [s390x] - os: [linux] - '@esbuild/linux-x64@0.17.19': resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==} engines: {node: '>=12'} @@ -4655,12 +5161,6 @@ packages: cpu: [x64] os: [linux] - '@esbuild/linux-x64@0.19.8': - resolution: {integrity: sha512-lytMAVOM3b1gPypL2TRmZ5rnXl7+6IIk8uB3eLsV1JwcizuolblXRrc5ShPrO9ls/b+RTp+E6gbsuLWHWi2zGg==} - engines: {node: '>=12'} - cpu: [x64] - os: [linux] - '@esbuild/netbsd-x64@0.17.19': resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==} engines: {node: '>=12'} @@ -4685,12 +5185,6 @@ packages: cpu: [x64] os: [netbsd] - '@esbuild/netbsd-x64@0.19.8': - resolution: {integrity: sha512-hvWVo2VsXz/8NVt1UhLzxwAfo5sioj92uo0bCfLibB0xlOmimU/DeAEsQILlBQvkhrGjamP0/el5HU76HAitGw==} - engines: {node: '>=12'} - cpu: [x64] - os: [netbsd] - '@esbuild/openbsd-x64@0.17.19': resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==} engines: {node: '>=12'} @@ -4715,12 +5209,6 @@ packages: cpu: [x64] os: [openbsd] - '@esbuild/openbsd-x64@0.19.8': - resolution: {integrity: sha512-/7Y7u77rdvmGTxR83PgaSvSBJCC2L3Kb1M/+dmSIvRvQPXXCuC97QAwMugBNG0yGcbEGfFBH7ojPzAOxfGNkwQ==} - engines: {node: '>=12'} - cpu: [x64] - os: [openbsd] - '@esbuild/sunos-x64@0.17.19': resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==} engines: {node: '>=12'} @@ -4745,12 +5233,6 @@ packages: cpu: [x64] os: [sunos] - '@esbuild/sunos-x64@0.19.8': - resolution: {integrity: sha512-9Lc4s7Oi98GqFA4HzA/W2JHIYfnXbUYgekUP/Sm4BG9sfLjyv6GKKHKKVs83SMicBF2JwAX6A1PuOLMqpD001w==} - engines: {node: '>=12'} - cpu: [x64] - os: [sunos] - '@esbuild/win32-arm64@0.17.19': resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==} engines: {node: '>=12'} @@ -4775,12 +5257,6 @@ packages: cpu: [arm64] os: [win32] - '@esbuild/win32-arm64@0.19.8': - resolution: {integrity: sha512-rq6WzBGjSzihI9deW3fC2Gqiak68+b7qo5/3kmB6Gvbh/NYPA0sJhrnp7wgV4bNwjqM+R2AApXGxMO7ZoGhIJg==} - engines: {node: '>=12'} - cpu: [arm64] - os: [win32] - '@esbuild/win32-ia32@0.17.19': resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==} engines: {node: '>=12'} @@ -4805,12 +5281,6 @@ packages: cpu: [ia32] os: [win32] - '@esbuild/win32-ia32@0.19.8': - resolution: {integrity: sha512-AIAbverbg5jMvJznYiGhrd3sumfwWs8572mIJL5NQjJa06P8KfCPWZQ0NwZbPQnbQi9OWSZhFVSUWjjIrn4hSw==} - engines: {node: '>=12'} - cpu: [ia32] - os: [win32] - '@esbuild/win32-x64@0.17.19': resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==} engines: {node: '>=12'} @@ -4835,12 +5305,6 @@ packages: cpu: [x64] os: [win32] - '@esbuild/win32-x64@0.19.8': - resolution: {integrity: sha512-bfZ0cQ1uZs2PqpulNL5j/3w+GDhP36k1K5c38QdQg+Swy51jFZWWeIkteNsufkQxp986wnqRRsb/bHbY1WQ7TA==} - engines: {node: '>=12'} - cpu: [x64] - os: [win32] - '@eslint-community/eslint-utils@4.4.0': resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -5122,6 +5586,10 @@ packages: resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} engines: {node: '>=6.0.0'} + '@jridgewell/gen-mapping@0.3.8': + resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} + engines: {node: '>=6.0.0'} + '@jridgewell/resolve-uri@3.1.1': resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} engines: {node: '>=6.0.0'} @@ -5130,6 +5598,10 @@ packages: resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} engines: {node: '>=6.0.0'} + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + '@jridgewell/source-map@0.3.5': resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==} @@ -5139,6 +5611,9 @@ packages: '@jridgewell/trace-mapping@0.3.20': resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==} + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + '@jridgewell/trace-mapping@0.3.9': resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} @@ -5479,6 +5954,9 @@ packages: '@next/env@14.2.14': resolution: {integrity: sha512-/0hWQfiaD5//LvGNgc8PjvyqV50vGK0cADYzaoOOGN8fxzBn3iAiaq3S0tCRnFBldq0LVveLcxCTi41ZoYgAgg==} + '@next/env@14.2.20': + resolution: {integrity: sha512-JfDpuOCB0UBKlEgEy/H6qcBSzHimn/YWjUHzKl1jMeUO+QVRdzmTTl8gFJaNO87c8DXmVKhFCtwxQ9acqB3+Pw==} + '@next/eslint-plugin-next@14.2.3': resolution: {integrity: sha512-L3oDricIIjgj1AVnRdRor21gI7mShlSwU/1ZGHmqM3LzHhXXhdkrfeNY5zif25Bi5Dd7fiJHsbhoZCHfXYvlAw==} @@ -5488,54 +5966,108 @@ packages: cpu: [arm64] os: [darwin] + '@next/swc-darwin-arm64@14.2.20': + resolution: {integrity: sha512-WDfq7bmROa5cIlk6ZNonNdVhKmbCv38XteVFYsxea1vDJt3SnYGgxLGMTXQNfs5OkFvAhmfKKrwe7Y0Hs+rWOg==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [darwin] + '@next/swc-darwin-x64@14.2.14': resolution: {integrity: sha512-cC9/I+0+SK5L1k9J8CInahduTVWGMXhQoXFeNvF0uNs3Bt1Ub0Azb8JzTU9vNCr0hnaMqiWu/Z0S1hfKc3+dww==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] + '@next/swc-darwin-x64@14.2.20': + resolution: {integrity: sha512-XIQlC+NAmJPfa2hruLvr1H1QJJeqOTDV+v7tl/jIdoFvqhoihvSNykLU/G6NMgoeo+e/H7p/VeWSOvMUHKtTIg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [darwin] + '@next/swc-linux-arm64-gnu@14.2.14': resolution: {integrity: sha512-RMLOdA2NU4O7w1PQ3Z9ft3PxD6Htl4uB2TJpocm+4jcllHySPkFaUIFacQ3Jekcg6w+LBaFvjSPthZHiPmiAUg==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] + '@next/swc-linux-arm64-gnu@14.2.20': + resolution: {integrity: sha512-pnzBrHTPXIMm5QX3QC8XeMkpVuoAYOmyfsO4VlPn+0NrHraNuWjdhe+3xLq01xR++iCvX+uoeZmJDKcOxI201Q==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + '@next/swc-linux-arm64-musl@14.2.14': resolution: {integrity: sha512-WgLOA4hT9EIP7jhlkPnvz49iSOMdZgDJVvbpb8WWzJv5wBD07M2wdJXLkDYIpZmCFfo/wPqFsFR4JS4V9KkQ2A==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] + '@next/swc-linux-arm64-musl@14.2.20': + resolution: {integrity: sha512-WhJJAFpi6yqmUx1momewSdcm/iRXFQS0HU2qlUGlGE/+98eu7JWLD5AAaP/tkK1mudS/rH2f9E3WCEF2iYDydQ==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [linux] + '@next/swc-linux-x64-gnu@14.2.14': resolution: {integrity: sha512-lbn7svjUps1kmCettV/R9oAvEW+eUI0lo0LJNFOXoQM5NGNxloAyFRNByYeZKL3+1bF5YE0h0irIJfzXBq9Y6w==} engines: {node: '>= 10'} cpu: [x64] os: [linux] + '@next/swc-linux-x64-gnu@14.2.20': + resolution: {integrity: sha512-ao5HCbw9+iG1Kxm8XsGa3X174Ahn17mSYBQlY6VGsdsYDAbz/ZP13wSLfvlYoIDn1Ger6uYA+yt/3Y9KTIupRg==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + '@next/swc-linux-x64-musl@14.2.14': resolution: {integrity: sha512-7TcQCvLQ/hKfQRgjxMN4TZ2BRB0P7HwrGAYL+p+m3u3XcKTraUFerVbV3jkNZNwDeQDa8zdxkKkw2els/S5onQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] + '@next/swc-linux-x64-musl@14.2.20': + resolution: {integrity: sha512-CXm/kpnltKTT7945np6Td3w7shj/92TMRPyI/VvveFe8+YE+/YOJ5hyAWK5rpx711XO1jBCgXl211TWaxOtkaA==} + engines: {node: '>= 10'} + cpu: [x64] + os: [linux] + '@next/swc-win32-arm64-msvc@14.2.14': resolution: {integrity: sha512-8i0Ou5XjTLEje0oj0JiI0Xo9L/93ghFtAUYZ24jARSeTMXLUx8yFIdhS55mTExq5Tj4/dC2fJuaT4e3ySvXU1A==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] + '@next/swc-win32-arm64-msvc@14.2.20': + resolution: {integrity: sha512-upJn2HGQgKNDbXVfIgmqT2BN8f3z/mX8ddoyi1I565FHbfowVK5pnMEwauvLvaJf4iijvuKq3kw/b6E9oIVRWA==} + engines: {node: '>= 10'} + cpu: [arm64] + os: [win32] + '@next/swc-win32-ia32-msvc@14.2.14': resolution: {integrity: sha512-2u2XcSaDEOj+96eXpyjHjtVPLhkAFw2nlaz83EPeuK4obF+HmtDJHqgR1dZB7Gb6V/d55FL26/lYVd0TwMgcOQ==} engines: {node: '>= 10'} cpu: [ia32] os: [win32] + '@next/swc-win32-ia32-msvc@14.2.20': + resolution: {integrity: sha512-igQW/JWciTGJwj3G1ipalD2V20Xfx3ywQy17IV0ciOUBbFhNfyU1DILWsTi32c8KmqgIDviUEulW/yPb2FF90w==} + engines: {node: '>= 10'} + cpu: [ia32] + os: [win32] + '@next/swc-win32-x64-msvc@14.2.14': resolution: {integrity: sha512-MZom+OvZ1NZxuRovKt1ApevjiUJTcU2PmdJKL66xUPaJeRywnbGGRWUlaAOwunD6dX+pm83vj979NTC8QXjGWg==} engines: {node: '>= 10'} cpu: [x64] os: [win32] + '@next/swc-win32-x64-msvc@14.2.20': + resolution: {integrity: sha512-AFmqeLW6LtxeFTuoB+MXFeM5fm5052i3MU6xD0WzJDOwku6SkZaxb1bxjBaRC8uNqTRTSPl0yMFtjNowIVI67w==} + engines: {node: '>= 10'} + cpu: [x64] + os: [win32] + '@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3': resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==} @@ -5545,6 +6077,9 @@ packages: '@noble/curves@1.2.0': resolution: {integrity: sha512-oYclrNgRaM9SsBUBVbb8M6DTV7ZHRTKugureoYEncY5c65HOmRzvSiTE3y5CYaPYJA/GVkrhXEoF0M3Ya9PMnw==} + '@noble/curves@1.4.2': + resolution: {integrity: sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==} + '@noble/curves@1.6.0': resolution: {integrity: sha512-TlaHRXDehJuRNR9TfZDNQ45mMEd5dwUwmicsafcIX4SsNiqnCHKjE/1alYPd/lDRVhxdhUAlv8uEhMCI5zjIJQ==} engines: {node: ^14.21.3 || >=16} @@ -5570,6 +6105,10 @@ packages: resolution: {integrity: sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA==} engines: {node: '>= 16'} + '@noble/hashes@1.4.0': + resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==} + engines: {node: '>= 16'} + '@noble/hashes@1.5.0': resolution: {integrity: sha512-1j6kQFb7QRru7eKN3ZDvRcP13rugwdxZqCjbiAVZfIJwgj2A65UmT4TgARXGlXgnRkORLTDTrO19ZErt7+QXgA==} engines: {node: ^14.21.3 || >=16} @@ -6413,6 +6952,11 @@ packages: peerDependencies: react: '*' + '@react-native-async-storage/async-storage@1.24.0': + resolution: {integrity: sha512-W4/vbwUOYOjco0x3toB8QCr7EjIP6nE9G7o8PMguvvjYT5Awg09lyV4enACRx4s++PPulBiBSjL0KTFx2u0Z/g==} + peerDependencies: + react-native: ^0.0.0-0 || >=0.60 <1.0 + '@react-native-community/cli-clean@12.3.6': resolution: {integrity: sha512-gUU29ep8xM0BbnZjwz9MyID74KKwutq9x5iv4BCr2im6nly4UMf1B1D+V225wR7VcDGzbgWjaezsJShLLhC5ig==} @@ -6661,6 +7205,9 @@ packages: '@scure/bip32@1.3.2': resolution: {integrity: sha512-N1ZhksgwD3OBlwTv3R6KFEcPojl/W4ElJOeCZdi+vuI5QmTFwLq3OFf2zd2ROpKvxFdgZ6hUpb0dx9bVNEwYCA==} + '@scure/bip32@1.4.0': + resolution: {integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==} + '@scure/bip32@1.5.0': resolution: {integrity: sha512-8EnFYkqEQdnkuGBVpCzKxyIwDCBLDVj3oiX0EKUFre/tOjL/Hqba1D6n/8RcmaQy4f95qQFrO2A8Sr6ybh4NRw==} @@ -6670,6 +7217,9 @@ packages: '@scure/bip39@1.2.1': resolution: {integrity: sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==} + '@scure/bip39@1.3.0': + resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==} + '@scure/bip39@1.4.0': resolution: {integrity: sha512-BEEm6p8IueV/ZTfQLp/0vhw4NPnT9oWf5+28nvmeUICjP99f4vr2d+qc7AVGDDtwRep6ifR43Yed9ERVmiITzw==} @@ -6868,10 +7418,136 @@ packages: '@socket.io/component-emitter@3.1.1': resolution: {integrity: sha512-dzJtaDAAoXx4GCOJpbB2eG/Qj8VDpdwkLsWGzGm+0L7E8/434RyMbAHmk9ubXWVAb9nXmc44jUf8GKqVDiKezg==} + '@solana-mobile/mobile-wallet-adapter-protocol-web3js@2.1.4': + resolution: {integrity: sha512-eE0NfQ450TrjD20/gN9hDYLhm6ggYtA5Vrrp3kuzj2antC0t6UtCCHe3/ivHLU14ir6kPoQTsTJHQaKGIqcheQ==} + peerDependencies: + '@solana/web3.js': ^1.58.0 + + '@solana-mobile/mobile-wallet-adapter-protocol@2.1.4': + resolution: {integrity: sha512-o5C61cZbtvkuAyn5YxRxsl8jeTVpGO40xT7VjtgFSE9elxvLOZAlqxxrtxpqT4hiwFzQFDzjUGsp97cabij06A==} + peerDependencies: + '@solana/web3.js': ^1.58.0 + react-native: '>0.69' + + '@solana-mobile/wallet-adapter-mobile@2.1.4': + resolution: {integrity: sha512-uOG7Jqrjlcf52OyNfguv1CD29zQrUB5YbPhBOv6n/BcS0Zd9jHvcB0J9iMt5EZ6P8MYdJ898L6X1+4mnqFFixg==} + peerDependencies: + '@solana/web3.js': ^1.58.0 + + '@solana/buffer-layout-utils@0.2.0': + resolution: {integrity: sha512-szG4sxgJGktbuZYDg2FfNmkMi0DYQoVjN2h7ta1W1hPrwzarcFLBq9UpX1UjNXsNpT9dn+chgprtWGioUAr4/g==} + engines: {node: '>= 10'} + '@solana/buffer-layout@4.0.1': resolution: {integrity: sha512-E1ImOIAD1tBZFRdjeM4/pzTiTApC0AOBGwyAMS4fwIodCWArzJ3DWdoh8cKxeFM2fElkxBh2Aqts1BPC373rHA==} engines: {node: '>=5.10'} + '@solana/codecs-core@2.0.0-rc.1': + resolution: {integrity: sha512-bauxqMfSs8EHD0JKESaNmNuNvkvHSuN3bbWAF5RjOfDu2PugxHrvRebmYauvSumZ3cTfQ4HJJX6PG5rN852qyQ==} + peerDependencies: + typescript: '>=5' + + '@solana/codecs-data-structures@2.0.0-rc.1': + resolution: {integrity: sha512-rinCv0RrAVJ9rE/rmaibWJQxMwC5lSaORSZuwjopSUE6T0nb/MVg6Z1siNCXhh/HFTOg0l8bNvZHgBcN/yvXog==} + peerDependencies: + typescript: '>=5' + + '@solana/codecs-numbers@2.0.0-rc.1': + resolution: {integrity: sha512-J5i5mOkvukXn8E3Z7sGIPxsThRCgSdgTWJDQeZvucQ9PT6Y3HiVXJ0pcWiOWAoQ3RX8e/f4I3IC+wE6pZiJzDQ==} + peerDependencies: + typescript: '>=5' + + '@solana/codecs-strings@2.0.0-rc.1': + resolution: {integrity: sha512-9/wPhw8TbGRTt6mHC4Zz1RqOnuPTqq1Nb4EyuvpZ39GW6O2t2Q7Q0XxiB3+BdoEjwA2XgPw6e2iRfvYgqty44g==} + peerDependencies: + fastestsmallesttextencoderdecoder: ^1.0.22 + typescript: '>=5' + + '@solana/codecs@2.0.0-rc.1': + resolution: {integrity: sha512-qxoR7VybNJixV51L0G1RD2boZTcxmwUWnKCaJJExQ5qNKwbpSyDdWfFJfM5JhGyKe9DnPVOZB+JHWXnpbZBqrQ==} + peerDependencies: + typescript: '>=5' + + '@solana/errors@2.0.0-rc.1': + resolution: {integrity: sha512-ejNvQ2oJ7+bcFAYWj225lyRkHnixuAeb7RQCixm+5mH4n1IA4Qya/9Bmfy5RAAHQzxK43clu3kZmL5eF9VGtYQ==} + hasBin: true + peerDependencies: + typescript: '>=5' + + '@solana/options@2.0.0-rc.1': + resolution: {integrity: sha512-mLUcR9mZ3qfHlmMnREdIFPf9dpMc/Bl66tLSOOWxw4ml5xMT2ohFn7WGqoKcu/UHkT9CrC6+amEdqCNvUqI7AA==} + peerDependencies: + typescript: '>=5' + + '@solana/spl-token-group@0.0.7': + resolution: {integrity: sha512-V1N/iX7Cr7H0uazWUT2uk27TMqlqedpXHRqqAbVO2gvmJyT0E0ummMEAVQeXZ05ZhQ/xF39DLSdBp90XebWEug==} + engines: {node: '>=16'} + peerDependencies: + '@solana/web3.js': ^1.95.3 + + '@solana/spl-token-metadata@0.1.6': + resolution: {integrity: sha512-7sMt1rsm/zQOQcUWllQX9mD2O6KhSAtY1hFR2hfFwgqfFWzSY9E9GDvFVNYUI1F0iQKcm6HmePU9QbKRXTEBiA==} + engines: {node: '>=16'} + peerDependencies: + '@solana/web3.js': ^1.95.3 + + '@solana/spl-token@0.4.9': + resolution: {integrity: sha512-g3wbj4F4gq82YQlwqhPB0gHFXfgsC6UmyGMxtSLf/BozT/oKd59465DbnlUK8L8EcimKMavxsVAMoLcEdeCicg==} + engines: {node: '>=16'} + peerDependencies: + '@solana/web3.js': ^1.95.3 + + '@solana/wallet-adapter-base@0.9.23': + resolution: {integrity: sha512-apqMuYwFp1jFi55NxDfvXUX2x1T0Zh07MxhZ/nCCTGys5raSfYUh82zen2BLv8BSDj/JxZ2P/s7jrQZGrX8uAw==} + engines: {node: '>=16'} + peerDependencies: + '@solana/web3.js': ^1.77.3 + + '@solana/wallet-adapter-react@0.15.35': + resolution: {integrity: sha512-i4hc/gNLTYNLMEt2LS+4lrrc0QAwa5SU2PtYMnZ2A3rsoKF5m1bv1h6cjLj2KBry4/zRGEBoqkiMOC5zHkLnRQ==} + engines: {node: '>=16'} + peerDependencies: + '@solana/web3.js': ^1.77.3 + react: '*' + + '@solana/wallet-standard-chains@1.1.0': + resolution: {integrity: sha512-IRJHf94UZM8AaRRmY18d34xCJiVPJej1XVwXiTjihHnmwD0cxdQbc/CKjrawyqFyQAKJx7raE5g9mnJsAdspTg==} + engines: {node: '>=16'} + + '@solana/wallet-standard-core@1.1.1': + resolution: {integrity: sha512-DoQ5Ryly4GAZtxRUmW2rIWrgNvTYVCWrFCFFjZI5s4zu2QNsP7sHZUax3kc1GbmFLXNL1FWRZlPOXRs6e0ZEng==} + engines: {node: '>=16'} + + '@solana/wallet-standard-features@1.2.0': + resolution: {integrity: sha512-tUd9srDLkRpe1BYg7we+c4UhRQkq+XQWswsr/L1xfGmoRDF47BPSXf4zE7ZU2GRBGvxtGt7lwJVAufQyQYhxTQ==} + engines: {node: '>=16'} + + '@solana/wallet-standard-util@1.1.1': + resolution: {integrity: sha512-dPObl4ntmfOc0VAGGyyFvrqhL8UkHXmVsgbj0K9RcznKV4KB3MgjGwzo8CTSX5El5lkb0rDeEzFqvToJXRz3dw==} + engines: {node: '>=16'} + + '@solana/wallet-standard-wallet-adapter-base@1.1.2': + resolution: {integrity: sha512-DqhzYbgh3disHMgcz6Du7fmpG29BYVapNEEiL+JoVMa+bU9d4P1wfwXUNyJyRpGGNXtwhyZjIk2umWbe5ZBNaQ==} + engines: {node: '>=16'} + peerDependencies: + '@solana/web3.js': ^1.58.0 + bs58: ^4.0.1 + + '@solana/wallet-standard-wallet-adapter-react@1.1.2': + resolution: {integrity: sha512-bN6W4QkzenyjUoUz3sC5PAed+z29icGtPh9VSmLl1ZrRO7NbFB49a8uwUUVXNxhL/ZbMsyVKhb9bNj47/p8uhQ==} + engines: {node: '>=16'} + peerDependencies: + '@solana/wallet-adapter-base': '*' + react: '*' + + '@solana/wallet-standard-wallet-adapter@1.1.2': + resolution: {integrity: sha512-lCwoA+vhPfmvjcmJOhSRV94wouVWTfJv1Z7eeULAe+GodCeKA/0T9/uBYgXHUxQjLHd7o8LpLYIkfm+xjA5sMA==} + engines: {node: '>=16'} + + '@solana/wallet-standard@1.1.2': + resolution: {integrity: sha512-o7wk+zr5/QgyE393cGRC04K1hacR4EkBu3MB925ddaLvCVaXjwr2asgdviGzN9PEm3FiEJp3sMmMKYHFnwOITQ==} + engines: {node: '>=16'} + '@solana/web3.js@1.87.6': resolution: {integrity: sha512-LkqsEBgTZztFiccZZXnawWa8qNCATEqE97/d0vIwjTclmVlc8pBpD1DmjfVHtZ1HS5fZorFlVhXfpwnCNDZfyg==} @@ -7401,6 +8077,24 @@ packages: resolution: {integrity: sha512-GgdKez5AaQRIm0kFNp7BZnxFQ2F7LZ7g3rOQ/v11oYZR3jhH7JPGM+7hZQjYqFXD/5TK/of7hepu418K2fghvg==} engines: {node: '>=12.4.0'} + '@tronweb3/google-protobuf@3.21.2': + resolution: {integrity: sha512-IVcT2GfWX3K6tHUVhs14NP5uzKhQt4KeDya1g9ACxuZsUzsaoGUIGzceK2Ltu7xp1YV94AaHOf4yxLAivlvEkQ==} + + '@tronweb3/tronwallet-abstract-adapter@1.1.8': + resolution: {integrity: sha512-Ztt2C8kLEaRSgztpBKYqXDtXd7/+4AVS7K+ThZAjOInBu8MM/Jo3tmG4koVW8hM6Hz0rjoohKfQ36LGPVCQfGw==} + engines: {node: '>=16', pnpm: '>=7'} + + '@tronweb3/tronwallet-adapter-react-hooks@1.1.9': + resolution: {integrity: sha512-IUus7pqj+Wswz2RFZ27NBAk9YzVfPU8xkpCv03XMsKQLNvhrambGQWo2Ldq9p+H4KkC0l5x7MD6uEYuux5AVLg==} + engines: {node: '>=16', pnpm: '>=7'} + peerDependencies: + react: '*' + react-dom: '*' + + '@tronweb3/tronwallet-adapter-tronlink@1.1.11': + resolution: {integrity: sha512-jU+NoWo4TZSE910NUi+tApjmzZmcOyYOnLlzBu7xZTedfnWtJvv9i4PSTac+5e188fQQH47JySt9p74S69mPkA==} + engines: {node: '>=16', pnpm: '>=7'} + '@tsconfig/node10@1.0.9': resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} @@ -7840,6 +8534,9 @@ packages: '@types/node@20.5.7': resolution: {integrity: sha512-dP7f3LdZIysZnmvP3ANJYTSwg+wLLl8p7RqniVlV7j+oXSXAbt9h0WIBFmJy5inWZoX9wZN6eXx+YXd9Rh3RBA==} + '@types/node@22.7.5': + resolution: {integrity: sha512-jML7s2NAzMWc//QSJ1a3prpk78cOPchGvXJsC3C6R6PSMoooztvRVQEz89gmBTBY1SPMaqo5teB4uNHPdetShQ==} + '@types/node@8.10.66': resolution: {integrity: sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw==} @@ -8281,6 +8978,31 @@ packages: '@wallchain/sdk@0.6.8': resolution: {integrity: sha512-k1RnyXMOi1Ajv12f8TDTP6zRkpw1zl6kl0J/Ul3DT+pIeMhUx0gEsAUDXFaBZtZlN1oNj966RVxPjuHQkpIRgA==} + '@wallet-standard/app@1.1.0': + resolution: {integrity: sha512-3CijvrO9utx598kjr45hTbbeeykQrQfKmSnxeWOgU25TOEpvcipD/bYDQWIqUv1Oc6KK4YStokSMu/FBNecGUQ==} + engines: {node: '>=16'} + + '@wallet-standard/base@1.1.0': + resolution: {integrity: sha512-DJDQhjKmSNVLKWItoKThJS+CsJQjR9AOBOirBVT1F9YpRyC9oYHE+ZnSf8y8bxUphtKqdQMPVQ2mHohYdRvDVQ==} + engines: {node: '>=16'} + + '@wallet-standard/core@1.1.0': + resolution: {integrity: sha512-v2W5q/NlX1qkn2q/JOXQT//pOAdrhz7+nOcO2uiH9+a0uvreL+sdWWqkhFmMcX+HEBjaibdOQMUoIfDhOGX4XA==} + engines: {node: '>=16'} + + '@wallet-standard/errors@0.1.0': + resolution: {integrity: sha512-ag0eq5ixy7rz8M5YUWGi/EoIJ69KJ+KILFNunoufgmXVkiISC7+NIZXJYTJrapni4f9twE1hfT+8+IV2CYCvmg==} + engines: {node: '>=16'} + hasBin: true + + '@wallet-standard/features@1.1.0': + resolution: {integrity: sha512-hiEivWNztx73s+7iLxsuD1sOJ28xtRix58W7Xnz4XzzA/pF0+aicnWgjOdA10doVDEDZdUuZCIIqG96SFNlDUg==} + engines: {node: '>=16'} + + '@wallet-standard/wallet@1.1.0': + resolution: {integrity: sha512-Gt8TnSlDZpAl+RWOOAB/kuvC7RpcdWAlFbHNoi4gsXsfaWa1QCT6LBcfIYTPdOZC9OVZUDwqGuGAcqZejDmHjg==} + engines: {node: '>=16'} + '@walletconnect/cacao@1.0.2': resolution: {integrity: sha512-LEO/MqbVvaOj0BerlBJQMsyEfSZGGUusHkICkVH1tIxrk7QCBJ5SCU0XzbVkncXMHqNPvyThEjEFSvf+vdYFJA==} @@ -8734,6 +9456,9 @@ packages: aes-js@3.1.2: resolution: {integrity: sha512-e5pEa2kBnBOgR4Y/p20pskXI74UEz7de8ZGVo58asOtvSVG5YAbJeELPZxOmt+Bnz3rX753YKhfIn4X4l1PPRQ==} + aes-js@4.0.0-beta.5: + resolution: {integrity: sha512-G965FqalsNyrPqgEGON7nIx1e/OVENSgiEIzyC63haUMuvNnwIgIjMs52hlTCKhkBny7A2ORNlfY9Zu+jmGk1Q==} + agent-base@5.1.1: resolution: {integrity: sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==} engines: {node: '>= 6.0.0'} @@ -9038,6 +9763,9 @@ packages: axios@1.6.2: resolution: {integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==} + axios@1.6.8: + resolution: {integrity: sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==} + axios@1.7.2: resolution: {integrity: sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==} @@ -9072,8 +9800,8 @@ packages: peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 - babel-plugin-polyfill-corejs3@0.10.4: - resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==} + babel-plugin-polyfill-corejs3@0.10.6: + resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==} peerDependencies: '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0 @@ -9275,6 +10003,11 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true + browserslist@4.24.3: + resolution: {integrity: sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + bs58@4.0.1: resolution: {integrity: sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==} @@ -9400,6 +10133,9 @@ packages: caniuse-lite@1.0.30001608: resolution: {integrity: sha512-cjUJTQkk9fQlJR2s4HMuPMvTiRggl0rAVMtthQuyOlDWuqHXqN8azLq+pi8B2TjwKJ32diHjUqRIKeFX4z1FoA==} + caniuse-lite@1.0.30001688: + resolution: {integrity: sha512-Nmqpru91cuABu/DTCXbM2NSRHzM2uVHfPnhJ/1zEAJx/ILBRVmz3pzH4N7DZqbdG0gWClsCC05Oj0mJ/1AWMbA==} + canvas-confetti@1.9.0: resolution: {integrity: sha512-0UGU/T5Un/Cd4Aj4fu/p/oVQm8Il+brK5xcmY+y77u7PXuyNJD4ODUWe01A5o3GUI9Bb8lOBlQ10VdaDsY1FBA==} @@ -9436,6 +10172,10 @@ packages: resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} engines: {node: '>=10'} + chalk@5.3.0: + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + character-entities-legacy@1.1.4: resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} @@ -9785,6 +10525,9 @@ packages: core-js-compat@3.36.1: resolution: {integrity: sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==} + core-js-compat@3.39.0: + resolution: {integrity: sha512-VgEUx3VwlExr5no0tXlBt+silBvhTryPwCXRI2Id1PN8WTKu7MreethvddqOubrYxkFdv/RnYrqlv1sFNAUelw==} + core-js@3.37.1: resolution: {integrity: sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==} @@ -10385,6 +11128,9 @@ packages: electron-to-chromium@1.4.735: resolution: {integrity: sha512-pkYpvwg8VyOTQAeBqZ7jsmpCjko1Qc6We1ZtZCjRyYbT5v4AIUKDy5cQTRotQlSSZmMr8jqpEt6JtOj5k7lR7A==} + electron-to-chromium@1.5.73: + resolution: {integrity: sha512-8wGNxG9tAG5KhGd3eeA0o6ixhiNdgr0DcHWm85XPCphwZgD1lIEoi6t3VERayWao7SF7AAZTw6oARGJeVjH8Kg==} + elliptic@6.5.4: resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==} @@ -10547,15 +11293,14 @@ packages: engines: {node: '>=12'} hasBin: true - esbuild@0.19.8: - resolution: {integrity: sha512-l7iffQpT2OrZfH2rXIp7/FkmaeZM0vxbxN9KfiCwGYuZqzMg/JdvX26R31Zxn/Pxvsrg3Y9N6XTcnknqDyyv4w==} - engines: {node: '>=12'} - hasBin: true - escalade@3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} engines: {node: '>=6'} + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + escape-html@1.0.3: resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} @@ -10773,6 +11518,9 @@ packages: ethereum-cryptography@2.1.2: resolution: {integrity: sha512-Z5Ba0T0ImZ8fqXrJbpHcbpAvIswRte2wGNR/KePnu8GbbvgJ47lMxT/ZZPG6i9Jaht4azPDop4HaM00J0J59ug==} + ethereum-cryptography@2.2.1: + resolution: {integrity: sha512-r/W8lkHSiTLxUxW8Rf3u4HGB0xQweG2RyETjywylKZSzLWoWAijRz8WCuOtJ6wah+avllXBqZuk29HCCvhEIRg==} + ethereum-multicall@2.21.0: resolution: {integrity: sha512-J234OuvUheTKvZVhMk41SwyB66m+MU+Xe2FFWOln8xu6TXKzOzsjSFQn/f5OTDGEiRStKMnJpCvQDim+Uk+qBQ==} @@ -10790,6 +11538,10 @@ packages: ethers@5.7.2: resolution: {integrity: sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==} + ethers@6.13.4: + resolution: {integrity: sha512-21YtnZVg4/zKkCQPjrDj38B1r4nQvTZLopUGMLQ1ePU2zV/joCfDC3t3iKQjWRzjjjbzR+mdAIoikeBRNkdllA==} + engines: {node: '>=14.0.0'} + ethjs-unit@0.1.6: resolution: {integrity: sha512-/Sn9Y0oKl0uqQuvgFk/zQgR7aw1g36qX/jzSQ5lSwlO0GigPymk4eGQfeNTD03w1dPOqfz8V77Cy43jH56pagw==} engines: {node: '>=6.5.0', npm: '>=3'} @@ -10815,6 +11567,9 @@ packages: eventemitter2@6.4.9: resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==} + eventemitter3@3.1.2: + resolution: {integrity: sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==} + eventemitter3@4.0.4: resolution: {integrity: sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==} @@ -10945,6 +11700,9 @@ packages: resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==} engines: {node: '>= 4.9.1'} + fastestsmallesttextencoderdecoder@1.0.22: + resolution: {integrity: sha512-Pb8d48e+oIuY4MaM64Cd7OW1gt4nxCHs7/ddPPZ/Ic3sg8yVGM7O9wDvZ7us6ScaUupzM+pfBolwtYhN1IxBIw==} + fastq@1.15.0: resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} @@ -12237,6 +12995,16 @@ packages: engines: {node: '>=4'} hasBin: true + jsesc@3.0.2: + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} + engines: {node: '>=6'} + hasBin: true + + jsesc@3.1.0: + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} + hasBin: true + json-buffer@3.0.1: resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} @@ -12795,6 +13563,10 @@ packages: merge-descriptors@1.0.1: resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} + merge-options@3.0.4: + resolution: {integrity: sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==} + engines: {node: '>=10'} + merge-stream@2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} @@ -13212,6 +13984,24 @@ packages: sass: optional: true + next@14.2.20: + resolution: {integrity: sha512-yPvIiWsiyVYqJlSQxwmzMIReXn5HxFNq4+tlVQ812N1FbvhmE+fDpIAD7bcS2mGYQwPJ5vAsQouyme2eKsxaug==} + engines: {node: '>=18.17.0'} + hasBin: true + peerDependencies: + '@opentelemetry/api': ^1.1.0 + '@playwright/test': ^1.41.2 + react: ^18.2.0 + react-dom: ^18.2.0 + sass: ^1.3.0 + peerDependenciesMeta: + '@opentelemetry/api': + optional: true + '@playwright/test': + optional: true + sass: + optional: true + nice-try@1.0.5: resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==} @@ -13276,6 +14066,9 @@ packages: node-releases@2.0.14: resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} + node-releases@2.0.19: + resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + node-stream-zip@1.15.0: resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==} engines: {node: '>=0.12.0'} @@ -13717,6 +14510,9 @@ packages: picocolors@1.0.0: resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + picomatch@2.3.1: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} @@ -14088,6 +14884,11 @@ packages: engines: {node: '>=10.13.0'} hasBin: true + qrcode@1.5.4: + resolution: {integrity: sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==} + engines: {node: '>=10.13.0'} + hasBin: true + qs@6.10.5: resolution: {integrity: sha512-O5RlPh0VFtR78y79rgcgKK4wbAI0C5zGVLztOIdpWX6ep368q5Hv6XRxDvXuZ9q3C6v+e3n8UfZZJw7IIG27eQ==} engines: {node: '>=0.6'} @@ -14575,6 +15376,10 @@ packages: resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==} engines: {node: '>=4'} + regenerate-unicode-properties@10.2.0: + resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==} + engines: {node: '>=4'} + regenerate@1.4.2: resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==} @@ -14599,6 +15404,10 @@ packages: resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==} engines: {node: '>=4'} + regexpu-core@6.2.0: + resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==} + engines: {node: '>=4'} + registry-auth-token@3.3.2: resolution: {integrity: sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==} @@ -14606,6 +15415,13 @@ packages: resolution: {integrity: sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==} engines: {node: '>=0.10.0'} + regjsgen@0.8.0: + resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==} + + regjsparser@0.12.0: + resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==} + hasBin: true + regjsparser@0.9.1: resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==} hasBin: true @@ -15654,6 +16470,9 @@ packages: resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} engines: {node: '>=8'} + tronweb@6.0.0: + resolution: {integrity: sha512-mIh00KG00Iu80UT1SLDgNEBLzWiR24WnttlObP8B9eQyNJ6mg4oD2gE+vG0cd6FcHL9DV6Jd18gKeBp4y3Y7Ew==} + trough@1.0.5: resolution: {integrity: sha512-rvuRbTarPXmMb79SmzEp8aqXNKcK+y0XaB298IXueQ8I2PsrATcPBCSPyK/dDNa2iWOhKlfNnOjdAOTBU/nkFA==} @@ -15722,6 +16541,9 @@ packages: tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + tslib@2.7.0: + resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==} + tsort@0.0.1: resolution: {integrity: sha512-Tyrf5mxF8Ofs1tNoxA13lFeZ2Zrbd6cKbuH3V+MQ5sb6DtBj5FjrXVsRWT8YvNAQTqNoz66dz1WsbigI22aEnw==} @@ -15940,6 +16762,9 @@ packages: undici-types@5.26.5: resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + undici-types@6.19.8: + resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} + undici@5.28.4: resolution: {integrity: sha512-72RFADWFqKmUb2hmmvNODKL3p9hcB6Gt2DOQMis1SEBaV6a4MH8soBvzg+95CYhCKPFedut2JY9bMfrDl9D23g==} engines: {node: '>=14.0'} @@ -16071,6 +16896,12 @@ packages: peerDependencies: browserslist: '>= 4.21.0' + update-browserslist-db@1.1.1: + resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + update-check@1.5.2: resolution: {integrity: sha512-1TrmYLuLj/5ZovwUS7fFd1jMH3NnFDN1y1A8dboedIDt7zs/zJMo6TwwlhYKkSeEwzleeiSBV5/3c9ufAQWDaQ==} @@ -16894,7 +17725,7 @@ snapshots: - debug - utf-8-validate - '@0xsquid/widget@1.6.16(@types/react@18.2.37)(@wagmi/core@0.10.17(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@0xsquid/widget@1.6.16(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(@wagmi/core@0.10.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@0xsquid/sdk': 1.14.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@cosmjs/cosmwasm-stargate': 0.31.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -16904,11 +17735,11 @@ snapshots: '@floating-ui/react-dom-interactions': 0.12.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@ledgerhq/iframe-provider': 0.4.3 '@lottiefiles/react-lottie-player': 3.5.3(react@18.2.0) - '@tanstack/react-query': 4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) - '@tanstack/react-query-devtools': 4.36.1(@tanstack/react-query@4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@tanstack/react-query': 4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + '@tanstack/react-query-devtools': 4.36.1(@tanstack/react-query@4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@types/color': 3.0.6 '@types/lodash': 4.14.201 - '@wagmi/connectors': 0.3.16(@wagmi/core@0.10.17(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@wagmi/connectors': 0.3.16(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@wagmi/core@0.10.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) axios: 0.27.2(debug@4.3.4) bignumber.js: 9.1.2 clsx: 1.2.1 @@ -16923,7 +17754,7 @@ snapshots: react-dom: 18.2.0(react@18.2.0) react-icons: 4.11.0(react@18.2.0) secretjs: 1.12.1 - wagmi: 0.12.19(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) + wagmi: 0.12.19(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) zustand: 4.4.6(@types/react@18.2.37)(immer@9.0.21)(react@18.2.0) transitivePeerDependencies: - '@azure/app-configuration' @@ -16955,6 +17786,8 @@ snapshots: '@adraffy/ens-normalize@1.10.0': {} + '@adraffy/ens-normalize@1.10.1': {} + '@adraffy/ens-normalize@1.11.0': {} '@alloc/quick-lru@5.2.0': {} @@ -16977,7 +17810,7 @@ snapshots: '@aptos-labs/aptos-client@0.1.1': dependencies: - axios: 1.7.4(debug@4.3.4) + axios: 1.7.4 got: 11.8.6 transitivePeerDependencies: - debug @@ -17002,9 +17835,9 @@ snapshots: dependencies: default-browser-id: 3.0.0 - '@babel/cli@7.23.0(@babel/core@7.23.3)': + '@babel/cli@7.23.0(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 + '@babel/core': 7.23.9 '@jridgewell/trace-mapping': 0.3.20 commander: 4.1.1 convert-source-map: 2.0.0 @@ -17026,10 +17859,18 @@ snapshots: '@babel/highlight': 7.23.4 chalk: 2.4.2 + '@babel/code-frame@7.26.2': + dependencies: + '@babel/helper-validator-identifier': 7.25.9 + js-tokens: 4.0.0 + picocolors: 1.1.1 + '@babel/compat-data@7.23.3': {} '@babel/compat-data@7.23.5': {} + '@babel/compat-data@7.26.3': {} + '@babel/core@7.23.3': dependencies: '@ampproject/remapping': 2.2.1 @@ -17084,10 +17925,22 @@ snapshots: '@jridgewell/trace-mapping': 0.3.20 jsesc: 2.5.2 + '@babel/generator@7.26.3': + dependencies: + '@babel/parser': 7.26.3 + '@babel/types': 7.26.3 + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 3.1.0 + '@babel/helper-annotate-as-pure@7.22.5': dependencies: '@babel/types': 7.23.3 + '@babel/helper-annotate-as-pure@7.25.9': + dependencies: + '@babel/types': 7.26.3 + '@babel/helper-builder-binary-assignment-operator-visitor@7.22.15': dependencies: '@babel/types': 7.24.0 @@ -17108,17 +17961,12 @@ snapshots: lru-cache: 5.1.1 semver: 6.3.1 - '@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.3)': + '@babel/helper-compilation-targets@7.25.9': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.3) - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/helper-split-export-declaration': 7.22.6 + '@babel/compat-data': 7.26.3 + '@babel/helper-validator-option': 7.25.9 + browserslist: 4.24.3 + lru-cache: 5.1.1 semver: 6.3.1 '@babel/helper-create-class-features-plugin@7.22.15(@babel/core@7.23.9)': @@ -17134,12 +17982,18 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 semver: 6.3.1 - '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.3)': + '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-annotate-as-pure': 7.22.5 - regexpu-core: 5.3.2 + '@babel/core': 7.23.9 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-member-expression-to-functions': 7.25.9 + '@babel/helper-optimise-call-expression': 7.25.9 + '@babel/helper-replace-supers': 7.25.9(@babel/core@7.23.9) + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + '@babel/traverse': 7.26.4 semver: 6.3.1 + transitivePeerDependencies: + - supports-color '@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.23.9)': dependencies: @@ -17148,16 +18002,12 @@ snapshots: regexpu-core: 5.3.2 semver: 6.3.1 - '@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.3)': + '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.24.0 - debug: 4.3.4(supports-color@8.1.1) - lodash.debounce: 4.0.8 - resolve: 1.22.8 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.23.9 + '@babel/helper-annotate-as-pure': 7.25.9 + regexpu-core: 6.2.0 + semver: 6.3.1 '@babel/helper-define-polyfill-provider@0.4.3(@babel/core@7.23.9)': dependencies: @@ -17170,22 +18020,22 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.23.3)': + '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 debug: 4.3.4(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.8 transitivePeerDependencies: - supports-color - '@babel/helper-define-polyfill-provider@0.6.1(@babel/core@7.23.9)': + '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 debug: 4.3.4(supports-color@8.1.1) lodash.debounce: 4.0.8 resolve: 1.22.8 @@ -17207,6 +18057,13 @@ snapshots: dependencies: '@babel/types': 7.23.3 + '@babel/helper-member-expression-to-functions@7.25.9': + dependencies: + '@babel/traverse': 7.26.4 + '@babel/types': 7.26.3 + transitivePeerDependencies: + - supports-color + '@babel/helper-module-imports@7.22.15': dependencies: '@babel/types': 7.23.3 @@ -17215,6 +18072,13 @@ snapshots: dependencies: '@babel/types': 7.24.0 + '@babel/helper-module-imports@7.25.9': + dependencies: + '@babel/traverse': 7.26.4 + '@babel/types': 7.26.3 + transitivePeerDependencies: + - supports-color + '@babel/helper-module-transforms@7.23.3(@babel/core@7.23.3)': dependencies: '@babel/core': 7.23.3 @@ -17233,20 +18097,28 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 '@babel/helper-validator-identifier': 7.22.20 + '@babel/helper-module-transforms@7.26.0(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 + '@babel/traverse': 7.26.4 + transitivePeerDependencies: + - supports-color + '@babel/helper-optimise-call-expression@7.22.5': dependencies: '@babel/types': 7.24.0 + '@babel/helper-optimise-call-expression@7.25.9': + dependencies: + '@babel/types': 7.26.3 + '@babel/helper-plugin-utils@7.22.5': {} '@babel/helper-plugin-utils@7.24.0': {} - '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-wrap-function': 7.22.20 + '@babel/helper-plugin-utils@7.25.9': {} '@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.23.9)': dependencies: @@ -17255,12 +18127,14 @@ snapshots: '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-wrap-function': 7.22.20 - '@babel/helper-replace-supers@7.22.20(@babel/core@7.23.3)': + '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-member-expression-to-functions': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/core': 7.23.9 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-wrap-function': 7.25.9 + '@babel/traverse': 7.26.4 + transitivePeerDependencies: + - supports-color '@babel/helper-replace-supers@7.22.20(@babel/core@7.23.9)': dependencies: @@ -17269,6 +18143,15 @@ snapshots: '@babel/helper-member-expression-to-functions': 7.23.0 '@babel/helper-optimise-call-expression': 7.22.5 + '@babel/helper-replace-supers@7.25.9(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-member-expression-to-functions': 7.25.9 + '@babel/helper-optimise-call-expression': 7.25.9 + '@babel/traverse': 7.26.4 + transitivePeerDependencies: + - supports-color + '@babel/helper-simple-access@7.22.5': dependencies: '@babel/types': 7.23.3 @@ -17277,6 +18160,13 @@ snapshots: dependencies: '@babel/types': 7.23.3 + '@babel/helper-skip-transparent-expression-wrappers@7.25.9': + dependencies: + '@babel/traverse': 7.26.4 + '@babel/types': 7.26.3 + transitivePeerDependencies: + - supports-color + '@babel/helper-split-export-declaration@7.22.6': dependencies: '@babel/types': 7.23.3 @@ -17285,18 +18175,32 @@ snapshots: '@babel/helper-string-parser@7.23.4': {} + '@babel/helper-string-parser@7.25.9': {} + '@babel/helper-validator-identifier@7.22.20': {} + '@babel/helper-validator-identifier@7.25.9': {} + '@babel/helper-validator-option@7.22.15': {} '@babel/helper-validator-option@7.23.5': {} + '@babel/helper-validator-option@7.25.9': {} + '@babel/helper-wrap-function@7.22.20': dependencies: '@babel/helper-function-name': 7.23.0 '@babel/template': 7.23.9 '@babel/types': 7.24.0 + '@babel/helper-wrap-function@7.25.9': + dependencies: + '@babel/template': 7.25.9 + '@babel/traverse': 7.26.4 + '@babel/types': 7.26.3 + transitivePeerDependencies: + - supports-color + '@babel/helpers@7.23.2': dependencies: '@babel/template': 7.22.15 @@ -17333,22 +18237,32 @@ snapshots: dependencies: '@babel/types': 7.23.9 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.3)': + '@babel/parser@7.26.3': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/types': 7.26.3 + + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/traverse': 7.26.4 + transitivePeerDependencies: + - supports-color + + '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-optional-chaining': 7.23.3(@babel/core@7.23.3) + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.23.3(@babel/core@7.23.9)': dependencies: @@ -17357,11 +18271,14 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-transform-optional-chaining': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.23.9) + transitivePeerDependencies: + - supports-color '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.23.3(@babel/core@7.23.9)': dependencies: @@ -17369,33 +18286,28 @@ snapshots: '@babel/helper-environment-visitor': 7.22.20 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-external-helpers@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/traverse': 7.26.4 + transitivePeerDependencies: + - supports-color - '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.23.3)': + '@babel/plugin-external-helpers@7.23.3(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-environment-visitor': 7.22.20 + '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.3) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.3) - optional: true '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.23.9) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.9) - - '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.24.0 + transitivePeerDependencies: + - supports-color '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.23.9)': dependencies: @@ -17403,54 +18315,24 @@ snapshots: '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-proposal-export-default-from@7.24.1(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.23.3) - optional: true - '@babel/plugin-proposal-export-default-from@7.24.1(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.23.9) - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3) - optional: true - '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.9) - '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.3) - optional: true - '@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.9) - '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.3)': - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.3 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.23.9)': dependencies: '@babel/compat-data': 7.23.5 @@ -17460,27 +18342,12 @@ snapshots: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9) '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.3) - optional: true - '@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.9) - '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3) - optional: true - '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -17488,255 +18355,145 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.9) - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-export-default-from@7.24.1(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - optional: true - '@babel/plugin-syntax-export-default-from@7.24.1(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-plugin-utils': 7.24.0 - - '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-flow@7.23.3(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - optional: true - '@babel/plugin-syntax-flow@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-assertions@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-import-attributes@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.3)': + '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-jsx@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.3)': + '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-arrow-functions@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-async-generator-functions@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.3) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.3) + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-async-generator-functions@7.23.3(@babel/core@7.23.9)': dependencies: @@ -17746,12 +18503,14 @@ snapshots: '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.9) '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.9) - '@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-module-imports': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.3) + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.23.9) + '@babel/traverse': 7.26.4 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-async-to-generator@7.23.3(@babel/core@7.23.9)': dependencies: @@ -17760,31 +18519,34 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.23.9) - '@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.23.9) + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-block-scoped-functions@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-block-scoping@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-block-scoping@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-class-properties@7.23.3(@babel/core@7.23.9)': dependencies: @@ -17792,12 +18554,13 @@ snapshots: '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-class-static-block@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.3) + '@babel/core': 7.23.9 + '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-class-static-block@7.23.3(@babel/core@7.23.9)': dependencies: @@ -17806,18 +18569,13 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.9) - '@babel/plugin-transform-classes@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-environment-visitor': 7.22.20 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-optimise-call-expression': 7.22.5 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.3) - '@babel/helper-split-export-declaration': 7.22.6 - globals: 11.12.0 + '@babel/core': 7.23.9 + '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-classes@7.23.3(@babel/core@7.23.9)': dependencies: @@ -17832,11 +18590,17 @@ snapshots: '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 - '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-classes@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/template': 7.23.9 + '@babel/core': 7.23.9 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-replace-supers': 7.25.9(@babel/core@7.23.9) + '@babel/traverse': 7.26.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-computed-properties@7.23.3(@babel/core@7.23.9)': dependencies: @@ -17844,21 +18608,21 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/template': 7.23.9 - '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/template': 7.25.9 '@babel/plugin-transform-destructuring@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-dotall-regex@7.23.3(@babel/core@7.23.9)': dependencies: @@ -17866,21 +18630,27 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-duplicate-keys@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-dynamic-import@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.3) + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 + + '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-dynamic-import@7.23.3(@babel/core@7.23.9)': dependencies: @@ -17888,11 +18658,10 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.9) - '@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-exponentiation-operator@7.23.3(@babel/core@7.23.9)': dependencies: @@ -17900,11 +18669,10 @@ snapshots: '@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-export-namespace-from@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.3) + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-export-namespace-from@7.23.3(@babel/core@7.23.9)': dependencies: @@ -17912,12 +18680,10 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.9) - '@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.3) - optional: true + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-flow-strip-types@7.23.3(@babel/core@7.23.9)': dependencies: @@ -17925,22 +18691,18 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-transform-for-of@7.23.3(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-for-of@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-function-name': 7.23.0 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-function-name@7.23.3(@babel/core@7.23.9)': dependencies: @@ -17949,11 +18711,14 @@ snapshots: '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-json-strings@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.3) + '@babel/core': 7.23.9 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/traverse': 7.26.4 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-json-strings@7.23.3(@babel/core@7.23.9)': dependencies: @@ -17961,21 +18726,20 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.9) - '@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-literals@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-logical-assignment-operators@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-literals@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.3) + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-logical-assignment-operators@7.23.3(@babel/core@7.23.9)': dependencies: @@ -17983,21 +18747,20 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.9) - '@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-member-expression-literals@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-modules-amd@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18005,12 +18768,13 @@ snapshots: '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/helper-simple-access': 7.22.5 + '@babel/core': 7.23.9 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-modules-commonjs@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18019,13 +18783,13 @@ snapshots: '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-simple-access': 7.22.5 - '@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-hoist-variables': 7.22.5 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-validator-identifier': 7.22.20 + '@babel/core': 7.23.9 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-modules-systemjs@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18035,11 +18799,15 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-validator-identifier': 7.22.20 - '@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 + '@babel/traverse': 7.26.4 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-modules-umd@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18047,11 +18815,13 @@ snapshots: '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.3)': + '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.9)': dependencies: @@ -18059,21 +18829,21 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-new-target@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-nullish-coalescing-operator@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3) + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-nullish-coalescing-operator@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18081,11 +18851,10 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.9) - '@babel/plugin-transform-numeric-separator@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.3) + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-numeric-separator@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18093,14 +18862,10 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.9) - '@babel/plugin-transform-object-rest-spread@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.3 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.3) + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-object-rest-spread@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18111,11 +18876,12 @@ snapshots: '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.9) '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.3) + '@babel/core': 7.23.9 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.23.9) '@babel/plugin-transform-object-super@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18123,11 +18889,13 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-replace-supers': 7.22.20(@babel/core@7.23.9) - '@babel/plugin-transform-optional-catch-binding@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.3) + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-replace-supers': 7.25.9(@babel/core@7.23.9) + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-optional-catch-binding@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18135,12 +18903,10 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.9) - '@babel/plugin-transform-optional-chaining@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3) + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-optional-chaining@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18149,21 +18915,23 @@ snapshots: '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.9) - '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-parameters@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-private-methods@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18171,13 +18939,13 @@ snapshots: '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-private-property-in-object@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.3) + '@babel/core': 7.23.9 + '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-private-property-in-object@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18187,66 +18955,56 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.9) - '@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.25.9 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-property-literals@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-react-display-name@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.3)': + '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.3) + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-react-jsx-development@7.22.5(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.9) - '@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - optional: true + '@babel/core': 7.23.9 + '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.23.9) + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-react-jsx-self@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.22.5 - optional: true + '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-transform-react-jsx-source@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-plugin-utils': 7.22.5 - - '@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-module-imports': 7.24.3 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.3) - '@babel/types': 7.24.0 '@babel/plugin-transform-react-jsx@7.22.15(@babel/core@7.23.9)': dependencies: @@ -18257,11 +19015,16 @@ snapshots: '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.9) '@babel/types': 7.24.0 - '@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.23.9) + '@babel/types': 7.26.3 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-react-pure-annotations@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18269,11 +19032,11 @@ snapshots: '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - regenerator-transform: 0.15.2 + '@babel/core': 7.23.9 + '@babel/helper-annotate-as-pure': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-regenerator@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18281,56 +19044,49 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 regenerator-transform: 0.15.2 - '@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 + regenerator-transform: 0.15.2 + + '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.23.9)': + dependencies: + '@babel/core': 7.23.9 + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-reserved-words@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-runtime@7.24.3(@babel/core@7.23.3)': + '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-module-imports': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 - babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.23.3) - babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.23.3) - babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.23.3) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - optional: true + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-runtime@7.24.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-module-imports': 7.24.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.23.9) - babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.23.9) + babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.23.9) babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.23.9) semver: 6.3.1 transitivePeerDependencies: - supports-color - '@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-shorthand-properties@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-spread@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18338,67 +19094,61 @@ snapshots: '@babel/helper-plugin-utils': 7.24.0 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 - '@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-spread@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-skip-transparent-expression-wrappers': 7.25.9 + transitivePeerDependencies: + - supports-color '@babel/plugin-transform-sticky-regex@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-template-literals@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-typeof-symbol@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-typescript@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-annotate-as-pure': 7.22.5 - '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.3) + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-typescript@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-annotate-as-pure': 7.22.5 '@babel/helper-create-class-features-plugin': 7.22.15(@babel/core@7.23.9) - '@babel/helper-plugin-utils': 7.22.5 - '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.9) - - '@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 '@babel/helper-plugin-utils': 7.24.0 + '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.9) '@babel/plugin-transform-unicode-escapes@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-unicode-property-regex@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18406,11 +19156,11 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-unicode-regex@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18418,11 +19168,11 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.24.0 - '@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.3) - '@babel/helper-plugin-utils': 7.24.0 + '@babel/core': 7.23.9 + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.25.9 '@babel/plugin-transform-unicode-sets-regex@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18430,91 +19180,11 @@ snapshots: '@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.23.9) '@babel/helper-plugin-utils': 7.24.0 - '@babel/preset-env@7.23.3(@babel/core@7.23.3)': + '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.23.9)': dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.3 - '@babel/helper-compilation-targets': 7.23.6 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.3) - '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.3) - '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.3) - '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.3) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-import-assertions': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-syntax-import-attributes': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.3) - '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.3) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.3) - '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.3) - '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.3) - '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.3) - '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-async-generator-functions': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-block-scoped-functions': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-block-scoping': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-class-static-block': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-classes': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-dotall-regex': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-duplicate-keys': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-dynamic-import': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-exponentiation-operator': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-export-namespace-from': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-for-of': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-json-strings': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-logical-assignment-operators': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-member-expression-literals': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-modules-amd': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-modules-systemjs': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-modules-umd': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.3) - '@babel/plugin-transform-new-target': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-nullish-coalescing-operator': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-numeric-separator': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-object-rest-spread': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-object-super': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-optional-catch-binding': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-optional-chaining': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-private-property-in-object': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-property-literals': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-regenerator': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-reserved-words': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-template-literals': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-typeof-symbol': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-unicode-escapes': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-unicode-property-regex': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-unicode-sets-regex': 7.23.3(@babel/core@7.23.3) - '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.3) - babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.23.3) - babel-plugin-polyfill-corejs3: 0.8.6(@babel/core@7.23.3) - babel-plugin-polyfill-regenerator: 0.5.3(@babel/core@7.23.3) - core-js-compat: 3.36.1 - semver: 6.3.1 - transitivePeerDependencies: - - supports-color + '@babel/core': 7.23.9 + '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.23.9) + '@babel/helper-plugin-utils': 7.25.9 '@babel/preset-env@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18602,6 +19272,81 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/preset-env@7.26.0(@babel/core@7.23.9)': + dependencies: + '@babel/compat-data': 7.26.3 + '@babel/core': 7.23.9 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-validator-option': 7.25.9 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.9) + '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.23.9) + '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.23.9) + '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.9) + '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.23.9) + '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.23.9) + '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.23.9) + '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.23.9) + '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.23.9) + '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.23.9) + babel-plugin-polyfill-corejs2: 0.4.10(@babel/core@7.23.9) + babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.23.9) + babel-plugin-polyfill-regenerator: 0.6.1(@babel/core@7.23.9) + core-js-compat: 3.39.0 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + '@babel/preset-flow@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -18609,30 +19354,13 @@ snapshots: '@babel/helper-validator-option': 7.23.5 '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.23.9) - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/types': 7.24.0 - esutils: 2.0.3 - '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/types': 7.24.0 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/types': 7.26.3 esutils: 2.0.3 - '@babel/preset-react@7.23.3(@babel/core@7.23.3)': - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.3) - '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.3) - '@babel/plugin-transform-react-pure-annotations': 7.23.3(@babel/core@7.23.3) - '@babel/preset-react@7.23.3(@babel/core@7.23.9)': dependencies: '@babel/core': 7.23.9 @@ -18643,14 +19371,17 @@ snapshots: '@babel/plugin-transform-react-jsx-development': 7.22.5(@babel/core@7.23.9) '@babel/plugin-transform-react-pure-annotations': 7.23.3(@babel/core@7.23.9) - '@babel/preset-typescript@7.23.3(@babel/core@7.23.3)': + '@babel/preset-react@7.26.3(@babel/core@7.23.9)': dependencies: - '@babel/core': 7.23.3 - '@babel/helper-plugin-utils': 7.24.0 - '@babel/helper-validator-option': 7.23.5 - '@babel/plugin-syntax-jsx': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-typescript': 7.23.3(@babel/core@7.23.3) + '@babel/core': 7.23.9 + '@babel/helper-plugin-utils': 7.25.9 + '@babel/helper-validator-option': 7.25.9 + '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-react-pure-annotations': 7.25.9(@babel/core@7.23.9) + transitivePeerDependencies: + - supports-color '@babel/preset-typescript@7.23.3(@babel/core@7.23.9)': dependencies: @@ -18696,6 +19427,12 @@ snapshots: '@babel/parser': 7.23.9 '@babel/types': 7.23.9 + '@babel/template@7.25.9': + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/parser': 7.26.3 + '@babel/types': 7.26.3 + '@babel/traverse@7.23.3': dependencies: '@babel/code-frame': 7.22.13 @@ -18726,6 +19463,18 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/traverse@7.26.4': + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.3 + '@babel/parser': 7.26.3 + '@babel/template': 7.25.9 + '@babel/types': 7.26.3 + debug: 4.3.4(supports-color@8.1.1) + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + '@babel/types@7.23.3': dependencies: '@babel/helper-string-parser': 7.22.5 @@ -18744,6 +19493,11 @@ snapshots: '@babel/helper-validator-identifier': 7.22.20 to-fast-properties: 2.0.0 + '@babel/types@7.26.3': + dependencies: + '@babel/helper-string-parser': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 + '@base2/pretty-print-object@1.0.1': {} '@binance/w3w-core@1.1.7(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(utf-8-validate@5.0.10)': @@ -18753,7 +19507,7 @@ snapshots: '@binance/w3w-types': 1.1.4 '@binance/w3w-utils': 1.1.4 '@ethersproject/abi': 5.7.0 - axios: 1.7.2 + axios: 1.6.8(debug@4.3.4) js-base64: 3.7.7 transitivePeerDependencies: - bufferutil @@ -18768,7 +19522,7 @@ snapshots: '@binance/w3w-types': 1.1.4 '@binance/w3w-utils': 1.1.4 '@ethersproject/abi': 5.7.0 - axios: 1.7.2 + axios: 1.6.8(debug@4.3.4) js-base64: 3.7.7 transitivePeerDependencies: - bufferutil @@ -18819,7 +19573,7 @@ snapshots: dependencies: '@binance/w3w-types': 1.1.4 '@binance/w3w-utils': 1.1.4 - qrcode: 1.5.3 + qrcode: 1.5.4 qrcode.react: 3.1.0(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -18831,7 +19585,7 @@ snapshots: dependencies: '@binance/w3w-types': 1.1.4 '@binance/w3w-utils': 1.1.4 - qrcode: 1.5.3 + qrcode: 1.5.4 qrcode.react: 3.1.0(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -18881,12 +19635,12 @@ snapshots: hash.js: 1.1.7 js-base64: 3.7.5 - '@binance/w3w-wagmi-connector-v2@1.2.3(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@2.12.17(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))': + '@binance/w3w-wagmi-connector-v2@1.2.3(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@2.12.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))': dependencies: '@binance/w3w-ethereum-provider': 1.1.7(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(utf-8-validate@5.0.10) '@binance/w3w-utils': 1.1.4 viem: 2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) - wagmi: 2.12.17(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + wagmi: 2.12.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) transitivePeerDependencies: - bufferutil - debug @@ -18894,12 +19648,12 @@ snapshots: - ts-node - utf-8-validate - '@binance/w3w-wagmi-connector-v2@1.2.3(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.0.4)(typescript@5.2.2))(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@2.12.17(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))': + '@binance/w3w-wagmi-connector-v2@1.2.3(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.0.4)(typescript@5.2.2))(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(wagmi@2.12.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4))': dependencies: '@binance/w3w-ethereum-provider': 1.1.7(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.0.4)(typescript@5.2.2))(utf-8-validate@5.0.10) '@binance/w3w-utils': 1.1.4 viem: 2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) - wagmi: 2.12.17(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + wagmi: 2.12.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) transitivePeerDependencies: - bufferutil - debug @@ -18921,6 +19675,21 @@ snapshots: - debug - utf-8-validate + '@bnb-chain/canonical-bridge-widget@0.5.14-alpha.5(2b2s7kabqcsjyxwja7i7qf3u64)': + dependencies: + '@emotion/react': 11.11.4(@types/react@18.2.37)(react@18.2.0) + '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@types/react@18.2.37)(react@18.2.0) + '@solana/spl-token': 0.4.9(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.2.2)(utf-8-validate@5.0.10) + '@solana/wallet-adapter-react': 0.15.35(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + '@solana/web3.js': 1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@tanstack/react-query': 5.52.1(react@18.2.0) + '@tronweb3/tronwallet-adapter-react-hooks': 1.1.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + tronweb: 6.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + viem: 2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) + wagmi: 2.12.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@changesets/apply-release-plan@7.0.0': dependencies: '@babel/runtime': 7.23.2 @@ -19262,13 +20031,13 @@ snapshots: dependencies: postcss-selector-parser: 6.0.13 - '@cyberlab/cyber-app-sdk@3.0.0-beta.5(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/node@13.13.52)(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@cyberlab/cyber-app-sdk@3.0.0-beta.5(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/node@13.13.52)(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@wagmi/connectors': 3.1.11(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@wagmi/connectors': 3.1.11(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) '@wagmi/core': 2.10.5(@tanstack/query-core@5.52.0)(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) ts-node: 10.9.1(@types/node@13.13.52)(typescript@5.2.2) viem: 2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) - wagmi: 2.12.17(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + wagmi: 2.12.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -19299,13 +20068,13 @@ snapshots: - utf-8-validate - zod - '@cyberlab/cyber-app-sdk@3.0.0-beta.5(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/node@18.0.4)(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@cyberlab/cyber-app-sdk@3.0.0-beta.5(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/node@18.0.4)(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@wagmi/connectors': 3.1.11(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@wagmi/connectors': 3.1.11(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) '@wagmi/core': 2.10.5(@tanstack/query-core@5.52.0)(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) ts-node: 10.9.1(@types/node@18.0.4)(typescript@5.2.2) viem: 2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) - wagmi: 2.12.17(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + wagmi: 2.12.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -19388,7 +20157,7 @@ snapshots: bignumber.js: 9.1.2 optional: true - '@defi.org/web3-candies@4.20.17(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(bufferutil@4.0.8)(chalk@4.1.2)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4)': + '@defi.org/web3-candies@4.20.17(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(bufferutil@4.0.8)(chalk@5.3.0)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4)': dependencies: '@types/lodash': 4.14.202 '@uniswap/permit2-sdk': 1.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -19402,11 +20171,11 @@ snapshots: web3: 1.10.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) optionalDependencies: '@defi.org/chai-bignumber': 3.0.2(bignumber.js@9.1.2) - '@nomiclabs/hardhat-etherscan': 3.1.8(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@5.2.2)(utf-8-validate@5.0.10)) - '@nomiclabs/hardhat-web3': 2.0.0(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@5.2.2)(utf-8-validate@5.0.10))(web3@1.10.4(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + '@nomiclabs/hardhat-etherscan': 3.1.8(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10)) + '@nomiclabs/hardhat-web3': 2.0.0(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))(web3@1.10.4(bufferutil@4.0.8)(utf-8-validate@5.0.10)) '@openzeppelin/contracts': 4.9.6 - '@typechain/hardhat': 6.1.6(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@5.2.2)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2)) - '@typechain/web3-v1': 6.0.7(typechain@8.3.2(typescript@5.2.2))(typescript@4.9.5)(web3-core@1.10.4)(web3-eth-contract@1.10.4)(web3@1.10.4(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + '@typechain/hardhat': 6.1.6(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@4.9.5)) + '@typechain/web3-v1': 6.0.7(typechain@8.3.2(typescript@4.9.5))(typescript@4.9.5)(web3-core@1.10.4)(web3-eth-contract@1.10.4)(web3@1.10.4(bufferutil@4.0.8)(utf-8-validate@5.0.10)) '@types/chai': 4.3.14 '@types/fs-extra': 11.0.4 '@types/mocha': 10.0.6 @@ -19415,10 +20184,10 @@ snapshots: chai: 4.3.10 dotenv: 16.3.1 fs-extra: 11.1.1 - hardhat: 2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@4.9.5)(utf-8-validate@5.0.10) - hardhat-gas-reporter: 1.0.10(bufferutil@4.0.8)(debug@4.3.4)(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@5.2.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) - hardhat-spdx-license-identifier: 2.2.0(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@5.2.2)(utf-8-validate@5.0.10)) - hardhat-tracer: 1.3.0(chalk@4.1.2)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@5.2.2)(utf-8-validate@5.0.10)) + hardhat: 2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10) + hardhat-gas-reporter: 1.0.10(bufferutil@4.0.8)(debug@4.3.4)(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10) + hardhat-spdx-license-identifier: 2.2.0(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10)) + hardhat-tracer: 1.3.0(chalk@5.3.0)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10)) mocha: 10.4.0 patch-package: 7.0.2 prompts: 2.4.2 @@ -19477,10 +20246,6 @@ snapshots: dependencies: '@emotion/memoize': 0.7.4 - '@emotion/is-prop-valid@1.2.1': - dependencies: - '@emotion/memoize': 0.8.1 - '@emotion/is-prop-valid@1.2.2': dependencies: '@emotion/memoize': 0.8.1 @@ -19567,9 +20332,6 @@ snapshots: '@esbuild/android-arm64@0.19.12': optional: true - '@esbuild/android-arm64@0.19.8': - optional: true - '@esbuild/android-arm@0.17.19': optional: true @@ -19582,9 +20344,6 @@ snapshots: '@esbuild/android-arm@0.19.12': optional: true - '@esbuild/android-arm@0.19.8': - optional: true - '@esbuild/android-x64@0.17.19': optional: true @@ -19597,9 +20356,6 @@ snapshots: '@esbuild/android-x64@0.19.12': optional: true - '@esbuild/android-x64@0.19.8': - optional: true - '@esbuild/darwin-arm64@0.17.19': optional: true @@ -19612,9 +20368,6 @@ snapshots: '@esbuild/darwin-arm64@0.19.12': optional: true - '@esbuild/darwin-arm64@0.19.8': - optional: true - '@esbuild/darwin-x64@0.17.19': optional: true @@ -19627,9 +20380,6 @@ snapshots: '@esbuild/darwin-x64@0.19.12': optional: true - '@esbuild/darwin-x64@0.19.8': - optional: true - '@esbuild/freebsd-arm64@0.17.19': optional: true @@ -19642,9 +20392,6 @@ snapshots: '@esbuild/freebsd-arm64@0.19.12': optional: true - '@esbuild/freebsd-arm64@0.19.8': - optional: true - '@esbuild/freebsd-x64@0.17.19': optional: true @@ -19657,9 +20404,6 @@ snapshots: '@esbuild/freebsd-x64@0.19.12': optional: true - '@esbuild/freebsd-x64@0.19.8': - optional: true - '@esbuild/linux-arm64@0.17.19': optional: true @@ -19672,9 +20416,6 @@ snapshots: '@esbuild/linux-arm64@0.19.12': optional: true - '@esbuild/linux-arm64@0.19.8': - optional: true - '@esbuild/linux-arm@0.17.19': optional: true @@ -19687,9 +20428,6 @@ snapshots: '@esbuild/linux-arm@0.19.12': optional: true - '@esbuild/linux-arm@0.19.8': - optional: true - '@esbuild/linux-ia32@0.17.19': optional: true @@ -19702,9 +20440,6 @@ snapshots: '@esbuild/linux-ia32@0.19.12': optional: true - '@esbuild/linux-ia32@0.19.8': - optional: true - '@esbuild/linux-loong64@0.17.19': optional: true @@ -19717,9 +20452,6 @@ snapshots: '@esbuild/linux-loong64@0.19.12': optional: true - '@esbuild/linux-loong64@0.19.8': - optional: true - '@esbuild/linux-mips64el@0.17.19': optional: true @@ -19732,9 +20464,6 @@ snapshots: '@esbuild/linux-mips64el@0.19.12': optional: true - '@esbuild/linux-mips64el@0.19.8': - optional: true - '@esbuild/linux-ppc64@0.17.19': optional: true @@ -19747,9 +20476,6 @@ snapshots: '@esbuild/linux-ppc64@0.19.12': optional: true - '@esbuild/linux-ppc64@0.19.8': - optional: true - '@esbuild/linux-riscv64@0.17.19': optional: true @@ -19762,9 +20488,6 @@ snapshots: '@esbuild/linux-riscv64@0.19.12': optional: true - '@esbuild/linux-riscv64@0.19.8': - optional: true - '@esbuild/linux-s390x@0.17.19': optional: true @@ -19777,9 +20500,6 @@ snapshots: '@esbuild/linux-s390x@0.19.12': optional: true - '@esbuild/linux-s390x@0.19.8': - optional: true - '@esbuild/linux-x64@0.17.19': optional: true @@ -19792,9 +20512,6 @@ snapshots: '@esbuild/linux-x64@0.19.12': optional: true - '@esbuild/linux-x64@0.19.8': - optional: true - '@esbuild/netbsd-x64@0.17.19': optional: true @@ -19807,9 +20524,6 @@ snapshots: '@esbuild/netbsd-x64@0.19.12': optional: true - '@esbuild/netbsd-x64@0.19.8': - optional: true - '@esbuild/openbsd-x64@0.17.19': optional: true @@ -19822,9 +20536,6 @@ snapshots: '@esbuild/openbsd-x64@0.19.12': optional: true - '@esbuild/openbsd-x64@0.19.8': - optional: true - '@esbuild/sunos-x64@0.17.19': optional: true @@ -19837,9 +20548,6 @@ snapshots: '@esbuild/sunos-x64@0.19.12': optional: true - '@esbuild/sunos-x64@0.19.8': - optional: true - '@esbuild/win32-arm64@0.17.19': optional: true @@ -19852,9 +20560,6 @@ snapshots: '@esbuild/win32-arm64@0.19.12': optional: true - '@esbuild/win32-arm64@0.19.8': - optional: true - '@esbuild/win32-ia32@0.17.19': optional: true @@ -19867,9 +20572,6 @@ snapshots: '@esbuild/win32-ia32@0.19.12': optional: true - '@esbuild/win32-ia32@0.19.8': - optional: true - '@esbuild/win32-x64@0.17.19': optional: true @@ -19882,9 +20584,6 @@ snapshots: '@esbuild/win32-x64@0.19.12': optional: true - '@esbuild/win32-x64@0.19.8': - optional: true - '@eslint-community/eslint-utils@4.4.0(eslint@8.53.0)': dependencies: eslint: 8.53.0 @@ -20412,13 +21111,13 @@ snapshots: '@types/yargs': 17.0.31 chalk: 4.1.2 - '@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@5.2.2)(vite@5.0.12(@types/node@20.5.7)(terser@5.24.0))': + '@joshwooding/vite-plugin-react-docgen-typescript@0.3.0(typescript@5.2.2)(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0))': dependencies: glob: 7.2.3 glob-promise: 4.2.2(glob@7.2.3) magic-string: 0.27.0 react-docgen-typescript: 2.2.2(typescript@5.2.2) - vite: 5.0.12(@types/node@20.5.7)(terser@5.24.0) + vite: 5.0.12(@types/node@22.7.5)(terser@5.24.0) optionalDependencies: typescript: 5.2.2 @@ -20428,14 +21127,22 @@ snapshots: '@jridgewell/sourcemap-codec': 1.4.15 '@jridgewell/trace-mapping': 0.3.20 + '@jridgewell/gen-mapping@0.3.8': + dependencies: + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.25 + '@jridgewell/resolve-uri@3.1.1': {} '@jridgewell/set-array@1.1.2': {} + '@jridgewell/set-array@1.2.1': {} + '@jridgewell/source-map@0.3.5': dependencies: - '@jridgewell/gen-mapping': 0.3.3 - '@jridgewell/trace-mapping': 0.3.20 + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 '@jridgewell/sourcemap-codec@1.4.15': {} @@ -20444,6 +21151,11 @@ snapshots: '@jridgewell/resolve-uri': 3.1.1 '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping@0.3.25': + dependencies: + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping@0.3.9': dependencies: '@jridgewell/resolve-uri': 3.1.1 @@ -20500,7 +21212,7 @@ snapshots: '@layerzerolabs/scan-client@0.0.6(axios@1.7.4)': dependencies: - axios: 1.7.4(debug@4.3.4) + axios: 1.7.4 '@ledgerhq/connect-kit-loader@1.1.2(patch_hash=xlsebypdiwsukm3c2ow7voujra)': {} @@ -20700,21 +21412,21 @@ snapshots: transitivePeerDependencies: - supports-color - '@metamask/sdk-install-modal-web@0.28.1(i18next@23.11.5)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)': + '@metamask/sdk-install-modal-web@0.28.1(i18next@23.11.5)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)': dependencies: i18next: 23.11.5 qr-code-styling: 1.6.0-rc.1 optionalDependencies: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-native: 0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) + react-native: 0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) - '@metamask/sdk@0.28.4(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(utf-8-validate@5.0.10)': + '@metamask/sdk@0.28.4(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(utf-8-validate@5.0.10)': dependencies: '@metamask/onboarding': 1.0.1 '@metamask/providers': 16.1.0 '@metamask/sdk-communication-layer': 0.28.2(cross-fetch@4.0.0)(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)) - '@metamask/sdk-install-modal-web': 0.28.1(i18next@23.11.5)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + '@metamask/sdk-install-modal-web': 0.28.1(i18next@23.11.5)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) '@types/dom-screen-wake-lock': 1.0.3 '@types/uuid': 10.0.0 bowser: 2.11.0 @@ -20728,7 +21440,7 @@ snapshots: obj-multiplex: 1.0.0 pump: 3.0.0 qrcode-terminal-nooctal: 0.12.1 - react-native-webview: 11.26.1(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + react-native-webview: 11.26.1(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) readable-stream: 3.6.2 rollup-plugin-visualizer: 5.9.2(rollup@3.29.4) socket.io-client: 4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -20769,20 +21481,20 @@ snapshots: transitivePeerDependencies: - supports-color - '@microsoft/api-extractor-model@7.28.2(@types/node@20.5.7)': + '@microsoft/api-extractor-model@7.28.2(@types/node@22.7.5)': dependencies: '@microsoft/tsdoc': 0.14.2 '@microsoft/tsdoc-config': 0.16.2 - '@rushstack/node-core-library': 3.61.0(@types/node@20.5.7) + '@rushstack/node-core-library': 3.61.0(@types/node@22.7.5) transitivePeerDependencies: - '@types/node' - '@microsoft/api-extractor@7.38.3(@types/node@20.5.7)': + '@microsoft/api-extractor@7.38.3(@types/node@22.7.5)': dependencies: - '@microsoft/api-extractor-model': 7.28.2(@types/node@20.5.7) + '@microsoft/api-extractor-model': 7.28.2(@types/node@22.7.5) '@microsoft/tsdoc': 0.14.2 '@microsoft/tsdoc-config': 0.16.2 - '@rushstack/node-core-library': 3.61.0(@types/node@20.5.7) + '@rushstack/node-core-library': 3.61.0(@types/node@22.7.5) '@rushstack/rig-package': 0.5.1 '@rushstack/ts-command-line': 4.17.1 colors: 1.2.5 @@ -20808,7 +21520,7 @@ snapshots: '@motionone/easing': 10.16.3 '@motionone/types': 10.16.3 '@motionone/utils': 10.16.3 - tslib: 2.6.2 + tslib: 2.7.0 '@motionone/dom@10.16.4': dependencies: @@ -20817,23 +21529,23 @@ snapshots: '@motionone/types': 10.16.3 '@motionone/utils': 10.16.3 hey-listen: 1.0.8 - tslib: 2.6.2 + tslib: 2.7.0 '@motionone/easing@10.16.3': dependencies: '@motionone/utils': 10.16.3 - tslib: 2.6.2 + tslib: 2.7.0 '@motionone/generators@10.16.4': dependencies: '@motionone/types': 10.16.3 '@motionone/utils': 10.16.3 - tslib: 2.6.2 + tslib: 2.7.0 '@motionone/svelte@10.16.4': dependencies: '@motionone/dom': 10.16.4 - tslib: 2.6.2 + tslib: 2.7.0 '@motionone/types@10.16.3': {} @@ -20841,12 +21553,12 @@ snapshots: dependencies: '@motionone/types': 10.16.3 hey-listen: 1.0.8 - tslib: 2.6.2 + tslib: 2.7.0 '@motionone/vue@10.16.4': dependencies: '@motionone/dom': 10.16.4 - tslib: 2.6.2 + tslib: 2.7.0 '@msafe/aptos-wallet@3.0.6': dependencies: @@ -20955,6 +21667,8 @@ snapshots: '@next/env@14.2.14': {} + '@next/env@14.2.20': {} + '@next/eslint-plugin-next@14.2.3': dependencies: glob: 10.3.10 @@ -20962,30 +21676,57 @@ snapshots: '@next/swc-darwin-arm64@14.2.14': optional: true + '@next/swc-darwin-arm64@14.2.20': + optional: true + '@next/swc-darwin-x64@14.2.14': optional: true + '@next/swc-darwin-x64@14.2.20': + optional: true + '@next/swc-linux-arm64-gnu@14.2.14': optional: true + '@next/swc-linux-arm64-gnu@14.2.20': + optional: true + '@next/swc-linux-arm64-musl@14.2.14': optional: true + '@next/swc-linux-arm64-musl@14.2.20': + optional: true + '@next/swc-linux-x64-gnu@14.2.14': optional: true + '@next/swc-linux-x64-gnu@14.2.20': + optional: true + '@next/swc-linux-x64-musl@14.2.14': optional: true + '@next/swc-linux-x64-musl@14.2.20': + optional: true + '@next/swc-win32-arm64-msvc@14.2.14': optional: true + '@next/swc-win32-arm64-msvc@14.2.20': + optional: true + '@next/swc-win32-ia32-msvc@14.2.14': optional: true + '@next/swc-win32-ia32-msvc@14.2.20': + optional: true + '@next/swc-win32-x64-msvc@14.2.14': optional: true + '@next/swc-win32-x64-msvc@14.2.20': + optional: true + '@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3': optional: true @@ -20997,6 +21738,10 @@ snapshots: dependencies: '@noble/hashes': 1.3.2 + '@noble/curves@1.4.2': + dependencies: + '@noble/hashes': 1.4.0 + '@noble/curves@1.6.0': dependencies: '@noble/hashes': 1.5.0 @@ -21014,6 +21759,8 @@ snapshots: '@noble/hashes@1.3.3': {} + '@noble/hashes@1.4.0': {} + '@noble/hashes@1.5.0': {} '@noble/secp256k1@1.7.0': {} @@ -21141,7 +21888,7 @@ snapshots: '@nomicfoundation/solidity-analyzer-win32-x64-msvc': 0.1.1 optional: true - '@nomiclabs/hardhat-etherscan@3.1.8(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@5.2.2)(utf-8-validate@5.0.10))': + '@nomiclabs/hardhat-etherscan@3.1.8(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))': dependencies: '@ethersproject/abi': 5.7.0 '@ethersproject/address': 5.7.0 @@ -21149,7 +21896,7 @@ snapshots: chalk: 2.4.2 debug: 4.3.4(supports-color@8.1.1) fs-extra: 7.0.1 - hardhat: 2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@5.2.2)(utf-8-validate@5.0.10) + hardhat: 2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10) lodash: 4.17.21 semver: 6.3.1 table: 6.8.1 @@ -21158,10 +21905,10 @@ snapshots: - supports-color optional: true - '@nomiclabs/hardhat-web3@2.0.0(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@5.2.2)(utf-8-validate@5.0.10))(web3@1.10.4(bufferutil@4.0.8)(utf-8-validate@5.0.10))': + '@nomiclabs/hardhat-web3@2.0.0(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))(web3@1.10.4(bufferutil@4.0.8)(utf-8-validate@5.0.10))': dependencies: '@types/bignumber.js': 5.0.0 - hardhat: 2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@5.2.2)(utf-8-validate@5.0.10) + hardhat: 2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10) web3: 1.10.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) optional: true @@ -21374,13 +22121,13 @@ snapshots: '@openzeppelin/contracts@4.9.6': optional: true - '@orbs-network/twap-ui-pancake@0.11.4(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@types/react@18.2.37)(react@18.2.0))(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(@types/react@18.2.37)(bufferutil@4.0.8)(chalk@4.1.2)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4)': + '@orbs-network/twap-ui-pancake@0.11.4(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@types/react@18.2.37)(react@18.2.0))(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(@types/react@18.2.37)(bufferutil@4.0.8)(chalk@5.3.0)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4)': dependencies: - '@defi.org/web3-candies': 4.20.17(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(bufferutil@4.0.8)(chalk@4.1.2)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4) + '@defi.org/web3-candies': 4.20.17(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(bufferutil@4.0.8)(chalk@5.3.0)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4) '@mui/material': 5.15.10(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@types/react@18.2.37)(react@18.2.0))(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@mui/system': 5.15.9(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@types/react@18.2.37)(react@18.2.0))(@types/react@18.2.37)(react@18.2.0) - '@orbs-network/twap': 1.24.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(bufferutil@4.0.8)(chalk@4.1.2)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4) - '@orbs-network/twap-ui': 0.11.4(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(@types/react@18.2.37)(bufferutil@4.0.8)(chalk@4.1.2)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4) + '@orbs-network/twap': 1.24.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(bufferutil@4.0.8)(chalk@5.3.0)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4) + '@orbs-network/twap-ui': 0.11.4(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(@types/react@18.2.37)(bufferutil@4.0.8)(chalk@5.3.0)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4) lodash: 4.17.21 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -21407,16 +22154,16 @@ snapshots: - web3-core - web3-eth-contract - '@orbs-network/twap-ui@0.11.4(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(@types/react@18.2.37)(bufferutil@4.0.8)(chalk@4.1.2)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4)': + '@orbs-network/twap-ui@0.11.4(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(@types/react@18.2.37)(bufferutil@4.0.8)(chalk@5.3.0)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4)': dependencies: - '@defi.org/web3-candies': 4.20.17(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(bufferutil@4.0.8)(chalk@4.1.2)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4) + '@defi.org/web3-candies': 4.20.17(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(bufferutil@4.0.8)(chalk@5.3.0)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4) '@emotion/react': 11.11.4(@types/react@18.2.37)(react@18.2.0) '@emotion/styled': 11.11.5(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@types/react@18.2.37)(react@18.2.0) '@mui/material': 5.15.10(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@types/react@18.2.37)(react@18.2.0))(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@mui/system': 5.15.9(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@18.2.37)(react@18.2.0))(@types/react@18.2.37)(react@18.2.0))(@types/react@18.2.37)(react@18.2.0) - '@orbs-network/twap': 1.24.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(bufferutil@4.0.8)(chalk@4.1.2)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4) + '@orbs-network/twap': 1.24.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(bufferutil@4.0.8)(chalk@5.3.0)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4) '@react-icons/all-files': 4.1.0(react@18.2.0) - '@tanstack/react-query': 4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + '@tanstack/react-query': 4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) '@types/async-retry': 1.4.8 '@types/lodash': 4.14.202 async-retry: 1.3.3 @@ -21453,9 +22200,9 @@ snapshots: - web3-core - web3-eth-contract - '@orbs-network/twap@1.24.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(bufferutil@4.0.8)(chalk@4.1.2)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4)': + '@orbs-network/twap@1.24.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(bufferutil@4.0.8)(chalk@5.3.0)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4)': dependencies: - '@defi.org/web3-candies': 4.20.17(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(bufferutil@4.0.8)(chalk@4.1.2)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4) + '@defi.org/web3-candies': 4.20.17(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(bufferutil@4.0.8)(chalk@5.3.0)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)(web3-core@1.10.4)(web3-eth-contract@1.10.4) transitivePeerDependencies: - '@codechecks/client' - '@ethersproject/abi' @@ -21651,7 +22398,7 @@ snapshots: dependencies: '@pythnetwork/price-service-sdk': 1.4.1 '@types/ws': 8.5.10 - axios: 1.7.2 + axios: 1.6.8(debug@4.3.4) axios-retry: 3.9.1 isomorphic-ws: 4.0.1(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)) ts-log: 2.2.5 @@ -21999,6 +22746,12 @@ snapshots: dependencies: react: 18.2.0 + '@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))': + dependencies: + merge-options: 3.0.4 + react-native: 0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) + optional: true + '@react-native-community/cli-clean@12.3.6': dependencies: '@react-native-community/cli-tools': 12.3.6 @@ -22142,71 +22895,14 @@ snapshots: '@react-native/assets-registry@0.73.1': {} - '@react-native/babel-plugin-codegen@0.73.4(@babel/preset-env@7.23.3(@babel/core@7.23.3))': - dependencies: - '@react-native/codegen': 0.73.3(@babel/preset-env@7.23.3(@babel/core@7.23.3)) - transitivePeerDependencies: - - '@babel/preset-env' - - supports-color - optional: true - - '@react-native/babel-plugin-codegen@0.73.4(@babel/preset-env@7.23.3(@babel/core@7.23.9))': - dependencies: - '@react-native/codegen': 0.73.3(@babel/preset-env@7.23.3(@babel/core@7.23.9)) - transitivePeerDependencies: - - '@babel/preset-env' - - supports-color - - '@react-native/babel-preset@0.73.21(@babel/core@7.23.3)(@babel/preset-env@7.23.3(@babel/core@7.23.3))': + '@react-native/babel-plugin-codegen@0.73.4(@babel/preset-env@7.26.0(@babel/core@7.23.9))': dependencies: - '@babel/core': 7.23.3 - '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.23.3) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.3) - '@babel/plugin-proposal-export-default-from': 7.24.1(@babel/core@7.23.3) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.3) - '@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.23.3) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.3) - '@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.23.3) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.3) - '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-export-default-from': 7.24.1(@babel/core@7.23.3) - '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3) - '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-block-scoping': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-classes': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.3) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-private-property-in-object': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.3) - '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.23.3) - '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-typescript': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.3) - '@babel/template': 7.23.9 - '@react-native/babel-plugin-codegen': 0.73.4(@babel/preset-env@7.23.3(@babel/core@7.23.3)) - babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.23.3) - react-refresh: 0.14.0 + '@react-native/codegen': 0.73.3(@babel/preset-env@7.26.0(@babel/core@7.23.9)) transitivePeerDependencies: - '@babel/preset-env' - supports-color - optional: true - '@react-native/babel-preset@0.73.21(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))': + '@react-native/babel-preset@0.73.21(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))': dependencies: '@babel/core': 7.23.9 '@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.23.9) @@ -22222,93 +22918,57 @@ snapshots: '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.9) '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.9) '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.9) - '@babel/plugin-transform-arrow-functions': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-transform-async-to-generator': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-transform-block-scoping': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-transform-classes': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-transform-computed-properties': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-transform-destructuring': 7.23.3(@babel/core@7.23.9) + '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.23.9) '@babel/plugin-transform-flow-strip-types': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-transform-function-name': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-transform-literals': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.9) - '@babel/plugin-transform-parameters': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-transform-private-methods': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-transform-private-property-in-object': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-transform-react-display-name': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-transform-react-jsx': 7.22.15(@babel/core@7.23.9) + '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.23.9) + '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.23.9) '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.9) '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.9) '@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.23.9) - '@babel/plugin-transform-shorthand-properties': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-transform-spread': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-transform-sticky-regex': 7.23.3(@babel/core@7.23.9) + '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.23.9) + '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.23.9) '@babel/plugin-transform-typescript': 7.23.3(@babel/core@7.23.9) - '@babel/plugin-transform-unicode-regex': 7.23.3(@babel/core@7.23.9) - '@babel/template': 7.23.9 - '@react-native/babel-plugin-codegen': 0.73.4(@babel/preset-env@7.23.3(@babel/core@7.23.9)) + '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.23.9) + '@babel/template': 7.25.9 + '@react-native/babel-plugin-codegen': 0.73.4(@babel/preset-env@7.26.0(@babel/core@7.23.9)) babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.23.9) react-refresh: 0.14.0 transitivePeerDependencies: - '@babel/preset-env' - supports-color - '@react-native/codegen@0.73.3(@babel/preset-env@7.23.3(@babel/core@7.23.3))': + '@react-native/codegen@0.73.3(@babel/preset-env@7.26.0(@babel/core@7.23.9))': dependencies: - '@babel/parser': 7.23.9 - '@babel/preset-env': 7.23.3(@babel/core@7.23.3) + '@babel/parser': 7.26.3 + '@babel/preset-env': 7.26.0(@babel/core@7.23.9) flow-parser: 0.206.0 glob: 7.2.3 invariant: 2.2.4 - jscodeshift: 0.14.0(@babel/preset-env@7.23.3(@babel/core@7.23.3)) + jscodeshift: 0.14.0(@babel/preset-env@7.26.0(@babel/core@7.23.9)) mkdirp: 0.5.6 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color - optional: true - - '@react-native/codegen@0.73.3(@babel/preset-env@7.23.3(@babel/core@7.23.9))': - dependencies: - '@babel/parser': 7.23.9 - '@babel/preset-env': 7.23.3(@babel/core@7.23.9) - flow-parser: 0.206.0 - glob: 7.2.3 - invariant: 2.2.4 - jscodeshift: 0.14.0(@babel/preset-env@7.23.3(@babel/core@7.23.9)) - mkdirp: 0.5.6 - nullthrows: 1.1.1 - transitivePeerDependencies: - - supports-color - - '@react-native/community-cli-plugin@0.73.17(@babel/core@7.23.3)(@babel/preset-env@7.23.3(@babel/core@7.23.3))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': - dependencies: - '@react-native-community/cli-server-api': 12.3.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@react-native-community/cli-tools': 12.3.6 - '@react-native/dev-middleware': 0.73.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@react-native/metro-babel-transformer': 0.73.15(@babel/core@7.23.3)(@babel/preset-env@7.23.3(@babel/core@7.23.3)) - chalk: 4.1.2 - execa: 5.1.1 - metro: 0.80.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) - metro-config: 0.80.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) - metro-core: 0.80.8 - node-fetch: 2.7.0 - readline: 1.3.0 - transitivePeerDependencies: - - '@babel/core' - - '@babel/preset-env' - - bufferutil - - encoding - - supports-color - - utf-8-validate - optional: true - '@react-native/community-cli-plugin@0.73.17(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@react-native/community-cli-plugin@0.73.17(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@react-native-community/cli-server-api': 12.3.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@react-native-community/cli-tools': 12.3.6 '@react-native/dev-middleware': 0.73.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@react-native/metro-babel-transformer': 0.73.15(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9)) + '@react-native/metro-babel-transformer': 0.73.15(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9)) chalk: 4.1.2 execa: 5.1.1 metro: 0.80.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -22349,21 +23009,10 @@ snapshots: '@react-native/js-polyfills@0.73.1': {} - '@react-native/metro-babel-transformer@0.73.15(@babel/core@7.23.3)(@babel/preset-env@7.23.3(@babel/core@7.23.3))': - dependencies: - '@babel/core': 7.23.3 - '@react-native/babel-preset': 0.73.21(@babel/core@7.23.3)(@babel/preset-env@7.23.3(@babel/core@7.23.3)) - hermes-parser: 0.15.0 - nullthrows: 1.1.1 - transitivePeerDependencies: - - '@babel/preset-env' - - supports-color - optional: true - - '@react-native/metro-babel-transformer@0.73.15(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))': + '@react-native/metro-babel-transformer@0.73.15(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))': dependencies: '@babel/core': 7.23.9 - '@react-native/babel-preset': 0.73.21(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9)) + '@react-native/babel-preset': 0.73.21(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9)) hermes-parser: 0.15.0 nullthrows: 1.1.1 transitivePeerDependencies: @@ -22372,18 +23021,11 @@ snapshots: '@react-native/normalize-colors@0.73.2': {} - '@react-native/virtualized-lists@0.73.4(react-native@0.73.6(@babel/core@7.23.3)(@babel/preset-env@7.23.3(@babel/core@7.23.3))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))': + '@react-native/virtualized-lists@0.73.4(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 - react-native: 0.73.6(@babel/core@7.23.3)(@babel/preset-env@7.23.3(@babel/core@7.23.3))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) - optional: true - - '@react-native/virtualized-lists@0.73.4(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))': - dependencies: - invariant: 2.2.4 - nullthrows: 1.1.1 - react-native: 0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) + react-native: 0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) '@redocly/ajv@8.11.0': dependencies: @@ -22411,7 +23053,7 @@ snapshots: - encoding - supports-color - '@reduxjs/toolkit@1.9.7(react-redux@8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.3)(@babel/preset-env@7.23.3(@babel/core@7.23.3))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1))(react@18.2.0)': + '@reduxjs/toolkit@1.9.7(react-redux@8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1))(react@18.2.0)': dependencies: immer: 9.0.21 redux: 4.2.1 @@ -22419,17 +23061,7 @@ snapshots: reselect: 4.1.8 optionalDependencies: react: 18.2.0 - react-redux: 8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.3)(@babel/preset-env@7.23.3(@babel/core@7.23.3))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1) - - '@reduxjs/toolkit@1.9.7(react-redux@8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1))(react@18.2.0)': - dependencies: - immer: 9.0.21 - redux: 4.2.1 - redux-thunk: 2.4.2(redux@4.2.1) - reselect: 4.1.8 - optionalDependencies: - react: 18.2.0 - react-redux: 8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1) + react-redux: 8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1) '@rollup/plugin-commonjs@26.0.1(rollup@3.29.4)': dependencies: @@ -22497,7 +23129,7 @@ snapshots: '@rollup/rollup-win32-x64-msvc@4.9.6': optional: true - '@rushstack/node-core-library@3.61.0(@types/node@20.5.7)': + '@rushstack/node-core-library@3.61.0(@types/node@22.7.5)': dependencies: colors: 1.2.5 fs-extra: 7.0.1 @@ -22507,7 +23139,7 @@ snapshots: semver: 7.5.4 z-schema: 5.0.5 optionalDependencies: - '@types/node': 20.5.7 + '@types/node': 22.7.5 '@rushstack/rig-package@0.5.1': dependencies: @@ -22600,6 +23232,12 @@ snapshots: '@noble/hashes': 1.3.3 '@scure/base': 1.1.9 + '@scure/bip32@1.4.0': + dependencies: + '@noble/curves': 1.4.2 + '@noble/hashes': 1.4.0 + '@scure/base': 1.1.9 + '@scure/bip32@1.5.0': dependencies: '@noble/curves': 1.6.0 @@ -22617,6 +23255,11 @@ snapshots: '@noble/hashes': 1.3.3 '@scure/base': 1.1.7 + '@scure/bip39@1.3.0': + dependencies: + '@noble/hashes': 1.4.0 + '@scure/base': 1.1.9 + '@scure/bip39@1.4.0': dependencies: '@noble/hashes': 1.5.0 @@ -22742,6 +23385,35 @@ snapshots: tslib: 1.14.1 optional: true + '@sentry/nextjs@8.16.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.25.1(@opentelemetry/api@1.9.0))(next@14.2.14(@babel/core@7.23.3)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)(webpack@5.89.0(esbuild@0.17.19))': + dependencies: + '@opentelemetry/instrumentation-http': 0.52.1(@opentelemetry/api@1.9.0) + '@opentelemetry/semantic-conventions': 1.25.1 + '@rollup/plugin-commonjs': 26.0.1(rollup@3.29.4) + '@sentry/core': 8.16.0 + '@sentry/node': 8.16.0 + '@sentry/opentelemetry': 8.16.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.25.1) + '@sentry/react': 8.16.0(react@18.2.0) + '@sentry/types': 8.16.0 + '@sentry/utils': 8.16.0 + '@sentry/vercel-edge': 8.16.0 + '@sentry/webpack-plugin': 2.20.1(webpack@5.89.0(esbuild@0.17.19)) + chalk: 3.0.0 + next: 14.2.14(@babel/core@7.23.3)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + resolve: 1.22.8 + rollup: 3.29.4 + stacktrace-parser: 0.1.10 + optionalDependencies: + webpack: 5.89.0(esbuild@0.17.19) + transitivePeerDependencies: + - '@opentelemetry/api' + - '@opentelemetry/core' + - '@opentelemetry/instrumentation' + - '@opentelemetry/sdk-trace-base' + - encoding + - react + - supports-color + '@sentry/nextjs@8.16.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.25.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.52.1(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.25.1(@opentelemetry/api@1.9.0))(next@14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)(webpack@5.89.0(esbuild@0.17.19))': dependencies: '@opentelemetry/instrumentation-http': 0.52.1(@opentelemetry/api@1.9.0) @@ -22943,10 +23615,227 @@ snapshots: '@socket.io/component-emitter@3.1.1': {} + '@solana-mobile/mobile-wallet-adapter-protocol-web3js@2.1.4(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)))(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)': + dependencies: + '@solana-mobile/mobile-wallet-adapter-protocol': 2.1.4(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)))(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + '@solana/web3.js': 1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) + bs58: 5.0.0 + js-base64: 3.7.7 + transitivePeerDependencies: + - '@solana/wallet-adapter-base' + - react + - react-native + + '@solana-mobile/mobile-wallet-adapter-protocol@2.1.4(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)))(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)': + dependencies: + '@solana/wallet-standard': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)))(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.2.0) + '@solana/wallet-standard-util': 1.1.1 + '@solana/web3.js': 1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@wallet-standard/core': 1.1.0 + js-base64: 3.7.7 + react-native: 0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - '@solana/wallet-adapter-base' + - bs58 + - react + + '@solana-mobile/wallet-adapter-mobile@2.1.4(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)': + dependencies: + '@solana-mobile/mobile-wallet-adapter-protocol-web3js': 2.1.4(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)))(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + '@solana/wallet-standard-features': 1.2.0 + '@solana/web3.js': 1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) + js-base64: 3.7.7 + qrcode: 1.5.4 + optionalDependencies: + '@react-native-async-storage/async-storage': 1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)) + transitivePeerDependencies: + - react + - react-native + + '@solana/buffer-layout-utils@0.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + dependencies: + '@solana/buffer-layout': 4.0.1 + '@solana/web3.js': 1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) + bigint-buffer: 1.1.5 + bignumber.js: 9.1.2 + transitivePeerDependencies: + - bufferutil + - encoding + - utf-8-validate + '@solana/buffer-layout@4.0.1': dependencies: buffer: 6.0.3 - optional: true + + '@solana/codecs-core@2.0.0-rc.1(typescript@5.2.2)': + dependencies: + '@solana/errors': 2.0.0-rc.1(typescript@5.2.2) + typescript: 5.2.2 + + '@solana/codecs-data-structures@2.0.0-rc.1(typescript@5.2.2)': + dependencies: + '@solana/codecs-core': 2.0.0-rc.1(typescript@5.2.2) + '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.2.2) + '@solana/errors': 2.0.0-rc.1(typescript@5.2.2) + typescript: 5.2.2 + + '@solana/codecs-numbers@2.0.0-rc.1(typescript@5.2.2)': + dependencies: + '@solana/codecs-core': 2.0.0-rc.1(typescript@5.2.2) + '@solana/errors': 2.0.0-rc.1(typescript@5.2.2) + typescript: 5.2.2 + + '@solana/codecs-strings@2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.2.2)': + dependencies: + '@solana/codecs-core': 2.0.0-rc.1(typescript@5.2.2) + '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.2.2) + '@solana/errors': 2.0.0-rc.1(typescript@5.2.2) + fastestsmallesttextencoderdecoder: 1.0.22 + typescript: 5.2.2 + + '@solana/codecs@2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.2.2)': + dependencies: + '@solana/codecs-core': 2.0.0-rc.1(typescript@5.2.2) + '@solana/codecs-data-structures': 2.0.0-rc.1(typescript@5.2.2) + '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.2.2) + '@solana/codecs-strings': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.2.2) + '@solana/options': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.2.2) + typescript: 5.2.2 + transitivePeerDependencies: + - fastestsmallesttextencoderdecoder + + '@solana/errors@2.0.0-rc.1(typescript@5.2.2)': + dependencies: + chalk: 5.3.0 + commander: 12.1.0 + typescript: 5.2.2 + + '@solana/options@2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.2.2)': + dependencies: + '@solana/codecs-core': 2.0.0-rc.1(typescript@5.2.2) + '@solana/codecs-data-structures': 2.0.0-rc.1(typescript@5.2.2) + '@solana/codecs-numbers': 2.0.0-rc.1(typescript@5.2.2) + '@solana/codecs-strings': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.2.2) + '@solana/errors': 2.0.0-rc.1(typescript@5.2.2) + typescript: 5.2.2 + transitivePeerDependencies: + - fastestsmallesttextencoderdecoder + + '@solana/spl-token-group@0.0.7(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.2.2)': + dependencies: + '@solana/codecs': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.2.2) + '@solana/web3.js': 1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - fastestsmallesttextencoderdecoder + - typescript + + '@solana/spl-token-metadata@0.1.6(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.2.2)': + dependencies: + '@solana/codecs': 2.0.0-rc.1(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.2.2) + '@solana/web3.js': 1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - fastestsmallesttextencoderdecoder + - typescript + + '@solana/spl-token@0.4.9(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.2.2)(utf-8-validate@5.0.10)': + dependencies: + '@solana/buffer-layout': 4.0.1 + '@solana/buffer-layout-utils': 0.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@solana/spl-token-group': 0.0.7(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.2.2) + '@solana/spl-token-metadata': 0.1.6(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)(typescript@5.2.2) + '@solana/web3.js': 1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) + buffer: 6.0.3 + transitivePeerDependencies: + - bufferutil + - encoding + - fastestsmallesttextencoderdecoder + - typescript + - utf-8-validate + + '@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))': + dependencies: + '@solana/wallet-standard-features': 1.2.0 + '@solana/web3.js': 1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@wallet-standard/base': 1.1.0 + '@wallet-standard/features': 1.1.0 + eventemitter3: 4.0.7 + + '@solana/wallet-adapter-react@0.15.35(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@5.0.0)(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)': + dependencies: + '@solana-mobile/wallet-adapter-mobile': 2.1.4(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)))(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.2.0) + '@solana/web3.js': 1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) + react: 18.2.0 + transitivePeerDependencies: + - bs58 + - react-native + + '@solana/wallet-standard-chains@1.1.0': + dependencies: + '@wallet-standard/base': 1.1.0 + + '@solana/wallet-standard-core@1.1.1': + dependencies: + '@solana/wallet-standard-chains': 1.1.0 + '@solana/wallet-standard-features': 1.2.0 + '@solana/wallet-standard-util': 1.1.1 + + '@solana/wallet-standard-features@1.2.0': + dependencies: + '@wallet-standard/base': 1.1.0 + '@wallet-standard/features': 1.1.0 + + '@solana/wallet-standard-util@1.1.1': + dependencies: + '@noble/curves': 1.6.0 + '@solana/wallet-standard-chains': 1.1.0 + '@solana/wallet-standard-features': 1.2.0 + + '@solana/wallet-standard-wallet-adapter-base@1.1.2(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@5.0.0)': + dependencies: + '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + '@solana/wallet-standard-chains': 1.1.0 + '@solana/wallet-standard-features': 1.2.0 + '@solana/wallet-standard-util': 1.1.1 + '@solana/web3.js': 1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@wallet-standard/app': 1.1.0 + '@wallet-standard/base': 1.1.0 + '@wallet-standard/features': 1.1.0 + '@wallet-standard/wallet': 1.1.0 + bs58: 5.0.0 + + '@solana/wallet-standard-wallet-adapter-react@1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)))(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.2.0)': + dependencies: + '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)) + '@solana/wallet-standard-wallet-adapter-base': 1.1.2(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@5.0.0) + '@wallet-standard/app': 1.1.0 + '@wallet-standard/base': 1.1.0 + react: 18.2.0 + transitivePeerDependencies: + - '@solana/web3.js' + - bs58 + + '@solana/wallet-standard-wallet-adapter@1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)))(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.2.0)': + dependencies: + '@solana/wallet-standard-wallet-adapter-base': 1.1.2(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@5.0.0) + '@solana/wallet-standard-wallet-adapter-react': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)))(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.2.0) + transitivePeerDependencies: + - '@solana/wallet-adapter-base' + - '@solana/web3.js' + - bs58 + - react + + '@solana/wallet-standard@1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)))(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.2.0)': + dependencies: + '@solana/wallet-standard-core': 1.1.1 + '@solana/wallet-standard-wallet-adapter': 1.1.2(@solana/wallet-adapter-base@0.9.23(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)))(@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@5.0.0)(react@18.2.0) + transitivePeerDependencies: + - '@solana/wallet-adapter-base' + - '@solana/web3.js' + - bs58 + - react '@solana/web3.js@1.87.6(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: @@ -22969,7 +23858,6 @@ snapshots: - bufferutil - encoding - utf-8-validate - optional: true '@solidity-parser/parser@0.14.5': dependencies: @@ -23352,7 +24240,7 @@ snapshots: - encoding - supports-color - '@storybook/builder-vite@7.5.3(typescript@5.2.2)(vite@5.0.12(@types/node@20.5.7)(terser@5.24.0))': + '@storybook/builder-vite@7.5.3(typescript@5.2.2)(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0))': dependencies: '@storybook/channels': 7.5.3 '@storybook/client-logger': 7.5.3 @@ -23370,7 +24258,7 @@ snapshots: fs-extra: 11.1.1 magic-string: 0.30.5 rollup: 2.79.1 - vite: 5.0.12(@types/node@20.5.7)(terser@5.24.0) + vite: 5.0.12(@types/node@22.7.5)(terser@5.24.0) optionalDependencies: typescript: 5.2.2 transitivePeerDependencies: @@ -23389,7 +24277,7 @@ snapshots: '@storybook/cli@7.5.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@babel/core': 7.23.9 - '@babel/preset-env': 7.23.3(@babel/core@7.23.9) + '@babel/preset-env': 7.26.0(@babel/core@7.23.9) '@babel/types': 7.23.3 '@ndelangen/get-tarball': 3.0.9 '@storybook/codemod': 7.5.3 @@ -23416,7 +24304,7 @@ snapshots: get-port: 5.1.1 giget: 1.1.3 globby: 11.1.0 - jscodeshift: 0.14.0(@babel/preset-env@7.23.3(@babel/core@7.23.9)) + jscodeshift: 0.14.0(@babel/preset-env@7.26.0(@babel/core@7.23.9)) leven: 3.1.0 ora: 5.4.1 prettier: 2.8.8 @@ -23442,7 +24330,7 @@ snapshots: '@storybook/codemod@7.5.3': dependencies: '@babel/core': 7.23.9 - '@babel/preset-env': 7.23.3(@babel/core@7.23.9) + '@babel/preset-env': 7.26.0(@babel/core@7.23.9) '@babel/types': 7.24.0 '@storybook/csf': 0.1.1 '@storybook/csf-tools': 7.5.3 @@ -23451,7 +24339,7 @@ snapshots: '@types/cross-spawn': 6.0.5 cross-spawn: 7.0.3 globby: 11.1.0 - jscodeshift: 0.14.0(@babel/preset-env@7.23.3(@babel/core@7.23.9)) + jscodeshift: 0.14.0(@babel/preset-env@7.26.0(@babel/core@7.23.9)) lodash: 4.17.21 prettier: 2.8.8 recast: 0.23.4 @@ -23656,18 +24544,18 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@storybook/react-vite@7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.9.6)(typescript@5.2.2)(vite@5.0.12(@types/node@20.5.7)(terser@5.24.0))': + '@storybook/react-vite@7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.9.6)(typescript@5.2.2)(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0))': dependencies: - '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.0(typescript@5.2.2)(vite@5.0.12(@types/node@20.5.7)(terser@5.24.0)) + '@joshwooding/vite-plugin-react-docgen-typescript': 0.3.0(typescript@5.2.2)(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0)) '@rollup/pluginutils': 5.0.5(rollup@4.9.6) - '@storybook/builder-vite': 7.5.3(typescript@5.2.2)(vite@5.0.12(@types/node@20.5.7)(terser@5.24.0)) + '@storybook/builder-vite': 7.5.3(typescript@5.2.2)(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0)) '@storybook/react': 7.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(typescript@5.2.2) - '@vitejs/plugin-react': 3.1.0(vite@5.0.12(@types/node@20.5.7)(terser@5.24.0)) + '@vitejs/plugin-react': 3.1.0(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0)) magic-string: 0.30.5 react: 18.2.0 react-docgen: 6.0.4 react-dom: 18.2.0(react@18.2.0) - vite: 5.0.12(@types/node@20.5.7)(terser@5.24.0) + vite: 5.0.12(@types/node@22.7.5)(terser@5.24.0) transitivePeerDependencies: - '@preact/preset-vite' - encoding @@ -23823,7 +24711,7 @@ snapshots: '@swc/helpers@0.5.5': dependencies: '@swc/counter': 0.1.3 - tslib: 2.6.2 + tslib: 2.7.0 '@szmarczak/http-timer@4.0.6': dependencies: @@ -23849,28 +24737,28 @@ snapshots: dependencies: '@tanstack/query-persist-client-core': 4.36.1 - '@tanstack/react-query-devtools@4.36.1(@tanstack/react-query@4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@tanstack/react-query-devtools@4.36.1(@tanstack/react-query@4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@tanstack/match-sorter-utils': 8.8.4 - '@tanstack/react-query': 4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + '@tanstack/react-query': 4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) superjson: 1.13.3 use-sync-external-store: 1.2.0(react@18.2.0) - '@tanstack/react-query-persist-client@4.36.1(@tanstack/react-query@4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0))': + '@tanstack/react-query-persist-client@4.36.1(@tanstack/react-query@4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0))': dependencies: '@tanstack/query-persist-client-core': 4.36.1 - '@tanstack/react-query': 4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + '@tanstack/react-query': 4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) - '@tanstack/react-query@4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)': + '@tanstack/react-query@4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)': dependencies: '@tanstack/query-core': 4.36.1 react: 18.2.0 use-sync-external-store: 1.2.0(react@18.2.0) optionalDependencies: react-dom: 18.2.0(react@18.2.0) - react-native: 0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) + react-native: 0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) '@tanstack/react-query@5.52.1(react@18.2.0)': dependencies: @@ -23991,6 +24879,23 @@ snapshots: '@tinyhttp/url@1.3.0': {} + '@tronweb3/google-protobuf@3.21.2': {} + + '@tronweb3/tronwallet-abstract-adapter@1.1.8': + dependencies: + eventemitter3: 4.0.7 + + '@tronweb3/tronwallet-adapter-react-hooks@1.1.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@tronweb3/tronwallet-abstract-adapter': 1.1.8 + '@tronweb3/tronwallet-adapter-tronlink': 1.1.11 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + + '@tronweb3/tronwallet-adapter-tronlink@1.1.11': + dependencies: + '@tronweb3/tronwallet-abstract-adapter': 1.1.8 + '@tsconfig/node10@1.0.9': {} '@tsconfig/node12@1.0.11': {} @@ -24010,22 +24915,22 @@ snapshots: typescript: 5.2.2 optional: true - '@typechain/hardhat@6.1.6(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@5.2.2)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))': + '@typechain/hardhat@6.1.6(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@typechain/ethers-v5@10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@4.9.5))': dependencies: '@ethersproject/abi': 5.7.0 '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@typechain/ethers-v5': 10.2.1(@ethersproject/abi@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(typechain@8.3.2(typescript@5.2.2))(typescript@5.2.2) ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) fs-extra: 9.1.0 - hardhat: 2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@5.2.2)(utf-8-validate@5.0.10) - typechain: 8.3.2(typescript@5.2.2) + hardhat: 2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10) + typechain: 8.3.2(typescript@4.9.5) optional: true - '@typechain/web3-v1@6.0.7(typechain@8.3.2(typescript@5.2.2))(typescript@4.9.5)(web3-core@1.10.4)(web3-eth-contract@1.10.4)(web3@1.10.4(bufferutil@4.0.8)(utf-8-validate@5.0.10))': + '@typechain/web3-v1@6.0.7(typechain@8.3.2(typescript@4.9.5))(typescript@4.9.5)(web3-core@1.10.4)(web3-eth-contract@1.10.4)(web3@1.10.4(bufferutil@4.0.8)(utf-8-validate@5.0.10))': dependencies: lodash: 4.17.21 ts-essentials: 7.0.3(typescript@4.9.5) - typechain: 8.3.2(typescript@5.2.2) + typechain: 8.3.2(typescript@4.9.5) web3: 1.10.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) web3-core: 1.10.4 web3-eth-contract: 1.10.4 @@ -24055,8 +24960,8 @@ snapshots: '@types/babel__core@7.20.5': dependencies: - '@babel/parser': 7.23.3 - '@babel/types': 7.23.3 + '@babel/parser': 7.23.9 + '@babel/types': 7.24.0 '@types/babel__generator': 7.6.7 '@types/babel__template': 7.4.4 '@types/babel__traverse': 7.20.4 @@ -24498,6 +25403,10 @@ snapshots: '@types/node@20.5.7': {} + '@types/node@22.7.5': + dependencies: + undici-types: 6.19.8 + '@types/node@8.10.66': optional: true @@ -24674,8 +25583,7 @@ snapshots: '@types/ws@7.4.7': dependencies: - '@types/node': 18.18.9 - optional: true + '@types/node': 20.5.7 '@types/ws@8.5.10': dependencies: @@ -24867,7 +25775,7 @@ snapshots: - supports-color - terser - '@vanilla-extract/integration@6.2.3(@types/node@20.5.7)(terser@5.24.0)': + '@vanilla-extract/integration@6.2.3(@types/node@22.7.5)(terser@5.24.0)': dependencies: '@babel/core': 7.23.9 '@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.9) @@ -24880,8 +25788,8 @@ snapshots: lodash: 4.17.21 mlly: 1.4.2 outdent: 0.8.0 - vite: 4.3.9(@types/node@20.5.7)(terser@5.24.0) - vite-node: 0.28.5(@types/node@20.5.7)(terser@5.24.0) + vite: 4.3.9(@types/node@22.7.5)(terser@5.24.0) + vite-node: 0.28.5(@types/node@22.7.5)(terser@5.24.0) transitivePeerDependencies: - '@types/node' - less @@ -24985,13 +25893,13 @@ snapshots: - terser - ts-node - '@vanilla-extract/vite-plugin@3.9.0(@types/node@20.5.7)(terser@5.24.0)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(vite@5.0.12(@types/node@20.5.7)(terser@5.24.0))': + '@vanilla-extract/vite-plugin@3.9.0(@types/node@22.7.5)(terser@5.24.0)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0))': dependencies: - '@vanilla-extract/integration': 6.2.3(@types/node@20.5.7)(terser@5.24.0) + '@vanilla-extract/integration': 6.2.3(@types/node@22.7.5)(terser@5.24.0) outdent: 0.8.0 postcss: 8.4.31 - postcss-load-config: 3.1.4(postcss@8.4.31)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2)) - vite: 5.0.12(@types/node@20.5.7)(terser@5.24.0) + postcss-load-config: 3.1.4(postcss@8.4.31)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2)) + vite: 5.0.12(@types/node@22.7.5)(terser@5.24.0) transitivePeerDependencies: - '@types/node' - less @@ -25067,14 +25975,14 @@ snapshots: next: 14.2.14(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) react: 18.2.0 - '@vitejs/plugin-react@3.1.0(vite@5.0.12(@types/node@20.5.7)(terser@5.24.0))': + '@vitejs/plugin-react@3.1.0(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0))': dependencies: '@babel/core': 7.23.9 '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.9) '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.9) magic-string: 0.27.0 react-refresh: 0.14.0 - vite: 5.0.12(@types/node@20.5.7)(terser@5.24.0) + vite: 5.0.12(@types/node@22.7.5)(terser@5.24.0) transitivePeerDependencies: - supports-color @@ -25100,14 +26008,14 @@ snapshots: transitivePeerDependencies: - supports-color - '@vitejs/plugin-react@4.2.1(vite@5.0.12(@types/node@20.5.7)(terser@5.24.0))': + '@vitejs/plugin-react@4.2.1(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0))': dependencies: '@babel/core': 7.23.9 '@babel/plugin-transform-react-jsx-self': 7.23.3(@babel/core@7.23.9) '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.9) '@types/babel__core': 7.20.5 react-refresh: 0.14.0 - vite: 5.0.12(@types/node@20.5.7)(terser@5.24.0) + vite: 5.0.12(@types/node@22.7.5)(terser@5.24.0) transitivePeerDependencies: - supports-color @@ -25184,20 +26092,20 @@ snapshots: optionalDependencies: typescript: 5.2.2 - '@wagmi/connectors@0.3.16(@wagmi/core@0.10.17(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@wagmi/connectors@0.3.16(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@wagmi/core@0.10.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@coinbase/wallet-sdk': 3.9.3 '@ledgerhq/connect-kit-loader': 1.1.2(patch_hash=xlsebypdiwsukm3c2ow7voujra) '@safe-global/safe-apps-provider': 0.15.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@safe-global/safe-apps-sdk': 7.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/ethereum-provider': 2.7.0(@web3modal/standalone@2.4.3(react@18.2.0))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/ethereum-provider': 2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@web3modal/standalone@2.4.3(react@18.2.0))(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/legacy-provider': 2.0.0 '@web3modal/standalone': 2.4.3(react@18.2.0) abitype: 0.3.0(typescript@5.2.2)(zod@3.22.4) ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) eventemitter3: 4.0.7 optionalDependencies: - '@wagmi/core': 0.10.17(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@wagmi/core': 0.10.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) typescript: 5.2.2 transitivePeerDependencies: - '@azure/app-configuration' @@ -25219,20 +26127,20 @@ snapshots: - utf-8-validate - zod - '@wagmi/connectors@0.3.24(@types/react@18.2.37)(@wagmi/core@0.10.17(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@wagmi/connectors@0.3.24(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(@wagmi/core@0.10.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@coinbase/wallet-sdk': 3.9.3 '@ledgerhq/connect-kit-loader': 1.1.2(patch_hash=xlsebypdiwsukm3c2ow7voujra) '@safe-global/safe-apps-provider': 0.15.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@safe-global/safe-apps-sdk': 7.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/ethereum-provider': 2.9.0(@walletconnect/modal@2.6.2(@types/react@18.2.37)(react@18.2.0))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/ethereum-provider': 2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@walletconnect/modal@2.6.2(@types/react@18.2.37)(react@18.2.0))(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/legacy-provider': 2.0.0 '@walletconnect/modal': 2.6.2(@types/react@18.2.37)(react@18.2.0) abitype: 0.3.0(typescript@5.2.2)(zod@3.22.4) ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) eventemitter3: 4.0.7 optionalDependencies: - '@wagmi/core': 0.10.17(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@wagmi/core': 0.10.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) typescript: 5.2.2 transitivePeerDependencies: - '@azure/app-configuration' @@ -25254,15 +26162,15 @@ snapshots: - utf-8-validate - zod - '@wagmi/connectors@3.1.11(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': + '@wagmi/connectors@3.1.11(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': dependencies: '@coinbase/wallet-sdk': 3.9.3 '@safe-global/safe-apps-provider': 0.18.3(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) '@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@walletconnect/ethereum-provider': 2.11.0(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) + '@walletconnect/ethereum-provider': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) '@walletconnect/legacy-provider': 2.0.0 '@walletconnect/modal': 2.6.2(@types/react@18.2.37)(react@18.2.0) - '@walletconnect/utils': 2.11.0 + '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) abitype: 0.8.7(typescript@5.2.2)(zod@3.22.4) eventemitter3: 4.0.7 viem: 2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) @@ -25288,14 +26196,14 @@ snapshots: - utf-8-validate - zod - '@wagmi/connectors@5.1.15(@types/react@18.2.37)(@wagmi/core@2.13.8(@tanstack/query-core@5.52.0)(@types/react@18.2.37)(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': + '@wagmi/connectors@5.1.15(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(@wagmi/core@2.13.8(@tanstack/query-core@5.52.0)(@types/react@18.2.37)(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4)': dependencies: '@coinbase/wallet-sdk': 4.0.4 - '@metamask/sdk': 0.28.4(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(utf-8-validate@5.0.10) + '@metamask/sdk': 0.28.4(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(utf-8-validate@5.0.10) '@safe-global/safe-apps-provider': 0.18.3(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) '@wagmi/core': 2.13.8(@tanstack/query-core@5.52.0)(@types/react@18.2.37)(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)) - '@walletconnect/ethereum-provider': 2.17.0(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) + '@walletconnect/ethereum-provider': 2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) '@walletconnect/modal': 2.7.0(@types/react@18.2.37)(react@18.2.0) cbw-sdk: '@coinbase/wallet-sdk@3.9.3' viem: 2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) @@ -25324,10 +26232,10 @@ snapshots: - utf-8-validate - zod - '@wagmi/core@0.10.17(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@wagmi/core@0.10.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@wagmi/chains': 0.2.22(typescript@5.2.2) - '@wagmi/connectors': 0.3.24(@types/react@18.2.37)(@wagmi/core@0.10.17(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@wagmi/connectors': 0.3.24(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(@wagmi/core@0.10.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) abitype: 0.3.0(typescript@5.2.2)(zod@3.22.4) ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) eventemitter3: 4.0.7 @@ -25400,6 +26308,33 @@ snapshots: - rollup - utf-8-validate + '@wallet-standard/app@1.1.0': + dependencies: + '@wallet-standard/base': 1.1.0 + + '@wallet-standard/base@1.1.0': {} + + '@wallet-standard/core@1.1.0': + dependencies: + '@wallet-standard/app': 1.1.0 + '@wallet-standard/base': 1.1.0 + '@wallet-standard/errors': 0.1.0 + '@wallet-standard/features': 1.1.0 + '@wallet-standard/wallet': 1.1.0 + + '@wallet-standard/errors@0.1.0': + dependencies: + chalk: 5.3.0 + commander: 12.1.0 + + '@wallet-standard/features@1.1.0': + dependencies: + '@wallet-standard/base': 1.1.0 + + '@wallet-standard/wallet@1.1.0': + dependencies: + '@wallet-standard/base': 1.1.0 + '@walletconnect/cacao@1.0.2': dependencies: '@ethersproject/hash': 5.7.0 @@ -25408,21 +26343,21 @@ snapshots: transitivePeerDependencies: - encoding - '@walletconnect/core@2.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/core@2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 '@walletconnect/relay-api': 1.0.9 '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.11.0 - '@walletconnect/utils': 2.11.0 + '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 isomorphic-unfetch: 3.1.0 lodash.isequal: 4.5.0 @@ -25444,21 +26379,21 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/core@2.14.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/core@2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/heartbeat': 1.2.2 '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 '@walletconnect/relay-api': 1.0.10 '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.14.0 - '@walletconnect/utils': 2.14.0 + '@walletconnect/types': 2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 isomorphic-unfetch: 3.1.0 lodash.isequal: 4.5.0 @@ -25480,21 +26415,21 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/core@2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/core@2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/heartbeat': 1.2.2 '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 '@walletconnect/relay-api': 1.0.11 '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.17.0 - '@walletconnect/utils': 2.17.0 + '@walletconnect/types': 2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 lodash.isequal: 4.5.0 uint8arrays: 3.1.0 @@ -25514,20 +26449,20 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/core@2.7.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/core@2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/jsonrpc-ws-connection': 1.0.14(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 '@walletconnect/relay-api': 1.0.11 '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.7.0 - '@walletconnect/utils': 2.7.0 + '@walletconnect/types': 2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 lodash.isequal: 4.5.0 uint8arrays: 3.1.1 @@ -25547,21 +26482,21 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/core@2.9.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/core@2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-types': 1.0.3 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/jsonrpc-ws-connection': 1.0.12(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 '@walletconnect/relay-api': 1.0.10 '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.9.0 - '@walletconnect/utils': 2.9.0 + '@walletconnect/types': 2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 lodash.isequal: 4.5.0 uint8arrays: 3.1.1 @@ -25612,17 +26547,17 @@ snapshots: dependencies: tslib: 1.14.1 - '@walletconnect/ethereum-provider@2.11.0(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)': + '@walletconnect/ethereum-provider@2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.8 '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/modal': 2.7.0(@types/react@18.2.37)(react@18.2.0) - '@walletconnect/sign-client': 2.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.11.0 - '@walletconnect/universal-provider': 2.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/utils': 2.11.0 + '@walletconnect/sign-client': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/universal-provider': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -25643,17 +26578,17 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/ethereum-provider@2.14.0(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)': + '@walletconnect/ethereum-provider@2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.8 '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/modal': 2.6.2(@types/react@18.2.37)(react@18.2.0) - '@walletconnect/sign-client': 2.14.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.14.0 - '@walletconnect/universal-provider': 2.14.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/utils': 2.14.0 + '@walletconnect/sign-client': 2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/universal-provider': 2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -25674,17 +26609,17 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/ethereum-provider@2.17.0(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)': + '@walletconnect/ethereum-provider@2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.8 '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/modal': 2.7.0(@types/react@18.2.37)(react@18.2.0) - '@walletconnect/sign-client': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.17.0 - '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/utils': 2.17.0 + '@walletconnect/sign-client': 2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/universal-provider': 2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -25705,16 +26640,16 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/ethereum-provider@2.7.0(@web3modal/standalone@2.4.3(react@18.2.0))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/ethereum-provider@2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@web3modal/standalone@2.4.3(react@18.2.0))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.8 '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/sign-client': 2.7.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.7.0 - '@walletconnect/universal-provider': 2.7.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/utils': 2.7.0 + '@walletconnect/sign-client': 2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/universal-provider': 2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 optionalDependencies: '@web3modal/standalone': 2.4.3(react@18.2.0) @@ -25736,16 +26671,16 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/ethereum-provider@2.9.0(@walletconnect/modal@2.6.2(@types/react@18.2.37)(react@18.2.0))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/ethereum-provider@2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@walletconnect/modal@2.6.2(@types/react@18.2.37)(react@18.2.0))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.8 '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/sign-client': 2.9.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.9.0 - '@walletconnect/universal-provider': 2.9.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/utils': 2.9.0 + '@walletconnect/sign-client': 2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/universal-provider': 2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/utils': 2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 optionalDependencies: '@walletconnect/modal': 2.6.2(@types/react@18.2.37)(react@18.2.0) @@ -25783,17 +26718,17 @@ snapshots: '@walletconnect/time': 1.0.2 events: 3.3.0 - '@walletconnect/identity-keys@1.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/identity-keys@1.0.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@ethersproject/hash': 5.7.0 '@ethersproject/transactions': 5.7.0 '@noble/ed25519': 1.7.3 '@walletconnect/cacao': 1.0.2 - '@walletconnect/core': 2.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/core': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/did-jwt': 2.0.3 - '@walletconnect/types': 2.11.0 - '@walletconnect/utils': 2.11.0 - axios: 1.7.2 + '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + axios: 1.6.8(debug@4.3.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -25812,17 +26747,17 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/identity-keys@2.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/identity-keys@2.0.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@ethersproject/hash': 5.7.0 '@ethersproject/transactions': 5.7.0 '@noble/ed25519': 1.7.3 '@walletconnect/cacao': 1.0.2 - '@walletconnect/core': 2.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/core': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/did-jwt': 2.0.3 - '@walletconnect/types': 2.11.0 - '@walletconnect/utils': 2.11.0 - axios: 1.7.2 + '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + axios: 1.6.8(debug@4.3.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -25914,11 +26849,13 @@ snapshots: - bufferutil - utf-8-validate - '@walletconnect/keyvaluestorage@1.1.1': + '@walletconnect/keyvaluestorage@1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: '@walletconnect/safe-json': 1.0.2 idb-keyval: 6.2.1 unstorage: 1.9.0(idb-keyval@6.2.1) + optionalDependencies: + '@react-native-async-storage/async-storage': 1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -25966,7 +26903,7 @@ snapshots: '@walletconnect/legacy-types@2.0.0': dependencies: - '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/legacy-utils@2.0.0': dependencies: @@ -26039,16 +26976,16 @@ snapshots: - '@types/react' - react - '@walletconnect/notify-client@1.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/notify-client@1.0.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@noble/ed25519': 1.7.3 '@walletconnect/cacao': 1.0.2 - '@walletconnect/core': 2.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/core': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/did-jwt': 2.0.1 - '@walletconnect/identity-keys': 1.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/identity-keys': 1.0.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/jsonrpc-utils': 1.0.7 '@walletconnect/time': 1.0.2 - '@walletconnect/utils': 2.11.0 + '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) axios: 1.7.2 jwt-decode: 3.1.2 transitivePeerDependencies: @@ -26069,17 +27006,17 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/notify-client@1.1.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/notify-client@1.1.3(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@noble/ed25519': 1.7.3 '@walletconnect/cacao': 1.0.2 - '@walletconnect/core': 2.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/core': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/did-jwt': 2.0.1 - '@walletconnect/identity-keys': 2.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/identity-keys': 2.0.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/jsonrpc-utils': 1.0.7 '@walletconnect/time': 1.0.2 - '@walletconnect/utils': 2.11.0 - axios: 1.7.2 + '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + axios: 1.6.8(debug@4.3.4) jwt-decode: 3.1.2 transitivePeerDependencies: - '@azure/app-configuration' @@ -26132,16 +27069,16 @@ snapshots: dependencies: tslib: 1.14.1 - '@walletconnect/sign-client@2.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/sign-client@2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/core': 2.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/core': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.11.0 - '@walletconnect/utils': 2.11.0 + '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -26160,16 +27097,16 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/sign-client@2.14.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/sign-client@2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/core': 2.14.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/core': 2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.2 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.14.0 - '@walletconnect/utils': 2.14.0 + '@walletconnect/types': 2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -26188,16 +27125,16 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/sign-client@2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/sign-client@2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/core': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/core': 2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.2 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.17.0 - '@walletconnect/utils': 2.17.0 + '@walletconnect/types': 2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -26215,16 +27152,16 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/sign-client@2.7.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/sign-client@2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/core': 2.7.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/core': 2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.7.0 - '@walletconnect/utils': 2.7.0 + '@walletconnect/types': 2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -26242,16 +27179,16 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/sign-client@2.9.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/sign-client@2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/core': 2.9.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/core': 2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.9.0 - '@walletconnect/utils': 2.9.0 + '@walletconnect/types': 2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -26273,12 +27210,12 @@ snapshots: dependencies: tslib: 1.14.1 - '@walletconnect/types@2.11.0': + '@walletconnect/types@2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.0.1 events: 3.3.0 transitivePeerDependencies: @@ -26295,12 +27232,12 @@ snapshots: - '@vercel/kv' - supports-color - '@walletconnect/types@2.14.0': + '@walletconnect/types@2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.2 '@walletconnect/jsonrpc-types': 1.0.4 - '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 events: 3.3.0 transitivePeerDependencies: @@ -26317,12 +27254,12 @@ snapshots: - '@vercel/kv' - supports-color - '@walletconnect/types@2.17.0': + '@walletconnect/types@2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.2 '@walletconnect/jsonrpc-types': 1.0.4 - '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 events: 3.3.0 transitivePeerDependencies: @@ -26339,12 +27276,12 @@ snapshots: - '@vercel/kv' - supports-color - '@walletconnect/types@2.7.0': + '@walletconnect/types@2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-types': 1.0.4 - '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 events: 3.3.0 transitivePeerDependencies: @@ -26361,12 +27298,12 @@ snapshots: - '@vercel/kv' - supports-color - '@walletconnect/types@2.9.0': + '@walletconnect/types@2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: '@walletconnect/events': 1.0.1 '@walletconnect/heartbeat': 1.2.1 '@walletconnect/jsonrpc-types': 1.0.3 - '@walletconnect/keyvaluestorage': 1.1.1 + '@walletconnect/keyvaluestorage': 1.1.1(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/logger': 2.1.2 events: 3.3.0 transitivePeerDependencies: @@ -26383,16 +27320,16 @@ snapshots: - '@vercel/kv' - supports-color - '@walletconnect/universal-provider@2.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/universal-provider@2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.8 '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 - '@walletconnect/sign-client': 2.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.11.0 - '@walletconnect/utils': 2.11.0 + '@walletconnect/sign-client': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -26411,16 +27348,16 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/universal-provider@2.14.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/universal-provider@2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.8 '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 - '@walletconnect/sign-client': 2.14.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.14.0 - '@walletconnect/utils': 2.14.0 + '@walletconnect/sign-client': 2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -26439,16 +27376,16 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/universal-provider@2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/universal-provider@2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.8 '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 - '@walletconnect/sign-client': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.17.0 - '@walletconnect/utils': 2.17.0 + '@walletconnect/sign-client': 2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -26467,16 +27404,16 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/universal-provider@2.7.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/universal-provider@2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.8 '@walletconnect/jsonrpc-provider': 1.0.14 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 - '@walletconnect/sign-client': 2.7.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.7.0 - '@walletconnect/utils': 2.7.0 + '@walletconnect/sign-client': 2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) eip1193-provider: 1.0.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) events: 3.3.0 transitivePeerDependencies: @@ -26497,16 +27434,16 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/universal-provider@2.9.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)': + '@walletconnect/universal-provider@2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10)': dependencies: '@walletconnect/jsonrpc-http-connection': 1.0.8 '@walletconnect/jsonrpc-provider': 1.0.13 '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/logger': 2.1.2 - '@walletconnect/sign-client': 2.9.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/types': 2.9.0 - '@walletconnect/utils': 2.9.0 + '@walletconnect/sign-client': 2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/types': 2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) + '@walletconnect/utils': 2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -26525,7 +27462,7 @@ snapshots: - supports-color - utf-8-validate - '@walletconnect/utils@2.11.0': + '@walletconnect/utils@2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: '@stablelib/chacha20poly1305': 1.0.1 '@stablelib/hkdf': 1.0.1 @@ -26535,7 +27472,7 @@ snapshots: '@walletconnect/relay-api': 1.0.9 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.11.0 + '@walletconnect/types': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 @@ -26555,7 +27492,7 @@ snapshots: - '@vercel/kv' - supports-color - '@walletconnect/utils@2.14.0': + '@walletconnect/utils@2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: '@stablelib/chacha20poly1305': 1.0.1 '@stablelib/hkdf': 1.0.1 @@ -26565,7 +27502,7 @@ snapshots: '@walletconnect/relay-api': 1.0.10 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.14.0 + '@walletconnect/types': 2.14.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 @@ -26585,7 +27522,7 @@ snapshots: - '@vercel/kv' - supports-color - '@walletconnect/utils@2.17.0': + '@walletconnect/utils@2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: '@stablelib/chacha20poly1305': 1.0.1 '@stablelib/hkdf': 1.0.1 @@ -26596,7 +27533,7 @@ snapshots: '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.17.0 + '@walletconnect/types': 2.17.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 @@ -26617,7 +27554,7 @@ snapshots: - '@vercel/kv' - supports-color - '@walletconnect/utils@2.7.0': + '@walletconnect/utils@2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: '@stablelib/chacha20poly1305': 1.0.1 '@stablelib/hkdf': 1.0.1 @@ -26628,7 +27565,7 @@ snapshots: '@walletconnect/relay-api': 1.0.11 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.7.0 + '@walletconnect/types': 2.7.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 @@ -26648,7 +27585,7 @@ snapshots: - '@vercel/kv' - supports-color - '@walletconnect/utils@2.9.0': + '@walletconnect/utils@2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))': dependencies: '@stablelib/chacha20poly1305': 1.0.1 '@stablelib/hkdf': 1.0.1 @@ -26658,7 +27595,7 @@ snapshots: '@walletconnect/relay-api': 1.0.10 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.9.0 + '@walletconnect/types': 2.9.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 @@ -26687,10 +27624,10 @@ snapshots: '@walletconnect/window-getters': 1.0.1 tslib: 1.14.1 - '@web3inbox/core@1.2.0(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)': + '@web3inbox/core@1.2.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)': dependencies: - '@walletconnect/core': 2.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@walletconnect/notify-client': 1.1.3(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/core': 2.11.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@walletconnect/notify-client': 1.1.3(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(@types/react@18.2.37)(react@18.2.0) transitivePeerDependencies: - '@azure/app-configuration' @@ -26712,9 +27649,9 @@ snapshots: - supports-color - utf-8-validate - '@web3inbox/react@1.2.0(@web3inbox/core@1.2.0(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))': + '@web3inbox/react@1.2.0(@web3inbox/core@1.2.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))': dependencies: - '@web3inbox/core': 1.2.0(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) + '@web3inbox/core': 1.2.0(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) react: 18.2.0 '@web3modal/core@2.4.3(react@18.2.0)': @@ -26833,7 +27770,7 @@ snapshots: '@yarnpkg/esbuild-plugin-pnp@3.0.0-rc.15(esbuild@0.18.20)': dependencies: esbuild: 0.18.20 - tslib: 2.6.2 + tslib: 2.7.0 '@yarnpkg/fslib@2.10.3': dependencies: @@ -26860,7 +27797,6 @@ snapshots: dependencies: jsonparse: 1.3.1 through: 2.3.8 - optional: true abitype@0.3.0(typescript@5.2.2)(zod@3.22.4): dependencies: @@ -26932,6 +27868,8 @@ snapshots: aes-js@3.1.2: {} + aes-js@4.0.0-beta.5: {} + agent-base@5.1.1: {} agent-base@6.0.2: @@ -26955,7 +27893,6 @@ snapshots: agentkeepalive@4.5.0: dependencies: humanize-ms: 1.2.1 - optional: true aggregate-error@3.1.0: dependencies: @@ -27194,11 +28131,11 @@ snapshots: ast-types@0.15.2: dependencies: - tslib: 2.6.2 + tslib: 2.7.0 ast-types@0.16.1: dependencies: - tslib: 2.6.2 + tslib: 2.7.0 astral-regex@1.0.0: {} @@ -27208,7 +28145,7 @@ snapshots: async-mutex@0.2.6: dependencies: - tslib: 2.6.2 + tslib: 2.7.0 async-retry@1.3.3: dependencies: @@ -27238,12 +28175,12 @@ snapshots: axios-retry@3.9.1: dependencies: - '@babel/runtime': 7.23.9 + '@babel/runtime': 7.24.7 is-retry-allowed: 2.2.0 axios@0.21.4: dependencies: - follow-redirects: 1.15.3(debug@4.3.4) + follow-redirects: 1.15.6(debug@4.3.4) transitivePeerDependencies: - debug @@ -27256,7 +28193,15 @@ snapshots: axios@1.6.2: dependencies: - follow-redirects: 1.15.3(debug@4.3.4) + follow-redirects: 1.15.6(debug@4.3.4) + form-data: 4.0.0 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + + axios@1.6.8(debug@4.3.4): + dependencies: + follow-redirects: 1.15.6(debug@4.3.4) form-data: 4.0.0 proxy-from-env: 1.1.0 transitivePeerDependencies: @@ -27270,7 +28215,7 @@ snapshots: transitivePeerDependencies: - debug - axios@1.7.4(debug@4.3.4): + axios@1.7.4: dependencies: follow-redirects: 1.15.6(debug@4.3.4) form-data: 4.0.0 @@ -27309,46 +28254,20 @@ snapshots: cosmiconfig: 7.1.0 resolve: 1.22.8 - babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.23.3): - dependencies: - '@babel/compat-data': 7.23.5 - '@babel/core': 7.23.3 - '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.23.3) - semver: 6.3.1 - transitivePeerDependencies: - - supports-color - babel-plugin-polyfill-corejs2@0.4.10(@babel/core@7.23.9): dependencies: - '@babel/compat-data': 7.23.5 + '@babel/compat-data': 7.26.3 '@babel/core': 7.23.9 '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.23.9) semver: 6.3.1 transitivePeerDependencies: - supports-color - babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.23.3): - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.23.3) - core-js-compat: 3.36.1 - transitivePeerDependencies: - - supports-color - optional: true - - babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.23.9): + babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.23.9): dependencies: '@babel/core': 7.23.9 - '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.23.9) - core-js-compat: 3.36.1 - transitivePeerDependencies: - - supports-color - - babel-plugin-polyfill-corejs3@0.8.6(@babel/core@7.23.3): - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.3) - core-js-compat: 3.36.1 + '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.23.9) + core-js-compat: 3.39.0 transitivePeerDependencies: - supports-color @@ -27360,13 +28279,6 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.3): - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-define-polyfill-provider': 0.4.3(@babel/core@7.23.3) - transitivePeerDependencies: - - supports-color - babel-plugin-polyfill-regenerator@0.5.3(@babel/core@7.23.9): dependencies: '@babel/core': 7.23.9 @@ -27374,18 +28286,10 @@ snapshots: transitivePeerDependencies: - supports-color - babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.23.3): - dependencies: - '@babel/core': 7.23.3 - '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.23.3) - transitivePeerDependencies: - - supports-color - optional: true - babel-plugin-polyfill-regenerator@0.6.1(@babel/core@7.23.9): dependencies: '@babel/core': 7.23.9 - '@babel/helper-define-polyfill-provider': 0.6.1(@babel/core@7.23.9) + '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.23.9) transitivePeerDependencies: - supports-color @@ -27399,13 +28303,6 @@ snapshots: babel-plugin-syntax-jsx@6.18.0: {} - babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.23.3): - dependencies: - '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.3) - transitivePeerDependencies: - - '@babel/core' - optional: true - babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.23.9): dependencies: '@babel/plugin-syntax-flow': 7.23.3(@babel/core@7.23.9) @@ -27449,7 +28346,6 @@ snapshots: bigint-buffer@1.1.5: dependencies: bindings: 1.5.0 - optional: true bignumber.js@9.0.2: {} @@ -27524,7 +28420,6 @@ snapshots: bn.js: 5.2.1 bs58: 4.0.1 text-encoding-utf-8: 1.0.2 - optional: true bottleneck@2.19.5: {} @@ -27632,7 +28527,7 @@ snapshots: browserslist@4.22.1: dependencies: - caniuse-lite: 1.0.30001608 + caniuse-lite: 1.0.30001688 electron-to-chromium: 1.4.581 node-releases: 2.0.13 update-browserslist-db: 1.0.13(browserslist@4.22.1) @@ -27644,6 +28539,13 @@ snapshots: node-releases: 2.0.14 update-browserslist-db: 1.0.13(browserslist@4.23.0) + browserslist@4.24.3: + dependencies: + caniuse-lite: 1.0.30001688 + electron-to-chromium: 1.5.73 + node-releases: 2.0.19 + update-browserslist-db: 1.1.1(browserslist@4.24.3) + bs58@4.0.1: dependencies: base-x: 3.0.9 @@ -27755,12 +28657,14 @@ snapshots: caniuse-lite@1.0.30001608: {} + caniuse-lite@1.0.30001688: {} + canvas-confetti@1.9.0: {} capnp-ts@0.7.0: dependencies: debug: 4.3.4(supports-color@8.1.1) - tslib: 2.6.2 + tslib: 2.7.0 transitivePeerDependencies: - supports-color @@ -27805,6 +28709,8 @@ snapshots: ansi-styles: 4.3.0 supports-color: 7.2.0 + chalk@5.3.0: {} + character-entities-legacy@1.1.4: {} character-entities@1.2.4: {} @@ -28167,6 +29073,10 @@ snapshots: dependencies: browserslist: 4.23.0 + core-js-compat@3.39.0: + dependencies: + browserslist: 4.24.3 + core-js@3.37.1: {} core-util-is@1.0.2: {} @@ -28715,8 +29625,7 @@ snapshots: dependencies: robust-predicates: 3.0.2 - delay@5.0.0: - optional: true + delay@5.0.0: {} delayed-stream@1.0.0: {} @@ -28870,6 +29779,8 @@ snapshots: electron-to-chromium@1.4.735: {} + electron-to-chromium@1.5.73: {} + elliptic@6.5.4: dependencies: bn.js: 4.12.0 @@ -29083,7 +29994,6 @@ snapshots: es6-promisify@5.0.0: dependencies: es6-promise: 4.2.8 - optional: true es6-symbol@3.1.4: dependencies: @@ -29200,33 +30110,10 @@ snapshots: '@esbuild/win32-ia32': 0.19.12 '@esbuild/win32-x64': 0.19.12 - esbuild@0.19.8: - optionalDependencies: - '@esbuild/android-arm': 0.19.8 - '@esbuild/android-arm64': 0.19.8 - '@esbuild/android-x64': 0.19.8 - '@esbuild/darwin-arm64': 0.19.8 - '@esbuild/darwin-x64': 0.19.8 - '@esbuild/freebsd-arm64': 0.19.8 - '@esbuild/freebsd-x64': 0.19.8 - '@esbuild/linux-arm': 0.19.8 - '@esbuild/linux-arm64': 0.19.8 - '@esbuild/linux-ia32': 0.19.8 - '@esbuild/linux-loong64': 0.19.8 - '@esbuild/linux-mips64el': 0.19.8 - '@esbuild/linux-ppc64': 0.19.8 - '@esbuild/linux-riscv64': 0.19.8 - '@esbuild/linux-s390x': 0.19.8 - '@esbuild/linux-x64': 0.19.8 - '@esbuild/netbsd-x64': 0.19.8 - '@esbuild/openbsd-x64': 0.19.8 - '@esbuild/sunos-x64': 0.19.8 - '@esbuild/win32-arm64': 0.19.8 - '@esbuild/win32-ia32': 0.19.8 - '@esbuild/win32-x64': 0.19.8 - escalade@3.1.1: {} + escalade@3.2.0: {} + escape-html@1.0.3: {} escape-string-regexp@1.0.5: {} @@ -29485,7 +30372,7 @@ snapshots: eth-gas-reporter@0.2.27(bufferutil@4.0.8)(debug@4.3.4)(utf-8-validate@5.0.10): dependencies: '@solidity-parser/parser': 0.14.5 - axios: 1.7.4(debug@4.3.4) + axios: 1.6.8(debug@4.3.4) cli-table3: 0.5.1 colors: 1.4.0 ethereum-cryptography: 1.2.0 @@ -29576,6 +30463,13 @@ snapshots: '@scure/bip32': 1.3.1 '@scure/bip39': 1.2.1 + ethereum-cryptography@2.2.1: + dependencies: + '@noble/curves': 1.4.2 + '@noble/hashes': 1.4.0 + '@scure/bip32': 1.4.0 + '@scure/bip39': 1.3.0 + ethereum-multicall@2.21.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -29681,6 +30575,19 @@ snapshots: - bufferutil - utf-8-validate + ethers@6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + '@adraffy/ens-normalize': 1.10.1 + '@noble/curves': 1.2.0 + '@noble/hashes': 1.3.2 + '@types/node': 22.7.5 + aes-js: 4.0.0-beta.5 + tslib: 2.7.0 + ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10) + transitivePeerDependencies: + - bufferutil + - utf-8-validate + ethjs-unit@0.1.6: dependencies: bn.js: 4.11.6 @@ -29716,6 +30623,8 @@ snapshots: eventemitter2@6.4.9: {} + eventemitter3@3.1.2: {} + eventemitter3@4.0.4: {} eventemitter3@4.0.7: {} @@ -29869,8 +30778,7 @@ snapshots: extsprintf@1.3.0: {} - eyes@0.1.8: - optional: true + eyes@0.1.8: {} fancy-canvas@2.1.0: {} @@ -29897,8 +30805,7 @@ snapshots: fast-safe-stringify@2.1.1: {} - fast-stable-stringify@1.0.0: - optional: true + fast-stable-stringify@1.0.0: {} fast-url-parser@1.1.3: dependencies: @@ -29910,6 +30817,8 @@ snapshots: fastest-levenshtein@1.0.16: {} + fastestsmallesttextencoderdecoder@1.0.22: {} + fastq@1.15.0: dependencies: reusify: 1.0.4 @@ -30499,11 +31408,11 @@ snapshots: hard-rejection@2.1.0: {} - hardhat-gas-reporter@1.0.10(bufferutil@4.0.8)(debug@4.3.4)(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@5.2.2)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10): + hardhat-gas-reporter@1.0.10(bufferutil@4.0.8)(debug@4.3.4)(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10): dependencies: array-uniq: 1.0.3 eth-gas-reporter: 0.2.27(bufferutil@4.0.8)(debug@4.3.4)(utf-8-validate@5.0.10) - hardhat: 2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@5.2.2)(utf-8-validate@5.0.10) + hardhat: 2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10) sha1: 1.1.1 transitivePeerDependencies: - '@codechecks/client' @@ -30512,19 +31421,19 @@ snapshots: - utf-8-validate optional: true - hardhat-spdx-license-identifier@2.2.0(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@5.2.2)(utf-8-validate@5.0.10)): + hardhat-spdx-license-identifier@2.2.0(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10)): dependencies: - hardhat: 2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@5.2.2)(utf-8-validate@5.0.10) + hardhat: 2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10) optional: true - hardhat-tracer@1.3.0(chalk@4.1.2)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@5.2.2)(utf-8-validate@5.0.10)): + hardhat-tracer@1.3.0(chalk@5.3.0)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10)): dependencies: - chalk: 4.1.2 + chalk: 5.3.0 ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - hardhat: 2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@5.2.2)(utf-8-validate@5.0.10) + hardhat: 2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10) optional: true - hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@4.9.5)(utf-8-validate@5.0.10): + hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@18.18.9)(typescript@4.9.5))(typescript@4.9.5)(utf-8-validate@5.0.10): dependencies: '@ethersproject/abi': 5.7.0 '@metamask/eth-sig-util': 4.0.1 @@ -30570,7 +31479,7 @@ snapshots: uuid: 8.3.2 ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) optionalDependencies: - ts-node: 10.9.1(@types/node@13.13.52)(typescript@5.2.2) + ts-node: 10.9.1(@types/node@18.18.9)(typescript@4.9.5) typescript: 4.9.5 transitivePeerDependencies: - bufferutil @@ -30579,61 +31488,6 @@ snapshots: - utf-8-validate optional: true - hardhat@2.22.2(bufferutil@4.0.8)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2))(typescript@5.2.2)(utf-8-validate@5.0.10): - dependencies: - '@ethersproject/abi': 5.7.0 - '@metamask/eth-sig-util': 4.0.1 - '@nomicfoundation/edr': 0.3.3 - '@nomicfoundation/ethereumjs-common': 4.0.4 - '@nomicfoundation/ethereumjs-tx': 5.0.4 - '@nomicfoundation/ethereumjs-util': 9.0.4 - '@nomicfoundation/solidity-analyzer': 0.1.1 - '@sentry/node': 5.30.0 - '@types/bn.js': 5.1.5 - '@types/lru-cache': 5.1.1 - adm-zip: 0.4.16 - aggregate-error: 3.1.0 - ansi-escapes: 4.3.2 - boxen: 5.1.2 - chalk: 2.4.2 - chokidar: 3.5.3 - ci-info: 2.0.0 - debug: 4.3.4(supports-color@8.1.1) - enquirer: 2.4.1 - env-paths: 2.2.1 - ethereum-cryptography: 1.2.0 - ethereumjs-abi: 0.6.8 - find-up: 2.1.0 - fp-ts: 1.19.3 - fs-extra: 7.0.1 - glob: 7.2.0 - immutable: 4.3.5 - io-ts: 1.10.4 - keccak: 3.0.4 - lodash: 4.17.21 - mnemonist: 0.38.5 - mocha: 10.4.0 - p-map: 4.0.0 - raw-body: 2.5.1 - resolve: 1.17.0 - semver: 6.3.1 - solc: 0.7.3(debug@4.3.4) - source-map-support: 0.5.21 - stacktrace-parser: 0.1.10 - tsort: 0.0.1 - undici: 5.28.4 - uuid: 8.3.2 - ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10) - optionalDependencies: - ts-node: 10.9.1(@types/node@13.13.52)(typescript@5.2.2) - typescript: 5.2.2 - transitivePeerDependencies: - - bufferutil - - c-kzg - - supports-color - - utf-8-validate - optional: true - has-bigints@1.0.2: {} has-flag@3.0.0: {} @@ -30807,7 +31661,6 @@ snapshots: humanize-ms@1.2.1: dependencies: ms: 2.1.3 - optional: true husky@7.0.4: {} @@ -31254,7 +32107,6 @@ snapshots: transitivePeerDependencies: - bufferutil - utf-8-validate - optional: true jest-diff@26.6.2: dependencies: @@ -31294,7 +32146,7 @@ snapshots: jest-message-util@29.7.0: dependencies: - '@babel/code-frame': 7.23.5 + '@babel/code-frame': 7.26.2 '@jest/types': 29.6.3 '@types/stack-utils': 2.0.3 chalk: 4.1.2 @@ -31312,7 +32164,7 @@ snapshots: jest-regex-util@29.6.3: {} - jest-styled-components@7.2.0(styled-components@6.0.7): + jest-styled-components@7.2.0(styled-components@6.0.7(babel-plugin-styled-components@1.13.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)): dependencies: '@adobe/css-tools': 4.3.1 styled-components: 6.0.7(babel-plugin-styled-components@1.13.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) @@ -31402,7 +32254,7 @@ snapshots: jsc-safe-url@0.2.4: {} - jscodeshift@0.14.0(@babel/preset-env@7.23.3(@babel/core@7.23.3)): + jscodeshift@0.14.0(@babel/preset-env@7.26.0(@babel/core@7.23.9)): dependencies: '@babel/core': 7.23.9 '@babel/parser': 7.23.9 @@ -31410,33 +32262,7 @@ snapshots: '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.9) '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.9) '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.9) - '@babel/preset-env': 7.23.3(@babel/core@7.23.3) - '@babel/preset-flow': 7.23.3(@babel/core@7.23.9) - '@babel/preset-typescript': 7.23.3(@babel/core@7.23.9) - '@babel/register': 7.22.15(@babel/core@7.23.9) - babel-core: 7.0.0-bridge.0(@babel/core@7.23.9) - chalk: 4.1.2 - flow-parser: 0.221.0 - graceful-fs: 4.2.11 - micromatch: 4.0.5 - neo-async: 2.6.2 - node-dir: 0.1.17 - recast: 0.21.5 - temp: 0.8.4 - write-file-atomic: 2.4.3 - transitivePeerDependencies: - - supports-color - optional: true - - jscodeshift@0.14.0(@babel/preset-env@7.23.3(@babel/core@7.23.9)): - dependencies: - '@babel/core': 7.23.9 - '@babel/parser': 7.23.9 - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.9) - '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.23.9) - '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.23.9) - '@babel/plugin-transform-modules-commonjs': 7.23.3(@babel/core@7.23.9) - '@babel/preset-env': 7.23.3(@babel/core@7.23.9) + '@babel/preset-env': 7.26.0(@babel/core@7.23.9) '@babel/preset-flow': 7.23.3(@babel/core@7.23.9) '@babel/preset-typescript': 7.23.3(@babel/core@7.23.9) '@babel/register': 7.22.15(@babel/core@7.23.9) @@ -31457,6 +32283,10 @@ snapshots: jsesc@2.5.2: {} + jsesc@3.0.2: {} + + jsesc@3.1.0: {} + json-buffer@3.0.1: {} json-parse-better-errors@1.0.2: {} @@ -31509,8 +32339,7 @@ snapshots: optionalDependencies: graceful-fs: 4.2.11 - jsonparse@1.3.1: - optional: true + jsonparse@1.3.1: {} jsprim@1.4.2: dependencies: @@ -32148,6 +32977,11 @@ snapshots: merge-descriptors@1.0.1: {} + merge-options@3.0.4: + dependencies: + is-plain-obj: 2.1.0 + optional: true + merge-stream@2.0.0: {} merge2@1.4.1: {} @@ -32220,8 +33054,8 @@ snapshots: metro-source-map@0.80.8: dependencies: - '@babel/traverse': 7.23.9 - '@babel/types': 7.24.0 + '@babel/traverse': 7.26.4 + '@babel/types': 7.26.3 invariant: 2.2.4 metro-symbolicate: 0.80.8 nullthrows: 1.1.1 @@ -32245,9 +33079,9 @@ snapshots: metro-transform-plugins@0.80.8: dependencies: '@babel/core': 7.23.9 - '@babel/generator': 7.23.6 - '@babel/template': 7.23.9 - '@babel/traverse': 7.23.9 + '@babel/generator': 7.26.3 + '@babel/template': 7.25.9 + '@babel/traverse': 7.26.4 nullthrows: 1.1.1 transitivePeerDependencies: - supports-color @@ -32255,9 +33089,9 @@ snapshots: metro-transform-worker@0.80.8(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: '@babel/core': 7.23.9 - '@babel/generator': 7.23.6 - '@babel/parser': 7.23.9 - '@babel/types': 7.24.0 + '@babel/generator': 7.26.3 + '@babel/parser': 7.26.3 + '@babel/types': 7.26.3 metro: 0.80.8(bufferutil@4.0.8)(utf-8-validate@5.0.10) metro-babel-transformer: 0.80.8 metro-cache: 0.80.8 @@ -32274,13 +33108,13 @@ snapshots: metro@0.80.8(bufferutil@4.0.8)(utf-8-validate@5.0.10): dependencies: - '@babel/code-frame': 7.23.5 + '@babel/code-frame': 7.26.2 '@babel/core': 7.23.9 - '@babel/generator': 7.23.6 - '@babel/parser': 7.23.9 - '@babel/template': 7.23.9 - '@babel/traverse': 7.23.9 - '@babel/types': 7.24.0 + '@babel/generator': 7.26.3 + '@babel/parser': 7.26.3 + '@babel/template': 7.25.9 + '@babel/traverse': 7.26.4 + '@babel/types': 7.26.3 accepts: 1.3.8 chalk: 4.1.2 ci-info: 2.0.0 @@ -32679,6 +33513,12 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + next-themes@0.2.1(next@14.2.20(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + dependencies: + next: 14.2.20(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + next-tick@1.1.0: {} next@14.2.14(@babel/core@7.23.3)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): @@ -32686,7 +33526,7 @@ snapshots: '@next/env': 14.2.14 '@swc/helpers': 0.5.5 busboy: 1.6.0 - caniuse-lite: 1.0.30001608 + caniuse-lite: 1.0.30001688 graceful-fs: 4.2.11 postcss: 8.4.31 react: 18.2.0 @@ -32712,7 +33552,7 @@ snapshots: '@next/env': 14.2.14 '@swc/helpers': 0.5.5 busboy: 1.6.0 - caniuse-lite: 1.0.30001608 + caniuse-lite: 1.0.30001688 graceful-fs: 4.2.11 postcss: 8.4.31 react: 18.2.0 @@ -32733,6 +33573,32 @@ snapshots: - '@babel/core' - babel-plugin-macros + next@14.2.20(@babel/core@7.23.9)(@opentelemetry/api@1.9.0)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + dependencies: + '@next/env': 14.2.20 + '@swc/helpers': 0.5.5 + busboy: 1.6.0 + caniuse-lite: 1.0.30001688 + graceful-fs: 4.2.11 + postcss: 8.4.31 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + styled-jsx: 5.1.1(@babel/core@7.23.9)(react@18.2.0) + optionalDependencies: + '@next/swc-darwin-arm64': 14.2.20 + '@next/swc-darwin-x64': 14.2.20 + '@next/swc-linux-arm64-gnu': 14.2.20 + '@next/swc-linux-arm64-musl': 14.2.20 + '@next/swc-linux-x64-gnu': 14.2.20 + '@next/swc-linux-x64-musl': 14.2.20 + '@next/swc-win32-arm64-msvc': 14.2.20 + '@next/swc-win32-ia32-msvc': 14.2.20 + '@next/swc-win32-x64-msvc': 14.2.20 + '@opentelemetry/api': 1.9.0 + transitivePeerDependencies: + - '@babel/core' + - babel-plugin-macros + nice-try@1.0.5: {} nise@5.1.9: @@ -32778,6 +33644,8 @@ snapshots: node-releases@2.0.14: {} + node-releases@2.0.19: {} + node-stream-zip@1.15.0: {} nofilter@3.1.0: @@ -33242,6 +34110,8 @@ snapshots: picocolors@1.0.0: {} + picocolors@1.1.1: {} + picomatch@2.3.1: {} pidtree@0.5.0: {} @@ -33333,13 +34203,13 @@ snapshots: postcss: 8.4.31 ts-node: 10.9.1(@types/node@18.0.4)(typescript@5.2.2) - postcss-load-config@3.1.4(postcss@8.4.31)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2)): + postcss-load-config@3.1.4(postcss@8.4.31)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2)): dependencies: lilconfig: 2.1.0 yaml: 1.10.2 optionalDependencies: postcss: 8.4.31 - ts-node: 10.9.1(@types/node@20.5.7)(typescript@5.2.2) + ts-node: 10.9.1(@types/node@22.7.5)(typescript@5.2.2) postcss-load-config@3.1.4(postcss@8.4.33)(ts-node@10.9.1(@types/node@15.12.2)(typescript@5.2.2)): dependencies: @@ -33349,13 +34219,13 @@ snapshots: postcss: 8.4.33 ts-node: 10.9.1(@types/node@15.12.2)(typescript@5.2.2) - postcss-load-config@3.1.4(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2)): + postcss-load-config@3.1.4(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2)): dependencies: lilconfig: 2.1.0 yaml: 1.10.2 optionalDependencies: postcss: 8.4.33 - ts-node: 10.9.1(@types/node@20.5.7)(typescript@5.2.2) + ts-node: 10.9.1(@types/node@22.7.5)(typescript@5.2.2) postcss-load-config@4.0.2(postcss@8.4.33)(ts-node@10.9.1(@types/node@13.13.52)(typescript@5.2.2)): dependencies: @@ -33639,6 +34509,12 @@ snapshots: pngjs: 5.0.0 yargs: 15.4.1 + qrcode@1.5.4: + dependencies: + dijkstrajs: 1.0.3 + pngjs: 5.0.0 + yargs: 15.4.1 + qs@6.10.5: dependencies: side-channel: 1.0.4 @@ -33782,9 +34658,9 @@ snapshots: react-docgen@6.0.4: dependencies: '@babel/core': 7.23.9 - '@babel/traverse': 7.23.3 - '@babel/types': 7.23.3 - '@types/babel__core': 7.20.4 + '@babel/traverse': 7.23.9 + '@babel/types': 7.24.0 + '@types/babel__core': 7.20.5 '@types/babel__traverse': 7.20.4 '@types/doctrine': 0.0.6 '@types/resolve': 1.20.5 @@ -33904,76 +34780,26 @@ snapshots: dependencies: '@babel/runtime': 7.24.7 - react-native-webview@11.26.1(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0): + react-native-webview@11.26.1(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0): dependencies: escape-string-regexp: 2.0.0 invariant: 2.2.4 react: 18.2.0 - react-native: 0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) + react-native: 0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) - react-native@0.73.6(@babel/core@7.23.3)(@babel/preset-env@7.23.3(@babel/core@7.23.3))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10): + react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10): dependencies: '@jest/create-cache-key-function': 29.7.0 '@react-native-community/cli': 12.3.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@react-native-community/cli-platform-android': 12.3.6 '@react-native-community/cli-platform-ios': 12.3.6 '@react-native/assets-registry': 0.73.1 - '@react-native/codegen': 0.73.3(@babel/preset-env@7.23.3(@babel/core@7.23.3)) - '@react-native/community-cli-plugin': 0.73.17(@babel/core@7.23.3)(@babel/preset-env@7.23.3(@babel/core@7.23.3))(bufferutil@4.0.8)(utf-8-validate@5.0.10) + '@react-native/codegen': 0.73.3(@babel/preset-env@7.26.0(@babel/core@7.23.9)) + '@react-native/community-cli-plugin': 0.73.17(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@react-native/gradle-plugin': 0.73.4 '@react-native/js-polyfills': 0.73.1 '@react-native/normalize-colors': 0.73.2 - '@react-native/virtualized-lists': 0.73.4(react-native@0.73.6(@babel/core@7.23.3)(@babel/preset-env@7.23.3(@babel/core@7.23.3))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)) - abort-controller: 3.0.0 - anser: 1.4.10 - ansi-regex: 5.0.1 - base64-js: 1.5.1 - chalk: 4.1.2 - deprecated-react-native-prop-types: 5.0.0 - event-target-shim: 5.0.1 - flow-enums-runtime: 0.0.6 - invariant: 2.2.4 - jest-environment-node: 29.7.0 - jsc-android: 250231.0.0 - memoize-one: 5.2.1 - metro-runtime: 0.80.8 - metro-source-map: 0.80.8 - mkdirp: 0.5.6 - nullthrows: 1.1.1 - pretty-format: 26.6.2 - promise: 8.3.0 - react: 18.2.0 - react-devtools-core: 4.28.5(bufferutil@4.0.8)(utf-8-validate@5.0.10) - react-refresh: 0.14.0 - react-shallow-renderer: 16.15.0(react@18.2.0) - regenerator-runtime: 0.13.11 - scheduler: 0.24.0-canary-efb381bbf-20230505 - stacktrace-parser: 0.1.10 - whatwg-fetch: 3.6.20 - ws: 6.2.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) - yargs: 17.7.2 - transitivePeerDependencies: - - '@babel/core' - - '@babel/preset-env' - - bufferutil - - encoding - - supports-color - - utf-8-validate - optional: true - - react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10): - dependencies: - '@jest/create-cache-key-function': 29.7.0 - '@react-native-community/cli': 12.3.6(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@react-native-community/cli-platform-android': 12.3.6 - '@react-native-community/cli-platform-ios': 12.3.6 - '@react-native/assets-registry': 0.73.1 - '@react-native/codegen': 0.73.3(@babel/preset-env@7.23.3(@babel/core@7.23.9)) - '@react-native/community-cli-plugin': 0.73.17(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(utf-8-validate@5.0.10) - '@react-native/gradle-plugin': 0.73.4 - '@react-native/js-polyfills': 0.73.1 - '@react-native/normalize-colors': 0.73.2 - '@react-native/virtualized-lists': 0.73.4(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)) + '@react-native/virtualized-lists': 0.73.4(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 @@ -34029,7 +34855,7 @@ snapshots: react-fast-compare: 3.2.2 warning: 4.0.3 - react-redux@8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.3)(@babel/preset-env@7.23.3(@babel/core@7.23.3))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1): + react-redux@8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1): dependencies: '@babel/runtime': 7.23.9 '@types/hoist-non-react-statics': 3.3.5 @@ -34042,24 +34868,7 @@ snapshots: '@types/react': 18.2.37 '@types/react-dom': 18.2.15 react-dom: 18.2.0(react@18.2.0) - react-native: 0.73.6(@babel/core@7.23.3)(@babel/preset-env@7.23.3(@babel/core@7.23.3))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) - redux: 4.2.1 - optional: true - - react-redux@8.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(redux@4.2.1): - dependencies: - '@babel/runtime': 7.23.9 - '@types/hoist-non-react-statics': 3.3.5 - '@types/use-sync-external-store': 0.0.3 - hoist-non-react-statics: 3.3.2 - react: 18.2.0 - react-is: 18.2.0 - use-sync-external-store: 1.2.0(react@18.2.0) - optionalDependencies: - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 - react-dom: 18.2.0(react@18.2.0) - react-native: 0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) + react-native: 0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10) redux: 4.2.1 react-refresh@0.14.0: {} @@ -34068,7 +34877,7 @@ snapshots: dependencies: react: 18.2.0 react-style-singleton: 2.2.1(@types/react@18.2.37)(react@18.2.0) - tslib: 2.6.2 + tslib: 2.7.0 optionalDependencies: '@types/react': 18.2.37 @@ -34132,7 +34941,7 @@ snapshots: get-nonce: 1.0.1 invariant: 2.2.4 react: 18.2.0 - tslib: 2.6.2 + tslib: 2.7.0 optionalDependencies: '@types/react': 18.2.37 @@ -34243,7 +35052,7 @@ snapshots: ast-types: 0.15.2 esprima: 4.0.1 source-map: 0.6.1 - tslib: 2.6.2 + tslib: 2.7.0 recast@0.23.4: dependencies: @@ -34323,6 +35132,10 @@ snapshots: dependencies: regenerate: 1.4.2 + regenerate-unicode-properties@10.2.0: + dependencies: + regenerate: 1.4.2 + regenerate@1.4.2: {} regenerator-runtime@0.13.11: {} @@ -34350,6 +35163,15 @@ snapshots: unicode-match-property-ecmascript: 2.0.0 unicode-match-property-value-ecmascript: 2.1.0 + regexpu-core@6.2.0: + dependencies: + regenerate: 1.4.2 + regenerate-unicode-properties: 10.2.0 + regjsgen: 0.8.0 + regjsparser: 0.12.0 + unicode-match-property-ecmascript: 2.0.0 + unicode-match-property-value-ecmascript: 2.1.0 + registry-auth-token@3.3.2: dependencies: rc: 1.2.8 @@ -34359,6 +35181,12 @@ snapshots: dependencies: rc: 1.2.8 + regjsgen@0.8.0: {} + + regjsparser@0.12.0: + dependencies: + jsesc: 3.0.2 + regjsparser@0.9.1: dependencies: jsesc: 0.5.0 @@ -34595,7 +35423,6 @@ snapshots: optionalDependencies: bufferutil: 4.0.8 utf-8-validate: 5.0.10 - optional: true run-parallel@1.2.0: dependencies: @@ -35260,22 +36087,22 @@ snapshots: styled-components@6.0.7(babel-plugin-styled-components@1.13.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: - '@babel/cli': 7.23.0(@babel/core@7.23.3) - '@babel/core': 7.23.3 - '@babel/helper-module-imports': 7.22.15 - '@babel/plugin-external-helpers': 7.23.3(@babel/core@7.23.3) - '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.3) - '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.3) - '@babel/preset-env': 7.23.3(@babel/core@7.23.3) - '@babel/preset-react': 7.23.3(@babel/core@7.23.3) - '@babel/preset-typescript': 7.23.3(@babel/core@7.23.3) - '@babel/traverse': 7.23.3 - '@emotion/is-prop-valid': 1.2.1 + '@babel/cli': 7.23.0(@babel/core@7.23.9) + '@babel/core': 7.23.9 + '@babel/helper-module-imports': 7.24.3 + '@babel/plugin-external-helpers': 7.23.3(@babel/core@7.23.9) + '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.23.9) + '@babel/plugin-proposal-object-rest-spread': 7.20.7(@babel/core@7.23.9) + '@babel/preset-env': 7.23.3(@babel/core@7.23.9) + '@babel/preset-react': 7.23.3(@babel/core@7.23.9) + '@babel/preset-typescript': 7.23.3(@babel/core@7.23.9) + '@babel/traverse': 7.23.9 + '@emotion/is-prop-valid': 1.2.2 '@emotion/unitless': 0.8.1 '@types/stylis': 4.2.3 css-to-react-native: 3.2.0 - csstype: 3.1.2 - postcss: 8.4.31 + csstype: 3.1.3 + postcss: 8.4.33 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) shallowequal: 1.1.0 @@ -35394,8 +36221,7 @@ snapshots: dependencies: copy-anything: 3.0.5 - superstruct@0.14.2: - optional: true + superstruct@0.14.2: {} superstruct@1.0.3: {} @@ -35597,7 +36423,7 @@ snapshots: terser-webpack-plugin@5.3.9(esbuild@0.17.19)(webpack@5.89.0(esbuild@0.17.19)): dependencies: - '@jridgewell/trace-mapping': 0.3.20 + '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 @@ -35608,7 +36434,7 @@ snapshots: terser-webpack-plugin@5.3.9(esbuild@0.18.20)(webpack@5.89.0(esbuild@0.18.20)): dependencies: - '@jridgewell/trace-mapping': 0.3.20 + '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 @@ -35630,8 +36456,7 @@ snapshots: glob: 7.2.3 minimatch: 3.1.2 - text-encoding-utf-8@1.0.2: - optional: true + text-encoding-utf-8@1.0.2: {} text-table@0.2.0: {} @@ -35747,6 +36572,22 @@ snapshots: trim-newlines@3.0.1: {} + tronweb@6.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): + dependencies: + '@babel/runtime': 7.24.7 + '@tronweb3/google-protobuf': 3.21.2 + axios: 1.7.4 + bignumber.js: 9.1.2 + ethereum-cryptography: 2.2.1 + ethers: 6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) + eventemitter3: 3.1.2 + semver: 5.7.2 + validator: 13.11.0 + transitivePeerDependencies: + - bufferutil + - debug + - utf-8-validate + trough@1.0.5: {} ts-api-utils@1.0.3(typescript@5.2.2): @@ -35867,14 +36708,14 @@ snapshots: yn: 3.1.1 optional: true - ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2): + ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.5.7 + '@types/node': 22.7.5 acorn: 8.11.2 acorn-walk: 8.3.2 arg: 4.1.3 @@ -35901,6 +36742,8 @@ snapshots: tslib@2.6.2: {} + tslib@2.7.0: {} + tsort@0.0.1: optional: true @@ -35927,7 +36770,7 @@ snapshots: - supports-color - ts-node - tsup@6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2))(typescript@5.2.2): + tsup@6.7.0(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2))(typescript@5.2.2): dependencies: bundle-require: 4.0.2(esbuild@0.17.19) cac: 6.7.14 @@ -35937,7 +36780,7 @@ snapshots: execa: 5.1.1 globby: 11.1.0 joycon: 3.1.1 - postcss-load-config: 3.1.4(postcss@8.4.33)(ts-node@10.9.1(@types/node@20.5.7)(typescript@5.2.2)) + postcss-load-config: 3.1.4(postcss@8.4.33)(ts-node@10.9.1(@types/node@22.7.5)(typescript@5.2.2)) resolve-from: 5.0.0 rollup: 3.29.4 source-map: 0.8.0-beta.0 @@ -36152,6 +36995,8 @@ snapshots: undici-types@5.26.5: {} + undici-types@6.19.8: {} + undici@5.28.4: dependencies: '@fastify/busboy': 2.1.1 @@ -36281,6 +37126,12 @@ snapshots: escalade: 3.1.1 picocolors: 1.0.0 + update-browserslist-db@1.1.1(browserslist@4.24.3): + dependencies: + browserslist: 4.24.3 + escalade: 3.2.0 + picocolors: 1.1.1 + update-check@1.5.2: dependencies: registry-auth-token: 3.3.2 @@ -36307,7 +37158,7 @@ snapshots: use-callback-ref@1.3.0(@types/react@18.2.37)(react@18.2.0): dependencies: react: 18.2.0 - tslib: 2.6.2 + tslib: 2.7.0 optionalDependencies: '@types/react': 18.2.37 @@ -36321,7 +37172,7 @@ snapshots: dependencies: detect-node-es: 1.1.0 react: 18.2.0 - tslib: 2.6.2 + tslib: 2.7.0 optionalDependencies: '@types/react': 18.2.37 @@ -36499,7 +37350,7 @@ snapshots: - supports-color - terser - vite-node@0.28.5(@types/node@20.5.7)(terser@5.24.0): + vite-node@0.28.5(@types/node@22.7.5)(terser@5.24.0): dependencies: cac: 6.7.14 debug: 4.3.4(supports-color@8.1.1) @@ -36508,7 +37359,7 @@ snapshots: picocolors: 1.0.0 source-map: 0.6.1 source-map-support: 0.5.21 - vite: 4.3.9(@types/node@20.5.7)(terser@5.24.0) + vite: 4.3.9(@types/node@22.7.5)(terser@5.24.0) transitivePeerDependencies: - '@types/node' - less @@ -36552,9 +37403,25 @@ snapshots: - supports-color - terser - vite-plugin-dts@3.6.3(@types/node@20.5.7)(rollup@4.9.6)(typescript@5.2.2)(vite@5.0.12(@types/node@20.5.7)(terser@5.24.0)): + vite-plugin-dts@3.6.3(@types/node@22.7.5)(rollup@3.29.4)(typescript@5.2.2)(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0)): + dependencies: + '@microsoft/api-extractor': 7.38.3(@types/node@22.7.5) + '@rollup/pluginutils': 5.0.5(rollup@3.29.4) + '@vue/language-core': 1.8.22(typescript@5.2.2) + debug: 4.3.4(supports-color@8.1.1) + kolorist: 1.8.0 + typescript: 5.2.2 + vue-tsc: 1.8.22(typescript@5.2.2) + optionalDependencies: + vite: 5.0.12(@types/node@22.7.5)(terser@5.24.0) + transitivePeerDependencies: + - '@types/node' + - rollup + - supports-color + + vite-plugin-dts@3.6.3(@types/node@22.7.5)(rollup@4.9.6)(typescript@5.2.2)(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0)): dependencies: - '@microsoft/api-extractor': 7.38.3(@types/node@20.5.7) + '@microsoft/api-extractor': 7.38.3(@types/node@22.7.5) '@rollup/pluginutils': 5.0.5(rollup@4.9.6) '@vue/language-core': 1.8.22(typescript@5.2.2) debug: 4.3.4(supports-color@8.1.1) @@ -36562,7 +37429,7 @@ snapshots: typescript: 5.2.2 vue-tsc: 1.8.22(typescript@5.2.2) optionalDependencies: - vite: 5.0.12(@types/node@20.5.7)(terser@5.24.0) + vite: 5.0.12(@types/node@22.7.5)(terser@5.24.0) transitivePeerDependencies: - '@types/node' - rollup @@ -36590,13 +37457,13 @@ snapshots: - supports-color - typescript - vite-tsconfig-paths@4.2.1(typescript@5.2.2)(vite@5.0.12(@types/node@20.5.7)(terser@5.24.0)): + vite-tsconfig-paths@4.2.1(typescript@5.2.2)(vite@5.0.12(@types/node@22.7.5)(terser@5.24.0)): dependencies: debug: 4.3.4(supports-color@8.1.1) globrex: 0.1.2 tsconfck: 2.1.2(typescript@5.2.2) optionalDependencies: - vite: 5.0.12(@types/node@20.5.7)(terser@5.24.0) + vite: 5.0.12(@types/node@22.7.5)(terser@5.24.0) transitivePeerDependencies: - supports-color - typescript @@ -36621,19 +37488,19 @@ snapshots: fsevents: 2.3.3 terser: 5.24.0 - vite@4.3.9(@types/node@20.5.7)(terser@5.24.0): + vite@4.3.9(@types/node@22.7.5)(terser@5.24.0): dependencies: esbuild: 0.17.19 postcss: 8.4.33 rollup: 3.29.4 optionalDependencies: - '@types/node': 20.5.7 + '@types/node': 22.7.5 fsevents: 2.3.3 terser: 5.24.0 vite@5.0.12(@types/node@13.13.52)(terser@5.24.0): dependencies: - esbuild: 0.19.8 + esbuild: 0.19.12 postcss: 8.4.33 rollup: 4.9.6 optionalDependencies: @@ -36643,7 +37510,7 @@ snapshots: vite@5.0.12(@types/node@18.0.4)(terser@5.24.0): dependencies: - esbuild: 0.19.8 + esbuild: 0.19.12 postcss: 8.4.33 rollup: 4.9.6 optionalDependencies: @@ -36653,7 +37520,7 @@ snapshots: vite@5.0.12(@types/node@18.18.9)(terser@5.24.0): dependencies: - esbuild: 0.19.8 + esbuild: 0.19.12 postcss: 8.4.33 rollup: 4.9.6 optionalDependencies: @@ -36661,13 +37528,13 @@ snapshots: fsevents: 2.3.3 terser: 5.24.0 - vite@5.0.12(@types/node@20.5.7)(terser@5.24.0): + vite@5.0.12(@types/node@22.7.5)(terser@5.24.0): dependencies: - esbuild: 0.19.8 + esbuild: 0.19.12 postcss: 8.4.33 rollup: 4.9.6 optionalDependencies: - '@types/node': 20.5.7 + '@types/node': 22.7.5 fsevents: 2.3.3 terser: 5.24.0 @@ -36719,12 +37586,12 @@ snapshots: semver: 7.5.4 typescript: 5.2.2 - wagmi@0.12.19(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4): + wagmi@0.12.19(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4): dependencies: '@tanstack/query-sync-storage-persister': 4.36.1 - '@tanstack/react-query': 4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) - '@tanstack/react-query-persist-client': 4.36.1(@tanstack/react-query@4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)) - '@wagmi/core': 0.10.17(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@tanstack/react-query': 4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + '@tanstack/react-query-persist-client': 4.36.1(@tanstack/react-query@4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)) + '@wagmi/core': 0.10.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4) abitype: 0.3.0(typescript@5.2.2)(zod@3.22.4) ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) react: 18.2.0 @@ -36753,10 +37620,10 @@ snapshots: - utf-8-validate - zod - wagmi@2.12.17(@tanstack/query-core@5.52.0)(@tanstack/react-query@4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4): + wagmi@2.12.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4): dependencies: - '@tanstack/react-query': 4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) - '@wagmi/connectors': 5.1.15(@types/react@18.2.37)(@wagmi/core@2.13.8(@tanstack/query-core@5.52.0)(@types/react@18.2.37)(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@tanstack/react-query': 4.36.1(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0) + '@wagmi/connectors': 5.1.15(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(@wagmi/core@2.13.8(@tanstack/query-core@5.52.0)(@types/react@18.2.37)(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) '@wagmi/core': 2.13.8(@tanstack/query-core@5.52.0)(@types/react@18.2.37)(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)) react: 18.2.0 use-sync-external-store: 1.2.0(react@18.2.0) @@ -36787,10 +37654,10 @@ snapshots: - utf-8-validate - zod - wagmi@2.12.17(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4): + wagmi@2.12.17(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@tanstack/query-core@5.52.0)(@tanstack/react-query@5.52.1(react@18.2.0))(@types/react@18.2.37)(bufferutil@4.0.8)(immer@9.0.21)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4): dependencies: '@tanstack/react-query': 5.52.1(react@18.2.0) - '@wagmi/connectors': 5.1.15(@types/react@18.2.37)(@wagmi/core@2.13.8(@tanstack/query-core@5.52.0)(@types/react@18.2.37)(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.23.3(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) + '@wagmi/connectors': 5.1.15(@react-native-async-storage/async-storage@1.24.0(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10)))(@types/react@18.2.37)(@wagmi/core@2.13.8(@tanstack/query-core@5.52.0)(@types/react@18.2.37)(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@18.2.0(react@18.2.0))(react-native@0.73.6(@babel/core@7.23.9)(@babel/preset-env@7.26.0(@babel/core@7.23.9))(bufferutil@4.0.8)(react@18.2.0)(utf-8-validate@5.0.10))(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(utf-8-validate@5.0.10)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) '@wagmi/core': 2.13.8(@tanstack/query-core@5.52.0)(@types/react@18.2.37)(immer@9.0.21)(react@18.2.0)(typescript@5.2.2)(viem@2.21.22(bufferutil@4.0.8)(typescript@5.2.2)(utf-8-validate@5.0.10)(zod@3.22.4)) react: 18.2.0 use-sync-external-store: 1.2.0(react@18.2.0) @@ -37101,7 +37968,7 @@ snapshots: '@webassemblyjs/wasm-parser': 1.11.6 acorn: 8.11.2 acorn-import-assertions: 1.9.0(acorn@8.11.2) - browserslist: 4.23.0 + browserslist: 4.24.3 chrome-trace-event: 1.0.3 enhanced-resolve: 5.15.0 es-module-lexer: 1.4.1 @@ -37132,7 +37999,7 @@ snapshots: '@webassemblyjs/wasm-parser': 1.11.6 acorn: 8.11.2 acorn-import-assertions: 1.9.0(acorn@8.11.2) - browserslist: 4.23.0 + browserslist: 4.24.3 chrome-trace-event: 1.0.3 enhanced-resolve: 5.15.0 es-module-lexer: 1.4.1 @@ -37369,6 +38236,11 @@ snapshots: bufferutil: 4.0.8 utf-8-validate: 5.0.10 + ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10): + optionalDependencies: + bufferutil: 4.0.8 + utf-8-validate: 5.0.10 + ws@8.17.1(bufferutil@4.0.8)(utf-8-validate@6.0.3): optionalDependencies: bufferutil: 4.0.8