From f4d6c42c0b966bec32d4ec421bf6746332473adf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 14 Dec 2024 00:13:02 +0700 Subject: [PATCH 01/24] sync: main to staging (#575) Co-authored-by: plubber <51789398+ericHgorski@users.noreply.github.com> Co-authored-by: Nur Fikri Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] Co-authored-by: Not Jeremy Liu <31809888+NotJeremyLiu@users.noreply.github.com> --- .github/workflows/sync-staging.yml | 1 + examples/nextjs/CHANGELOG.md | 6 ++++++ examples/nextjs/package.json | 2 +- packages/client/CHANGELOG.md | 6 ++++++ packages/client/package.json | 2 +- packages/client/src/types/unified.ts | 1 + packages/widget/CHANGELOG.md | 7 +++++++ packages/widget/package.json | 2 +- 8 files changed, 24 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sync-staging.yml b/.github/workflows/sync-staging.yml index 9a38b80c6..647f92baf 100644 --- a/.github/workflows/sync-staging.yml +++ b/.github/workflows/sync-staging.yml @@ -22,3 +22,4 @@ jobs: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} FROM_BRANCH: 'main' TO_BRANCH: 'staging' + CONTENT_COMPARISON: true diff --git a/examples/nextjs/CHANGELOG.md b/examples/nextjs/CHANGELOG.md index 6ac96be5d..73da5e7a7 100644 --- a/examples/nextjs/CHANGELOG.md +++ b/examples/nextjs/CHANGELOG.md @@ -1,5 +1,11 @@ # nextjs +## 0.1.26 + +### Patch Changes + +- @skip-go/widget@3.0.24 + ## 0.1.25 ### Patch Changes diff --git a/examples/nextjs/package.json b/examples/nextjs/package.json index aa17818b4..a8c33405f 100644 --- a/examples/nextjs/package.json +++ b/examples/nextjs/package.json @@ -1,6 +1,6 @@ { "name": "nextjs", - "version": "0.1.25", + "version": "0.1.26", "private": true, "scripts": { "dev": "next dev", diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index baf7aad57..4daeb2709 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -1,5 +1,11 @@ # @skip-go/client +## 0.15.5 + +### Patch Changes + +- 31f05d1: Add BRIDGE fee type to estimated fees array + ## 0.15.4 ### Patch Changes diff --git a/packages/client/package.json b/packages/client/package.json index 8e194daea..d7492554c 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,7 +1,7 @@ { "name": "@skip-go/client", "description": "JavaScript SDK for Skip Go API", - "version": "0.15.4", + "version": "0.15.5", "repository": "https://github.com/skip-mev/skip-go", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/client/src/types/unified.ts b/packages/client/src/types/unified.ts index 74f967150..fb59dee79 100644 --- a/packages/client/src/types/unified.ts +++ b/packages/client/src/types/unified.ts @@ -251,6 +251,7 @@ export type MsgsWarning = { export enum FeeType { SMART_RELAY = 'SMART_RELAY', + BRIDGE = 'BRIDGE', }; export type EstimatedFee = { diff --git a/packages/widget/CHANGELOG.md b/packages/widget/CHANGELOG.md index e0dc283b0..18d07f900 100644 --- a/packages/widget/CHANGELOG.md +++ b/packages/widget/CHANGELOG.md @@ -1,5 +1,12 @@ ## 0.0.15 +## 3.0.24 + +### Patch Changes + +- Updated dependencies [31f05d1] + - @skip-go/client@0.15.5 + ## 3.0.23 ### Patch Changes diff --git a/packages/widget/package.json b/packages/widget/package.json index cfc056263..859b387d6 100644 --- a/packages/widget/package.json +++ b/packages/widget/package.json @@ -1,7 +1,7 @@ { "name": "@skip-go/widget", "description": "Swap widget", - "version": "3.0.23", + "version": "3.0.24", "repository": { "url": "https://github.com/skip-mev/skip-go", "directory": "packages/widget" From 05c688529a5afc008ed62d96c078689f21bc623a Mon Sep 17 00:00:00 2001 From: plubber <51789398+ericHgorski@users.noreply.github.com> Date: Fri, 13 Dec 2024 12:26:58 -0500 Subject: [PATCH 02/24] [FRE-1327] fix/refactor: balance loading state (#572) --- .changeset/good-pans-unite.md | 5 ++ .../widget/src/hooks/useFetchAllBalances.ts | 49 +++++------ .../src/hooks/useShowCosmosLedgerWarning.ts | 1 - packages/widget/src/state/balances.ts | 82 ++----------------- packages/widget/src/utils/atomWithDebounce.ts | 2 +- 5 files changed, 35 insertions(+), 104 deletions(-) create mode 100644 .changeset/good-pans-unite.md diff --git a/.changeset/good-pans-unite.md b/.changeset/good-pans-unite.md new file mode 100644 index 000000000..362deb904 --- /dev/null +++ b/.changeset/good-pans-unite.md @@ -0,0 +1,5 @@ +--- +'@skip-go/widget': patch +--- + +fix balance loading display state diff --git a/packages/widget/src/hooks/useFetchAllBalances.ts b/packages/widget/src/hooks/useFetchAllBalances.ts index 4ceaa6659..5776a3a5c 100644 --- a/packages/widget/src/hooks/useFetchAllBalances.ts +++ b/packages/widget/src/hooks/useFetchAllBalances.ts @@ -5,48 +5,41 @@ import { skipAssetsAtom, skipChainsAtom } from "@/state/skipClient"; import { useAccount } from "wagmi"; import { useQuery } from "@tanstack/react-query"; import { useMemo } from "react"; +import { ChainType } from "@skip-go/client"; export const useFetchAllBalances = () => { const getAccount = useGetAccount(); - const { data: assets } = useAtomValue(skipAssetsAtom); - const setSkipAllBalancesRequest = useSetAtom(skipAllBalancesRequestAtom.debouncedValueAtom); + const { data: assets, isFetched: assetsFetched } = useAtomValue(skipAssetsAtom); + const setSkipAllBalancesRequest = useSetAtom(skipAllBalancesRequestAtom); const { data: chains } = useAtomValue(skipChainsAtom); - const { chainId: evmChainId } = useAccount(); const allBalancesRequest = useMemo(() => { - return assets?.reduce((acc, asset) => { - const address = getAccount(asset.chainID)?.address; - const chain = chains?.find((chain) => chain.chainID === asset.chainID); - const isEVM = chain?.chainType === "evm"; - const evmAddress = (isEVM && evmChainId) ? getAccount(String(evmChainId))?.address : undefined; - if (isEVM && evmAddress) { - if (!acc[asset.chainID]) { - acc[asset.chainID] = { - address: evmAddress, - }; - } - } else if (address) { - if (!acc[asset.chainID]) { - acc[asset.chainID] = { - address: address, - }; - } + if (!assets || !chains) return {}; + + return assets.reduce((acc, asset) => { + const chain = chains.find((c) => c.chainID === asset.chainID); + const isEVM = chain?.chainType === ChainType.EVM; + const evmAddress = isEVM && evmChainId ? getAccount(String(evmChainId))?.address : undefined; + const addressToUse = evmAddress || getAccount(asset.chainID)?.address; + + if (addressToUse && !acc[asset.chainID]) { + acc[asset.chainID] = { address: addressToUse }; } + return acc; }, {} as Record); - }, [assets, getAccount, chains, evmChainId]); + }, [assets, chains, evmChainId, getAccount]); - // using useQuery to trigger the debouncedValueAtom useQuery({ queryKey: ["all-balances-request", allBalancesRequest], queryFn: () => { - if (allBalancesRequest) { - setSkipAllBalancesRequest({ - chains: allBalancesRequest || {} - }); + if (!allBalancesRequest || Object.keys(allBalancesRequest).length === 0) { + throw new Error("No balance request provided"); } - return null; - } + setSkipAllBalancesRequest({ chains: allBalancesRequest }); + return { chains: allBalancesRequest }; + }, + enabled: assetsFetched, }); }; diff --git a/packages/widget/src/hooks/useShowCosmosLedgerWarning.ts b/packages/widget/src/hooks/useShowCosmosLedgerWarning.ts index ef85cb25a..8ccf7be0a 100644 --- a/packages/widget/src/hooks/useShowCosmosLedgerWarning.ts +++ b/packages/widget/src/hooks/useShowCosmosLedgerWarning.ts @@ -23,6 +23,5 @@ export const useShowCosmosLedgerWarning = () => { sourceAsset?.chainID, chainType, getAccount, - knownEthermintLikeChains, ]) } diff --git a/packages/widget/src/state/balances.ts b/packages/widget/src/state/balances.ts index b8ab9f1ce..a22426137 100644 --- a/packages/widget/src/state/balances.ts +++ b/packages/widget/src/state/balances.ts @@ -2,83 +2,18 @@ import { BalanceRequest, BalanceResponse } from "@skip-go/client"; import { atomWithQuery } from "jotai-tanstack-query"; import { skipClient } from "./skipClient"; import { isInvertingSwapAtom } from "./swapPage"; +import { atom } from "jotai"; -import { atom, SetStateAction } from "jotai"; - -// making this internal because useWithDebounce is conflicting with the original atomWithDebounce in utils -function atomWithDebounce( - initialValue: T, - delayMilliseconds = 500, - shouldDebounceOnReset = false, -) { - const prevTimeoutAtom = atom | undefined>( - undefined, - ); - - // DO NOT EXPORT currentValueAtom as using this atom to set state can cause - // inconsistent state between currentValueAtom and debouncedValueAtom - const _currentValueAtom = atom(initialValue); - const isDebouncingAtom = atom(false); - - const debouncedValueAtom = atom( - initialValue, - (get, set, update: SetStateAction) => { - clearTimeout(get(prevTimeoutAtom)); - - const prevValue = get(_currentValueAtom); - const nextValue = - typeof update === "function" - ? (update as (prev: T) => T)(prevValue) - : update; - - const onDebounceStart = () => { - set(_currentValueAtom, nextValue); - set(isDebouncingAtom, true); - }; - - const onDebounceEnd = () => { - set(debouncedValueAtom, nextValue); - set(isDebouncingAtom, false); - }; - - onDebounceStart(); - - if (!shouldDebounceOnReset && nextValue === initialValue) { - onDebounceEnd(); - return; - } - - const nextTimeoutId = setTimeout(() => { - onDebounceEnd(); - }, delayMilliseconds); - - // set previous timeout atom in case it needs to get cleared - set(prevTimeoutAtom, nextTimeoutId); - }, - ); - - // exported atom setter to clear timeout if needed - const clearTimeoutAtom = atom(null, (get, set, _arg) => { - clearTimeout(get(prevTimeoutAtom)); - set(isDebouncingAtom, false); - }); - - return { - currentValueAtom: atom((get) => get(_currentValueAtom)), - isDebouncingAtom, - clearTimeoutAtom, - debouncedValueAtom, - }; -} - -export const skipAllBalancesRequestAtom = atomWithDebounce(undefined); +export const skipAllBalancesRequestAtom = atom(undefined); export const skipAllBalancesAtom = atomWithQuery((get) => { const skip = get(skipClient); - const params = get(skipAllBalancesRequestAtom.debouncedValueAtom); + const params = get(skipAllBalancesRequestAtom); const isInvertingSwap = get(isInvertingSwapAtom); - const enabled = Object.values(params ?? {}).length > 0 && !isInvertingSwap; + const enabled = params && + Object.keys(params).length > 0 && + !isInvertingSwap; return { queryKey: ["skipBalances", params], @@ -86,13 +21,12 @@ export const skipAllBalancesAtom = atomWithQuery((get) => { if (!params) { throw new Error("No balance request provided"); } - return skip.balances(params); }, enabled, refetchInterval: 1000 * 60, retry: 1, gcTime: 0, - placeholderData: (previousData: BalanceResponse | undefined) => previousData + placeholderData: (prevData: BalanceResponse | undefined) => prevData }; -}); +}); \ No newline at end of file diff --git a/packages/widget/src/utils/atomWithDebounce.ts b/packages/widget/src/utils/atomWithDebounce.ts index 2f9c6539c..dfe66496e 100644 --- a/packages/widget/src/utils/atomWithDebounce.ts +++ b/packages/widget/src/utils/atomWithDebounce.ts @@ -1,7 +1,7 @@ import { atom } from "jotai"; import { SetStateAction } from "react"; -export function atomWithDebounce(delayMilliseconds = 500) { +export function atomWithDebounce(delayMilliseconds = 250) { const prevTimeoutAtom = atom( undefined ); From 73e70810031a787d8067267e1aa45440075c6245 Mon Sep 17 00:00:00 2001 From: Todd Kao Date: Tue, 17 Dec 2024 12:16:28 -0500 Subject: [PATCH 03/24] feat: widget callbacks (#558) --- .changeset/nice-rivers-mix.md | 5 + examples/nextjs/src/app/page.tsx | 45 ++++++- .../src/hooks/useCreateCosmosWallets.tsx | 127 ++++++++++++++---- .../widget/src/hooks/useCreateEvmWallets.tsx | 46 +++++-- .../src/hooks/useCreateSolanaWallets.tsx | 46 +++++-- packages/widget/src/state/callbacks.ts | 40 ++++++ .../widget/src/state/swapExecutionPage.ts | 22 ++- packages/widget/src/widget/Widget.tsx | 24 +++- 8 files changed, 301 insertions(+), 54 deletions(-) create mode 100644 .changeset/nice-rivers-mix.md create mode 100644 packages/widget/src/state/callbacks.ts diff --git a/.changeset/nice-rivers-mix.md b/.changeset/nice-rivers-mix.md new file mode 100644 index 000000000..e35bf858d --- /dev/null +++ b/.changeset/nice-rivers-mix.md @@ -0,0 +1,5 @@ +--- +'@skip-go/widget': patch +--- + +Add callback functions for wallet connect/disconnect and transaction broadcasted / completed / failed diff --git a/examples/nextjs/src/app/page.tsx b/examples/nextjs/src/app/page.tsx index b3270d857..41053dc04 100644 --- a/examples/nextjs/src/app/page.tsx +++ b/examples/nextjs/src/app/page.tsx @@ -50,15 +50,48 @@ export default function Home() { }} > {/* widget will cohere to the parent container's width */} -
+
{ + console.log( + 'wallet connected', + walletName, + chainIdToAddressMap, + chainId, + address + ); + }} + onWalletDisconnected={({ walletName, chainType }) => { + console.log('wallet disconnected', walletName, chainType); + }} + onTransactionBroadcasted={({ txHash, chainId, explorerLink }) => { + console.log( + 'transaction broadcasted', + txHash, + chainId, + explorerLink + ); + }} + onTransactionFailed={({ error }) => { + console.log('transaction failed', error); + }} + onTransactionComplete={({ txHash, chainId, explorerLink }) => { + console.log( + 'transaction complete', + txHash, + chainId, + explorerLink + ); + }} />
diff --git a/packages/widget/src/hooks/useCreateCosmosWallets.tsx b/packages/widget/src/hooks/useCreateCosmosWallets.tsx index 2a9fe5ca6..d91ea0e01 100644 --- a/packages/widget/src/hooks/useCreateCosmosWallets.tsx +++ b/packages/widget/src/hooks/useCreateCosmosWallets.tsx @@ -21,20 +21,19 @@ import { walletConnectMainnetChainIdsInitialConnect, walletMainnetChainIdsInitialConnect, } from "@/constants/graz"; -import { - mainnetChains, - getChainInfo -} from "@/constants/chains"; +import { mainnetChains, getChainInfo } from "@/constants/chains"; import { useCallback } from "react"; import { skipAssetsAtom, skipChainsAtom } from "@/state/skipClient"; import { sourceAssetAtom } from "@/state/swapPage"; import { isMobile } from "@/utils/os"; +import { callbacksAtom } from "@/state/callbacks"; export const useCreateCosmosWallets = () => { const { data: chains } = useAtomValue(skipChainsAtom); const { data: assets } = useAtomValue(skipAssetsAtom); const setCosmosWallet = useSetAtom(cosmosWalletAtom); const setSourceAsset = useSetAtom(sourceAssetAtom); + const callbacks = useAtomValue(callbacksAtom); const { walletType: currentWallet } = useActiveWalletType(); const { data: accounts, isConnected } = useAccount({ @@ -46,17 +45,29 @@ export const useCreateCosmosWallets = () => { const createCosmosWallets = useCallback( (chainID?: string) => { const mobile = isMobile(); - const browserWallets = [WalletType.KEPLR, WalletType.LEAP, WalletType.COSMOSTATION, WalletType.XDEFI, WalletType.STATION, WalletType.VECTIS, WalletType.WALLETCONNECT]; + const browserWallets = [ + WalletType.KEPLR, + WalletType.LEAP, + WalletType.COSMOSTATION, + WalletType.XDEFI, + WalletType.STATION, + WalletType.VECTIS, + WalletType.WALLETCONNECT, + ]; const mobileCosmosWallets = [WalletType.WC_KEPLR_MOBILE]; - const availableMobileCosmosWallets = [...browserWallets, ...mobileCosmosWallets].filter((x) => { + const availableMobileCosmosWallets = [ + ...browserWallets, + ...mobileCosmosWallets, + ].filter((x) => { try { return Boolean(getWallet(x)); - } - catch (_error) { + } catch (_error) { return false; } }); - const cosmosWallets = mobile ? availableMobileCosmosWallets : browserWallets; + const cosmosWallets = mobile + ? availableMobileCosmosWallets + : browserWallets; const isPenumbra = chainID?.includes("penumbra"); if (isPenumbra && !mobile) { @@ -101,6 +112,10 @@ export const useCreateCosmosWallets = () => { }, disconnect: async () => { console.error("Prax wallet is not supported"); + callbacks?.onWalletDisconnected?.({ + walletName: "Prax Wallet", + chainType: ChainType.Cosmos, + }); }, isWalletConnected: false, }; @@ -110,21 +125,21 @@ export const useCreateCosmosWallets = () => { const wallets: MinimalWallet[] = []; for (const wallet of cosmosWallets) { - const isWC = isWalletConnect(wallet); const walletInfo = getCosmosWalletInfo(wallet); const initialChainIds = ( - isWC ? walletConnectMainnetChainIdsInitialConnect : wallet === WalletType.KEPLR - ? keplrMainnetChainIdsInitialConnect - : walletMainnetChainIdsInitialConnect + isWC + ? walletConnectMainnetChainIdsInitialConnect + : wallet === WalletType.KEPLR + ? keplrMainnetChainIdsInitialConnect + : walletMainnetChainIdsInitialConnect ).filter( (x) => chains ?.filter((z) => z.chainType === ChainType.Cosmos) .map((y) => y.chainID) - .includes(x) && - mainnetChains.map((c) => c.chainId).includes(x) + .includes(x) && mainnetChains.map((c) => c.chainId).includes(x) ); const connectEco = async () => { try { @@ -136,9 +151,13 @@ export const useCreateCosmosWallets = () => { } catch (e) { const error = e as Error; if (error?.message?.toLowerCase().includes("no chain info")) { - throw new Error(`There is no chain info for ${chainID}. Please add the ${chainID} chain to your wallet`); + throw new Error( + `There is no chain info for ${chainID}. Please add the ${chainID} chain to your wallet` + ); } - if (error?.message?.toLowerCase().includes("no ethereum public key")) { + if ( + error?.message?.toLowerCase().includes("no ethereum public key") + ) { await connect({ chainId: keplrMainnetWithoutEthermintChainIdsInitialConnect, walletType: wallet, @@ -161,7 +180,9 @@ export const useCreateCosmosWallets = () => { } catch (e) { const error = e as Error; if (error?.message?.toLowerCase().includes("no chain info")) { - throw new Error(`There is no chain info for ${chainID}. Please add ${chainID} chain in your wallet`); + throw new Error( + `There is no chain info for ${chainID}. Please add ${chainID} chain in your wallet` + ); } throw e; } @@ -190,13 +211,22 @@ export const useCreateCosmosWallets = () => { } else { await connectSingleChainId(); } - setCosmosWallet({ walletName: wallet, chainType: ChainType.Cosmos }); + setCosmosWallet({ + walletName: wallet, + chainType: ChainType.Cosmos, + }); } else if (currentAddress && isConnected && signRequired) { - setCosmosWallet({ walletName: wallet, chainType: ChainType.Cosmos }); + setCosmosWallet({ + walletName: wallet, + chainType: ChainType.Cosmos, + }); } if (!currentAddress) { if (!mobile && !isWC) { - if (!chainInfo) throw new Error(`getAddress: Chain info not found for chainID: ${chainID}`); + if (!chainInfo) + throw new Error( + `getAddress: Chain info not found for chainID: ${chainID}` + ); await getWallet(wallet).experimentalSuggestChain(chainInfo); } const isInitialConnect = initialChainIds.includes(chainID); @@ -205,7 +235,10 @@ export const useCreateCosmosWallets = () => { } else { await connectSingleChainId(); } - setCosmosWallet({ walletName: wallet, chainType: ChainType.Cosmos }); + setCosmosWallet({ + walletName: wallet, + chainType: ChainType.Cosmos, + }); } const address = (await getWallet(wallet).getKey(chainID)) .bech32Address; @@ -221,7 +254,10 @@ export const useCreateCosmosWallets = () => { }, connectEco: async () => { await connectEco(); - setCosmosWallet({ walletName: wallet, chainType: ChainType.Cosmos }); + setCosmosWallet({ + walletName: wallet, + chainType: ChainType.Cosmos, + }); const chain = chains?.find((x) => x.chainID === "cosmoshub-4"); const asset = assets?.find((x) => x.denom === "uatom"); setSourceAsset({ @@ -245,12 +281,35 @@ export const useCreateCosmosWallets = () => { const isInitialConnect = initialChainIds.includes(chainID); if (isInitialConnect) { await connectEco(); + + const chainIdToAddressMap = Object.fromEntries( + await Promise.all( + initialChainIds.map(async (chainId) => [ + chainId, + (await getWallet(wallet).getKey(chainId)).bech32Address, + ]) + ) + ); + + callbacks?.onWalletConnected?.({ + walletName: wallet, + chainIdToAddressMap, + }); } else { await connectSingleChainId(); + const address = (await getWallet(wallet).getKey(chainID)) + .bech32Address; + callbacks?.onWalletConnected?.({ + walletName: wallet, + chainId: chainID, + address, + }); } - setCosmosWallet({ walletName: wallet, chainType: ChainType.Cosmos }); + setCosmosWallet({ + walletName: wallet, + chainType: ChainType.Cosmos, + }); connectEco(); - // TODO: onWalletConnected } catch (error) { console.error(error); throw error; @@ -260,6 +319,10 @@ export const useCreateCosmosWallets = () => { disconnect: async () => { await disconnectAsync(); setCosmosWallet(undefined); + callbacks?.onWalletDisconnected?.({ + walletName: wallet, + chainType: ChainType.Cosmos, + }); }, isWalletConnected: currentWallet === wallet, isAvailable: (() => { @@ -270,13 +333,23 @@ export const useCreateCosmosWallets = () => { } catch (_error) { return false; } - })() + })(), }; wallets.push(minimalWallet); } return wallets; }, - [accounts, assets, chains, currentWallet, disconnectAsync, isConnected, setCosmosWallet, setSourceAsset] + [ + accounts, + callbacks, + assets, + chains, + currentWallet, + disconnectAsync, + isConnected, + setCosmosWallet, + setSourceAsset, + ] ); return { createCosmosWallets }; diff --git a/packages/widget/src/hooks/useCreateEvmWallets.tsx b/packages/widget/src/hooks/useCreateEvmWallets.tsx index 34347c716..e7feab2fa 100644 --- a/packages/widget/src/hooks/useCreateEvmWallets.tsx +++ b/packages/widget/src/hooks/useCreateEvmWallets.tsx @@ -8,12 +8,15 @@ import { createPublicClient, http } from "viem"; import { sei } from "viem/chains"; import { useAccount, useConnect, useConnectors } from "wagmi"; import { ChainType } from "@skip-go/client"; +import { callbacksAtom } from "@/state/callbacks"; export const useCreateEvmWallets = () => { const { data: chains } = useAtomValue(skipChainsAtom); const { data: assets } = useAtomValue(skipAssetsAtom); const setSourceAsset = useSetAtom(sourceAssetAtom); const setEvmWallet = useSetAtom(evmWalletAtom); + const callbacks = useAtomValue(callbacksAtom); + const { connector: currentEvmConnector, address: evmAddress, @@ -59,10 +62,16 @@ export const useCreateEvmWallets = () => { connector, chainId: Number(chainID), }); - setEvmWallet({ walletName: connector.id, chainType: ChainType.EVM }); + setEvmWallet({ + walletName: connector.id, + chainType: ChainType.EVM, + }); return res.accounts[0]; } else if (evmAddress && isEvmConnected && signRequired) { - setEvmWallet({ walletName: connector.id, chainType: ChainType.EVM }); + setEvmWallet({ + walletName: connector.id, + chainType: ChainType.EVM, + }); } return evmAddress; }; @@ -90,7 +99,10 @@ export const useCreateEvmWallets = () => { } try { await connectAsync({ connector, chainId: Number(1) }); - setEvmWallet({ walletName: connector.id, chainType: ChainType.EVM }); + setEvmWallet({ + walletName: connector.id, + chainType: ChainType.EVM, + }); const chain = chains?.find((x) => x.chainID === "1"); const asset = assets?.find((x) => x.denom === "ethereum-native"); setSourceAsset({ @@ -98,7 +110,12 @@ export const useCreateEvmWallets = () => { chainName: chain?.chainName, ...asset, }); - // TODO: onWalletConnected + const account = await connector.getAccounts(); + callbacks?.onWalletConnected?.({ + walletName: connector.name, + chainId: chain?.chainID, + address: account[0], + }); } catch (error) { console.error(error); throw error; @@ -120,8 +137,16 @@ export const useCreateEvmWallets = () => { } try { await connectAsync({ connector, chainId: Number(chainID) }); - setEvmWallet({ walletName: connector.id, chainType: ChainType.EVM }); - // TODO: onWalletConnected + setEvmWallet({ + walletName: connector.id, + chainType: ChainType.EVM, + }); + const account = await connector.getAccounts(); + callbacks?.onWalletConnected?.({ + walletName: connector.name, + chainId: chainID, + address: account[0], + }); } catch (error) { console.error(error); throw error; @@ -139,7 +164,10 @@ export const useCreateEvmWallets = () => { disconnect: async () => { await currentConnector?.disconnect(); setEvmWallet(undefined); - // TODO: onWalletDisconnected + callbacks?.onWalletDisconnected?.({ + walletName: connector.name, + chainType: ChainType.EVM, + }); }, isWalletConnected: connector.id === currentEvmConnector?.id, }; @@ -149,7 +177,8 @@ export const useCreateEvmWallets = () => { connector.name.toLowerCase().includes("keplr") || connector.name.toLowerCase().includes("leap") || connector.name.toLowerCase().includes("cosmostation"); - minimalWallet.walletPrettyName = `${connector.name} ${isMultiChainWallet ? "(EVM)" : ""}`; + minimalWallet.walletPrettyName = `${connector.name} ${isMultiChainWallet ? "(EVM)" : "" + }`; minimalWallet.getAddress = async ({ signRequired, context }) => { const address = await evmGetAddress({ signRequired, context }); const publicClient = createPublicClient({ @@ -176,6 +205,7 @@ export const useCreateEvmWallets = () => { return wallets; }, [ + callbacks, assets, chainId, chains, diff --git a/packages/widget/src/hooks/useCreateSolanaWallets.tsx b/packages/widget/src/hooks/useCreateSolanaWallets.tsx index 75e1f8d43..87dcc0c3f 100644 --- a/packages/widget/src/hooks/useCreateSolanaWallets.tsx +++ b/packages/widget/src/hooks/useCreateSolanaWallets.tsx @@ -5,13 +5,15 @@ import { MinimalWallet, svmWalletAtom } from "@/state/wallets"; import { useAtomValue, useSetAtom } from "jotai"; import { useCallback } from "react"; import { ChainType } from "@skip-go/client"; - +import { callbacksAtom } from "@/state/callbacks"; export const useCreateSolanaWallets = () => { const { data: chains } = useAtomValue(skipChainsAtom); const { data: assets } = useAtomValue(skipAssetsAtom); const setSourceAsset = useSetAtom(sourceAssetAtom); const setSvmWallet = useSetAtom(svmWalletAtom); + const callbacks = useAtomValue(callbacksAtom); + const createSolanaWallets = useCallback(() => { const wallets: MinimalWallet[] = []; @@ -27,7 +29,14 @@ export const useCreateSolanaWallets = () => { try { await wallet.connect(); setSvmWallet({ walletName: wallet.name, chainType: ChainType.SVM }); - // TODO: onWalletConnected + const chain = chains?.find((x) => x.chainID === "solana"); + + const address = wallet.publicKey?.toBase58(); + callbacks?.onWalletConnected?.({ + walletName: wallet.name, + chainId: chain?.chainID, + address, + }); } catch (error) { console.error(error); throw error; @@ -38,14 +47,22 @@ export const useCreateSolanaWallets = () => { await wallet.connect(); setSvmWallet({ walletName: wallet.name, chainType: ChainType.SVM }); const chain = chains?.find((x) => x.chainID === "solana"); - const asset = assets?.find((x) => x.denom.toLowerCase() === - "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v".toLowerCase()); + const asset = assets?.find( + (x) => + x.denom.toLowerCase() === + "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v".toLowerCase() + ); setSourceAsset({ chainID: chain?.chainID, chainName: chain?.chainName, - ...asset + ...asset, + }); + const address = wallet.publicKey?.toBase58(); + callbacks?.onWalletConnected?.({ + walletName: wallet.name, + chainId: chain?.chainID, + address, }); - // TODO: onWalletConnected } catch (error) { console.error(error); throw error; @@ -56,12 +73,18 @@ export const useCreateSolanaWallets = () => { const isConnected = wallet.connected; if (!isConnected) { await wallet.connect(); - setSvmWallet({ walletName: wallet.name, chainType: ChainType.SVM }); + setSvmWallet({ + walletName: wallet.name, + chainType: ChainType.SVM, + }); } const address = wallet.publicKey; if (!address) throw new Error("No address found"); if (signRequired) { - setSvmWallet({ walletName: wallet.name, chainType: ChainType.SVM }); + setSvmWallet({ + walletName: wallet.name, + chainType: ChainType.SVM, + }); } return address.toBase58(); } catch (error) { @@ -71,7 +94,10 @@ export const useCreateSolanaWallets = () => { disconnect: async () => { await wallet.disconnect(); setSvmWallet(undefined); - // TODO: onWalletDisconnected + callbacks?.onWalletDisconnected?.({ + walletName: wallet.name, + chainType: ChainType.SVM, + }); }, isWalletConnected: wallet.connected, isAvailable: wallet.readyState === "Installed", @@ -79,6 +105,6 @@ export const useCreateSolanaWallets = () => { wallets.push(minimalWallet); } return wallets; - }, [assets, chains, setSourceAsset, setSvmWallet]); + }, [callbacks, assets, chains, setSourceAsset, setSvmWallet]); return { createSolanaWallets }; }; diff --git a/packages/widget/src/state/callbacks.ts b/packages/widget/src/state/callbacks.ts new file mode 100644 index 000000000..53b609658 --- /dev/null +++ b/packages/widget/src/state/callbacks.ts @@ -0,0 +1,40 @@ +import { ChainType } from "@skip-go/client"; +import { atom } from "jotai"; + +export type OnWalletConnectedProps = { + walletName: string; + chainIdToAddressMap?: Record; + chainId?: string; + address?: string; +}; + +export type OnWalletDisconnectedProps = { + walletName: string; + chainType?: ChainType; +}; + +export type OnTransactionBroadcastedProps = { + txHash: string; + chainId: string; + explorerLink: string; +}; + +export type OnTransactionCompleteProps = { + txHash: string; + chainId: string; + explorerLink: string; +}; + +export type OnTransactionFailedProps = { + error: string; +}; + +export type Callbacks = { + onWalletConnected?: (props: OnWalletConnectedProps) => void; + onWalletDisconnected?: (props: OnWalletDisconnectedProps) => void; + onTransactionBroadcasted?: (props: OnTransactionBroadcastedProps) => void; + onTransactionComplete?: (props: OnTransactionCompleteProps) => void; + onTransactionFailed?: (props: OnTransactionFailedProps) => void; +}; + +export const callbacksAtom = atom(); diff --git a/packages/widget/src/state/swapExecutionPage.ts b/packages/widget/src/state/swapExecutionPage.ts index f656e439e..2fe8b39a5 100644 --- a/packages/widget/src/state/swapExecutionPage.ts +++ b/packages/widget/src/state/swapExecutionPage.ts @@ -12,6 +12,7 @@ import { atomWithStorageNoCrossTabSync } from "@/utils/misc"; import { isUserRejectedRequestError } from "@/utils/error"; import { CosmosGasAmount, swapSettingsAtom } from "./swapPage"; import { createExplorerLink } from "@/utils/explorerLink"; +import { callbacksAtom } from "./callbacks"; type ValidatingGasBalanceData = { chainID?: string; @@ -70,6 +71,7 @@ export const setSwapExecutionStateAtom = atom(null, (get, set) => { const { data: route } = get(skipRouteAtom); const { data: chains } = get(skipChainsAtom); const transactionHistory = get(transactionHistoryAtom); + const callbacks = get(callbacksAtom); const transactionHistoryIndex = transactionHistory.length; if (!route) return; @@ -97,11 +99,29 @@ export const setSwapExecutionStateAtom = atom(null, (get, set) => { const chain = chains?.find((chain) => chain.chainID === txInfo.chainID); const explorerLink = createExplorerLink({ chainID: txInfo.chainID, chainType: chain?.chainType, txHash: txInfo.txHash }); set(setTransactionDetailsAtom, { ...txInfo, explorerLink, status: undefined }, transactionHistoryIndex); + callbacks?.onTransactionBroadcasted?.({ + chainId: txInfo.chainID, + txHash: txInfo.txHash, + explorerLink: explorerLink ?? "", + }); + }, + onTransactionCompleted: async (chainId: string, txHash: string) => { + const chain = chains?.find((chain) => chain.chainID === chainId); + const explorerLink = createExplorerLink({ chainID: chainId, chainType: chain?.chainType, txHash }); + callbacks?.onTransactionComplete?.({ + chainId, + txHash, + explorerLink: explorerLink ?? "", + }); }, onTransactionSigned: async () => { set(setOverallStatusAtom, "pending"); }, onError: (error: unknown, transactionDetailsArray) => { + callbacks?.onTransactionFailed?.({ + error: (error as Error)?.message, + }); + const lastTransaction = transactionDetailsArray?.[transactionDetailsArray?.length - 1]; if (isUserRejectedRequestError(error)) { set(errorAtom, { @@ -221,7 +241,7 @@ export const fallbackGasAmountFnAtom = atom((get) => { const defaultGasAmount = Math.ceil(isSwapChain ? CosmosGasAmount.SWAP : CosmosGasAmount.DEFAULT); // Special case for carbon-1 - if (chainId === 'carbon-1') { + if (chainId === "carbon-1") { return CosmosGasAmount.CARBON; } diff --git a/packages/widget/src/widget/Widget.tsx b/packages/widget/src/widget/Widget.tsx index 5e05e1ea3..d5360a0f2 100644 --- a/packages/widget/src/widget/Widget.tsx +++ b/packages/widget/src/widget/Widget.tsx @@ -32,6 +32,7 @@ import { registerModals } from "@/modals/registerModals"; import { WalletProviders } from "@/providers/WalletProviders"; import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; import { WalletConnect, walletConnectAtom } from "@/state/wallets"; +import { Callbacks, callbacksAtom } from "@/state/callbacks"; export type WidgetRouteConfig = Omit< RouteConfig, @@ -59,7 +60,8 @@ export type WidgetProps = { } & Pick< NewSkipClientOptions, "apiUrl" | "chainIdsToAffiliates" | "endpointOptions" ->; +> & + Callbacks; type NewSwapVenueRequest = { name: string; @@ -149,6 +151,7 @@ const useInitWidget = (props: WidgetProps) => { const setChainFilter = useSetAtom(chainFilterAtom); const setOnlyTestnets = useSetAtom(onlyTestnetsAtom); const setWalletConnect = useSetAtom(walletConnectAtom); + const setCallbacks = useSetAtom(callbacksAtom); const mergedSkipClientConfig: SkipClientOptions = useMemo(() => { const { apiUrl, chainIdsToAffiliates, endpointOptions } = props; @@ -215,13 +218,30 @@ const useInitWidget = (props: WidgetProps) => { if (props.walletConnect) { setWalletConnect(props.walletConnect); } + const callbacks = { + onWalletConnected: props.onWalletConnected, + onWalletDisconnected: props.onWalletDisconnected, + onTransactionBroadcasted: props.onTransactionBroadcasted, + onTransactionComplete: props.onTransactionComplete, + onTransactionFailed: props.onTransactionFailed, + }; + + if (Object.values(callbacks).some((callback) => callback !== undefined)) { + setCallbacks(callbacks); + } }, [ + props, props.filter, + props.onTransactionBroadcasted, + props.onTransactionComplete, + props.onTransactionFailed, + props.onWalletConnected, + props.onWalletDisconnected, props.onlyTestnet, props.routeConfig, - props.settings, props.settings?.slippage, props.walletConnect, + setCallbacks, setChainFilter, setOnlyTestnets, setRouteConfig, From 0d6759f5d950c2c338e73146c754a31c9eb7fb84 Mon Sep 17 00:00:00 2001 From: Todd Kao Date: Tue, 17 Dec 2024 12:18:17 -0500 Subject: [PATCH 04/24] [FRE-1330] Don't auto focus / pop up keyboard on asset selection on mobile (#578) --- .../AssetAndChainSelectorModalSearchInput.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/widget/src/modals/AssetAndChainSelectorModal/AssetAndChainSelectorModalSearchInput.tsx b/packages/widget/src/modals/AssetAndChainSelectorModal/AssetAndChainSelectorModalSearchInput.tsx index 322da0563..7993c70f4 100644 --- a/packages/widget/src/modals/AssetAndChainSelectorModal/AssetAndChainSelectorModalSearchInput.tsx +++ b/packages/widget/src/modals/AssetAndChainSelectorModal/AssetAndChainSelectorModalSearchInput.tsx @@ -10,6 +10,7 @@ import { Text } from "@/components/Typography"; import { Asset } from "@skip-go/client"; import { StyledAssetLabel } from "@/pages/SwapPage/SwapPageAssetChainInput"; import { useIsMobileScreenSize } from "@/hooks/useIsMobileScreenSize"; +import { isMobile } from "@/utils/os"; type AssetAndChainSelectorModalSearchInputProps = { onSearch: (term: string) => void; @@ -30,6 +31,7 @@ export const AssetAndChainSelectorModalSearchInput = ({ }: AssetAndChainSelectorModalSearchInputProps) => { const theme = useTheme(); const isMobileScreenSize = useIsMobileScreenSize(); + const mobile = isMobile(); const inputRef = useRef(null); const handleSearch = useCallback( @@ -42,10 +44,12 @@ export const AssetAndChainSelectorModalSearchInput = ({ ); useEffect(() => { + if (mobile) return; + if (isMobileScreenSize) return; setTimeout(() => { inputRef.current?.focus(); }, 0); - }, [asset]); + }, [asset, isMobileScreenSize, mobile]); return ( @@ -65,6 +69,7 @@ export const AssetAndChainSelectorModalSearchInput = ({ Date: Wed, 18 Dec 2024 02:55:50 +0700 Subject: [PATCH 05/24] feat: inject wallet (#586) --- .changeset/calm-deers-sniff.md | 5 + .changeset/curvy-windows-flash.md | 5 + examples/nextjs/src/app/injected/page.tsx | 164 ++++++++++++++++++ examples/nextjs/src/app/layout.tsx | 3 +- examples/nextjs/window.d.ts | 7 + packages/client/src/client-types.ts | 4 +- packages/client/src/codegen/chains.json | 2 +- packages/widget/package.json | 3 +- .../src/components/RenderWalletList.tsx | 9 +- packages/widget/src/devMode/loadWidget.tsx | 15 -- .../widget/src/hooks/useAutoSetAddress.ts | 29 +++- .../widget/src/hooks/useFetchAllBalances.ts | 49 ++++-- packages/widget/src/hooks/useGetAccount.ts | 14 ++ .../ConnectedWalletModal.tsx | 5 +- .../SetAddressModal/SetAddressModal.tsx | 8 +- .../pages/SwapPage/ConnectedWalletContent.tsx | 2 +- packages/widget/src/state/skipClient.ts | 11 ++ .../widget/src/state/swapExecutionPage.ts | 2 +- packages/widget/src/state/wallets.ts | 7 +- packages/widget/src/widget/Widget.tsx | 148 ++-------------- packages/widget/src/widget/useInitWidget.ts | 152 ++++++++++++++++ yarn.lock | 22 +-- 22 files changed, 472 insertions(+), 194 deletions(-) create mode 100644 .changeset/calm-deers-sniff.md create mode 100644 .changeset/curvy-windows-flash.md create mode 100644 examples/nextjs/src/app/injected/page.tsx create mode 100644 examples/nextjs/window.d.ts create mode 100644 packages/widget/src/widget/useInitWidget.ts diff --git a/.changeset/calm-deers-sniff.md b/.changeset/calm-deers-sniff.md new file mode 100644 index 000000000..b6bd04a9b --- /dev/null +++ b/.changeset/calm-deers-sniff.md @@ -0,0 +1,5 @@ +--- +'@skip-go/widget': patch +--- + +ability to pass signer and account diff --git a/.changeset/curvy-windows-flash.md b/.changeset/curvy-windows-flash.md new file mode 100644 index 000000000..fbffcb1ba --- /dev/null +++ b/.changeset/curvy-windows-flash.md @@ -0,0 +1,5 @@ +--- +'@skip-go/client': patch +--- + +update getCosmosSigner type diff --git a/examples/nextjs/src/app/injected/page.tsx b/examples/nextjs/src/app/injected/page.tsx new file mode 100644 index 000000000..a30a74191 --- /dev/null +++ b/examples/nextjs/src/app/injected/page.tsx @@ -0,0 +1,164 @@ +'use client'; + +import React, { useState } from "react"; +import { Widget } from "@skip-go/widget"; +import { PhantomWalletAdapter } from "@solana/wallet-adapter-phantom"; +import { createWalletClient, custom, Account } from "viem"; +import { mainnet, optimism, polygon, base, arbitrum, avalanche } from 'viem/chains'; + +type ChainId = string; +type Address = string; + +export default function Home() { + // This state holds a mapping from chain IDs to connected addresses. + const [accountMap, setAccountMap] = useState>(); + + /** + * Helper to update the accountMap with a given chainId and address. + */ + const updateAccount = (chainId: ChainId, address: Address) => { + setAccountMap((prev) => ({ + ...prev, + [chainId]: address, + })); + }; + + /** + * Connect to an EVM-compatible wallet (e.g., MetaMask). + */ + const connectEthereum = async () => { + const accounts = (await window.ethereum.request({ + method: "eth_requestAccounts", + })) as string[]; + const evmAddress = accounts[0]; + // Ethereum mainnet chain ID is "1" + updateAccount("1", evmAddress); + }; + /** + * Connect to a Solana wallet using Phantom Wallet Adapter. + */ + const connectSolana = async () => { + const phantom = new PhantomWalletAdapter(); + await phantom.connect(); + const publicKey = phantom.publicKey?.toBase58(); + if (!publicKey) throw new Error("No public key found"); + updateAccount("solana", publicKey); + }; + + /** + * Connect to Cosmos-based chains using Keplr. + */ + const connectCosmos = async () => { + const chainIds = ["cosmoshub-4", "osmosis-1"]; + + // Request access to the specified Cosmos chains from Keplr + await window.keplr?.enable(chainIds); + + // Fetch and store addresses for each chain + await Promise.all( + chainIds.map(async (chainId) => { + const keyInfo = await window.keplr?.getKey(chainId); + if (keyInfo && keyInfo.bech32Address) { + updateAccount(chainId, keyInfo.bech32Address); + } + }) + ); + }; + + /** + * Get an offline signer for a given Cosmos chain using Keplr. + */ + const getCosmosSigner = async (chainId: string) => { + if (window.keplr?.getOfflineSigner === undefined) { + throw new Error("Keplr extension not installed"); + } + const offlineSigner = await window.keplr?.getOfflineSigner(chainId); + return offlineSigner; + } + + + /** + * Get an EVM-compatible signer by creating a viem wallet client. + */ + const chainConfigMap: Record = { + "1": mainnet, + "10": optimism, + "137": polygon, + "8453": base, + "42161": arbitrum, + "43114": avalanche, + }; + + const getEVMSigner = async (targetChainId: string) => { + const ethereum = window.ethereum; + if (!ethereum) { + throw new Error("MetaMask not installed"); + } + + const accounts = (await ethereum.request({ + method: "eth_requestAccounts", + })) as Account[]; + + const evmAddress = accounts?.[0]; + if (!evmAddress) { + throw new Error("No EVM accounts found"); + } + + const selectedChain = chainConfigMap[targetChainId] ?? mainnet; + + const client = createWalletClient({ + account: evmAddress as Account, + chain: selectedChain, + transport: custom(window.ethereum), + }); + + return client; + }; + + /** + * Get an SVM-compatible signer using Phantom. + */ + const getSVMSigner = async () => { + const phantom = new PhantomWalletAdapter(); + await phantom.connect(); + return phantom; + }; + + return ( +
+

Connected addresses:

+
    + {Object.entries(accountMap ?? {}).map(([chainId, address]) => ( +
  • + {chainId}: {address} +
  • + ))} +
+
+ + + +
+ getEVMSigner("1")} // or "1", "10", etc. + getSVMSigner={getSVMSigner} + /> +
+ ); +} diff --git a/examples/nextjs/src/app/layout.tsx b/examples/nextjs/src/app/layout.tsx index 4c35f5c92..86dcd06e1 100644 --- a/examples/nextjs/src/app/layout.tsx +++ b/examples/nextjs/src/app/layout.tsx @@ -2,8 +2,7 @@ import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "Skip Go Example", }; export default function RootLayout({ diff --git a/examples/nextjs/window.d.ts b/examples/nextjs/window.d.ts new file mode 100644 index 000000000..479e6f31e --- /dev/null +++ b/examples/nextjs/window.d.ts @@ -0,0 +1,7 @@ +import { Window as KeplrWindow } from "@keplr-wallet/types"; + +declare global { + interface Window extends KeplrWindow { + ethereum: import("@metamask/providers").MetaMaskInpageProvider; + } +} diff --git a/packages/client/src/client-types.ts b/packages/client/src/client-types.ts index 397a1ec4f..91ff9d0ff 100644 --- a/packages/client/src/client-types.ts +++ b/packages/client/src/client-types.ts @@ -1,4 +1,4 @@ -import { Coin, OfflineAminoSigner } from '@cosmjs/amino'; +import { OfflineAminoSigner } from '@cosmjs/amino'; import { GeneratedType, OfflineDirectSigner, @@ -37,7 +37,7 @@ export type Gas = { /** Signer Getters */ export interface SignerGetters { getEVMSigner?: (chainID: string) => Promise; - getCosmosSigner?: (chainID: string) => Promise; + getCosmosSigner?: (chainID: string) => Promise; getSVMSigner?: () => Promise; } diff --git a/packages/client/src/codegen/chains.json b/packages/client/src/codegen/chains.json index da4c3196f..0da96ab98 100644 --- a/packages/client/src/codegen/chains.json +++ b/packages/client/src/codegen/chains.json @@ -1 +1 @@ -[{"chain_id":"acre_9052-1","fees":{"fee_tokens":[{"denom":"aacre","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.acre.nodestake.top","provider":"nodestake"},{"address":"https://rpc-acre.synergynodes.com","provider":"Synergy Nodes"},{"address":"https://acrechain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.acre.tcnetwork.io","provider":"TC Network"},{"address":"https://mainnet-acre-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://acred-rpc.staketab.org:443","provider":"Staketab"}]}},{"chain_id":"agoric-3","fees":{"fee_tokens":[{"denom":"ubld","low_gas_price":0.03,"average_gas_price":0.05,"high_gas_price":0.07},{"denom":"uist","low_gas_price":0.0034,"average_gas_price":0.007,"high_gas_price":0.02}]},"apis":{"rpc":[{"address":"https://main.rpc.agoric.net:443"},{"address":"https://agoric-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.agoric.nodestake.top","provider":"NodeStake"},{"address":"https://agoric.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://agoric-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-agoric-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://agoric-rpc.0base.dev","provider":"0base.vc"},{"address":"https://agoric-rpc.stakeangle.com","provider":"StakeAngle"},{"address":"https://agoric-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc.agoric.stakewith.us","provider":"StakeWithUs"},{"address":"https://rpc-agoric-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://agoric-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.agoric.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"aioz_168-1","fees":{"fee_tokens":[{"denom":"attoaioz","fixed_min_gas_price":7000000000,"low_gas_price":7000000000,"average_gas_price":7000000000,"high_gas_price":10000000000}]},"apis":{"rpc":[{"address":"https://rpc-dataseed.aioz.network:443","provider":"AIOZ Network"}]}},{"chain_id":"akashnet-2","fees":{"fee_tokens":[{"denom":"uakt","fixed_min_gas_price":0.00025,"low_gas_price":0.00025,"average_gas_price":0.0025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://rpc.akash.forbole.com:443","provider":"forbole"},{"address":"https://rpc-akash.ecostake.com:443","provider":"ecostake"},{"address":"https://rpc.lavenderfive.com:443/akash","provider":"Lavender.Five Nodes"},{"address":"https://akash-rpc.polkachu.com","provider":"Polkachu"},{"address":"http://akash.c29r3.xyz:80/rpc","provider":"c29r3"},{"address":"https://akash-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://akash-mainnet-rpc.cosmonautstakes.com:443","provider":"Cosmonaut Stakes"},{"address":"https://akash-rpc.w3coins.io","provider":"w3coins"},{"address":"https://akash-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://akash.declab.pro:26601","provider":"Decloud Nodes Lab"},{"address":"https://rpc.akash.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"althea_258432-1","fees":{"fee_tokens":[{"denom":"aalthea","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":100000000000,"high_gas_price":300000000000}]},"apis":{"rpc":[{"address":"https://nodes.chandrastation.com/rpc/althea/","provider":"Chandra Station"},{"address":"https://althea.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/althea","provider":"Lavender.Five Nodes 🐝"}]}},{"chain_id":"andromeda-1","fees":{"fee_tokens":[{"denom":"uandr","low_gas_price":0.03,"average_gas_price":0.05,"high_gas_price":0.075}]},"apis":{"rpc":[{"address":"https://rpc.andromeda-1.andromeda.aviaone.com","provider":"AviaOne 🟒"},{"address":"https://andromeda.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://andromeda.rpc.nodex.one","provider":"nodex"},{"address":"https://andro.rpc.m.stavr.tech/","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/andromeda","provider":"Lavender.Five Nodes 🐝"},{"address":"https://andromeda-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://andromeda-rpc.stakerhouse.com:443","provider":"StakerHouse"},{"address":"https://andromeda-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://andromeda-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://andromeda.rpc.kjnodes.com","provider":"kjnodes.com πŸ¦„"},{"address":"andromeda-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"rpc-andromeda.blockval.io","provider":"Blockval"},{"address":"https://andromeda.rpc.liveraven.net","provider":"LiveRaveN"}]}},{"chain_id":"archway-1","fees":{"fee_tokens":[{"denom":"aarch","fixed_min_gas_price":140000000000,"low_gas_price":196000000000,"average_gas_price":225400000000,"high_gas_price":254800000000}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.archway.io","provider":"Archway Foundation"},{"address":"https://archway-mainnet-archive.allthatnode.com:26657","provider":"All That Node"},{"address":"https://m-archway.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc-1.archway.nodes.guru","provider":"Nodes.Guru"},{"address":"https://archway.rpc.silknodes.io/","provider":"Silk Nodes"},{"address":"https://archway.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-archway.cryptech.com.ua","provider":"cryptech"},{"address":"https://rpc.archway.nodestake.top","provider":"NodeStake"},{"address":"https://rpc-archway.theamsolutions.info","provider":"AM Solutions"},{"address":"https://archway-rpc.w3coins.io","provider":"w3coins"},{"address":"https://m-archway.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc.lavenderfive.com:443/archway","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-archway.mms.team","provider":"MMS"},{"address":"https://rpc-archway.mzonder.com","provider":"MZONDER"},{"address":"https://rpc.archway.lgns.net","provider":"Luganodes"},{"address":"https://archway-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://archway-rpc.0base.dev","provider":"0base.vc"},{"address":"https://archway-mainnet.rpc.l0vd.com","provider":"L0vd.com"},{"address":"https://archway-rpc.openbitlab.com","provider":"openbitlab"},{"address":"https://rpc-archway.mzonder.com","provider":"MZONDER"},{"address":"https://rpc-archway.mainnet.validatrium.club","provider":"Validatrium"},{"address":"https://rpc.archway.stakeup.tech","provider":"StakeUp"},{"address":"https://archway-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.archway.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc-archway.luckyfriday.io/","provider":"GlobalStake"},{"address":"https://archway-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://archway-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"arkh","fees":{"fee_tokens":[{"denom":"arkh","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://asc-dataseed.arkhadian.com/","provider":"arkhnetwork"},{"address":"https://arkh_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"mantle-1","fees":{"fee_tokens":[{"denom":"umntl","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.assetmantle.one","provider":"AssetMantle"},{"address":"https://assetmantle-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.assetmantle.nodestake.top","provider":"NodeStake"},{"address":"https://rpc-assetmantle-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.mantle.paranorm.pro:443","provider":"paranorm"},{"address":"https://assetmantle-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://assetmantle-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"atomone-1","fees":{"fee_tokens":[{"denom":"uatone","fixed_min_gas_price":0.001,"low_gas_price":0.006,"average_gas_price":0.006,"high_gas_price":0.009}]},"apis":{"rpc":[{"address":"https://atomone-rpc.allinbits.com:443","provider":"AllInBits"},{"address":"https://atomone-rpc.cogwheel.zone","provider":"Cogwheel βš™οΈ"},{"address":"https://atomone.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://rpc-atomone.nodeist.net","provider":"Nodeist"},{"address":"https://rpc-atomone-1.cros-nest.com:443","provider":"crosnest"},{"address":"https://community.nuxian-node.ch:6797/atomone/trpc","provider":"PRO Delegators"},{"address":"https://atomone-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://atomone_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://atomone-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://atomone-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"aura_6322-2","fees":{"fee_tokens":[{"denom":"uaura","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://rpc.aura.network/","provider":"Aura Network Foundation"},{"address":"https://m-aura.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://aura.rpc.m.stavr.tech:11047","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://aura-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://aura.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://mainnet-aura-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.lavenderfive.com:443/aura","provider":"Lavender.Five Nodes 🐝"},{"address":"https://aura-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc.aura.safeblock.space","provider":"Safe Block"},{"address":"https://rpc.aura.silentvalidator.com","provider":"silent"},{"address":"https://rpc-aura.mms.team","provider":"MMS"},{"address":"https://aura-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://aura-rpc.palamar.io","provider":"Palamar"},{"address":"https://aura.rpc.srv.stakr.space","provider":"STAKR.space"},{"address":"https://aura-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://aura-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"axelar-dojo-1","fees":{"fee_tokens":[{"denom":"uaxl","fixed_min_gas_price":0.007,"low_gas_price":0.007,"average_gas_price":0.007,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc-axelar.imperator.co:443","provider":"Imperator.co"},{"address":"https://axelar-rpc.quickapi.com:443","provider":"chainlayer"},{"address":"https://rpc-axelar.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://axelar-rpc.pops.one:443","provider":"p-ops"},{"address":"https://axelar-rpc.qubelabs.io:443","provider":"Qubelabs"},{"address":"https://rpc-1.axelar.nodes.guru:443","provider":"nodes.guru"},{"address":"https://rpc-axelar-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://axelar-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://axelar.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://rpc.axelar.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://axelar-rpc.validatrium.club","provider":"Validatrium"},{"address":"https://rpc-axelar.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://axelar-rpc.quantnode.tech/","provider":"QuantNode"},{"address":"https://axelar-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://axelar-rpc.rockrpc.net/","provider":"RockawayX Infra"},{"address":"https://axelar-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc-axelar-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://axelar-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://axelar-rpc.w3coins.io","provider":"w3coins"},{"address":"https://axelar-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://axelar.drpc.org","provider":"dRPC"}]}},{"chain_id":"laozi-mainnet","fees":{"fee_tokens":[{"denom":"uband","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.005}]},"apis":{"rpc":[{"address":"http://rpc.laozi1.bandchain.org:80","provider":"bandprotocol"},{"address":"https://rpc-bandchain-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://band-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://bandchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://band.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-band-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-band.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://band-rpc.w3coins.io","provider":"w3coins"},{"address":"https://bandprotocol-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://public.stakewolle.com/cosmos/bandchain/rpc","provider":"Stakewolle"},{"address":"https://rpc.band.bronbro.io/","provider":"Bro_n_Bro"},{"address":"https://rpc.band.roomit.xyz/","provider":"Roomit"},{"address":"https://band-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"beezee-1","fees":{"fee_tokens":[{"denom":"ubze","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.getbze.com","provider":"AlphaTeam"},{"address":"https://rpc-1.getbze.com","provider":"AlphaTeam"},{"address":"https://rpc-2.getbze.com","provider":"AlphaTeam"},{"address":"https://beezee_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bitbadges-1","fees":{"fee_tokens":[{"denom":"ubadge","fixed_min_gas_price":0,"low_gas_price":0.00025,"average_gas_price":0.0025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"http://134.122.12.165:26657","provider":"bitbadges"},{"address":"https://bitbadges_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bitcanna-1","fees":{"fee_tokens":[{"denom":"ubcna","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.bitcanna.io/","provider":"bitcanna"},{"address":"https://bcna-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://bitcanna-rpc.panthea.eu/","provider":"Panthea EU"},{"address":"https://rpc.bitcanna.sgtstake.com/","provider":"SGTstake"},{"address":"https://bitcanna.rpc.m.anode.team/","provider":"AlxVoy ⚑ ANODE.TEAM"},{"address":"https://bitcanna.rpc.m.stavr.tech/","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-bcna.kjinc.io/","provider":"KJINC.io"},{"address":"https://mainnet-bitcanna-rpc.konsortech.xyz/","provider":"KonsorTech"},{"address":"https://bitcanna.rpc.kjnodes.com/","provider":"kjnodes"},{"address":"https://bitcanna-rpc.genznodes.dev/","provider":"genznodes"},{"address":"https://rpc.bitcanna-1.bitcanna.aviaone.com/","provider":"AVIAONE 🟒"},{"address":"https://rpc.bitcanna-mainnet.hexnodes.one/","provider":"Hexnodes"},{"address":"https://rpc.bitcanna.citizenweb3.com/","provider":"Citizen Web3"},{"address":"https://bitcanna-mainnet.rpc.l0vd.com/","provider":"L0vd.com"},{"address":"https://bitcanna-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.bitcanna.safeblock.space","provider":"Safe Block"},{"address":"https://bitcanna.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://rpc.bitcanna.indonode.net/","provider":"Indonode"},{"address":"https://rpc-bitcanna.mms.team:443","provider":"MMS"},{"address":"https://bitcanna-rpc.validatornode.com","provider":"ValidatorNode"},{"address":"https://bitcanna.rpc.nodex.one","provider":"NodeX Emperor ⚑ Bitcanna"},{"address":"https://bcna.rpc.arcturian.tech/","provider":"Arcturian Tech"},{"address":"https://rpc.bitcanna.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://bitcanna-rpc.bluestake.net","provider":"BlueStake"},{"address":"https://rpc-bitcanna.cryptech.com.ua","provider":"CrypTech"},{"address":"https://bitcanna-rpc.kalia.network/","provider":"Kalia Network"},{"address":"https://bitcanna.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://bitcanna_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bitsong-2b","fees":{"fee_tokens":[{"denom":"ubtsg","fixed_min_gas_price":0,"low_gas_price":3,"average_gas_price":10,"high_gas_price":20}]},"apis":{"rpc":[{"address":"https://rpc-bitsong-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.explorebitsong.com","provider":"stake.systems"},{"address":"https://bitsong-rpc.validatrium.club","provider":"Validatrium"},{"address":"https://rpc.bitsong.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.bitsong.quokkastake.io","provider":"🐹 Quokka Stake"},{"address":"https://rpc-bitsong.starsquid.io","provider":"Starsquid"},{"address":"https://rpc-bitsong.architectnodes.com","provider":"Architect Nodes"},{"address":"http://bitsong.statesync.nodersteam.com:11657","provider":"[NODERS]TEAM"},{"address":"https://rpc.bitsong.safeblock.space","provider":"Safe Block"},{"address":"https://bitsong.tdrsys.com:2053","provider":"TdrSys"},{"address":"https://bitsong-rpc.panthea.eu","provider":"Panthea EU"},{"address":"https://rpc.bitsong.mathnodes.com","provider":"MathNodes"},{"address":"https://bitsong-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://bitsong-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://bitsong.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"blockx_19191-1","apis":{"rpc":[{"address":"https://rpc-blockx.nodeist.net","provider":"Nodeist"},{"address":"https://blockx_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bluechip-2","fees":{"fee_tokens":[{"denom":"ubluechip","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[]}},{"chain_id":"bluzelle-9","fees":{"fee_tokens":[{"denom":"ubnt","fixed_min_gas_price":0.002,"low_gas_price":0.002,"average_gas_price":0.002,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://a.client.sentry.net.bluzelle.com:26657","provider":"Bluzelle"},{"address":"https://b.client.sentry.net.bluzelle.com:26657","provider":"Bluzelle"},{"address":"https://c.client.sentry.net.bluzelle.com:26657","provider":"Bluzelle"},{"address":"https://bluzelle_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bostrom","fees":{"fee_tokens":[{"denom":"boot","low_gas_price":0,"average_gas_price":0,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.bostrom.cybernode.ai","provider":"cybercongress"},{"address":"https://rpc-cyber-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.cyber.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"bouachain","fees":{"fee_tokens":[{"denom":"ubouacoin","fixed_min_gas_price":0,"low_gas_price":0.0006,"average_gas_price":0.012,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.bouachain.com","provider":"BouaValidator"}]}},{"chain_id":"canto_7700-1","fees":{"fee_tokens":[{"denom":"acanto","fixed_min_gas_price":1000000000000,"low_gas_price":1000000000000,"average_gas_price":2000000000000,"high_gas_price":3000000000000}]},"apis":{"rpc":[{"address":"https://rpc.canto.nodestake.top","provider":"NodeStake"},{"address":"https://canto-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.canto.silentvalidator.com/","provider":"silent"},{"address":"https://canto.gravitychain.io:26657","provider":"Althea"},{"address":"https://canto-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-canto.kewrnode.com","provider":"Kewr Node"}]}},{"chain_id":"carbon-1","fees":{"fee_tokens":[{"denom":"swth","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1,"high_gas_price":1,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"usc","fixed_min_gas_price":0,"low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.0001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"bnb.1.6.773edb","fixed_min_gas_price":0,"low_gas_price":1000000,"average_gas_price":1000000,"high_gas_price":1000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"bneo.1.14.e2e5f6","fixed_min_gas_price":0,"low_gas_price":0.0015,"average_gas_price":0.0015,"high_gas_price":0.0015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"busd.1.6.754a80","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"cglp.1.19.1698d3","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"cgt/1","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"eth.1.19.c3b805","fixed_min_gas_price":0,"low_gas_price":100000,"average_gas_price":100000,"high_gas_price":100000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"eth.1.2.942d87","fixed_min_gas_price":0,"low_gas_price":100000,"average_gas_price":100000,"high_gas_price":100000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C","fixed_min_gas_price":0,"low_gas_price":0.0035,"average_gas_price":0.0035,"high_gas_price":0.0035,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","fixed_min_gas_price":0,"low_gas_price":0.0000075,"average_gas_price":0.0000075,"high_gas_price":0.0000075,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5","fixed_min_gas_price":0,"low_gas_price":0.00005,"average_gas_price":0.00005,"high_gas_price":0.00005,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5","fixed_min_gas_price":0,"low_gas_price":0.00032,"average_gas_price":0.00032,"high_gas_price":0.00032,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364","fixed_min_gas_price":0,"low_gas_price":300000000,"average_gas_price":300000000,"high_gas_price":300000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118","fixed_min_gas_price":0,"low_gas_price":0.0006,"average_gas_price":0.0006,"high_gas_price":0.0006,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5","fixed_min_gas_price":0,"low_gas_price":0.00015,"average_gas_price":0.00015,"high_gas_price":0.00015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","fixed_min_gas_price":0,"low_gas_price":0.0000075,"average_gas_price":0.0000075,"high_gas_price":0.0000075,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93","fixed_min_gas_price":0,"low_gas_price":0.00015,"average_gas_price":0.00015,"high_gas_price":0.00015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861","fixed_min_gas_price":0,"low_gas_price":200000000,"average_gas_price":200000000,"high_gas_price":200000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701","fixed_min_gas_price":0,"low_gas_price":0.00001,"average_gas_price":0.00001,"high_gas_price":0.00001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C","fixed_min_gas_price":0,"low_gas_price":0.00001,"average_gas_price":0.00001,"high_gas_price":0.00001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","fixed_min_gas_price":0,"low_gas_price":0.00015,"average_gas_price":0.00015,"high_gas_price":0.00015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"usdc.1.2.343151","fixed_min_gas_price":0,"low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.0001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"usdc.1.6.53ff75","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"zil.1.18.1a4a06","fixed_min_gas_price":0,"low_gas_price":6000,"average_gas_price":6000,"high_gas_price":6000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}}]},"apis":{"rpc":[{"address":"https://tm-api.carbon.network","provider":"switcheo-labs"},{"address":"https://rpc.lavenderfive.com:443/carbon","provider":"Lavender.Five Nodes 🐝"},{"address":"https://carbon-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.carbon.blockhunters.org","provider":"BlockHunters"}]}},{"chain_id":"celestia","fees":{"fee_tokens":[{"denom":"utia","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://public-celestia-rpc.numia.xyz","provider":"Numia"},{"address":"https://celestia-rpc.mesa.newmetric.xyz","provider":"Newmetric"},{"address":"https://rpc.lunaroasis.net","provider":"Lunar Oasis"},{"address":"https://rpc.celestia.nodestake.top","provider":"NodeStake"},{"address":"https://rpc.lavenderfive.com:443/celestia","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-celestia-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-celestia.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"http://celestia.rpc.nodersteam.com:29657","provider":"[NODERS]TEAM"},{"address":"https://celestia.rpc.interchain.validao.xyz","provider":"ValiDAO"},{"address":"https://celestia-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://celestia.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://celestia.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://celestia-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-celestia.mzonder.com","provider":"MZONDER"},{"address":"https://celestia-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://rpc-celestia.theamsolutions.info","provider":"AM Solutions"},{"address":"https://celestia-mainnet-rpc.autostake.com:443","provider":"AutoStake | Delegate for StakeDrops"},{"address":"https://rpc.celestia.validatus.com","provider":"Validatus"},{"address":"https://celestia-rpc.sr20de.xyz","provider":"Sr20de"},{"address":"https://rpc-celestia-full.avril14th.org","provider":"Avril 14th"},{"address":"https://rpc.freshstaking.com/celestia","provider":"FreshSTAKING"},{"address":"https://celestia.cumulo.org.es/","provider":"Cumulo"},{"address":"https://celestia-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.celestia-app.bronbro.io","provider":"Bro_n_Bro"},{"address":"https://celestia-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc.celestia.citizenweb3.com","provider":"Citizen Web3"},{"address":"https://celestia-mainnet-rpc.itrocket.net","provider":"πŸš€ itrocket πŸš€"},{"address":"https://rpc.celestia.mainnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://celestia-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"}]}},{"chain_id":"perun-1","fees":{"fee_tokens":[{"denom":"uc4e","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.c4e.io/","provider":"C4E"},{"address":"https://rpc.c4e.mainnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://rpc.c4e.nodestake.top","provider":"NodeStake"},{"address":"https://c4e.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://chain4energy-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://c4e.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-c4e.takeshi.team","provider":"TAKESHI"},{"address":"https://rpc-c4e.mzonder.com","provider":"MZONDER"},{"address":"https://rpc.cros-nest.com/chain4energy","provider":"Crosnest"},{"address":"https://rpc.c4e.indonode.net","provider":"Indonode"},{"address":"https://c4e-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.c4e.silentvalidator.com","provider":"silent"},{"address":"http://rpc.c4e.stakeup.tech","provider":"StakeUp"},{"address":"https://chain4energy-rpc.stakeangle.com","provider":"StakeAngle"},{"address":"https://c4e-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://rpc-c4e.theamsolutions.info","provider":"AM Solutions"},{"address":"https://c4e.rpc.m.anode.team","provider":"AlxVoy ⚑ ANODE.TEAM"},{"address":"http://185.245.182.192:46657","provider":"Meerlabs"},{"address":"http://89.117.58.109:26657","provider":"medes"},{"address":"http://c4e.rpc.node75.org:26957","provider":"Pro-nodes75"},{"address":"http://164.68.125.243:26657","provider":"Smt Network"},{"address":"https://c4e-rpc.antrixy.org/","provider":"Antrix Validators"},{"address":"https://c4e.doubletop.tech/","provider":"DOUBLETOP"},{"address":"https://c4e-rpc.kalia.network:443","provider":"Kalia Network"},{"address":"http://38.242.220.64:16657","provider":"mahof"},{"address":"http://209.182.239.169:46657","provider":"SECARD"},{"address":"https://rpc.c4e.validatus.com:443","provider":"Validatus"},{"address":"https://rpc-m-c4e.apeironnodes.com:443","provider":"Apeiron Nodes"},{"address":"http://rpc-c4e.cryptech.com.ua:443","provider":"Cryptech"},{"address":"http://37.60.240.43:46657","provider":"NakoTurk"},{"address":"https://chain4energy_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"cheqd-mainnet-1","fees":{"fee_tokens":[{"denom":"ncheq","fixed_min_gas_price":25,"low_gas_price":50,"average_gas_price":75,"high_gas_price":100}]},"apis":{"rpc":[{"address":"https://rpc.cheqd.net","provider":"cheqd"},{"address":"https://rpc.lavenderfive.com:443/cheqd","provider":"Lavender.Five Nodes"},{"address":"https://cheqd.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-cheqd-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.cheqd.nodestake.top","provider":"NodeStake"},{"address":"https://rpc-cheqd.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://cheqd-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-cheqd.blockval.io","provider":"Blockval"},{"address":"https://public.stakewolle.com/cosmos/cheqd/rpc","provider":"Stakewolle"},{"address":"https://cheq-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://cheqd-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"chihuahua-1","fees":{"fee_tokens":[{"denom":"uhuahua","fixed_min_gas_price":0,"low_gas_price":500,"average_gas_price":1250,"high_gas_price":2000}]},"apis":{"rpc":[{"address":"https://rpc.chihuahua.wtf","provider":"Chihuahua"},{"address":"https://rpc-chihuahua.ecostake.com","provider":"ecostake"},{"address":"https://chihua.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://chihuahua-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-chihuahua-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/chihuahua","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.huahua.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://chihuahua-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://rpc-chihuahua.pupmos.network","provider":"PUPMØS"},{"address":"https://chihuahua-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://chihuahua-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.chihuahua.validatus.com","provider":"Validatus"},{"address":"https://chihuahua-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://chihuahua.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"}]}},{"chain_id":"chimba","fees":{"fee_tokens":[{"denom":"ucmba","fixed_min_gas_price":0.25,"low_gas_price":1,"average_gas_price":5,"high_gas_price":10}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.chimba.ooo","provider":"chimba"}]}},{"chain_id":"cifer-2","fees":{"fee_tokens":[{"denom":"ucif","fixed_min_gas_price":0.0025,"low_gas_price":1,"average_gas_price":5,"high_gas_price":10}]},"apis":{"rpc":[{"address":"http://34.128.114.243:26657","provider":"Cifer"}]}},{"chain_id":"cnho_stables-1","fees":{"fee_tokens":[{"denom":"ucnho","fixed_min_gas_price":0.000005,"low_gas_price":0.000001,"average_gas_price":0.00001,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://rpc.cnho.io","provider":"CNHO Stables"},{"address":"https://cnhostables_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"comdex-1","fees":{"fee_tokens":[{"denom":"ucmdx","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.comdex.one","provider":"comdex"},{"address":"https://comdex-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://comdex.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.comdex.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.lavenderfive.com:443/comdex","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-comdex.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://comdex-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://comdex-rpc.w3coins.io","provider":"w3coins"},{"address":"https://comdex-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://comdex-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-comdex-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://comdex-rpc.validatornode.com","provider":"ValidatorNode"},{"address":"https://rpc-comdex.blockval.io","provider":"Blockval"},{"address":"https://comdex-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://comdex-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"commercio-3","fees":{"fee_tokens":[{"denom":"ucommercio"}]},"apis":{"rpc":[{"address":"https://rpc-mainnet.commercio.network"}]}},{"chain_id":"centauri-1","fees":{"fee_tokens":[{"denom":"ppica","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-composable-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://composable-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://picasso-rpc.cogwheel.zone:443","provider":"Cogwheel βš™οΈ"},{"address":"https://rpc.lavenderfive.com:443/picasso","provider":"Lavender.Five Nodes 🐝"},{"address":"https://composable-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://picasso-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://composable.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://picasso-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.centauri.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://composable.rpc.moonbridge.team","provider":"Moonbridge"},{"address":"https://rpc.composable.citizenweb3.com:443","provider":"Citizen Web3"},{"address":"https://composable.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"cvn_2032-1","fees":{"fee_tokens":[{"denom":"acvnt","fixed_min_gas_price":100000000,"low_gas_price":100000000,"average_gas_price":200000000,"high_gas_price":300000000}]},"apis":{"rpc":[{"address":"https://rpc.cvn.io/","provider":"cvn.io"},{"address":"https://conscious_mainnet_rpc.chain.whenmoonwhenlambo.money/","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"coreum-mainnet-1","fees":{"fee_tokens":[{"denom":"ucore","fixed_min_gas_price":0.03125,"low_gas_price":0.0625,"average_gas_price":0.0625,"high_gas_price":62.5}]},"apis":{"rpc":[{"address":"https://full-node.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-californium.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-curium.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-uranium.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://rpc-coreum.ecostake.com","provider":"ecostake"},{"address":"https://coreum.rpc.silknodes.io","provider":"Silk Nodes"},{"address":"https://coreum-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.m.core.solonation.io","provider":"#SoloNation"},{"address":"https://coreum-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://coreum-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://public.stakewolle.com/cosmos/coreum/rpc","provider":"Stakewolle"},{"address":"https://coreum-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"cosmoshub-4","fees":{"fee_tokens":[{"denom":"uatom","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://cosmoshub.tendermintrpc.lava.build:443","provider":"Lava"},{"address":"https://cosmos-rpc.quickapi.com:443","provider":"Chainlayer"},{"address":"https://cosmos-rpc.onivalidator.com","provider":"Oni Validator ⛩️"},{"address":"https://rpc-cosmoshub.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc.lavenderfive.com:443/cosmoshub","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-cosmoshub.ecostake.com","provider":"ecostake"},{"address":"https://go.getblock.io/17515cb3ec0e43b7817f182e5de6066a","provider":"GetBlock RPC Nodes"},{"address":"https://rpc-cosmoshub.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-cosmoshub.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://cosmos-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://cosmos-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-cosmoshub-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-cosmoshub.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc.cosmos.dragonstake.io","provider":"DragonStake"},{"address":"https://cosmoshub.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://rpc.cosmos.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://cosmos-rpc.rockrpc.net","provider":"RockawayX Infra"},{"address":"http://rpc-cosmoshub.freshstaking.com:26657","provider":"FreshSTAKING"},{"address":"https://cosmos-rpc.easy2stake.com/","provider":"Easy 2 Stake"},{"address":"https://rpc.cosmos.nodestake.top","provider":"NodeStake"},{"address":"https://cosmos.rpc.silknodes.io","provider":"Silk Nodes"},{"address":"https://cosmos-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://cosmoshub.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.cosmoshub.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://rpc-cosmos-hub-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://cosmos-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-cosmoshub.mms.team","provider":"MMS"},{"address":"https://cosmos-rpc.tienthuattoan.com","provider":"TTT πŸ‡»πŸ‡³"},{"address":"https://community.nuxian-node.ch:6797/gaia/trpc","provider":"PRO Delegators"},{"address":"https://cosmos-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://cosmoshub-rpc.cosmosrescue.dev","provider":"cosmosrescue"},{"address":"https://cosmos.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"},{"address":"https://public.stakewolle.com/cosmos/cosmoshub/rpc","provider":"Stakewolle"},{"address":"https://rpc-cosmos.kewrnode.com","provider":"Kewr Node"},{"address":"https://rpc.cosmoshub-4.citizenweb3.com","provider":"Citizen Web3"},{"address":"https://cosmos-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://cosmos-hub.drpc.org","provider":"dRPC"},{"address":"https://cosmoshub-mainnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"coss-1","fees":{"fee_tokens":[{"denom":"ucoss","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"ucgas","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"ucias","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://coss-rpc.coss.ink","provider":"StellarGuardian"},{"address":"https://coss-rpc.cias.network","provider":"CelestialPhoenix"}]}},{"chain_id":"crescent-1","fees":{"fee_tokens":[{"denom":"ucre","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://mainnet.crescent.network:26657","provider":"crescent"},{"address":"https://crescent-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-crescent.pupmos.network","provider":"PUPMØS"},{"address":"https://crescent.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://crescent-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-crescent.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://rpc-crescent-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://crescent-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc.crescent.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"cronosmainnet_25-1","fees":{"fee_tokens":[{"denom":"basecro"}]},"apis":{"rpc":[{"address":"https://rpc.cronos.org/","provider":"cronos.org"},{"address":"https://cronos-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://cronos.drpc.org","provider":"dRPC"}]}},{"chain_id":"crypto-org-chain-mainnet-1","fees":{"fee_tokens":[{"denom":"basecro","low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.crypto.org/","provider":"cronos.org"},{"address":"https://rpc-cryptoorgchain-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-cryptoorgchain.ecostake.com","provider":"ecostake"},{"address":"https://cryptocom-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://cryptocom-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-cryptoorg.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://cro-chain-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"mainnet-3","fees":{"fee_tokens":[{"denom":"udec","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://poseidon.mainnet.decentr.xyz","provider":"decentr"},{"address":"https://rpc.decentr.chaintools.tech/","provider":"ChainTools"},{"address":"https://decentr.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://decentr-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc-dcntr.nodine.id/","provider":"Nodine.ID"},{"address":"https://rpc-decentr.mms.team/","provider":"MMS"}]}},{"chain_id":"desmos-mainnet","fees":{"fee_tokens":[{"denom":"udsm","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.03,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.desmos.network","provider":"desmos"},{"address":"https://desmos-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://desmos-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc.desmos.tcnetwork.io","provider":"TC Network"},{"address":"https://rpc.desmos.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://desmos.declab.pro:26613","provider":"Decloud Nodes Lab"},{"address":"https://desmos-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"dhealth","fees":{"fee_tokens":[{"denom":"udhp","fixed_min_gas_price":0.01,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc.dhealth.com","provider":"dhealth"},{"address":"https://rpc.dhealth.nodestake.org","provider":"NodeStake"},{"address":"https://dhealth.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"}]}},{"chain_id":"vota-ash","fees":{"fee_tokens":[{"denom":"peaka","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":100000000000,"high_gas_price":100000000000}]},"apis":{"rpc":[{"address":"https://vota-rpc.dorafactory.org/","provider":"dorafactory"},{"address":"https://m-dora.rpc.utsa.tech","provider":"lesnik | UTSA"},{"address":"https://dora-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://doravota-mainnet-rpc.itrocket.net:443","provider":"ITRocket"}]}},{"chain_id":"dungeon-1","fees":{"fee_tokens":[{"denom":"udgn","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://rpc-dungeonchain.apeironnodes.com","provider":"ApeironNodes"},{"address":"https://rpc-archive-dungeonchain.apeironnodes.com","provider":"ApeironNodes (Archive)"},{"address":"https://dungeon_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"dydx-mainnet-1","fees":{"fee_tokens":[{"denom":"adydx","fixed_min_gas_price":12500000000,"low_gas_price":12500000000,"average_gas_price":12500000000,"high_gas_price":20000000000},{"denom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://dydx-rpc.kingnodes.com:443","provider":"Kingnodes πŸ‘‘"},{"address":"https://dydx-dao-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://dydx-mainnet-full-rpc.public.blastapi.io","provider":"Bware Labs"},{"address":"https://rpc.lavenderfive.com:443/dydx","provider":"Lavender.Five Nodes 🐝"},{"address":"https://dydx-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-dydx.ecostake.com:443","provider":"ecostake"},{"address":"https://rpc.dydx.nodestake.top:443","provider":"NodeStake"},{"address":"https://rpc-dydx.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://dydx-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-dydx.cros-nest.com:443","provider":"Crosnest"},{"address":"https://dydx-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://community.nuxian-node.ch:6797/dydx/trpc","provider":"PRO Delegators"},{"address":"https://dydx-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://dydx.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"}]}},{"chain_id":"dymension_1100-1","fees":{"fee_tokens":[{"denom":"adym","fixed_min_gas_price":5000000000,"low_gas_price":5000000000,"average_gas_price":5000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://dym-m-rpc.agoranodes.com","provider":"AgoraNodes"},{"address":"https://rpc.dymension.nodestake.org","provider":"NodeStake"},{"address":"http://dymension.mainnet.rpc.noders.team:42657","provider":"[NODERS]TEAM"},{"address":"https://dymension-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.lavenderfive.com:443/dymension","provider":"Lavender.Five Nodes 🐝"},{"address":"https://dymension-rpc.kynraze.com","provider":"Kynraze"},{"address":"https://m-dymension.rpc.utsa.tech","provider":"lesnik | UTSA"},{"address":"https://rpc-dymension.nodeist.net","provider":"Nodeist"},{"address":"https://dym.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://dym.rpc-archive.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.dymension.hexnodes.co","provider":"Hexnodes"},{"address":"https://dymension.rpc.kjnodes.com:443","provider":"kjnodes.com πŸ¦„"},{"address":"https://dymension-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://dymension-rpc.takeshi.team","provider":"TAKESHI"},{"address":"https://dymension-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.dymension.silentvalidator.com:443","provider":"silent"},{"address":"https://rpc-dymension.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://community.nuxian-node.ch:6797/dymension/trpc","provider":"PRO Delegators"},{"address":"https://dymension-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://dymension-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://dymension.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://rpc-dymension.hoodrun.io:443","provider":"HoodRun"},{"address":"https://dymension.0xwave.com:2053","provider":"Wave"},{"address":"https://archive.rpc.dym.cumulo.com.es:443","provider":"Cumulo"},{"address":"https://rpc.dymension.posthuman.digital","provider":"posthuman"},{"address":"https://rpc.dymension.node75.org","provider":"Pro-Nodes75"},{"address":"https://rpc.dymension.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://dymension-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc.mainnet.dymension.aviaone.com","provider":"AVIAONE 🟒"},{"address":"https://rpc.archive.dymension.mainnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://dymension.drpc.org","provider":"dRPC"}]}},{"chain_id":"dyson-mainnet-01","fees":{"fee_tokens":[{"denom":"dys","low_gas_price":0.0001,"average_gas_price":0.0002,"high_gas_price":0.0003}]},"apis":{"rpc":[{"address":"https://dys-tm.dysonprotocol.com:443","provider":"dysonprotocol"},{"address":"https://dyson-rpc.cogwheel.zone:443","provider":"cogwheel"}]}},{"chain_id":"echelon_3000-3","fees":{"fee_tokens":[{"denom":"aechelon","low_gas_price":10000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://ech01trpc.mindheartsoul.org","provider":"Mind Heart Soul"},{"address":"https://rpc.echjoker.lol","provider":"⚑ Echelon Joker βš› πŸƒ"}]}},{"chain_id":"emoney-3","fees":{"fee_tokens":[{"denom":"ungm","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"eeur","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"echf","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"enok","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"esek","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"edkk","low_gas_price":1,"average_gas_price":1,"high_gas_price":1}]},"apis":{"rpc":[{"address":"https://emoney.validator.network","provider":"e-Money"},{"address":"https://rpc-emoney-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.emoney.bh.rocks","provider":"BlockHunters 🎯"}]}},{"chain_id":"empowerchain-1","fees":{"fee_tokens":[{"denom":"umpwr","fixed_min_gas_price":0,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-empowerchain.ecostake.com:443","provider":"ecostake"},{"address":"https://empowerchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://empower.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"http://empw.rpc.m.stavr.tech:22057","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-empowerchain.mzonder.com:443","provider":"MZONDER"},{"address":"https://empower-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-empower.vinjan.xyz:443","provider":"vinjan"},{"address":"https://rpc.empower.nodestake.top","provider":"NodeStake"},{"address":"https://mainnet-empower-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://empower.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://rpc.empowerchain.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://empower.declab.pro:26607","provider":"Decloud Nodes Lab"},{"address":"https://empower-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://empower-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"epix_4242-1","fees":{"fee_tokens":[{"denom":"aepix","fixed_min_gas_price":1000000000000,"low_gas_price":1000000000000,"average_gas_price":2000000000000,"high_gas_price":3000000000000}]},"apis":{"rpc":[{"address":"https://epix.rpc.silknodes.io/","provider":"Silk Nodes"}]}},{"chain_id":"1","fees":{"fee_tokens":[{"denom":"wei","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"ethos_7003-1","fees":{"fee_tokens":[{"denom":"aRYT"}]},"apis":{"rpc":[{"address":"https://ethos-rpc.provable.dev:443/","provider":"laurel.provable"}]}},{"chain_id":"evmos_9001-2","fees":{"fee_tokens":[{"denom":"aevmos","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/evmos","provider":"Lavender.Five Nodes 🐝"},{"address":"https://tendermint.bd.evmos.org:26657","provider":"Blockdaemon"},{"address":"https://rpc-evmos-ia.cosmosia.notional.ventures:443","provider":"Notional"},{"address":"https://rpc.evmos.testnet.run","provider":"TestNetRun"},{"address":"https://rpc.evmos.nodestake.top","provider":"NodeStake"},{"address":"https://rpc.evmos.chaintools.tech/","provider":"ChainTools"},{"address":"https://evmos-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.evmos.silentvalidator.com/","provider":"silent"},{"address":"https://rpc.evmos.tcnetwork.io","provider":"TC Network"},{"address":"https://evmos.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://rpc-evmos.architectnodes.com","provider":"Architect Nodes"},{"address":"https://evmos-rpc.validatrium.club","provider":"Validatrium"},{"address":"https://evmos-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-evmos-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://evmos-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://rpc-evmos.validavia.me","provider":"Validavia"},{"address":"https://evmos-rpc.w3coins.io","provider":"w3coins"},{"address":"https://evmos-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://evmos.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://evmos-rpc.antrixy.org/","provider":"Antrix Validators"},{"address":"https://evmos-mainnet.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://rpc.evmos.validatus.com","provider":"Validatus"},{"address":"https://rpc.evmos.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.evmos.citizenweb3.com:443","provider":"Citizen Web3"},{"address":"https://evmos.drpc.org","provider":"dRPC"}]}},{"chain_id":"fetchhub-4","fees":{"fee_tokens":[{"denom":"afet","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc-fetchhub.fetch.ai:443","provider":"fetch.ai"},{"address":"https://rpc-fetchhub-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://fetch-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://fetchai-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://fetch-rpc.antrixy.org","provider":"Antrix"},{"address":"https://rpc-fetch.architectnodes.com","provider":"Architect Nodes"},{"address":"https://fetchhub-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://fetch-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://fetch-rpc.cosmosrescue.com","provider":"cosmosrescue"},{"address":"https://fetch-rpc.w3coins.io","provider":"w3coins"},{"address":"https://fetch-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://fetch-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://public.stakewolle.com/cosmos/fetchhub/rpc","provider":"Stakewolle"},{"address":"https://fetch.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://rpc.fetchhub-4.fetch.aviaone.com","provider":"AVIAONE 🟒"},{"address":"https://fetchai-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"finschia-2","fees":{"fee_tokens":[{"denom":"cony","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.015,"high_gas_price":0.015}]},"apis":{"rpc":[{"address":"https://finschia-rpc.finschia.io"}]}},{"chain_id":"colosseum-1","fees":{"fee_tokens":[{"denom":"ufct","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.15,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://lcd-mainnet.firmachain.dev:26657","provider":"FirmaChain"},{"address":"https://firma.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.firmachain.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.lavenderfive.com:443/firmachain","provider":"Lavender.Five Nodes 🐝"},{"address":"https://firmachain-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://firmachain.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://firmachain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"furya-1","fees":{"fee_tokens":[{"denom":"ufury","low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.5}]},"apis":{"rpc":[{"address":"https://furya-rpc.synergynodes.com","provider":"synergynodes"},{"address":"https://furya.rpc.nodeshub.online:443","provider":"nodeshub"}]}},{"chain_id":"fxcore","fees":{"fee_tokens":[{"denom":"FX","fixed_min_gas_price":4000000000000,"low_gas_price":4000000000000,"average_gas_price":4200000000000,"high_gas_price":5000000000000}]},"apis":{"rpc":[{"address":"https://fx-json.functionx.io","provider":"Function X"},{"address":"https://functionx.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"}]}},{"chain_id":"galaxy-1","fees":{"fee_tokens":[{"denom":"uglx","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[]}},{"chain_id":"wormchain","fees":{"fee_tokens":[{"denom":"utest","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://tncnt-eu-wormchain-main-01.rpc.p2p.world/","provider":"P2P"},{"address":"https://wormchain-rpc.quickapi.com/","provider":"ChainLayer"}]}},{"chain_id":"genesis_29-2","fees":{"fee_tokens":[{"denom":"el1","low_gas_price":51000000000,"average_gas_price":52000000000,"high_gas_price":53000000000}]},"apis":{"rpc":[{"address":"https://26657.genesisl1.org","provider":"GenesisL1"},{"address":"https://genesisl1-rpc.zenode.app","provider":"anodeofzen"}]}},{"chain_id":"gitopia","fees":{"fee_tokens":[{"denom":"ulore","fixed_min_gas_price":0.001,"low_gas_price":0.0012,"average_gas_price":0.0016,"high_gas_price":0.0024}]},"apis":{"rpc":[{"address":"https://gitopia-rpc.polkachu.com:443","provider":"polkachu"},{"address":"https://rpc.lavenderfive.com:443/gitopia","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.gitopia.nodestake.top:443","provider":"nodestake"},{"address":"https://gitopia-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://gitopia-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://m-gitopia.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://gitopia.rpc.m.stavr.tech:51057","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://gitopia-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://gitopia.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://gitopia-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.gitopia.silentvalidator.com","provider":"silent"},{"address":"https://gitopia-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://rpc-gitopia.mzonder.com","provider":"MZONDER"},{"address":"https://gitopia.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.gitopia.sgtstake.com","provider":"SGTstake"},{"address":"https://mainnet-gitopia-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.gitopia.roomit.xyz","provider":"Roomit"},{"address":"https://gitopia.rpc.moonbridge.team","provider":"Moonbridge"},{"address":"https://gitopia-rpc.stakeangle.com","provider":"StakeAngle"},{"address":"https://gitopia.rpc.m.anode.team","provider":"AlxVoy ⚑ ANODE.TEAM"},{"address":"https://gitopia.rpc.stakevillage.net","provider":"Stake Village"},{"address":"https://gitopia-rpc.enigma-validator.com/","provider":"Enigma"},{"address":"https://rpc.gitopia.tcnetwork.io/","provider":"TC Network"},{"address":"https://gitopia.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://rpc.gitopia.stakeup.tech/","provider":"StakeUp"},{"address":"https://gitopia-mainnet.rpc.l0vd.com:443","provider":"L0vd.com ❀️"},{"address":"https://gitopia-rpc.tothemars.network:443","provider":"ToTheMars"},{"address":"https://gitopia.declab.pro:26625","provider":"Decloud Nodes Lab"},{"address":"https://gitopia-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"govgen-1","fees":{"fee_tokens":[{"denom":"ugovgen","fixed_min_gas_price":0.001,"low_gas_price":0.006,"average_gas_price":0.006,"high_gas_price":0.009}]},"apis":{"rpc":[{"address":"https://rpc.govgen.io:443","provider":"AllInBits"},{"address":"https://rpc-govgen.sg-1.online/","provider":"SG-1"},{"address":"https://govgen.rpc.nodeshub.online:443","provider":"Nodes Hub"},{"address":"https://govgen-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.govgen.posthuman.digital:443","provider":"posthuman"},{"address":"https://rpc-govgen.kewrnode.com/","provider":"Kewr Node"}]}},{"chain_id":"gravity-bridge-3","fees":{"fee_tokens":[{"denom":"ugraviton","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.035},{"denom":"gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","low_gas_price":0.0002,"average_gas_price":0.0005,"high_gas_price":0.0008},{"denom":"gravity0xdAC17F958D2ee523a2206206994597C13D831ec7","low_gas_price":0.0002,"average_gas_price":0.0005,"high_gas_price":0.0008}]},"apis":{"rpc":[{"address":"https://gravitychain.io:26657","provider":"althea"},{"address":"http://gravity-bridge-1-08.nodes.amhost.net:26657","provider":"amhost"},{"address":"https://gravity-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-gravitybridge-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/gravitybridge","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.gravity.bh.rocks/","provider":"BlockHunters 🎯"},{"address":"https://gravity-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://gravity-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://rpc-gravity-bridge-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://gravity-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://gravity-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc.g-bridge.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.gravity-bridge-3.gravity.aviaone.com:443","provider":"AviaOne 🟒"}]}},{"chain_id":"haqq_11235-1","fees":{"fee_tokens":[{"denom":"aISLM","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.tm.haqq.network","provider":"Haqq"},{"address":"https://rpc.haqq.sh","provider":"kioqq"},{"address":"https://rpc.haqq.nodestake.top","provider":"NodeStake"},{"address":"https://haqq-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.lavenderfive.com:443/haqq","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-haqq.sr20de.xyz:443","provider":"Sr20de"},{"address":"https://haqq-rpc.palamar.io","provider":"Palamar"},{"address":"https://haqq-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://haqq.drpc.org","provider":"dRPC"}]}},{"chain_id":"helichain","fees":{"fee_tokens":[{"denom":"uheli","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://rpc.helichain.com/","provider":"HeliChain"}]}},{"chain_id":"highbury_710-1","fees":{"fee_tokens":[{"denom":"ufury","low_gas_price":0.05,"average_gas_price":0.1,"high_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://gridiron.furya.io","provider":"fanfury"}]}},{"chain_id":"humans_1089-1","fees":{"fee_tokens":[{"denom":"aheart","fixed_min_gas_price":250000000,"low_gas_price":80000000000,"average_gas_price":100000000000,"high_gas_price":160000000000}]},"apis":{"rpc":[{"address":"https://rpc.humans.nodestake.top","provider":"NodeStake"},{"address":"https://humans.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://humans.rpc.nodeshub.online","provider":"NodesHub"},{"address":"https://humans-mainnet-rpc.itrocket.net","provider":"itrocket"},{"address":"https://humans-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-humansai.thenop.io:443","provider":"TheNOP.io"},{"address":"https://humans-rpc.stakeangle.com/","provider":"StakeAngle"},{"address":"https://humans-rpc.anyvalid.com:26627","provider":"AnyValid"},{"address":"https://mainnet-humans-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"http://65.21.46.90:5657","provider":"PPNV Service"},{"address":"https://rpc.humans-mainnet.stake-take.com/","provider":"Stake-Take"},{"address":"https://rpc.humans.posthuman.digital","provider":"posthuman"},{"address":"https://humans-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://humans-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://humans-mainnet-rpc.cosmonautstakes.com","provider":"Cosmonaut Stakes πŸ€–"}]}},{"chain_id":"Antora","fees":{"fee_tokens":[{"denom":"idep","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"ixo-5","fees":{"fee_tokens":[{"denom":"uixo","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://proxies.sifchain.finance/api/impacthub-3/rpc","provider":"sifchain"},{"address":"https://impacthub.ixo.world/rpc/","provider":"ixoworld"},{"address":"https://ixo.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-ixo-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/impacthub","provider":"Lavender.Five Nodes 🐝"},{"address":"https://ixo-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://ixo-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://impacthub_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"imversed_5555555-1","fees":{"fee_tokens":[{"denom":"aimv","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[]}},{"chain_id":"injective-1","fees":{"fee_tokens":[{"denom":"inj","fixed_min_gas_price":160000000,"low_gas_price":500000000,"average_gas_price":700000000,"high_gas_price":900000000}]},"apis":{"rpc":[{"address":"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rpc.newmetric.xyz","provider":"NewMetric"},{"address":"https://rpc.injective.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://injective-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.lavenderfive.com:443/injective","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-injective-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://injective-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-injective.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc-injective-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://injective-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://injective-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://public.stakewolle.com/cosmos/injective/rpc","provider":"Stakewolle"},{"address":"https://rpc.injective.bronbro.io/","provider":"Bro_n_Bro"},{"address":"https://injective-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc-injective.ecostake.com","provider":"ecostake"},{"address":"https://rpc-injective.kewrnode.com","provider":"Kewr Node"}]}},{"chain_id":"int3face-1","fees":{"fee_tokens":[{"denom":"uint3","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc","fixed_min_gas_price":1e-7,"low_gas_price":1e-7,"average_gas_price":0.0000025,"high_gas_price":0.000004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch","fixed_min_gas_price":0.000001,"low_gas_price":0.000001,"average_gas_price":0.000025,"high_gas_price":0.00004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc","fixed_min_gas_price":0.000001,"low_gas_price":0.000001,"average_gas_price":0.000025,"high_gas_price":0.00004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.004}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.int3face.zone","provider":"Int3face.io"}]}},{"chain_id":"irishub-1","fees":{"fee_tokens":[{"denom":"uiris","low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc-irisnet-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-irisnet-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://irisnet-rpc.w3coins.io","provider":"w3coins"},{"address":"https://iris-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://iris-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://mainnet-iris-rpc.konsortech.xyz","provider":"KonsorTech"}]}},{"chain_id":"jackal-1","fees":{"fee_tokens":[{"denom":"ujkl","fixed_min_gas_price":0,"low_gas_price":0.002,"average_gas_price":0.002,"high_gas_price":0.02}]},"apis":{"rpc":[{"address":"https://rpc.jackalprotocol.com","provider":"Jackal Labs"},{"address":"https://rpc.lavenderfive.com:443/jackal","provider":"Lavender.Five Nodes 🐝"},{"address":"http://jkl.rpc.m.stavr.tech:11127","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://jackal.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://rpc.jackal.nodestake.top","provider":"NodeStake"},{"address":"https://rpc-jackal.nodeist.net","provider":"Nodeist"},{"address":"https://jackal-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://m-jackal.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc-jackal.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://jackal-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://jackal.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://jackal.rpc.silknodes.io","provider":"Silk Nodes"},{"address":"https://jackal.rpc.skynodejs.net","provider":"skynodejs"},{"address":"https://public.stakewolle.com/cosmos/jackal/rpc","provider":"Stakewolle"},{"address":"https://rpc.jackal.silentvalidator.com","provider":"silent"},{"address":"https://rpc.jackal.mathnodes.com","provider":"MathNodes"},{"address":"https://jackal-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://jackal-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"joltify_1729-1","fees":{"fee_tokens":[{"denom":"ujolt","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.joltify.io","provider":"joltify"},{"address":"https://joltify_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"juno-1","fees":{"fee_tokens":[{"denom":"ujuno","fixed_min_gas_price":0.075,"low_gas_price":0.075,"average_gas_price":0.1,"high_gas_price":0.125},{"denom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","fixed_min_gas_price":0.003,"low_gas_price":0.003,"average_gas_price":0.0035,"high_gas_price":0.004}]},"apis":{"rpc":[{"address":"https://rpc-juno.itastakers.com","provider":"itastakers"},{"address":"http://juno.rpc.m.stavr.tech:1067","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://juno-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.lavenderfive.com:443/juno","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-juno.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-juno.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://rpc-juno-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.juno.chaintools.tech/","provider":"ChainTools"},{"address":"https://juno-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://juno-rpc.icycro.org","provider":"IcyCRO 🧊"},{"address":"https://rpc.juno.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://juno-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://juno-rpc.reece.sh","provider":"Reecepbcups"},{"address":"https://juno-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"},{"address":"https://rpc-juno.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc-juno-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-juno.validavia.me","provider":"Validavia"},{"address":"https://juno-rpc.w3coins.io","provider":"w3coins"},{"address":"https://juno-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://juno-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc-juno.mainnet.validatrium.club:443","provider":"Validatrium"},{"address":"https://juno-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.juno.validatus.com","provider":"Validatus"},{"address":"https://rpc.juno.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://juno-rpc.cogwheel.zone","provider":"Cogwheel"},{"address":"https://juno.declab.pro:26610","provider":"Decloud Nodes Lab"},{"address":"https://juno.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://juno-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"kava_2222-10","fees":{"fee_tokens":[{"denom":"ukava","low_gas_price":0.05,"average_gas_price":0.1,"high_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://rpc.data.kava.io","provider":"kava"},{"address":"https://kava-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-kava-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://kava-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://kava-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc-kava-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://kava-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://kava.drpc.org","provider":"dRPC"}]}},{"chain_id":"kichain-2","fees":{"fee_tokens":[{"denom":"uxki","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc-mainnet.blockchain.ki","provider":"kifoundation"},{"address":"https://kichain-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-kichain-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://kichain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.kichain.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.lavenderfive.com:443/kichain","provider":"Lavender.Five Nodes 🐝"},{"address":"http://ki-chain.statesync.nodersteam.com:14657","provider":"[NODERS]TEAM"},{"address":"https://ki-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc.kichain-2.kichain.aviaone.com","provider":"AVIAONE 🟒"}]}},{"chain_id":"kima_network","fees":{"fee_tokens":[{"denom":"uKIMA","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.kima.network/","provider":"Kima Network"}]}},{"chain_id":"darchub","fees":{"fee_tokens":[{"denom":"udarc","fixed_min_gas_price":0,"low_gas_price":0.0001,"average_gas_price":0.001,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc-konstellation-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://konstellation-rpc.stakerhouse.com","provider":"StakerHouse"}]}},{"chain_id":"kaiyo-1","fees":{"fee_tokens":[{"denom":"ukuji","fixed_min_gas_price":0.0034,"low_gas_price":0.0034,"average_gas_price":0.0051,"high_gas_price":0.00681},{"denom":"factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk","fixed_min_gas_price":0.01186,"low_gas_price":0.01186,"average_gas_price":0.01779,"high_gas_price":0.02372},{"denom":"ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F","fixed_min_gas_price":0.0119,"low_gas_price":0.0119,"average_gas_price":0.01785,"high_gas_price":0.02379},{"denom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","fixed_min_gas_price":0.00129,"low_gas_price":0.00129,"average_gas_price":0.00193,"high_gas_price":0.00258},{"denom":"ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23","fixed_min_gas_price":0.01795,"low_gas_price":0.01795,"average_gas_price":0.02692,"high_gas_price":0.0359},{"denom":"ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07","fixed_min_gas_price":0.65943,"low_gas_price":0.65943,"average_gas_price":0.98915,"high_gas_price":1.31887},{"denom":"ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10","fixed_min_gas_price":160416396197,"low_gas_price":160416396197,"average_gas_price":240624594296,"high_gas_price":320832792394},{"denom":"ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5","fixed_min_gas_price":0.02689,"low_gas_price":0.02689,"average_gas_price":0.04034,"high_gas_price":0.05379},{"denom":"ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986","fixed_min_gas_price":0.01495,"low_gas_price":0.01495,"average_gas_price":0.02243,"high_gas_price":0.02991},{"denom":"ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5","fixed_min_gas_price":0.03139,"low_gas_price":0.03139,"average_gas_price":0.04709,"high_gas_price":0.06278},{"denom":"ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602","fixed_min_gas_price":0.90403,"low_gas_price":0.90403,"average_gas_price":1.35605,"high_gas_price":1.80806},{"denom":"ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2","fixed_min_gas_price":559196837,"low_gas_price":559196837,"average_gas_price":838795256,"high_gas_price":1118393675},{"denom":"ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7","fixed_min_gas_price":5772801,"low_gas_price":5772801,"average_gas_price":8659201,"high_gas_price":11545602},{"denom":"factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta","fixed_min_gas_price":0.01807,"low_gas_price":0.01807,"average_gas_price":0.02711,"high_gas_price":0.03615},{"denom":"ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9","fixed_min_gas_price":0.01194,"low_gas_price":0.01194,"average_gas_price":0.01792,"high_gas_price":0.02389},{"denom":"ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3","fixed_min_gas_price":0.00019,"low_gas_price":0.00019,"average_gas_price":0.00029,"high_gas_price":0.00039}]},"apis":{"rpc":[{"address":"https://rpc.kaiyo.kujira.setten.io","provider":"setten.io"},{"address":"https://kujira-rpc.polkachu.com","provider":"polkachu"},{"address":"https://rpc.lavenderfive.com:443/kujira","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.kujira.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc-kujira-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://kujira-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc-kujira.starsquid.io","provider":"Starsquid"},{"address":"https://kujira.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://kuji-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://rpc-kujira.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://kujira-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.kujira.rektdao.club","provider":"rektDAO"},{"address":"https://kujira-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://kujira-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-kujira.mms.team","provider":"MMS"},{"address":"https://kujira-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://kujira.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"}]}},{"chain_id":"kyve-1","fees":{"fee_tokens":[{"denom":"ukyve","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc-eu-1.kyve.network","provider":"kyve"},{"address":"https://rpc-kyve.ecostake.com","provider":"ecostake"},{"address":"https://rpc.lavenderfive.com:443/kyve","provider":"Lavender.Five Nodes 🐝"},{"address":"http://kyve.rpc.m.stavr.tech:12357","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-kyve.imperator.co","provider":"Imperator.co"},{"address":"https://kyve-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc.kyve.nodestake.top","provider":"NodeStake"},{"address":"https://kyve.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://rpc-kyve.mms.team","provider":"MMS"},{"address":"https://kyve.declab.pro:26616","provider":"Decloud Nodes Lab"},{"address":"https://kyve-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://kyve_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://kyve-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"lambda_92000-1","fees":{"fee_tokens":[{"denom":"ulamb","low_gas_price":10000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.lambda.im","provider":"Lambda"},{"address":"http://lambda.rpc.m.stavr.tech:31327","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lambda.nodestake.top","provider":"NodeStake"},{"address":"https://lambda-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://lambda_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"lava-mainnet-1","fees":{"fee_tokens":[{"denom":"ulava","fixed_min_gas_price":0.00002,"low_gas_price":0.00002,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://lava.tendermintrpc.lava.build","provider":"Lava Over Lava"},{"address":"https://lava-rpc.w3coins.io:443","provider":"w3coins"},{"address":"https://lava-rpc.finteh.org:26657","provider":"finteh"},{"address":"https://lava-rpc.y2.finance:443","provider":"YTWOFUND"},{"address":"https://lava-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://rpc.lava-mainnet-1.lava.aviaone.com:443","provider":"AVIAONE 🟒"},{"address":"https://rpc-lava.r93axnodes.cloud:443","provider":"r93AX Nodes"},{"address":"https://lava-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://lava.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://lava.rpc-archive.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://lava-rpc.stake-town.com:443","provider":"StakeTown"},{"address":"https://lava.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://lava-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://lava-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://lava.rpc.stakevillage.net:443","provider":"Stake Village"}]}},{"chain_id":"likecoin-mainnet-2","fees":{"fee_tokens":[{"denom":"nanolike","fixed_min_gas_price":1000,"low_gas_price":1000,"average_gas_price":10000,"high_gas_price":1000000}]},"apis":{"rpc":[{"address":"https://mainnet-node.like.co/rpc/","provider":"like.co"},{"address":"https://likecoin-node.oldcat.io:443/rpc/","provider":"Oldcat"},{"address":"https://like.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-likecoin-mainnet.pikaser.net","provider":"PikaSer"},{"address":"https://rpc.likecoin.citizenweb3.com:443","provider":"Citizen Web3"}]}},{"chain_id":"logos_7002-1","fees":{"fee_tokens":[{"denom":"aLYT"}]},"apis":{"rpc":[{"address":"https://logos-rpc.provable.dev:443/","provider":"laurel.provable"}]}},{"chain_id":"loop-1","fees":{"fee_tokens":[{"denom":"token","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.loop.pfc.zone/","provider":"PFC"}]}},{"chain_id":"lorenzo_8329-1","fees":{"fee_tokens":[{"denom":"stBTC","fixed_min_gas_price":2000000,"low_gas_price":2000000,"average_gas_price":2000000,"high_gas_price":8000000}]},"apis":{"rpc":[{"address":"https://rpc-cosmos.lorenzo-protocol.xyz/","provider":"Lorenzo Protocol"}]}},{"chain_id":"loyal-main-02","fees":{"fee_tokens":[{"denom":"ulyl","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-main.joinloyal.io/"},{"address":"https://loyal-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"lum-network-1","fees":{"fee_tokens":[{"denom":"ulum","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.node0.mainnet.lum.network","provider":"Lum Foundation"},{"address":"https://lum.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/lumnetwork","provider":"Lavender.Five Nodes 🐝"},{"address":"https://lum-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://lum-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://lumnetwork_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"mande_18071918-1","fees":{"fee_tokens":[{"denom":"amand","low_gas_price":20000000000,"average_gas_price":20000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://mande-mainnet-tendermint.public.blastapi.io","provider":"BlastAPI"}]}},{"chain_id":"mantra-1","fees":{"fee_tokens":[{"denom":"uom","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.mantrachain.io","provider":"MANTRACHAIN"},{"address":"https://rpc-mantra.r93axnodes.cloud:443","provider":"r93AX Nodes"},{"address":"https://mantrachain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://mantra-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://mantra-mainnet-rpc.itrocket.net:443","provider":"ITRocket"},{"address":"https://mantra.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"mars-1","fees":{"fee_tokens":[{"denom":"umars","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.marsprotocol.io:443","provider":"Delphi Labs"},{"address":"https://rpc.lavenderfive.com:443/mars","provider":"Lavender.Five Nodes 🐝"},{"address":"https://mars-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://mars-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.expedition-mars.com","provider":"Expedition Mars"},{"address":"https://mars-rpc.genznodes.dev:443","provider":"genznodes"},{"address":"https://mars-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"},{"address":"https://mars-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://mars-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"}]}},{"chain_id":"mayachain-mainnet-v1","apis":{"rpc":[{"address":"https://tendermint.mayachain.info","provider":"tendermint"}]}},{"chain_id":"medasdigital-2","fees":{"fee_tokens":[{"denom":"umedas","low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc.medas-digital.io:26657/","provider":"Neptun Validator"}]}},{"chain_id":"meme-1","fees":{"fee_tokens":[{"denom":"umeme","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.035,"high_gas_price":0.045}]},"apis":{"rpc":[{"address":"https://rpc-meme-1.meme.sx/","provider":"MEME Foundation"},{"address":"https://meme-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-meme.pupmos.network/","provider":"PUPMØS"},{"address":"https://meme.rpc.m.anode.team","provider":"ANODE TEAM"}]}},{"chain_id":"migaloo-1","fees":{"fee_tokens":[{"denom":"uwhale","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":2,"high_gas_price":3}]},"apis":{"rpc":[{"address":"https://migaloo-rpc.polkachu.com:443","provider":"Polkachu"},{"address":"https://rpc-migaloo.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://migaloo-rpc.kleomedes.network:443","provider":"Kleomedes"},{"address":"https://rpc.whitewhale.nodestake.top","provider":"NodeStake"},{"address":"https://migaloo-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://migaloo-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"milkyway","fees":{"fee_tokens":[{"denom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035},{"denom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035},{"denom":"ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035},{"denom":"ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.milkyway.zone/","provider":"MilkyWay Labs"}]}},{"chain_id":"mainnet","fees":{"fee_tokens":[{"denom":"umis","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.gw.mises.site:443","provider":"Mises-1"},{"address":"https://e2.mises.site:443","provider":"Mises-3"}]}},{"chain_id":"mtgbp-1","fees":{"fee_tokens":[{"denom":"mtgbp","low_gas_price":0.000001,"average_gas_price":0.000005,"high_gas_price":0.0001}]},"apis":{"rpc":[{"address":"https://rcp.mtgbp.com","provider":"mtgbp"}]}},{"chain_id":"mun-1","fees":{"fee_tokens":[{"denom":"umun","fixed_min_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://mainnet1rpc.mun.money","provider":"Mun"},{"address":"https://mainnet-mun-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.mun.tcnetwork.io","provider":"TC Network"},{"address":"https://mun_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"mythos_7001-1","fees":{"fee_tokens":[{"denom":"aMYT"}]},"apis":{"rpc":[{"address":"https://mythos-rpc.provable.dev:443/","provider":"laurel.provable"}]}},{"chain_id":"neura_266-1","fees":{"fee_tokens":[{"denom":"atankr"}]},"apis":{"rpc":[]}},{"chain_id":"Neutaro-1","fees":{"fee_tokens":[{"denom":"uneutaro","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc2.neutaro.io:443","provider":"Neutaro"},{"address":"https://rpc3.neutaro.io:443","provider":"Neutaro"}]}},{"chain_id":"neutron-1","fees":{"fee_tokens":[{"denom":"untrn","low_gas_price":0.0053,"average_gas_price":0.0053,"high_gas_price":0.0053},{"denom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","low_gas_price":0.0008,"average_gas_price":0.0008,"high_gas_price":0.0008},{"denom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","low_gas_price":0.008,"average_gas_price":0.008,"high_gas_price":0.008},{"denom":"factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH","low_gas_price":2903231.6597,"average_gas_price":2903231.6597,"high_gas_price":2903231.6597},{"denom":"ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130","low_gas_price":2564102564.1026,"average_gas_price":2564102564.1026,"high_gas_price":2564102564.1026},{"denom":"ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7","low_gas_price":0.0004,"average_gas_price":0.0004,"high_gas_price":0.0004}]},"apis":{"rpc":[{"address":"https://rpc-voidara.neutron-1.neutron.org","provider":"Neutron"},{"address":"https://rpc-pulsarix.neutron-1.neutron.org","provider":"Neutron"},{"address":"https://rpc.novel.remedy.tm.p2p.org","provider":"P2P"},{"address":"https://rpc.lavenderfive.com:443/neutron","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-neutron.whispernode.com","provider":"WhisperNode 🀐"},{"address":"https://rpc-neutron.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"http://rpc.neutron.nodestake.top","provider":"NodeStake"},{"address":"https://neutron-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://community.nuxian-node.ch:6797/neutron/trpc","provider":"PRO Delegators"},{"address":"https://rpc.neutron.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.neutron.quokkastake.io","provider":"🐹 Quokka Stake"},{"address":"https://neutron.drpc.org","provider":"dRPC"}]}},{"chain_id":"cataclysm-1","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.nibiru.fi","provider":"Nibiru Foundation"},{"address":"https://nibiru.rpc.kjnodes.com","provider":"kjnodes.com πŸ¦„"},{"address":"https://rpc.nibiru.nodestake.org","provider":"NodeStake"},{"address":"https://rpc.lavenderfive.com:443/nibiru","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.nibiru.silentvalidator.com","provider":"silent"},{"address":"https://nibiru.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://nibiru-rpc.cogwheel.zone","provider":"Cogwheel βš™οΈ"},{"address":"https://nibiru.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://nibiru.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://nibiru-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://nibiru-mainnet.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://nibiru-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.nibiru.roomit.xyz","provider":"Roomit"},{"address":"https://nibiru_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"nim_1122-1","fees":{"fee_tokens":[{"denom":"anim","low_gas_price":20000000000,"average_gas_price":20000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.nimnet.tech","provider":"NIM Foundation"}]}},{"chain_id":"noble-1","fees":{"fee_tokens":[{"denom":"uusdc","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.1,"high_gas_price":0.2},{"denom":"ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.01,"high_gas_price":0.02}]},"apis":{"rpc":[{"address":"https://noble-rpc.polkachu.com","provider":"polkachu"},{"address":"https://rpc.lavenderfive.com:443/noble","provider":"Lavender.Five Nodes 🐝"},{"address":"https://noble-rpc.owallet.io","provider":"OWALLET"}]}},{"chain_id":"nois-1","fees":{"fee_tokens":[{"denom":"unois","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://nois-rpc.nysa.network","provider":"nysa.network"},{"address":"https://nois.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://rpc.lavenderfive.com:443/nois","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-nois.mib.tech/","provider":"MadeInBlock"},{"address":"https://m-nois.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://nois.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-nois.ezstaking.dev","provider":"EZStaking"},{"address":"https://nois-mainnet-rpc.itrocket.net","provider":"itrocket"},{"address":"https://rpc-nois.d-stake.xyz","provider":"D-Stake"},{"address":"https://rpc-nois.sr20de.xyz","provider":"SR20DE"},{"address":"https://nois-mainnet-rpc.autostake.com","provider":"AutoStake"},{"address":"https://nois-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://nois-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://rpc.nois.silentvalidator.com","provider":"silent"},{"address":"https://nois-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.nois.cumulo.org.es","provider":"Cumulo"}]}},{"chain_id":"pirin-1","fees":{"fee_tokens":[{"denom":"unls","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"rpc.nolus.network","provider":"NolusProtocol"},{"address":"https://nolus-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.lavenderfive.com:443/nolus","provider":"Lavender.Five Nodes 🐝"},{"address":"https://nolus.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://rpc-nolus.architectnodes.com","provider":"Architect Nodes"},{"address":"https://nolus.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://nolus-rpc.enigma-validator.com/","provider":"Enigma"},{"address":"https://nolus-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-nolus.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://nolus-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://nolus-rpc.ibs.team","provider":"Inter Blockchain Services"}]}},{"chain_id":"nomic-stakenet-3","fees":{"fee_tokens":[{"denom":"unom","low_gas_price":0,"average_gas_price":0,"high_gas_price":0},{"denom":"usat","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://stakenet-rpc.nomic.io:2096","provider":"nomic-io"},{"address":"https://nomic-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-nomic.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc.nomic.basementnodes.ca:443","provider":"Basement Nodes ⚑️"},{"address":"https://rpc.nomic.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"nyx","fees":{"fee_tokens":[{"denom":"unym","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"unyx","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.nymtech.net/","provider":"Nym"},{"address":"https://rpc.nyx.nodes.guru/","provider":"nodes guru"},{"address":"https://rpc.nym.forbole.com/","provider":"forbole"},{"address":"https://nym-mainnet-rpc.commodum.io/","provider":"commodum"},{"address":"https://nym-rpc.polkachu.com/","provider":"Polkachu"}]}},{"chain_id":"octa","fees":{"fee_tokens":[{"denom":"uocta","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"odin-mainnet-freya","fees":{"fee_tokens":[{"denom":"loki","fixed_min_gas_price":0.0125,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc.odinprotocol.io","provider":"Heimdall Gateway"},{"address":"https://odin.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/odin","provider":"Lavender.Five Nodes 🐝"},{"address":"https://odin-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"exchain-66","fees":{"fee_tokens":[{"denom":"wei","low_gas_price":200000000,"average_gas_price":250000000,"high_gas_price":400000000}]},"apis":{"rpc":[{"address":"https://exchaintmrpc.okex.org","provider":"okx chain"}]}},{"chain_id":"omniflixhub-1","fees":{"fee_tokens":[{"denom":"uflix","fixed_min_gas_price":0,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://omniflix-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://rpc.omniflix.nodestake.top","provider":"NodeStake"},{"address":"https://rpc.omniflix.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc-omniflixhub-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/omniflixhub","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.omniflix.silentvalidator.com/","provider":"silent"},{"address":"https://omniflixhub-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-omniflix.architectnodes.com","provider":"Architect Nodes"},{"address":"https://omniflix-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-omniflixhub.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://omniflix-rpc.dakshavalidator.in","provider":"Daksha Validator"},{"address":"https://rpc-omniflix.mzonder.com:443","provider":"MZONDER"},{"address":"https://rpc.omniflix.stakeup.tech:443","provider":"StakeUp"},{"address":"https://rpc.omniflix.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://omniflix-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://mainnet.omniflix.rpc.srv.stakr.space","provider":"STAKR.space"}]}},{"chain_id":"onex-mainnet-1","fees":{"fee_tokens":[{"denom":"aonex","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.onex.onomy.io","provider":"pendulum"}]}},{"chain_id":"onomy-mainnet-1","fees":{"fee_tokens":[{"denom":"anom","low_gas_price":0,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc-mainnet.onomy.io","provider":"onomy"},{"address":"https://onomy-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"Oraichain","fees":{"fee_tokens":[{"denom":"orai","fixed_min_gas_price":0,"low_gas_price":0.003,"average_gas_price":0.005,"high_gas_price":0.007}]},"apis":{"rpc":[{"address":"https://rpc.orai.io","provider":"oraichain-team"},{"address":"https://rpc.orai.pfc.zone/","provider":"PFC"},{"address":"https://rpc-orai.nodine.id/","provider":"Nodine.ID"},{"address":"https://oraichain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-oraichain.mms.team","provider":"MMS"},{"address":"https://rpc-orai.blockval.io/","provider":"Blockval"},{"address":"https://mainnet-orai-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.orai.mortysnode.nl","provider":"Morty's Nodes"},{"address":"https://orai.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://oraichain-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://orai-rpc.imdev.app","provider":"imORAI"},{"address":"https://orai-rpc.owallet.io","provider":"OWALLET"}]}},{"chain_id":"osmosis-1","fees":{"fee_tokens":[{"denom":"uosmo","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.osmosis.zone/","provider":"Osmosis Foundation"},{"address":"https://rpc-osmosis.blockapsis.com","provider":"chainapsis"},{"address":"https://osmosis-rpc.onivalidator.com","provider":"Oni Validator ⛩️"},{"address":"https://osmosis-rpc.quickapi.com:443","provider":"Chainlayer"},{"address":"https://rpc-osmosis.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc.lavenderfive.com:443/osmosis","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-osmosis.ecostake.com","provider":"ecostake"},{"address":"https://rpc-osmosis.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://osmosis-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-osmosis-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://osmosis.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://osmosis-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://osmosis.api.onfinality.io/public","provider":"OnFinality"},{"address":"https://rpc-osmosis-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://osmosis-rpc.w3coins.io","provider":"w3coins"},{"address":"https://osmosis-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://community.nuxian-node.ch:6797/osmosis/trpc","provider":"PRO Delegators"},{"address":"http://rpc-osmosis.freshstaking.com:31657","provider":"FreshSTAKING"},{"address":"https://osmosis-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://osmosis-mainnet.rpc.l0vd.com:443","provider":"L0vd.com ❀️"},{"address":"https://osmosis-rpc.reece.sh","provider":"Reecepbcups"},{"address":"https://rpc.osmosis.validatus.com","provider":"Validatus"},{"address":"https://rpc.osmosis.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://osmosis.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"},{"address":"https://public.stakewolle.com/cosmos/osmosis/rpc","provider":"Stakewolle"},{"address":"https://rpc.cros-nest.com/osmosis","provider":"Crosnest"},{"address":"https://rpc-osmo.kewrnode.com","provider":"Kewr Node"},{"address":"https://rpc.osmosis.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://osmosis-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://osmosis.drpc.org","provider":"dRPC"},{"address":"https://osmosis-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"tumbler","fees":{"fee_tokens":[{"denom":"ugrain","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-1.paloma.nodes.guru/","provider":"Nodes.Guru"}]}},{"chain_id":"panacea-3","fees":{"fee_tokens":[{"denom":"umed","fixed_min_gas_price":5,"low_gas_price":5,"average_gas_price":7,"high_gas_price":9}]},"apis":{"rpc":[{"address":"https://rpc.gopanacea.org","provider":"medibloc"},{"address":"https://panacea-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://panacea_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"passage-2","fees":{"fee_tokens":[{"denom":"upasg","fixed_min_gas_price":0,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.passage.vitwit.com","provider":"vitwit"},{"address":"https://passage-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-passage.ecostake.com","provider":"ecostake"},{"address":"https://rpc.lavenderfive.com:443/passage","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-passage-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-passage.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://rpc.passage.nodestake.top","provider":"NodeStake"},{"address":"https://passage-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://passage-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc-passage.d-stake.xyz","provider":"D-stake"},{"address":"https://passage-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://passage-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://passage-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://passage-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc-passage.mainnet.validatrium.club","provider":"Validatrium"},{"address":"https://rpc.passage.silentvalidator.com","provider":"silent"},{"address":"https://passage-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"core-1","fees":{"fee_tokens":[{"denom":"uxprt","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.core.persistence.one","provider":"Persistence"},{"address":"https://rpc-persistent-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://persistence.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://persistence-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://persistence-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://rpc-persistence.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc-persistence.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://persistence-mainnet-rpc.cosmonautstakes.com","provider":"Cosmonaut Stakes"},{"address":"https://persistence-rpc.quantnode.tech","provider":"QuantNode"},{"address":"https://persistence-rpc.zenscape.one","provider":"Zenscape"},{"address":"https://persistence-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://persistence-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"},{"address":"https://rpc.persistence.posthuman.digital:443","provider":"POSTHUMAN∞DVS"},{"address":"https://rpc-persistence-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://persistence-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://persistence-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://persistence-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.persistence.validatus.com","provider":"Validatus"},{"address":"https://public.stakewolle.com/cosmos/persistence/rpc","provider":"Stakewolle"},{"address":"https://xprt-rpc.antrixy.org/","provider":"Antrix Validators"},{"address":"https://persistence-rpc.stake-town.com","provider":"StakeTown"}]}},{"chain_id":"planq_7070-2","fees":{"fee_tokens":[{"denom":"aplanq","fixed_min_gas_price":20000000000,"low_gas_price":30000000000,"average_gas_price":35000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.planq.network","provider":"planq.network"},{"address":"https://planq.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://planq.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.planq.nodestake.top","provider":"NodeStake"},{"address":"https://planq-rpc.kynraze.com","provider":"Kynraze"},{"address":"https://rpc.planq.indonode.net","provider":"Indonode"},{"address":"https://rpc.planq.roomit.xyz","provider":"Roomit"},{"address":"https://planq-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://rpc.planq.safeblock.space","provider":"Safe Block"},{"address":"https://planq.rpc.skynodejs.net","provider":"skynodejs"},{"address":"https://planq-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://mainnet-planq-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://planq_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc-planq.blockval.io","provider":"Blockval"}]}},{"chain_id":"point_10687-1","fees":{"fee_tokens":[{"denom":"apoint","low_gas_price":5000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc-mainnet-1.point.space:26657","provider":"Point Network"},{"address":"https://rpc.point.nodestake.top","provider":"NodeStake"},{"address":"https://point.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.point.indonode.net","provider":"Indonode"}]}},{"chain_id":"pio-mainnet-1","fees":{"fee_tokens":[{"denom":"nhash","fixed_min_gas_price":1905,"low_gas_price":1905,"average_gas_price":2100,"high_gas_price":2500}]},"apis":{"rpc":[{"address":"https://rpc-provenance.takeshi.team/","provider":"TAKESHI"},{"address":"https://rpc.provenance.io/","provider":"Figure"},{"address":"https://rpc-provenance-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://provenance-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://provenance-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://provenance-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://rpc.provenance.blockval.io/","provider":"Blockval"},{"address":"https://provenance-rpc.panthea.eu","provider":"Panthea EU"},{"address":"https://provenance_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc.pio-mainnet-1.provenance.aviaone.com","provider":"AVIAONE 🟒"}]}},{"chain_id":"pryzm-1","fees":{"fee_tokens":[{"denom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.004},{"denom":"ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255","fixed_min_gas_price":500000000,"low_gas_price":500000000,"average_gas_price":600000000,"high_gas_price":700000000},{"denom":"ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"ibc/BF28D9C17E0306B194D50F51C3B2590BEAD15E04E03ADD34C3A26E62D85C9676","fixed_min_gas_price":0.002,"low_gas_price":0.002,"average_gas_price":0.003,"high_gas_price":0.004},{"denom":"ibc/B8AF5D92165F35AB31F3FC7C7B444B9D240760FA5D406C49D24862BD0284E395","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.02,"high_gas_price":0.03},{"denom":"ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.015,"high_gas_price":0.02},{"denom":"ibc/F8CA5236869F819BC006EEF088E67889A26E4140339757878F0F4E229CDDA858","fixed_min_gas_price":10000000000,"low_gas_price":10000000000,"average_gas_price":12000000000,"high_gas_price":14000000000},{"denom":"ibc/FA78980867B7E87F382CDA00275C55DDC248CABC7DEE27AC6868CCF97DD5E02F","fixed_min_gas_price":0.002,"low_gas_price":0.002,"average_gas_price":0.003,"high_gas_price":0.004},{"denom":"ibc/120DC39B61CC121E91525C1D51624E41BBE74C537D7B0BE50BBFF9A00E37B6EE","fixed_min_gas_price":10000000000,"low_gas_price":10000000000,"average_gas_price":12000000000,"high_gas_price":14000000000},{"denom":"ibc/EA6E1E8BA2EB9F681C4BD12C8C81A46530A62934F2BD561B120A00F46946CE87","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.004}]},"apis":{"rpc":[{"address":"https://rpc.pryzm.zone","provider":"PRYZM"},{"address":"https://rpc.lavenderfive.com:443/pryzm","provider":"Lavender.Five Nodes 🐝"},{"address":"https://pryzm-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://pryzm-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"PUNDIX","fees":{"fee_tokens":[{"denom":"ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78","fixed_min_gas_price":2000000000000,"low_gas_price":2000000000000,"average_gas_price":2500000000000,"high_gas_price":3000000000000}]},"apis":{"rpc":[{"address":"https://px-json.pundix.com","provider":"Pundi X"},{"address":"https://pundix.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"}]}},{"chain_id":"pylons-mainnet-1","fees":{"fee_tokens":[{"denom":"ubedrock","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.5,"high_gas_price":1}]},"apis":{"rpc":[{"address":"https://rpc.nodejumper.io:443/pylons","provider":"Nodejumper.io"},{"address":"https:/pylons-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"qfs-1","fees":{"fee_tokens":[{"denom":"qfs","low_gas_price":0.000001,"average_gas_price":0.000005,"high_gas_price":0.0001}]},"apis":{"rpc":[{"address":"https://rcp.qfsone.com","provider":"qfs"}]}},{"chain_id":"quasar-1","fees":{"fee_tokens":[{"denom":"uqsr","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.3},{"denom":"ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/quasar","provider":"Lavender.Five Nodes 🐝"},{"address":"https://quasar-rpc.polkachu.com","provider":"polkachu"},{"address":"https://quasar-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://rpc-quasar.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://quasar-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://quasar.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-quasar.validavia.me","provider":"Validavia"},{"address":"https://quasar-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://quasar-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://quasar-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://quasar-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://quasar-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://quasar-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"quicksilver-2","fees":{"fee_tokens":[{"denom":"uqck","fixed_min_gas_price":0.0001,"low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.00025}]},"apis":{"rpc":[{"address":"https://rpc-quicksilver.takeshi.team:443","provider":"TAKESHI"},{"address":"https://rpc.quicksilver.zone:443","provider":"Quicksilver"},{"address":"https://rpc-quicksilver-ia.cosmosia.notional.ventures:443","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/quicksilver","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-quicksilver.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://m-quicksilver.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://quick.rpc.m.stavr.tech:21027","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://quicksilver-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://quicksilver-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://quicksilver.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-quicksilver.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc.quicksilver.indonode.net","provider":"Indonode"},{"address":"https://quicksilver-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://quicksilver-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://quicksilver-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-quicksilver.mms.team/","provider":"MMS"},{"address":"https://quicksilver-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://quicksilver-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://mainnet-quicksilver-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://quicksilver.tdrsys.com:2053","provider":"TdrSys"},{"address":"https://rpc.quicksilver.validatus.com","provider":"Validatus"},{"address":"https://quicksilver-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"qwoyn-1","fees":{"fee_tokens":[{"denom":"uqwoyn","fixed_min_gas_price":0.03,"low_gas_price":0.03,"average_gas_price":0.05,"high_gas_price":0.075}]},"apis":{"rpc":[{"address":"https://rpc.qwoyn.studio:443","provider":"Qwoyn Studios"},{"address":"https://rpc-qwoyn.theamsolutions.info:443","provider":"AM Solutions"},{"address":"https://qwoyn.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://qwoyn-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://qwoyn-rpc-archive.staketab.org:443","provider":"Staketab archive"},{"address":"https://rpc.lavenderfive.com:443/qwoyn","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-qwoyn.mzonder.com:443","provider":"MZONDER"},{"address":"https://rpc.qwoyn.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"realionetwork_3301-1","fees":{"fee_tokens":[{"denom":"ario","fixed_min_gas_price":1000000000,"low_gas_price":4000000000,"average_gas_price":5000000000,"high_gas_price":8000000000}]},"apis":{"rpc":[{"address":"https://realio-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://realio.rpc.bccnodes.com/","provider":"BccNodes"},{"address":"https://rpc-realio-network.nodeist.net","provider":"Nodeist"},{"address":"http://realio.rpc.m.stavr.tech:21097","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.realio.indonode.net","provider":"Indonode"},{"address":"https://rpc-realio.vinjan.xyz","provider":"vinjan"},{"address":"https://api-realio.sr20de.xyz","provider":"Sr20de"},{"address":"https://rpc.realio.safeblock.space","provider":"Safe Block"},{"address":"https://realio.declab.pro:26622","provider":"Decloud Nodes Lab"},{"address":"https://realio-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc-realio.blockval.io","provider":"Blockval"},{"address":"https://realio_rio_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"reb_1111-1","fees":{"fee_tokens":[{"denom":"arebus","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://api.rebuschain.com:26657/","provider":"Rebuschain"},{"address":"https://rebus.rpc.bccnodes.com:443","provider":"BccNodes"},{"address":"https://rebus.rpc.manticore.team:443/","provider":"MantiCore"},{"address":"https://rpc.rebus.nodestake.top/","provider":"NodeStake"},{"address":"http://rebus.rpc.m.stavr.tech:40107","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-1.rebus.nodes.guru","provider":"Nodes.Guru"},{"address":"https://api.mainnet.rebus.money:26657","provider":"Rebuschain"},{"address":"https://rebus-rpc.brocha.in","provider":"Brochain"},{"address":"https://rebus-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rebus.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://rebus-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rebus-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"regen-1","fees":{"fee_tokens":[{"denom":"uregen","low_gas_price":0.015,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc-regen.ecostake.com","provider":"ecostake"},{"address":"http://public-rpc.regen.vitwit.com:26657","provider":"vitwit"},{"address":"https://regen.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://regen.stakesystems.io:2053","provider":"stakesystems"},{"address":"http://rpc.regen.forbole.com:80","provider":"forbole"},{"address":"https://rpc-regen-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://regen-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://regen-rpc.easy2stake.com","provider":"Easy 2 Stake"},{"address":"https://regen-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://regen-rpc.w3coins.io","provider":"w3coins"},{"address":"https://regen-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"titan-1","fees":{"fee_tokens":[{"denom":"uatolo","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpcapi.rizon.world/","provider":"HDAC Technology AG"},{"address":"https://rpc.rizon.chaintools.tech/","provider":"ChainTools"},{"address":"https://rizon-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rizon-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"30","fees":{"fee_tokens":[{"denom":"sat"}]},"apis":{"rpc":[]}},{"chain_id":"router_9600-1","fees":{"fee_tokens":[{"denom":"route","fixed_min_gas_price":7,"low_gas_price":7,"average_gas_price":7,"high_gas_price":10}]},"apis":{"rpc":[{"address":"https://sentry.tm.rpc.routerprotocol.com/","provider":"Router"},{"address":"https://router-rpc.genznodes.dev/","provider":"genznodes"},{"address":"https://router.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://router-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://routerchain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"ssc-1","fees":{"fee_tokens":[{"denom":"usaga","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc-saga.keplr.app","provider":"chainapsis"},{"address":"https://saga-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://saga-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.saga.nodestake.org","provider":"NodeStake"},{"address":"https://saga.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.saga.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://rpc.saga.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.lavenderfive.com:443/saga","provider":"Lavender.Five Nodes 🐝"},{"address":"https://saga-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://saga-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"scorum-1","fees":{"fee_tokens":[{"denom":"gas","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1,"high_gas_price":1}]},"apis":{"rpc":[{"address":"https://scorum-blockchain-mainnet-rpc.scorum.com","provider":"scorum"}]}},{"chain_id":"secret-4","fees":{"fee_tokens":[{"denom":"uscrt","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.1,"high_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://scrt.public-rpc.com","provider":"ANKR"},{"address":"https://rpc.lavenderfive.com:443/secretnetwork","provider":"Lavender.Five Nodes 🐝"},{"address":"https://1rpc.io/scrt-rpc","provider":"1RPC - Automata Network"},{"address":"https://secretnetwork-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://rpc.mainnet.secretsaturn.net","provider":"πŸͺ π•Šecret π•Šaturn"},{"address":"https://rpc-secret.01node.com","provider":"01node"},{"address":"https://public.stakewolle.com/cosmos/secretnetwork/rpc","provider":"Stakewolle"}]}},{"chain_id":"seda-1","fees":{"fee_tokens":[{"denom":"aseda","fixed_min_gas_price":10000000000,"low_gas_price":10000000000,"average_gas_price":10000000000,"high_gas_price":14000000000}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.seda.xyz/","provider":"SEDA"},{"address":"https://seda-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://seda.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://seda-rpc.synergynodes.com/","provider":"Synergy Nodes"},{"address":"https://rpc.lavenderfive.com:443/seda","provider":"Lavender.Five Nodes 🐝"},{"address":"https://seda-rpc.kleomedes.network/","provider":"Kleomedes"},{"address":"https://seda-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://seda-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.seda.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc-seda.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://seda-rpc.applejuice.256x25.tech:443","provider":"Apple juice πŸ§ƒ"},{"address":"https://seda-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://seda_mainnet_rpc.chain.whenmoonwhenlambo.money:443","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc-seda-mainnet.keepitstaked.com:443","provider":"KeepItStaked.com"}]}},{"chain_id":"pacific-1","fees":{"fee_tokens":[{"denom":"usei","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.02,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.sei-apis.com","provider":"Rhino Stake"},{"address":"https://rpc.lavenderfive.com:443/sei","provider":"Lavender.Five Nodes 🐝"},{"address":"https://sei-rpc.polkachu.com","provider":"polkachu.com"},{"address":"https://sei-rpc.brocha.in","provider":"Brochain"},{"address":"https://rpc-sei.stingray.plus","provider":"StingRay"},{"address":"https://rpc-sei.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://sei.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://sei-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://sei.drpc.org","provider":"dRPC - All chains in one place"}]}},{"chain_id":"self-1","fees":{"fee_tokens":[{"denom":"uslf","fixed_min_gas_price":0.005,"low_gas_price":0.005,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.selfchain.io:26657","provider":"Self Chain"},{"address":"https://rpc.selfchain.roomit.xyz","provider":"Roomit"},{"address":"https://selfchain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://selfchain.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://selfchain-mainnet.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://selfchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"sentinelhub-2","fees":{"fee_tokens":[{"denom":"udvpn","low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc-sentinel.busurnode.com","provider":"Busurnode"},{"address":"https://rpc-sentinel-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.sentinel.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.sentinel.quokkastake.io","provider":"🐹 Quokka Stake"},{"address":"https://rpc.dvpn.roomit.xyz","provider":"Roomit"},{"address":"https://sentinel-rpc.badgerbite.io/","provider":"BadgerBite"},{"address":"https://sentinel-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://sentinel-rpc.validatornode.com/","provider":"ValidatorNode"},{"address":"https://rpc.trinitystake.io","provider":"Trinity Stake"},{"address":"https://rpc.sentineldao.com","provider":"Sentinel Growth DAO"},{"address":"https://public.stakewolle.com/cosmos/sentinel/rpc","provider":"Stakewolle"},{"address":"http://163.197.193.2:26657","provider":"Tesla Full Node"},{"address":"https://sentinel.declab.pro:26628","provider":"Decloud Nodes Lab"},{"address":"https://sentinel.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://rpc.dvpn.me:443","provider":"MathNodes China"},{"address":"https://rpc.ro.mathnodes.com:443","provider":"MathNodes Romania"},{"address":"https://rpc.noncompliant.network:443","provider":"Noncompliant Network"},{"address":"https://rpc-sentinel.chainvibes.com:443","provider":"chainvibes"},{"address":"https://sentinel-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"sgenet-1","fees":{"fee_tokens":[{"denom":"usge","fixed_min_gas_price":0.001,"low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.5}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/sge","provider":"Lavenderfive"},{"address":"https://sge-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc.sge.nodestake.top/","provider":"Nodestake"},{"address":"https://rpc.sge.roomit.xyz/","provider":"Roomit"},{"address":"https://sge.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-sge.nodeist.net/","provider":"Nodeist"},{"address":"https://sge-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://sge-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://rpc.sge.tcnetwork.io","provider":"TC Network"},{"address":"https://sge-rpc.sr20de.xyz","provider":"Sr20de"},{"address":"https://rpc.sge.safeblock.space","provider":"Safe Block"},{"address":"https://mainnet-sge-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://sge-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://sge_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"ShareRing-VoyagerNet","fees":{"fee_tokens":[{"denom":"nshr","fixed_min_gas_price":0,"low_gas_price":2000,"average_gas_price":3000,"high_gas_price":4000}]},"apis":{"rpc":[{"address":"https://rpc.explorer.shareri.ng","provider":"ShareRing"}]}},{"chain_id":"shentu-2.2","fees":{"fee_tokens":[{"denom":"uctk","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.shentu.org:443","provider":"Shentu"},{"address":"https://shentu-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://shentu.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://shentu-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://rpc-shentu-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://shentu-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://shentu-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://shentu-rpc.panthea.eu","provider":"Panthea EU"},{"address":"https://shentu-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://shentu-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"shido_9008-1","fees":{"fee_tokens":[{"denom":"shido","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://tendermint.shidoscan.com","provider":"Shido"},{"address":"https://shidochain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc.shido.256x25.tech:443","provider":"256x25"},{"address":"https://rpc.shido.indonode.net:443","provider":"Indonode"},{"address":"https://rpc-maverick.mavnode.io","provider":"MavNode"},{"address":"https://rpc.kenseishido.com","provider":"KENSEI"}]}},{"chain_id":"sifchain-1","fees":{"fee_tokens":[{"denom":"rowan","low_gas_price":1000000000000,"average_gas_price":1500000000000,"high_gas_price":2000000000000}]},"apis":{"rpc":[{"address":"https://sifchain-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://sifchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://sifchain-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://sifchain_mainnet_rpc.chain.whenmoonwhenlambo.money:443","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"sixnet","fees":{"fee_tokens":[{"denom":"usix","fixed_min_gas_price":1.25,"low_gas_price":1.25,"average_gas_price":1.5,"high_gas_price":1.75}]},"apis":{"rpc":[{"address":"https://sixnet-rpc.sixprotocol.net:443"}]}},{"fees":{"fee_tokens":[{"denom":"Lamport","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"sommelier-3","fees":{"fee_tokens":[{"denom":"usomm","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://sommelier-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-sommelier.pupmos.network","provider":"PUPMØS"},{"address":"https://somm.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/sommelier","provider":"Lavender.Five Nodes 🐝"},{"address":"https://sommelier-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://somm-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://sommelier-rpc.w3coins.io","provider":"w3coins"}]}},{"chain_id":"source-1","fees":{"fee_tokens":[{"denom":"usource","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.075,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.source.nodestake.top","provider":"NodeStake"},{"address":"https://source.rpc.bccnodes.com/","provider":"BccNodes"},{"address":"https://source.rpc.moonbridge.team/","provider":"MoonBridge"},{"address":"https://source.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-source.nodeist.net","provider":"Nodeist"},{"address":"https://source-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://source-mainnet-rpc.itrocket.net:443","provider":"ITRocket"},{"address":"https://rpc-source.sr20de.xyz:443","provider":"Sr20de"},{"address":"https://source-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.source.tcnetwork.io","provider":"TC Network"},{"address":"https://rpc.source.indonode.net","provider":"Indonode"},{"address":"https://source.rpc.skynodejs.net/","provider":"skynodejs"},{"address":"https://source.rpc.nodeshub.online/","provider":"Nodes Hub"},{"address":"https://rpc.source.roomit.xyz/","provider":"Roomit"},{"address":"https://rpc.source.posthuman.digital","provider":"posthuman"},{"address":"https://source.declab.pro:26604","provider":"Decloud Nodes Lab"},{"address":"https://rpc.source.stakeup.tech","provider":"StakeUp"},{"address":"https://source_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://source-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"stafihub-1","fees":{"fee_tokens":[{"denom":"ufis","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://public-rpc1.stafihub.io:443","provider":"StaFiHub"},{"address":"https://public-rpc2.stafihub.io:443","provider":"StaFiHub"},{"address":"https://rpc.stafihub.nodestake.top:443","provider":"NodeStake"}]}},{"chain_id":"stargaze-1","fees":{"fee_tokens":[{"denom":"ustars","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1.1,"high_gas_price":1.2}]},"apis":{"rpc":[{"address":"https://rpc.stargaze-apis.com/","provider":"Stargaze Foundation"},{"address":"https://rpc-stargaze.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-stargaze.ezstaking.dev","provider":"EZStaking.io"},{"address":"https://stargaze-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-stargaze-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://stargaze.c29r3.xyz:443/rpc/","provider":"c29r3"},{"address":"https://rpc-stargaze.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://stargaze-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc-stargaze.d-stake.xyz","provider":"D-stake"},{"address":"https://rpc.stargaze.silentvalidator.com/","provider":"silent"},{"address":"https://stargaze-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://stargaze-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://stargaze-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://stargaze-rpc.w3coins.io","provider":"w3coins"},{"address":"https://stargaze-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://stargaze-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://stargaze-rpc.reece.sh:443","provider":"Reecepbcups"},{"address":"https://rpc.stargaze.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://stargaze-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://stargaze-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"iov-mainnet-ibc","fees":{"fee_tokens":[{"denom":"uiov","low_gas_price":1,"average_gas_price":2,"high_gas_price":3}]},"apis":{"rpc":[{"address":"https://rpc-starname-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.starname.app","provider":"Chainmasters"}]}},{"chain_id":"stratos-1","fees":{"fee_tokens":[{"denom":"wei","low_gas_price":1000000000,"average_gas_price":1200000000,"high_gas_price":1600000000}]},"apis":{"rpc":[{"address":"https://rpc.thestratos.org","provider":"thestratos.org"},{"address":"http://stratos.rpc.nodersteam.com:26657/","provider":"[NODERS]TEAM"},{"address":"https://stratos-rpc.noders.services:443","provider":"[NODERS]TEAM"}]}},{"chain_id":"stride-1","fees":{"fee_tokens":[{"denom":"ustrd","fixed_min_gas_price":0.0005,"low_gas_price":0.005,"average_gas_price":0.005,"high_gas_price":0.05},{"denom":"stuatom","fixed_min_gas_price":0.0001,"low_gas_price":0.0001,"average_gas_price":0.0002,"high_gas_price":0.0005},{"denom":"stuosmo","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.004},{"denom":"stustars","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1.1,"high_gas_price":1.2},{"denom":"stujuno","fixed_min_gas_price":0.075,"low_gas_price":0.075,"average_gas_price":0.1,"high_gas_price":0.125},{"denom":"stuluna","fixed_min_gas_price":0.0125,"low_gas_price":0.0125,"average_gas_price":0.015,"high_gas_price":0.04},{"denom":"staevmos","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000},{"denom":"stinj","fixed_min_gas_price":500000000,"low_gas_price":500000000,"average_gas_price":700000000,"high_gas_price":900000000},{"denom":"stucmdx","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"stuumee","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.12,"high_gas_price":0.2},{"denom":"stutia","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1},{"denom":"stadydx","fixed_min_gas_price":15000000000,"low_gas_price":15000000000,"average_gas_price":15000000000,"high_gas_price":20000000000},{"denom":"stadym","fixed_min_gas_price":15000000000,"low_gas_price":15000000000,"average_gas_price":15000000000,"high_gas_price":20000000000},{"denom":"stusaga","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.015,"high_gas_price":0.03},{"denom":"ibc/BF3B4F53F3694B66E13C23107C84B6485BD2B96296BB7EC680EA77BBA75B4801","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://stride-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://stride-rpc.onivalidator.com","provider":"Oni Validator ⛩️"},{"address":"https://rpc.lavenderfive.com:443/stride","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.stride.silentvalidator.com/","provider":"silent"},{"address":"https://rpc-stride.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://stride.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-stride.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-stride.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc-stride.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://stride-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-stride-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://stride-rpc.w3coins.io","provider":"w3coins"},{"address":"https://stride-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://community.nuxian-node.ch:6797/stride/trpc","provider":"PRO Delegators"},{"address":"https://stride-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.stride.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://public.stakewolle.com/cosmos/stride/rpc","provider":"Stakewolle"}]}},{"chain_id":"sunrise-1","fees":{"fee_tokens":[{"denom":"urise","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[]}},{"chain_id":"synternet-1","fees":{"fee_tokens":[{"denom":"usynt","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.synternet.com/","provider":"Synternet"},{"address":"https://synternet_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"taketitan-12","fees":{"fee_tokens":[{"denom":"ttnc","low_gas_price":0.000001,"average_gas_price":0.000005,"high_gas_price":0.0001}]},"apis":{"rpc":[{"address":"https://rcpttnc.taketitan.com","provider":"taketitan"}]}},{"chain_id":"tenet_1559-1","fees":{"fee_tokens":[{"denom":"atenet","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://tendermint-1.rpc.tenet.org","provider":"tenet"},{"address":"https://tenet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://tenet_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"teritori-1","fees":{"fee_tokens":[{"denom":"utori","low_gas_price":0,"average_gas_price":0.25,"high_gas_price":0.5}]},"apis":{"rpc":[{"address":"https://teritori-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://teritori.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.teritori.silentvalidator.com/","provider":"silent"},{"address":"https://teritori-rpc.brocha.in","provider":"Brochain"},{"address":"https://teritori-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://teritori.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.tori.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://teritori-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://m-teritori.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc-teritori.pupmos.network","provider":"PUPMØS"},{"address":"https://teritori-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-teritori.ecostake.com","provider":"ecostake"},{"address":"https://teritori-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://teritori-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://teritori_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://teritori-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"morocco-1","fees":{"fee_tokens":[{"denom":"uthiol","fixed_min_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc-terp.zenchainlabs.io/","provider":"ZenChainLabs"},{"address":"https://terp-mainnet-rpc.itrocket.net:443","provider":"itrocket.net"},{"address":"https://terp.rpc.nodex.one:443","provider":"nodex.one"}]}},{"chain_id":"columbus-5","fees":{"fee_tokens":[{"denom":"uluna","low_gas_price":28.325,"average_gas_price":28.325,"high_gas_price":50},{"denom":"usdr","low_gas_price":0.52469,"average_gas_price":0.52469,"high_gas_price":0.52469},{"denom":"uusd","low_gas_price":0.75,"average_gas_price":0.75,"high_gas_price":0.75},{"denom":"ukrw","low_gas_price":850,"average_gas_price":850,"high_gas_price":850},{"denom":"umnt","low_gas_price":2142.855,"average_gas_price":2142.855,"high_gas_price":2142.855},{"denom":"ueur","low_gas_price":0.625,"average_gas_price":0.625,"high_gas_price":0.625},{"denom":"ucny","low_gas_price":4.9,"average_gas_price":4.9,"high_gas_price":4.9},{"denom":"ujpy","low_gas_price":81.85,"average_gas_price":81.85,"high_gas_price":81.85},{"denom":"ugbp","low_gas_price":0.55,"average_gas_price":0.55,"high_gas_price":0.55},{"denom":"uinr","low_gas_price":54.4,"average_gas_price":54.4,"high_gas_price":54.4},{"denom":"ucad","low_gas_price":0.95,"average_gas_price":0.95,"high_gas_price":0.95},{"denom":"uchf","low_gas_price":0.7,"average_gas_price":0.7,"high_gas_price":0.7},{"denom":"uaud","low_gas_price":0.95,"average_gas_price":0.95,"high_gas_price":0.95},{"denom":"usgd","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"uthb","low_gas_price":23.1,"average_gas_price":23.1,"high_gas_price":23.1},{"denom":"usek","low_gas_price":6.25,"average_gas_price":6.25,"high_gas_price":6.25},{"denom":"unok","low_gas_price":6.25,"average_gas_price":6.25,"high_gas_price":6.25},{"denom":"udkk","low_gas_price":4.5,"average_gas_price":4.5,"high_gas_price":4.5},{"denom":"uidr","low_gas_price":10900,"average_gas_price":10900,"high_gas_price":10900},{"denom":"uphp","low_gas_price":38,"average_gas_price":38,"high_gas_price":38},{"denom":"uhkd","low_gas_price":5.85,"average_gas_price":5.85,"high_gas_price":5.85},{"denom":"umyr","low_gas_price":3,"average_gas_price":3,"high_gas_price":3},{"denom":"utwd","low_gas_price":20,"average_gas_price":20,"high_gas_price":20}]},"apis":{"rpc":[{"address":"https://terra-classic-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-terra-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://terraclassic-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://terraclassic-rpc-server-01.stakely.io","provider":"Stakely"}]}},{"chain_id":"phoenix-1","fees":{"fee_tokens":[{"denom":"uluna","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.015,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/terra2","provider":"Lavender.Five Nodes 🐝"},{"address":"https://terra-rpc.polkachu.com","provider":"polkachu"},{"address":"https://terra-rpc.stakely.io:443/","provider":"stakely"},{"address":"https://phoenix-rpc.terra.dev:443","provider":"Terraform Labs"},{"address":"https://terra-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-terra-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-archive-terra.r93axnodes.cloud:443","provider":"r93AX Nodes"},{"address":"https://rpc-terra.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://terra-phoenix-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://rpc-terra.wildsage.io","provider":"πŸ§™ WildSage Labs"},{"address":"https://terra.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"},{"address":"https://terra2.tdrsys.com:2053","provider":"TdrSys"},{"address":"https://terra-rpc.cosmosrescue.dev:8443","provider":"cosmosrescue"}]}},{"chain_id":"tgrade-mainnet-1","fees":{"fee_tokens":[{"denom":"utgd","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.075,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.mainnet-1.tgrade.confio.run","provider":"Confio"},{"address":"https://rpc.tgrade.posthuman.digital","provider":"POSTHUMAN ꝏ DVS"}]}},{"chain_id":"thorchain-1","apis":{"rpc":[]}},{"chain_id":"titan_18888-1","fees":{"fee_tokens":[{"denom":"atkx","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":110000000000,"high_gas_price":200000000000}]},"apis":{"rpc":[{"address":"https://titan-rpc.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc-tokyo.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc-seoul.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc-hongkong.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc.ibs.team","provider":"ibs.team"}]}},{"fees":{"fee_tokens":[{"denom":"nanoton","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"fees":{"fee_tokens":[{"denom":"sun","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"umee-1","fees":{"fee_tokens":[{"denom":"uumee","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.12,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://umee-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-umee-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://umee-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"http://umee.rpc.m.stavr.tech:10457","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"http://rpc-umee-0.node75.org:26657","provider":"Pro-Nodes75"},{"address":"https://umee-rpc.quantnode.tech","provider":"QuantNode"},{"address":"https://umee-rpc.tienthuattoan.com","provider":"TTT πŸ‡»πŸ‡³"},{"address":"https://rpc-umee-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://umee-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://umee-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://umee.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://umee-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-umee.mms.team","provider":"MMS"},{"address":"https://rpc-umee.mzonder.com","provider":"MZONDER"},{"address":"https://umee-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://umee-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://umee.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://umee-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://umee_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"unicorn-420","fees":{"fee_tokens":[{"denom":"uwunicorn","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[]}},{"chain_id":"FUND-MainNet-2","fees":{"fee_tokens":[{"denom":"nund","fixed_min_gas_price":25,"low_gas_price":100,"average_gas_price":200,"high_gas_price":300}]},"apis":{"rpc":[{"address":"https://rpc.unification.io:443","provider":"Unification"},{"address":"https://rpc.unification.chainmasters.ninja/","provider":"Chainmasters"}]}},{"chain_id":"ununifi-beta-v1","fees":{"fee_tokens":[{"denom":"uguu","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"http://a.lcd.ununifi.cauchye.net:26657","provider":"CauchyE"},{"address":"https://rpc.ununifi.nodestake.top","provider":"NodeStake"},{"address":"https://rpc.lavenderfive.com:443/ununifi","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.lavenderfive.com:443/ununifi","provider":"Lavender.Five Nodes 🐝"},{"address":"https://ununifi-rpc.genznodes.dev","provider":"genznodes"}]}},{"chain_id":"uptick_117-1","fees":{"fee_tokens":[{"denom":"auptick","fixed_min_gas_price":13000000000,"low_gas_price":13000000000,"average_gas_price":16000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://uptick-rpc.brocha.in:443","provider":"Brochain"},{"address":"https://uptick.rpc.bccnodes.com:443","provider":"BccNodes"},{"address":"https://rpc.uptick.nodestake.top","provider":"NodeStake"},{"address":"https://uptick.rpc.kjnodes.com","provider":"kjnodes"},{"address":"http://uptick.rpc.m.stavr.tech:3157","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://m-uptick.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://uptick-mainnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://uptick.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://uptick-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://uptick-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://rpc-uptick.cakralabs.site","provider":"Cakra Labs"},{"address":"https://rpc-uptick.sr20de.xyz","provider":"Sr20de"},{"address":"https://uptick-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"dimension_37-1","fees":{"fee_tokens":[{"denom":"axpla","fixed_min_gas_price":850000000000,"low_gas_price":850000000000,"average_gas_price":1147500000000,"high_gas_price":1487500000000}]},"apis":{"rpc":[{"address":"https://dimension-rpc.xpla.dev","provider":"Holdings"},{"address":"https://xpla.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/xpla","provider":"Lavender.Five Nodes 🐝"},{"address":"https://xpla-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"zetachain_7000-1","fees":{"fee_tokens":[{"denom":"azeta","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://zetachain.blockpi.network/rpc/v1/public","provider":"BlockPI"},{"address":"https://zetachain-mainnet-archive.allthatnode.com:26657","provider":"All That Node"},{"address":"https://rpc.lavenderfive.com:443/zetachain","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.zetachain.nodestake.org","provider":"NodeStake"},{"address":"https://zetachain-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://zetachain.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://zeta-chain.drpc.org","provider":"dRPC"}]}},{"chain_id":"junction","fees":{"fee_tokens":[{"denom":"amf","fixed_min_gas_price":0,"low_gas_price":0.00025,"average_gas_price":0.005,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://junction-rpc.validatorvn.com/","provider":"Validator VN"},{"address":"https://airchains-testnet-rpc.cosmonautstakes.com/","provider":"Cosmonaut Stakes"},{"address":"https://junction-testnet-rpc.synergynodes.com/","provider":"Synergy Nodes"},{"address":"https://airchains-rpc.anonid.top/","provider":"Anonid Top"},{"address":"https://airchains-test.rpc.moonbridge.team/","provider":"Moonbridge Team"},{"address":"https://airchains-rpc.chainad.org/","provider":"Coin Hunterstr"},{"address":"https://airchains.rpc.t.stavr.tech/","provider":"Stavr Tech"},{"address":"https://rpc.nodejumper.io/airchainstestnet","provider":"Nodejumper"},{"address":"https://t-airchains.rpc.utsa.tech/","provider":"UTSA"},{"address":"https://junction-rpc.kzvn.xyz/","provider":"KZVN"},{"address":"https://airchains-rpc.elessarnodes.xyz/","provider":"Elessar Nodes"},{"address":"https://junction-rpc.apollo-sync.com/","provider":"Apollo Sync"},{"address":"https://rpc-airchain.danggia.xyz/","provider":"DANGGIA"},{"address":"https://airchains-rpc.stakeme.pro/","provider":"Stakeme"},{"address":"https://airchains-testnet-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://airchains-testnet-rpc.crouton.digital/","provider":"Crouton Digital"},{"address":"https://airchains-testnet-rpc.itrocket.net/","provider":"IT Rocket"},{"address":"https://rpc1.airchains.t.cosmostaking.com/","provider":"Cosmostaking"}]}},{"chain_id":"sandbox-01","fees":{"fee_tokens":[{"denom":"uakt","fixed_min_gas_price":0,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.sandbox-01.aksh.pw:443","provider":"akash"}]}},{"chain_id":"constantine-3","fees":{"fee_tokens":[{"denom":"aconst","low_gas_price":1000000000000,"average_gas_price":1500000000000,"high_gas_price":2000000000000}]},"apis":{"rpc":[{"address":"https://rpc.constantine.archway.io","provider":"Archway"},{"address":"https://archway-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"arkeo","fees":{"fee_tokens":[{"denom":"uarkeo"}]},"apis":{"rpc":[{"address":"https://arkeonetwork-testnet.nodejumper.io:26657","provider":"NODEJUMPER"},{"address":"https://test-arkeo-rpc.kynraze.com","provider":"kynraze"},{"address":"https://testnet-arkeo-rpc.lavenderfive.com","provider":"lavenderfive"},{"address":"https://arkeo-rpc.siriusnodes.uk","provider":"siriusnodes"},{"address":"http://seed.arkeo.network:26657","provider":"arkeo"}]}},{"chain_id":"artela_11820-1","fees":{"fee_tokens":[{"denom":"uart","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://testnet-rpc1.artela.network","provider":"Artela Foundation"},{"address":"https://testnet-rpc2.artela.network","provider":"Artela Foundation"}]}},{"chain_id":"aura_6321-3","fees":{"fee_tokens":[{"denom":"ueaura","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://rpc.euphoria.aura.network/","provider":"Aura Network Foundation"}]}},{"chain_id":"axelar-testnet-lisbon-3","fees":{"fee_tokens":[{"denom":"uaxl","low_gas_price":0.007,"average_gas_price":0.007,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc-axelar-testnet.imperator.co:443","provider":"Imperator.co"},{"address":"https://axelartest-rpc.quickapi.com/","provider":"Quickapi"},{"address":"https://axelar-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"bbn-test3","fees":{"fee_tokens":[{"denom":"ubbn"}]},"apis":{"rpc":[{"address":"rpc.testnet3.babylonchain.io:443","provider":"Babylon foundation"}]}},{"chain_id":"bitcanna-dev-1","fees":{"fee_tokens":[{"denom":"ubcna","fixed_min_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://rpc-testnet.bitcanna.io","provider":"bitcanna"},{"address":"https://bitcanna-testnet.rpc.kjnodes.com/","provider":"kjnodes.com"},{"address":"https://testnet-bitcanna-rpc.konsortech.xyz/","provider":"konsortech.xyz"},{"address":"https://rpc.bitcanna-dev-1.bitcanna.aviaone.com/","provider":"aviaone.com"},{"address":"https://bitcanna-testnet.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://bcna-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"blockx_19077-1","apis":{"rpc":[]}},{"chain_id":"cascadia_6102-1","fees":{"fee_tokens":[{"denom":"aCC","fixed_min_gas_price":0,"low_gas_price":7,"average_gas_price":10,"high_gas_price":15}]},"apis":{"rpc":[{"address":"https://rpc.cascadia.foundation:443","provider":"cascadia"},{"address":"https://cscd-rpc.systemd.run:443","provider":"systemd"},{"address":"https://api.cascadia-t.indonode.net:443","provider":"Indonode"},{"address":"https://rpc-test.cascadia.hexnodes.co:443","provider":"Hexnodes"}]}},{"chain_id":"mocha-4","fees":{"fee_tokens":[{"denom":"utia","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc-mocha.pops.one","provider":"P-OPs"},{"address":"https://celestia-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-mocha-full.avril14th.org","provider":"Avril 14th"},{"address":"https://celestia-testnet-rpc.itrocket.net","provider":"πŸš€ITRocketπŸš€"},{"address":"https://rpc-celestia-testnet.cryptech.com.ua","provider":"CrypTech"},{"address":"https://rpc.celestia.testnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://celestia-testnet-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"}]}},{"chain_id":"babajaga-1","fees":{"fee_tokens":[{"denom":"uc4e","fixed_min_gas_price":0,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc-testnet.c4e.io","provider":"C4E"}]}},{"chain_id":"cheqd-testnet-6","fees":{"fee_tokens":[{"denom":"ncheq","fixed_min_gas_price":25,"low_gas_price":50,"average_gas_price":75,"high_gas_price":100}]},"apis":{"rpc":[{"address":"https://rpc.cheqd.network","provider":"cheqd"}]}},{"chain_id":"chimba-testnet","fees":{"fee_tokens":[{"denom":"ucmba","fixed_min_gas_price":0.25,"low_gas_price":1,"average_gas_price":5,"high_gas_price":10}]},"apis":{"rpc":[{"address":"https://rpc.testnet.chimba.ooo","provider":"chimba"}]}},{"chain_id":"banksy-testnet-3","fees":{"fee_tokens":[{"denom":"ppica","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.composable-t.indonode.net:443","provider":"Indonode"},{"address":"https://rpc-composable-testnet.sr20de.xyz:443","provider":"Sr20de"}]}},{"chain_id":"kitten-04","fees":{"fee_tokens":[{"denom":"uccat","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":1,"high_gas_price":2}]},"apis":{"rpc":[{"address":"https://rpc.coolcat.space","provider":"Digital Kitchen"}]}},{"chain_id":"coreum-testnet-1","fees":{"fee_tokens":[{"denom":"utestcore","fixed_min_gas_price":0.03125,"low_gas_price":0.0625,"average_gas_price":0.0625,"high_gas_price":62.5}]},"apis":{"rpc":[{"address":"https://full-node.testnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-eris.testnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://coreum-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"theta-testnet-001","fees":{"fee_tokens":[{"denom":"uatom","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://cosmoshubt.tendermintrpc.lava.build:443","provider":"Lava"},{"address":"https://rpc.sentry-01.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.sentry-02.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.state-sync-01.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.state-sync-02.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://public-cosmos-theta.w3node.com","provider":"Interchain.FM"},{"address":"https://rpc-theta.osmotest5.osmosis.zone/","provider":"Osmosis"}]}},{"chain_id":"provider","fees":{"fee_tokens":[{"denom":"uatom","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.provider-sentry-01.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.provider-sentry-02.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.provider-state-sync-01.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.provider-state-sync-02.ics-testnet.polypore.xyz","provider":"Hypha"}]}},{"chain_id":"malaga-420","fees":{"fee_tokens":[{"denom":"umlg","low_gas_price":0.03,"average_gas_price":0.04,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.malaga-420.cosmwasm.com:443","provider":"Confio"}]}},{"chain_id":"coss-testnet-1","fees":{"fee_tokens":[{"denom":"ucgas","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://coss-testnet-rpc.coss.ink","provider":"COSS"}]}},{"chain_id":"cudos-testnet-public-3","apis":{"rpc":[{"address":"https://rpc.testnet.cudos.org:443/","provider":"cudo"},{"address":"http://sentry-01.hosts.testnet.cudos.org:26657","provider":"cudo"},{"address":"http://sentry-02.hosts.testnet.cudos.org:26657","provider":"cudo"},{"address":"http://sentry-03.hosts.testnet.cudos.org:26657","provider":"cudo"}]}},{"chain_id":"deardoge-testnet","fees":{"fee_tokens":[{"denom":"udear","fixed_min_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://testnet-rpc.deardoge.org","provider":"dorafactory"}]}},{"chain_id":"morpheus-apollo-3","fees":{"fee_tokens":[{"denom":"udaric","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.03,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.morpheus.desmos.network","provider":"desmos"}]}},{"chain_id":"dhealth-testnet-2","fees":{"fee_tokens":[{"denom":"utdhp","fixed_min_gas_price":0.01,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc-testnet.dhealth.dev","provider":"dHealth"}]}},{"chain_id":"vota-testnet","fees":{"fee_tokens":[{"denom":"peaka","fixed_min_gas_price":100000000000}]},"apis":{"rpc":[{"address":"https://vota-testnet-rpc.dorafactory.org/","provider":"dorafactory"}]}},{"chain_id":"dydx-testnet-4","fees":{"fee_tokens":[{"denom":"adv4tnt","fixed_min_gas_price":12500000000,"low_gas_price":12500000000,"average_gas_price":12500000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://dydx-rpc-testnet.enigma-validator.com","provider":"Enigma"},{"address":"https://testnet-dydx-rpc.lavenderfive.com","provider":"Lavender Five"},{"address":"https://test-dydx-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://dydx-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://dydx-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"elystestnet-1","fees":{"fee_tokens":[{"denom":"uelys","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/2180E84E20F5679FCC760D8C165B60F42065DEF7F46A72B447CFF1B7DC6C0A65","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.testnet.elys.network","provider":"Elys Network"},{"address":"https://elys-testnet-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://elys-testnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://elys-rpc.kleomedes.network:443","provider":"Kleomedes"},{"address":"https://elys-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"empe-testnet-2","fees":{"fee_tokens":[{"denom":"uempe","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-testnet.empe.io/","provider":"empe"},{"address":"https://rpc-archive-testnet.empe.io/","provider":"empe-archive"}]}},{"chain_id":"circulus-1","fees":{"fee_tokens":[{"denom":"umpwr","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://empower-testnet-rpc.polkachu.com:443","provider":"Polkachu"},{"address":"https://empower.rpc.cumulo.com.es:443","provider":"Cumulo"},{"address":"https://rpc-t.empower.nodestake.top:443","provider":"NodeStake"},{"address":"https://rpc-empower.nodeist.net:443","provider":"Nodeist"},{"address":"https://empower-testnet.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://empower-testnet-rpc.itrocket.net:443","provider":"ITRocket"},{"address":"https://rpc.circulus-1.empower.aviaone.com:443","provider":"AviaOne"}]}},{"chain_id":"epix_4243-1","fees":{"fee_tokens":[{"denom":"aepix","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.testnet.epix.zone","provider":"Epix Testnet"}]}},{"chain_id":"evmos_9000-4","fees":{"fee_tokens":[{"denom":"atevmos","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://evmos.test.rpc.coldyvalidator.net","provider":"coldy"},{"address":"https://evmos-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://evmos-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"dorado-1","fees":{"fee_tokens":[{"denom":"atestfet","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc-dorado.fetch.ai:443","provider":"fetch.ai"}]}},{"chain_id":"fiamma-testnet-1","fees":{"fee_tokens":[{"denom":"ufia"}]},"apis":{"rpc":[{"address":"https://testnet-rpc.fiammachain.io","provider":"Fiamma"}]}},{"chain_id":"ebony-2","fees":{"fee_tokens":[{"denom":"tcony","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.015,"high_gas_price":0.015}]},"apis":{"rpc":[{"address":"https://ebony-rpc.finschia.io"}]}},{"chain_id":"galactica_9302-1","fees":{"fee_tokens":[{"denom":"agnet","fixed_min_gas_price":10,"low_gas_price":10,"average_gas_price":10,"high_gas_price":20}]},"apis":{"rpc":[{"address":"https://rpc.galactica.test.pfc.zone/","provider":"PFC"},{"address":"https://galactica-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"gitopia-janus-testnet-2","fees":{"fee_tokens":[{"denom":"utlore","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://gitopia-testnet.nodejumper.io","provider":"NODEJUMPER"}]}},{"chain_id":"berberis-1","fees":{"fee_tokens":[{"denom":"uhedge","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-berberis.hedgeblock.io","provider":"Hedge"}]}},{"chain_id":"testnet-1","fees":{"fee_tokens":[{"denom":"uheart","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://humans-testnet.nodejumper.io","provider":"NODEJUMPER"},{"address":"https://humans-testnet-rpc.cosmonautstakes.com","provider":"Cosmonaut Stakes πŸ€–"}]}},{"chain_id":"prajna-1","fees":{"fee_tokens":[{"denom":"uhid","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.prajna.hypersign.id","provider":"Hypersign"}]}},{"chain_id":"pandora-8","fees":{"fee_tokens":[{"denom":"uixo","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.testnet.ixo.earth/","provider":"ixoworld"}]}},{"chain_id":"imversed-test-1","fees":{"fee_tokens":[{"denom":"nimv","fixed_min_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://tx-endpoint-test.imversed.com/","provider":"imversed"}]}},{"chain_id":"injective-888","fees":{"fee_tokens":[{"denom":"inj","fixed_min_gas_price":160000000,"low_gas_price":500000000,"average_gas_price":700000000,"high_gas_price":900000000}]},"apis":{"rpc":[{"address":"https://injective-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://testnet.sentry.tm.injective.network:443","provider":"injectiveLabs"},{"address":"https://testnet.tm.injective.network","provider":"injectiveLabs"},{"address":"https://injective-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"canine-1","fees":{"fee_tokens":[{"denom":"ujkl","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"http://jkl.rpc.t.stavr.tech:19127","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://testnet-rpc.jackalprotocol.com","provider":"Jackal Labs"}]}},{"chain_id":"mesomelas-1","fees":{"fee_tokens":[{"denom":"ujkl","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://jackal-testnet-v4-rpc.brocha.in","provider":"Brochain"}]}},{"chain_id":"uni-6","fees":{"fee_tokens":[{"denom":"ujunox","low_gas_price":0.003,"average_gas_price":0.0045,"high_gas_price":0.006}]},"apis":{"rpc":[{"address":"https://juno-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"kichain-t-4","fees":{"fee_tokens":[{"denom":"utki","fixed_min_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://rpc-challenge.blockchain.ki/","provider":"kifoundation"}]}},{"chain_id":"kima_testnet","fees":{"fee_tokens":[{"denom":"uKIMA","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc-testnet.kima.finance/","provider":"Kima Network"}]}},{"chain_id":"harpoon-4","fees":{"fee_tokens":[{"denom":"ukuji","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://kujira-testnet-rpc.polkachu.com","provider":"polkachu"}]}},{"chain_id":"kaon-1","fees":{"fee_tokens":[{"denom":"tkyve","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc-eu-1.kaon.kyve.network","provider":"kyve"},{"address":"https://rpc-kyve-test.ecostake.com","provider":"ecostake"},{"address":"https://kyve-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"lava-testnet-2","fees":{"fee_tokens":[{"denom":"ulava","fixed_min_gas_price":0.000001,"low_gas_price":0.000001,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://lav1.tendermintrpc.lava.build:443","provider":"Lava"},{"address":"http://lava.rpc.t.stavr.tech:198","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://lava-testnet-rpc.itrocket.net:443","provider":"πŸš€ITRocketπŸš€"},{"address":"https://lava-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"likecoin-public-testnet-5","fees":{"fee_tokens":[{"denom":"nanoekil","fixed_min_gas_price":1000,"low_gas_price":1000,"average_gas_price":10000,"high_gas_price":1000000}]},"apis":{"rpc":[{"address":"https://node.testnet.like.co/rpc/","provider":"like.co"}]}},{"chain_id":"lumenx-test","fees":{"fee_tokens":[{"denom":"ulumen","fixed_min_gas_price":0.0025,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://testnet-rpc.lumenx.chaintools.tech/","provider":"ChainTools"},{"address":"https://testrpc-lumenx.cryptonet.pl/","provider":"CryptoNet"}]}},{"chain_id":"manifest-ledger-beta","fees":{"fee_tokens":[{"denom":"umfx","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.007,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://nodes.chandrastation.com/rpc/manifest/","provider":"Chandra Station"},{"address":"https://manifest-beta-rpc.liftedinit.tech/","provider":"Lifted Initiative"}]}},{"chain_id":"mantra-hongbai-1","fees":{"fee_tokens":[{"denom":"uom","fixed_min_gas_price":0,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.003}]},"apis":{"rpc":[{"address":"https://rpc.hongbai.mantrachain.io","provider":"MANTRACHAIN"},{"address":"https://mantra-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"mantra-dukong-1","fees":{"fee_tokens":[{"denom":"uom","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.dukong.mantrachain.io","provider":"MANTRACHAIN"},{"address":"https://mantra-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"ares-1","fees":{"fee_tokens":[{"denom":"umars","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://testnet-rpc.marsprotocol.io/","provider":"Mars Protocol"},{"address":"https://rpc-mars.nodeist.net/","provider":"Nodeist"}]}},{"chain_id":"mnova_10096-1","apis":{"rpc":[]}},{"chain_id":"narwhal-2","fees":{"fee_tokens":[{"denom":"uwhale","fixed_min_gas_price":0.25,"low_gas_price":0.25,"average_gas_price":0.5,"high_gas_price":0.75}]},"apis":{"rpc":[{"address":"https://migaloo-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"neura_267-1","fees":{"fee_tokens":[{"denom":"atankr"}]},"apis":{"rpc":[{"address":"https://rpc.ankr.com/neura_testnet","provider":"ankr"}]}},{"chain_id":"pion-1","fees":{"fee_tokens":[{"denom":"untrn","low_gas_price":0.0053,"average_gas_price":0.0053,"high_gas_price":0.0053}]},"apis":{"rpc":[{"address":"https://rpc-falcron.pion-1.ntrn.tech","provider":"Neutron"},{"address":"https://neutron-testnet-rpc.polkachu.com/","provider":"Polkachu"}]}},{"chain_id":"nibiru-testnet-1","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet-1.nibiru.fi","provider":"Nibiru Foundation"}]}},{"chain_id":"nibiru-testnet-2","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet-2.nibiru.fi","provider":"Nibiru Foundation"}]}},{"chain_id":"nibiru-testnet-3","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet-3.nibiru.fi","provider":"Nibiru Foundation"}]}},{"chain_id":"nillion-chain-testnet-1","fees":{"fee_tokens":[{"denom":"unil","low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.00025}]},"apis":{"rpc":[{"address":"https://nillion-testnet-rpc.polkachu.com/","provider":"polkachu"},{"address":"https://testnet-nillion-rpc.lavenderfive.com","provider":"lavenderfive"},{"address":"https://nillion-testnet.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://nillion-testnet.rpc.nodex.one","provider":"NodeX Emperor"}]}},{"chain_id":"grand-1","fees":{"fee_tokens":[{"denom":"uusdc","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://noble-testnet-rpc.polkachu.com","provider":"polkachu"},{"address":"https://rpc.testnet.noble.strange.love:443","provider":"strangelove"}]}},{"chain_id":"nois-testnet-005","fees":{"fee_tokens":[{"denom":"unois","fixed_min_gas_price":0,"low_gas_price":0.05,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://nois-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://nois-testnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://rpc.nois.mcbnode.online:443","provider":"mcbnode"},{"address":"https://nois-testnet.rpc.kjnodes.com:443","provider":"kjnodes"},{"address":"https://tnois-rpc.systemd.run:443","provider":"systemd"}]}},{"chain_id":"rila-1","fees":{"fee_tokens":[{"denom":"unls","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rila-cl.nolus.network:26657","provider":"NolusProtocol"}]}},{"chain_id":"nomic-testnet-6","fees":{"fee_tokens":[{"denom":"unom","low_gas_price":0,"average_gas_price":0,"high_gas_price":0},{"denom":"usat","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://testnet-rpc.nomic.io:2096","provider":"nomic"}]}},{"chain_id":"sandbox","fees":{"fee_tokens":[{"denom":"unym","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"unyx","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.sandbox.nymtech.net","provider":"Nym"}]}},{"chain_id":"okp4-nemeton-1","fees":{"fee_tokens":[{"denom":"uknow","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://api.testnet.okp4.network/rpc","provider":"OKP4"},{"address":"https://okptest-rpc.quickapi.com","provider":"Chainlayer"},{"address":"http://okp.rpc.t.stavr.tech:10097","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://okp4-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"osmo-test-5","fees":{"fee_tokens":[{"denom":"uosmo","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.osmotest5.osmosis.zone/","provider":"Osmosis"}]}},{"chain_id":"INVALID-ID-permtestnet-testnet-1","fees":{"fee_tokens":[{"denom":"uperm","low_gas_price":0.0025,"average_gas_price":0.0025,"high_gas_price":0.0024}]},"apis":{"rpc":[{"address":"https://rpc.3.finance/","provider":"Perm Network"}]}},{"chain_id":"test-core-1","fees":{"fee_tokens":[{"denom":"uxprt","fixed_min_gas_price":0,"low_gas_price":0.05,"average_gas_price":0.125,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://rpc-testnet-persistence.architectnodes.com/","provider":"Architect Nodes"},{"address":"https://persistence-testnet-rpc.baryon.dev/","provider":"Baryon"},{"address":"https://persistence-testnet-rpc.cosmonautstakes.com/","provider":"Cosmonaut Stakes"},{"address":"https://rpc.testnet.persistence.one/","provider":"Persistence"},{"address":"https://persistence-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://xprt-trpc.antrixy.org/","provider":"Antrix Validators"}]}},{"chain_id":"test-core-2","fees":{"fee_tokens":[{"denom":"uxprt","fixed_min_gas_price":0,"low_gas_price":0.05,"average_gas_price":0.125,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://rpc-persistence-testnet-01.stakeflow.io/","provider":"StakeFlow"},{"address":"https://persistence-testnet-rpc.baryon.dev/","provider":"Baryon"},{"address":"https://persistence-testnet-rpc.cosmonautstakes.com/","provider":"Cosmonaut Stakes"},{"address":"https://rpc.testnet2.persistence.one/","provider":"Persistence"},{"address":"https://persistence-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://persistencecoretest-rpc.ytwofund.pro/","provider":"YTWOFUND"},{"address":"http://persistence-testnet.paranorm.pro:24657/","provider":"Paranorm"}]}},{"chain_id":"planq_7077-1","fees":{"fee_tokens":[{"denom":"atplanq","fixed_min_gas_price":20000000000,"low_gas_price":30000000000,"average_gas_price":35000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc-atlas.planq.network","provider":"Planq Network"},{"address":"https://planq_testnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"pocket-beta","fees":{"fee_tokens":[{"denom":"upokt","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://shannon-testnet-grove-rpc.beta.poktroll.com","provider":"Grove"}]}},{"chain_id":"indigo-1","fees":{"fee_tokens":[{"denom":"upryzm","fixed_min_gas_price":0,"low_gas_price":0.015,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://testnet-rpc.pryzm.zone","provider":"PRYZM"},{"address":"https://pryzm-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"quasar-test-1","fees":{"fee_tokens":[{"denom":"uqsr","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://quasar-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://quasar-testnet-rpc.stakeandrelax.net/","provider":"Stake and Relax"},{"address":"https://quasar-testnet.rpc.kjnodes.com","provider":"KJNodes.com"}]}},{"chain_id":"rhye-2","fees":{"fee_tokens":[{"denom":"uqck","low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.00025}]},"apis":{"rpc":[{"address":"http://quick.rpc.t.stavr.tech:20027","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://quicksilver-testnet-rpc.polkachu.com/","provider":"polkachu"},{"address":"https://quicksilver-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"earendel-1","fees":{"fee_tokens":[{"denom":"uqwoyn"}]},"apis":{"rpc":[{"address":"https://testnet-rpc.qwoyn.studio","provider":"Qwoyn Studios"}]}},{"chain_id":"ssc-testnet-1","fees":{"fee_tokens":[{"denom":"utsaga","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://testnet-ssc.sagarpc.io/","provider":"Saga"}]}},{"chain_id":"pulsar-3","fees":{"fee_tokens":[{"denom":"uscrt","fixed_min_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet.secretsaturn.net","provider":"π•Šecret π•Šaturn"},{"address":"https://rpc.pulsar.scrttestnet.com","provider":"SCRT Testnet Committee"}]}},{"chain_id":"atlantic-1","fees":{"fee_tokens":[{"denom":"usei","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://sei-testnet-rpc.brocha.in","provider":"Brochain"}]}},{"chain_id":"atlantic-2","fees":{"fee_tokens":[{"denom":"usei","fixed_min_gas_price":0.08}]},"apis":{"rpc":[{"address":"https://sei-testnet-2-rpc.brocha.in","provider":"Brochain"},{"address":"https://rpc-testnet-sei.stingray.plus","provider":"StingRay"}]}},{"chain_id":"self-dev-1","fees":{"fee_tokens":[{"denom":"uself","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-devnet.selfchain.xyz","provider":"Selfchain"}]}},{"chain_id":"sge-network-3","fees":{"fee_tokens":[{"denom":"usge","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.testnet.sgenetwork.io","provider":"Sge Network"},{"address":"https://testnet-saage-rpc.lavenderfive.com/ ","provider":"Lavender.Five"},{"address":"https://saage-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-t.sge.nodestake.top/","provider":"Nodestake.top"},{"address":"https://sge.rpc.t.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"sge-network-4","fees":{"fee_tokens":[{"denom":"usge","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.testnet.sgenetwork.io","provider":"Sge Network"},{"address":"https://testnet-saage-rpc.lavenderfive.com/ ","provider":"Lavender.Five"},{"address":"https://saage-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-t.sge.nodestake.top/","provider":"Nodestake.top"}]}},{"chain_id":"yulei-2.1","fees":{"fee_tokens":[{"denom":"uctk","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://yulei-rpc.shentu.org:443","provider":"Shentu"}]}},{"chain_id":"fivenet","fees":{"fee_tokens":[{"denom":"usix","fixed_min_gas_price":1.25,"low_gas_price":1.25,"average_gas_price":1.5,"high_gas_price":1.75}]},"apis":{"rpc":[{"address":"https://rpc1.fivenet.sixprotocol.net:443"}]}},{"chain_id":"soarchaintestnet","fees":{"fee_tokens":[{"denom":"utsoar","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc1.testnet.soarchain.com","provider":"soarchain"},{"address":"https://rpc2.testnet.soarchain.com/","provider":"soarchain"},{"address":"https://soarchain-testnet-rpc.tienthuattoan.com","provider":"tienthuattoan"},{"address":"https://soarchain-testnet.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-t.soarchain.nodestake.org","provider":"nodeStake"},{"address":"https://soarchain-testnet-rpc.stakerhouse.com","provider":"stakerHouse"}]}},{"chain_id":"sourcetest-1","fees":{"fee_tokens":[{"denom":"usource","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.075,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://source-testnet-rpc.itrocket.net/","provider":"ITRocket"},{"address":"https://source-test.rpc.moonbridge.team/","provider":"MoonBridge"},{"address":"https://source-testnet-rpc.stake-town.com:443","provider":"StakeTown"},{"address":"https://rpc-testnet-source.sr20de.xyz","provider":"SR20DE"},{"address":"https://source-testnet.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://source_testnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"elgafar-1","fees":{"fee_tokens":[{"denom":"ustars","low_gas_price":0.03,"average_gas_price":0.04,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.elgafar-1.stargaze-apis.com","provider":"Stargaze Foundation"},{"address":"https://stargaze-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"stateset-1-testnet","fees":{"fee_tokens":[{"denom":"ustate","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.stateset.zone/","provider":"stateset"}]}},{"chain_id":"stride-internal-1","fees":{"fee_tokens":[{"denom":"ustrd","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://stride.testnet-1.stridenet.co","provider":"Stride"}]}},{"chain_id":"sunrise-test-0.1","fees":{"fee_tokens":[{"denom":"urise","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://a-node.sunrise-test-1.cauchye.net/","provider":"CauchyE"},{"address":"https://b-node.sunrise-test-1.cauchye.net/","provider":"CauchyE"}]}},{"chain_id":"swisstronik_1291-1","fees":{"fee_tokens":[{"denom":"aswtr","fixed_min_gas_price":7}]},"apis":{"rpc":[{"address":"https://rpc.testnet.swisstronik.com","provider":"Swisstronik"},{"address":"https://testnet-swisstronik-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://rpc.swisstronik.comunitynode.my.id","provider":"ComunityNode"}]}},{"chain_id":"symphony-testnet-3","fees":{"fee_tokens":[{"denom":"note","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://symphony.test.rpc.nodeshub.online/","provider":"Nodes Hub"},{"address":"https://symphony-testnet-rpc.cogwheel.zone/","provider":"Cogwheel βš™οΈ"}]}},{"chain_id":"amber-2","fees":{"fee_tokens":[{"denom":"uamber","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-testnet.synternet.com/","provider":"Synternet"}]}},{"chain_id":"90u-4","fees":{"fee_tokens":[{"denom":"uthiolx","fixed_min_gas_price":0.5,"low_gas_price":0.75,"average_gas_price":1,"high_gas_price":1.25}]},"apis":{"rpc":[{"address":"https://testnet-rpc.terp.network:443/","provider":"Terpnet Foundation"},{"address":"https://terp-testnet-rpc.itrocket.net:443/","provider":"itrocket"}]}},{"chain_id":"90u-2","fees":{"fee_tokens":[{"denom":"uthiolx","fixed_min_gas_price":0.5,"low_gas_price":0.75,"average_gas_price":1,"high_gas_price":1.25}]},"apis":{"rpc":[{"address":"https://terp-testnet-rpc.itrocket.net:443/","provider":"itrocket"}]}},{"chain_id":"pisco-1","fees":{"fee_tokens":[{"denom":"uluna","fixed_min_gas_price":0.0125,"low_gas_price":0.0125,"average_gas_price":0.015,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://pisco-rpc.terra.dev:443","provider":"Terraform Labs"},{"address":"https://terra-testnet-rpc.polkachu.com:443","provider":"Polkachu"}]}},{"chain_id":"titan_18889-1","fees":{"fee_tokens":[{"denom":"atkx","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":110000000000,"high_gas_price":200000000000}]},"apis":{"rpc":[{"address":"https://titan-testnet-rpc.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-1.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-2.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-3.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-4.titanlab.io:443","provider":"Titanlab.io"}]}},{"chain_id":"tucana_712-1","fees":{"fee_tokens":[{"denom":"atuc","fixed_min_gas_price":5000000000,"low_gas_price":10000000000,"average_gas_price":25000000000,"high_gas_price":30000000000}]},"apis":{"rpc":[{"address":"https://rpc.birdee-2.tucana.zone/","provider":"Tucana"}]}},{"chain_id":"ulas","apis":{"rpc":[{"address":"http://65.49.204.199:26657","provider":"UlasNetwork"}]}},{"chain_id":"FUND-TestNet-2","fees":{"fee_tokens":[{"denom":"nund","fixed_min_gas_price":25,"low_gas_price":100,"average_gas_price":200,"high_gas_price":300}]},"apis":{"rpc":[{"address":"https://rpc-testnet.unification.io:443","provider":"Unification"}]}},{"chain_id":"union-testnet-8","fees":{"fee_tokens":[{"denom":"muno","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.testnet-8.union.build","provider":"union"},{"address":"https://union-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-testnet-union.nodeist.net","provider":"Nodeist"},{"address":"https://union-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"uptick_7000-2","fees":{"fee_tokens":[{"denom":"auptick","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://uptick-7000-2-rpc.staketab.org:443","provider":"Staketab"}]}},{"chain_id":"buenavista-1","fees":{"fee_tokens":[{"denom":"uward","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.buenavista.wardenprotocol.org/","provider":"Warden Protocol"}]}},{"chain_id":"INVALID-ID-wavehashtestnet-testnet-1","fees":{"fee_tokens":[{"denom":"uwahax","low_gas_price":0.0025,"average_gas_price":0.0025,"high_gas_price":0.0024}]},"apis":{"rpc":[{"address":"https://rpc.wavehash.online/","provider":"WaveHash Network"}]}},{"chain_id":"xion-testnet-1","fees":{"fee_tokens":[{"denom":"uxion","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://testnet-burnt-rpc.lavenderfive.com","provider":"Lavender.Five Nodes 🐝"},{"address":"https://xion-testnet-rpc.polkachu.com","provider":"polkachu"},{"address":"https://burnt-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"cube_47-5","fees":{"fee_tokens":[{"denom":"axpla","fixed_min_gas_price":850000000000,"low_gas_price":850000000000,"average_gas_price":1147500000000,"high_gas_price":1487500000000}]},"apis":{"rpc":[{"address":"https://cube-rpc.xpla.dev","provider":"Holdings"}]}},{"chain_id":"gardia-2","fees":{"fee_tokens":[{"denom":"urock","fixed_min_gas_price":0.5,"low_gas_price":0.5,"average_gas_price":0.55,"high_gas_price":0.6}]},"apis":{"rpc":[{"address":"https://rpc.gardia.zenrocklabs.io/","provider":"zenrock"}]}},{"chain_id":"athens_7001-1","fees":{"fee_tokens":[{"denom":"azeta","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://zetachain-athens.blockpi.network/rpc/v1/public","provider":"BlockPI"},{"address":"https://zetachain-testnet-archive.allthatnode.com:26657","provider":"All That Node"}]}},{"chain_id":"landlord-2","fees":{"fee_tokens":[{"denom":"l2/1666ede2bf1985307a86de36a6b78411cbf1edeffc2ac569e6a7b2f8753db4bb","fixed_min_gas_price":0.15,"low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://maze-rpc-sequencer-53ecf1d6-4fa1-4103-827f-a9430df97cef.ane1-prod-nocsm.newmetric.xyz","provider":"Civitia"}]}},{"chain_id":"initiation-2","fees":{"fee_tokens":[{"denom":"uinit","fixed_min_gas_price":0.15,"low_gas_price":0.15,"average_gas_price":0.15,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc.testnet.initia.xyz/","provider":"Initia Labs"},{"address":"https://rpc-skip.testnet.initia.xyz/","provider":"Initia Labs","authorizedUser":"skip"}]}},{"chain_id":"glados-2.1","fees":{"fee_tokens":[{"denom":"umilk","fixed_min_gas_price":0.15,"low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4},{"denom":"ibc/37A3FB4FED4CA04ED6D9E5DA36C6D27248645F0E22F585576A1488B8A89C5A50","fixed_min_gas_price":0.15,"low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc.testnet.milkyway.zone","provider":"MilkyWay Labs"},{"address":"https://rpc-skip.testnet.milkyway.zone","provider":"MilkyWay Labs","authorizedUser":"skip","indexForSkip":0}]}},{"chain_id":"minievm-2","fees":{"fee_tokens":[{"denom":"GAS","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.minievm-2.initia.xyz","provider":"Initia Labs"},{"address":"https://rpc-skip.minievm-2.initia.xyz","provider":"Initia Labs","authorizedUser":"skip","indexForSkip":0}]}},{"chain_id":"minimove-2","fees":{"fee_tokens":[{"denom":"umin","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.minimove-2.initia.xyz","provider":"Initia Labs"},{"address":"https://rpc-skip.minimove-2.initia.xyz","provider":"Initia Labs","authorizedUser":"skip","indexForSkip":0}]}},{"chain_id":"miniwasm-2","fees":{"fee_tokens":[{"denom":"umin","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.miniwasm-2.initia.xyz","provider":"Initia Labs"},{"address":"https://rpc-skip.miniwasm-2.initia.xyz","provider":"Initia Labs","authorizedUser":"skip","indexForSkip":0}]}}] \ No newline at end of file +[{"chain_id":"aaronetwork","fees":{"fee_tokens":[{"denom":"uaaron","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://mainnet-rpc.aaronetwork.xyz","provider":"Aaron Network Foundation"},{"address":"https://aaronetwork_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"acre_9052-1","fees":{"fee_tokens":[{"denom":"aacre","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.acre.nodestake.top","provider":"nodestake"},{"address":"https://rpc-acre.synergynodes.com","provider":"Synergy Nodes"},{"address":"https://acrechain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.acre.tcnetwork.io","provider":"TC Network"},{"address":"https://mainnet-acre-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://acred-rpc.staketab.org:443","provider":"Staketab"}]}},{"chain_id":"agoric-3","fees":{"fee_tokens":[{"denom":"ubld","low_gas_price":0.03,"average_gas_price":0.05,"high_gas_price":0.07},{"denom":"uist","low_gas_price":0.0034,"average_gas_price":0.007,"high_gas_price":0.02}]},"apis":{"rpc":[{"address":"https://main.rpc.agoric.net:443"},{"address":"https://agoric-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.agoric.nodestake.top","provider":"NodeStake"},{"address":"https://agoric.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://agoric-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-agoric-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://agoric-rpc.0base.dev","provider":"0base.vc"},{"address":"https://agoric-rpc.stakeangle.com","provider":"StakeAngle"},{"address":"https://agoric-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc.agoric.stakewith.us","provider":"StakeWithUs"},{"address":"https://rpc-agoric-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://agoric-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.agoric.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"aioz_168-1","fees":{"fee_tokens":[{"denom":"attoaioz","fixed_min_gas_price":7000000000,"low_gas_price":7000000000,"average_gas_price":7000000000,"high_gas_price":10000000000}]},"apis":{"rpc":[{"address":"https://rpc-dataseed.aioz.network:443","provider":"AIOZ Network"}]}},{"chain_id":"akashnet-2","fees":{"fee_tokens":[{"denom":"uakt","fixed_min_gas_price":0.00025,"low_gas_price":0.00025,"average_gas_price":0.0025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://rpc.akash.forbole.com:443","provider":"forbole"},{"address":"https://rpc-akash.ecostake.com:443","provider":"ecostake"},{"address":"https://rpc.lavenderfive.com:443/akash","provider":"Lavender.Five Nodes"},{"address":"https://akash-rpc.polkachu.com","provider":"Polkachu"},{"address":"http://akash.c29r3.xyz:80/rpc","provider":"c29r3"},{"address":"https://akash-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://akash-mainnet-rpc.cosmonautstakes.com:443","provider":"Cosmonaut Stakes"},{"address":"https://akash-rpc.w3coins.io","provider":"w3coins"},{"address":"https://akash-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://akash.declab.pro:26601","provider":"Decloud Nodes Lab"},{"address":"https://rpc.akash.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"althea_258432-1","fees":{"fee_tokens":[{"denom":"aalthea","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":100000000000,"high_gas_price":300000000000}]},"apis":{"rpc":[{"address":"https://nodes.chandrastation.com/rpc/althea/","provider":"Chandra Station"},{"address":"https://althea.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/althea","provider":"Lavender.Five Nodes 🐝"}]}},{"chain_id":"andromeda-1","fees":{"fee_tokens":[{"denom":"uandr","low_gas_price":0.03,"average_gas_price":0.05,"high_gas_price":0.075}]},"apis":{"rpc":[{"address":"https://rpc.andromeda-1.andromeda.aviaone.com","provider":"AviaOne 🟒"},{"address":"https://andromeda.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://andromeda.rpc.nodex.one","provider":"nodex"},{"address":"https://andro.rpc.m.stavr.tech/","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/andromeda","provider":"Lavender.Five Nodes 🐝"},{"address":"https://andromeda-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://andromeda-rpc.stakerhouse.com:443","provider":"StakerHouse"},{"address":"https://andromeda-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://andromeda-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://andromeda.rpc.kjnodes.com","provider":"kjnodes.com πŸ¦„"},{"address":"andromeda-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"rpc-andromeda.blockval.io","provider":"Blockval"},{"address":"https://andromeda.rpc.liveraven.net","provider":"LiveRaveN"}]}},{"chain_id":"archway-1","fees":{"fee_tokens":[{"denom":"aarch","fixed_min_gas_price":140000000000,"low_gas_price":196000000000,"average_gas_price":225400000000,"high_gas_price":254800000000}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.archway.io","provider":"Archway Foundation"},{"address":"https://archway-mainnet-archive.allthatnode.com:26657","provider":"All That Node"},{"address":"https://m-archway.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc-1.archway.nodes.guru","provider":"Nodes.Guru"},{"address":"https://archway.rpc.silknodes.io/","provider":"Silk Nodes"},{"address":"https://archway.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-archway.cryptech.com.ua","provider":"cryptech"},{"address":"https://rpc.archway.nodestake.top","provider":"NodeStake"},{"address":"https://rpc-archway.theamsolutions.info","provider":"AM Solutions"},{"address":"https://archway-rpc.w3coins.io","provider":"w3coins"},{"address":"https://m-archway.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc.lavenderfive.com:443/archway","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-archway.mms.team","provider":"MMS"},{"address":"https://rpc-archway.mzonder.com","provider":"MZONDER"},{"address":"https://rpc.archway.lgns.net","provider":"Luganodes"},{"address":"https://archway-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://archway-rpc.0base.dev","provider":"0base.vc"},{"address":"https://archway-mainnet.rpc.l0vd.com","provider":"L0vd.com"},{"address":"https://archway-rpc.openbitlab.com","provider":"openbitlab"},{"address":"https://rpc-archway.mzonder.com","provider":"MZONDER"},{"address":"https://rpc-archway.mainnet.validatrium.club","provider":"Validatrium"},{"address":"https://rpc.archway.stakeup.tech","provider":"StakeUp"},{"address":"https://archway-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.archway.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc-archway.luckyfriday.io/","provider":"GlobalStake"},{"address":"https://archway-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://archway-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"arkh","fees":{"fee_tokens":[{"denom":"arkh","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://asc-dataseed.arkhadian.com/","provider":"arkhnetwork"},{"address":"https://arkh_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"mantle-1","fees":{"fee_tokens":[{"denom":"umntl","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.assetmantle.one","provider":"AssetMantle"},{"address":"https://assetmantle-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.assetmantle.nodestake.top","provider":"NodeStake"},{"address":"https://rpc-assetmantle-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.mantle.paranorm.pro:443","provider":"paranorm"},{"address":"https://assetmantle-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://assetmantle-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"atomone-1","fees":{"fee_tokens":[{"denom":"uatone","fixed_min_gas_price":0.001,"low_gas_price":0.006,"average_gas_price":0.006,"high_gas_price":0.009}]},"apis":{"rpc":[{"address":"https://atomone-rpc.allinbits.com:443","provider":"AllInBits"},{"address":"https://atomone-rpc.cogwheel.zone","provider":"Cogwheel βš™οΈ"},{"address":"https://atomone.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://rpc-atomone.nodeist.net","provider":"Nodeist"},{"address":"https://rpc-atomone-1.cros-nest.com:443","provider":"crosnest"},{"address":"https://community.nuxian-node.ch:6797/atomone/trpc","provider":"PRO Delegators"},{"address":"https://atomone-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://atomone_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://atomone-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://atomone-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"aura_6322-2","fees":{"fee_tokens":[{"denom":"uaura","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://rpc.aura.network/","provider":"Aura Network Foundation"},{"address":"https://m-aura.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://aura.rpc.m.stavr.tech:11047","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://aura-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://aura.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://mainnet-aura-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.lavenderfive.com:443/aura","provider":"Lavender.Five Nodes 🐝"},{"address":"https://aura-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc.aura.safeblock.space","provider":"Safe Block"},{"address":"https://rpc.aura.silentvalidator.com","provider":"silent"},{"address":"https://rpc-aura.mms.team","provider":"MMS"},{"address":"https://aura-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://aura-rpc.palamar.io","provider":"Palamar"},{"address":"https://aura.rpc.srv.stakr.space","provider":"STAKR.space"},{"address":"https://aura-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://aura-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"axelar-dojo-1","fees":{"fee_tokens":[{"denom":"uaxl","fixed_min_gas_price":0.007,"low_gas_price":0.007,"average_gas_price":0.007,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc-axelar.imperator.co:443","provider":"Imperator.co"},{"address":"https://axelar-rpc.quickapi.com:443","provider":"chainlayer"},{"address":"https://rpc-axelar.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://axelar-rpc.pops.one:443","provider":"p-ops"},{"address":"https://axelar-rpc.qubelabs.io:443","provider":"Qubelabs"},{"address":"https://rpc-1.axelar.nodes.guru:443","provider":"nodes.guru"},{"address":"https://rpc-axelar-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://axelar-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://axelar.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://rpc.axelar.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://axelar-rpc.validatrium.club","provider":"Validatrium"},{"address":"https://rpc-axelar.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://axelar-rpc.quantnode.tech/","provider":"QuantNode"},{"address":"https://axelar-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://axelar-rpc.rockrpc.net/","provider":"RockawayX Infra"},{"address":"https://axelar-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc-axelar-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://axelar-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://axelar-rpc.w3coins.io","provider":"w3coins"},{"address":"https://axelar-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://axelar.drpc.org","provider":"dRPC"}]}},{"chain_id":"laozi-mainnet","fees":{"fee_tokens":[{"denom":"uband","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.005}]},"apis":{"rpc":[{"address":"http://rpc.laozi1.bandchain.org:80","provider":"bandprotocol"},{"address":"https://rpc-bandchain-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://band-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://bandchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://band.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-band-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-band.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://band-rpc.w3coins.io","provider":"w3coins"},{"address":"https://bandprotocol-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://public.stakewolle.com/cosmos/bandchain/rpc","provider":"Stakewolle"},{"address":"https://rpc.band.bronbro.io/","provider":"Bro_n_Bro"},{"address":"https://rpc.band.roomit.xyz/","provider":"Roomit"},{"address":"https://band-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"beezee-1","fees":{"fee_tokens":[{"denom":"ubze","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.getbze.com","provider":"AlphaTeam"},{"address":"https://rpc-1.getbze.com","provider":"AlphaTeam"},{"address":"https://rpc-2.getbze.com","provider":"AlphaTeam"},{"address":"https://beezee_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bitbadges-1","fees":{"fee_tokens":[{"denom":"ubadge","fixed_min_gas_price":0,"low_gas_price":0.00025,"average_gas_price":0.0025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"http://134.122.12.165:26657","provider":"bitbadges"},{"address":"https://bitbadges_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bitcanna-1","fees":{"fee_tokens":[{"denom":"ubcna","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.bitcanna.io/","provider":"bitcanna"},{"address":"https://bcna-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://bitcanna-rpc.panthea.eu/","provider":"Panthea EU"},{"address":"https://rpc.bitcanna.sgtstake.com/","provider":"SGTstake"},{"address":"https://bitcanna.rpc.m.anode.team/","provider":"AlxVoy ⚑ ANODE.TEAM"},{"address":"https://bitcanna.rpc.m.stavr.tech/","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-bcna.kjinc.io/","provider":"KJINC.io"},{"address":"https://mainnet-bitcanna-rpc.konsortech.xyz/","provider":"KonsorTech"},{"address":"https://bitcanna.rpc.kjnodes.com/","provider":"kjnodes"},{"address":"https://bitcanna-rpc.genznodes.dev/","provider":"genznodes"},{"address":"https://rpc.bitcanna-1.bitcanna.aviaone.com/","provider":"AVIAONE 🟒"},{"address":"https://rpc.bitcanna-mainnet.hexnodes.one/","provider":"Hexnodes"},{"address":"https://rpc.bitcanna.citizenweb3.com/","provider":"Citizen Web3"},{"address":"https://bitcanna-mainnet.rpc.l0vd.com/","provider":"L0vd.com"},{"address":"https://bitcanna-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.bitcanna.safeblock.space","provider":"Safe Block"},{"address":"https://bitcanna.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://rpc.bitcanna.indonode.net/","provider":"Indonode"},{"address":"https://rpc-bitcanna.mms.team:443","provider":"MMS"},{"address":"https://bitcanna-rpc.validatornode.com","provider":"ValidatorNode"},{"address":"https://bitcanna.rpc.nodex.one","provider":"NodeX Emperor ⚑ Bitcanna"},{"address":"https://bcna.rpc.arcturian.tech/","provider":"Arcturian Tech"},{"address":"https://rpc.bitcanna.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://bitcanna-rpc.bluestake.net","provider":"BlueStake"},{"address":"https://rpc-bitcanna.cryptech.com.ua","provider":"CrypTech"},{"address":"https://bitcanna-rpc.kalia.network/","provider":"Kalia Network"},{"address":"https://bitcanna.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://bitcanna_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bitsong-2b","fees":{"fee_tokens":[{"denom":"ubtsg","fixed_min_gas_price":0,"low_gas_price":3,"average_gas_price":10,"high_gas_price":20}]},"apis":{"rpc":[{"address":"https://rpc-bitsong-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.explorebitsong.com","provider":"stake.systems"},{"address":"https://bitsong-rpc.validatrium.club","provider":"Validatrium"},{"address":"https://rpc.bitsong.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.bitsong.quokkastake.io","provider":"🐹 Quokka Stake"},{"address":"https://rpc-bitsong.starsquid.io","provider":"Starsquid"},{"address":"https://rpc-bitsong.architectnodes.com","provider":"Architect Nodes"},{"address":"http://bitsong.statesync.nodersteam.com:11657","provider":"[NODERS]TEAM"},{"address":"https://rpc.bitsong.safeblock.space","provider":"Safe Block"},{"address":"https://bitsong.tdrsys.com:2053","provider":"TdrSys"},{"address":"https://bitsong-rpc.panthea.eu","provider":"Panthea EU"},{"address":"https://rpc.bitsong.mathnodes.com","provider":"MathNodes"},{"address":"https://bitsong-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://bitsong-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://bitsong.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"blockx_19191-1","apis":{"rpc":[{"address":"https://rpc-blockx.nodeist.net","provider":"Nodeist"},{"address":"https://blockx_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bluechip-2","fees":{"fee_tokens":[{"denom":"ubluechip","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[]}},{"chain_id":"bluzelle-9","fees":{"fee_tokens":[{"denom":"ubnt","fixed_min_gas_price":0.002,"low_gas_price":0.002,"average_gas_price":0.002,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://a.client.sentry.net.bluzelle.com:26657","provider":"Bluzelle"},{"address":"https://b.client.sentry.net.bluzelle.com:26657","provider":"Bluzelle"},{"address":"https://c.client.sentry.net.bluzelle.com:26657","provider":"Bluzelle"},{"address":"https://bluzelle_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bostrom","fees":{"fee_tokens":[{"denom":"boot","low_gas_price":0,"average_gas_price":0,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.bostrom.cybernode.ai","provider":"cybercongress"},{"address":"https://rpc-cyber-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.cyber.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"bouachain","fees":{"fee_tokens":[{"denom":"ubouacoin","fixed_min_gas_price":0,"low_gas_price":0.0006,"average_gas_price":0.012,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.bouachain.com","provider":"BouaValidator"}]}},{"chain_id":"canto_7700-1","fees":{"fee_tokens":[{"denom":"acanto","fixed_min_gas_price":1000000000000,"low_gas_price":1000000000000,"average_gas_price":2000000000000,"high_gas_price":3000000000000}]},"apis":{"rpc":[{"address":"https://rpc.canto.nodestake.top","provider":"NodeStake"},{"address":"https://canto-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.canto.silentvalidator.com/","provider":"silent"},{"address":"https://canto.gravitychain.io:26657","provider":"Althea"},{"address":"https://canto-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-canto.kewrnode.com","provider":"Kewr Node"}]}},{"chain_id":"carbon-1","fees":{"fee_tokens":[{"denom":"swth","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1,"high_gas_price":1,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"usc","fixed_min_gas_price":0,"low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.0001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"bnb.1.6.773edb","fixed_min_gas_price":0,"low_gas_price":1000000,"average_gas_price":1000000,"high_gas_price":1000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"bneo.1.14.e2e5f6","fixed_min_gas_price":0,"low_gas_price":0.0015,"average_gas_price":0.0015,"high_gas_price":0.0015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"busd.1.6.754a80","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"cglp.1.19.1698d3","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"cgt/1","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"eth.1.19.c3b805","fixed_min_gas_price":0,"low_gas_price":100000,"average_gas_price":100000,"high_gas_price":100000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"eth.1.2.942d87","fixed_min_gas_price":0,"low_gas_price":100000,"average_gas_price":100000,"high_gas_price":100000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C","fixed_min_gas_price":0,"low_gas_price":0.0035,"average_gas_price":0.0035,"high_gas_price":0.0035,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","fixed_min_gas_price":0,"low_gas_price":0.0000075,"average_gas_price":0.0000075,"high_gas_price":0.0000075,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5","fixed_min_gas_price":0,"low_gas_price":0.00005,"average_gas_price":0.00005,"high_gas_price":0.00005,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5","fixed_min_gas_price":0,"low_gas_price":0.00032,"average_gas_price":0.00032,"high_gas_price":0.00032,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364","fixed_min_gas_price":0,"low_gas_price":300000000,"average_gas_price":300000000,"high_gas_price":300000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118","fixed_min_gas_price":0,"low_gas_price":0.0006,"average_gas_price":0.0006,"high_gas_price":0.0006,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5","fixed_min_gas_price":0,"low_gas_price":0.00015,"average_gas_price":0.00015,"high_gas_price":0.00015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","fixed_min_gas_price":0,"low_gas_price":0.0000075,"average_gas_price":0.0000075,"high_gas_price":0.0000075,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93","fixed_min_gas_price":0,"low_gas_price":0.00015,"average_gas_price":0.00015,"high_gas_price":0.00015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861","fixed_min_gas_price":0,"low_gas_price":200000000,"average_gas_price":200000000,"high_gas_price":200000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701","fixed_min_gas_price":0,"low_gas_price":0.00001,"average_gas_price":0.00001,"high_gas_price":0.00001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C","fixed_min_gas_price":0,"low_gas_price":0.00001,"average_gas_price":0.00001,"high_gas_price":0.00001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","fixed_min_gas_price":0,"low_gas_price":0.00015,"average_gas_price":0.00015,"high_gas_price":0.00015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"usdc.1.2.343151","fixed_min_gas_price":0,"low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.0001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"usdc.1.6.53ff75","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"zil.1.18.1a4a06","fixed_min_gas_price":0,"low_gas_price":6000,"average_gas_price":6000,"high_gas_price":6000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}}]},"apis":{"rpc":[{"address":"https://tm-api.carbon.network","provider":"switcheo-labs"},{"address":"https://rpc.lavenderfive.com:443/carbon","provider":"Lavender.Five Nodes 🐝"},{"address":"https://carbon-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.carbon.blockhunters.org","provider":"BlockHunters"}]}},{"chain_id":"celestia","fees":{"fee_tokens":[{"denom":"utia","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://public-celestia-rpc.numia.xyz","provider":"Numia"},{"address":"https://celestia-rpc.mesa.newmetric.xyz","provider":"Newmetric"},{"address":"https://rpc.lunaroasis.net","provider":"Lunar Oasis"},{"address":"https://rpc.celestia.nodestake.top","provider":"NodeStake"},{"address":"https://rpc.lavenderfive.com:443/celestia","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-celestia-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-celestia.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"http://celestia.rpc.nodersteam.com:29657","provider":"[NODERS]TEAM"},{"address":"https://celestia.rpc.interchain.validao.xyz","provider":"ValiDAO"},{"address":"https://celestia-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://celestia.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://celestia.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://celestia-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-celestia.mzonder.com","provider":"MZONDER"},{"address":"https://celestia-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://rpc-celestia.theamsolutions.info","provider":"AM Solutions"},{"address":"https://celestia-mainnet-rpc.autostake.com:443","provider":"AutoStake | Delegate for StakeDrops"},{"address":"https://rpc.celestia.validatus.com","provider":"Validatus"},{"address":"https://celestia-rpc.sr20de.xyz","provider":"Sr20de"},{"address":"https://rpc-celestia-full.avril14th.org","provider":"Avril 14th"},{"address":"https://rpc.freshstaking.com/celestia","provider":"FreshSTAKING"},{"address":"https://celestia.cumulo.org.es/","provider":"Cumulo"},{"address":"https://celestia-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.celestia-app.bronbro.io","provider":"Bro_n_Bro"},{"address":"https://celestia-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc.celestia.citizenweb3.com","provider":"Citizen Web3"},{"address":"https://celestia-mainnet-rpc.itrocket.net","provider":"πŸš€ itrocket πŸš€"},{"address":"https://rpc.celestia.mainnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://celestia-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"}]}},{"chain_id":"perun-1","fees":{"fee_tokens":[{"denom":"uc4e","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.c4e.io/","provider":"C4E"},{"address":"https://rpc.c4e.mainnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://rpc.c4e.nodestake.top","provider":"NodeStake"},{"address":"https://c4e.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://chain4energy-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://c4e.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-c4e.takeshi.team","provider":"TAKESHI"},{"address":"https://rpc-c4e.mzonder.com","provider":"MZONDER"},{"address":"https://rpc.cros-nest.com/chain4energy","provider":"Crosnest"},{"address":"https://rpc.c4e.indonode.net","provider":"Indonode"},{"address":"https://c4e-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.c4e.silentvalidator.com","provider":"silent"},{"address":"http://rpc.c4e.stakeup.tech","provider":"StakeUp"},{"address":"https://chain4energy-rpc.stakeangle.com","provider":"StakeAngle"},{"address":"https://c4e-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://rpc-c4e.theamsolutions.info","provider":"AM Solutions"},{"address":"https://c4e.rpc.m.anode.team","provider":"AlxVoy ⚑ ANODE.TEAM"},{"address":"http://185.245.182.192:46657","provider":"Meerlabs"},{"address":"http://89.117.58.109:26657","provider":"medes"},{"address":"http://c4e.rpc.node75.org:26957","provider":"Pro-nodes75"},{"address":"http://164.68.125.243:26657","provider":"Smt Network"},{"address":"https://c4e-rpc.antrixy.org/","provider":"Antrix Validators"},{"address":"https://c4e.doubletop.tech/","provider":"DOUBLETOP"},{"address":"https://c4e-rpc.kalia.network:443","provider":"Kalia Network"},{"address":"http://38.242.220.64:16657","provider":"mahof"},{"address":"http://209.182.239.169:46657","provider":"SECARD"},{"address":"https://rpc.c4e.validatus.com:443","provider":"Validatus"},{"address":"https://rpc-m-c4e.apeironnodes.com:443","provider":"Apeiron Nodes"},{"address":"http://rpc-c4e.cryptech.com.ua:443","provider":"Cryptech"},{"address":"http://37.60.240.43:46657","provider":"NakoTurk"},{"address":"https://chain4energy_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"cheqd-mainnet-1","fees":{"fee_tokens":[{"denom":"ncheq","fixed_min_gas_price":25,"low_gas_price":50,"average_gas_price":75,"high_gas_price":100}]},"apis":{"rpc":[{"address":"https://rpc.cheqd.net","provider":"cheqd"},{"address":"https://rpc.lavenderfive.com:443/cheqd","provider":"Lavender.Five Nodes"},{"address":"https://cheqd.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-cheqd-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.cheqd.nodestake.top","provider":"NodeStake"},{"address":"https://rpc-cheqd.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://cheqd-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-cheqd.blockval.io","provider":"Blockval"},{"address":"https://public.stakewolle.com/cosmos/cheqd/rpc","provider":"Stakewolle"},{"address":"https://cheq-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://cheqd-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"chihuahua-1","fees":{"fee_tokens":[{"denom":"uhuahua","fixed_min_gas_price":0,"low_gas_price":500,"average_gas_price":1250,"high_gas_price":2000}]},"apis":{"rpc":[{"address":"https://rpc.chihuahua.wtf","provider":"Chihuahua"},{"address":"https://rpc-chihuahua.ecostake.com","provider":"ecostake"},{"address":"https://chihua.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://chihuahua-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-chihuahua-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/chihuahua","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.huahua.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://chihuahua-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://rpc-chihuahua.pupmos.network","provider":"PUPMØS"},{"address":"https://chihuahua-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://chihuahua-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.chihuahua.validatus.com","provider":"Validatus"},{"address":"https://chihuahua-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://chihuahua.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"}]}},{"chain_id":"chimba","fees":{"fee_tokens":[{"denom":"ucmba","fixed_min_gas_price":0.25,"low_gas_price":1,"average_gas_price":5,"high_gas_price":10}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.chimba.ooo","provider":"chimba"}]}},{"chain_id":"cifer-2","fees":{"fee_tokens":[{"denom":"ucif","fixed_min_gas_price":0.0025,"low_gas_price":1,"average_gas_price":5,"high_gas_price":10}]},"apis":{"rpc":[{"address":"http://34.128.114.243:26657","provider":"Cifer"}]}},{"chain_id":"cnho_stables-1","fees":{"fee_tokens":[{"denom":"ucnho","fixed_min_gas_price":0.000005,"low_gas_price":0.000001,"average_gas_price":0.00001,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://rpc.cnho.io","provider":"CNHO Stables"},{"address":"https://cnhostables_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"comdex-1","fees":{"fee_tokens":[{"denom":"ucmdx","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.comdex.one","provider":"comdex"},{"address":"https://comdex-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://comdex.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.comdex.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.lavenderfive.com:443/comdex","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-comdex.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://comdex-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://comdex-rpc.w3coins.io","provider":"w3coins"},{"address":"https://comdex-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://comdex-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-comdex-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://comdex-rpc.validatornode.com","provider":"ValidatorNode"},{"address":"https://rpc-comdex.blockval.io","provider":"Blockval"},{"address":"https://comdex-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://comdex-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"commercio-3","fees":{"fee_tokens":[{"denom":"ucommercio"}]},"apis":{"rpc":[{"address":"https://rpc-mainnet.commercio.network"}]}},{"chain_id":"centauri-1","fees":{"fee_tokens":[{"denom":"ppica","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-composable-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://composable-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://picasso-rpc.cogwheel.zone:443","provider":"Cogwheel βš™οΈ"},{"address":"https://rpc.lavenderfive.com:443/picasso","provider":"Lavender.Five Nodes 🐝"},{"address":"https://composable-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://picasso-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://composable.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://picasso-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.centauri.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://composable.rpc.moonbridge.team","provider":"Moonbridge"},{"address":"https://rpc.composable.citizenweb3.com:443","provider":"Citizen Web3"},{"address":"https://composable.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"cvn_2032-1","fees":{"fee_tokens":[{"denom":"acvnt","fixed_min_gas_price":100000000,"low_gas_price":100000000,"average_gas_price":200000000,"high_gas_price":300000000}]},"apis":{"rpc":[{"address":"https://rpc.cvn.io/","provider":"cvn.io"},{"address":"https://conscious_mainnet_rpc.chain.whenmoonwhenlambo.money/","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"coreum-mainnet-1","fees":{"fee_tokens":[{"denom":"ucore","fixed_min_gas_price":0.03125,"low_gas_price":0.0625,"average_gas_price":0.0625,"high_gas_price":62.5}]},"apis":{"rpc":[{"address":"https://full-node.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-californium.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-curium.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-uranium.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://rpc-coreum.ecostake.com","provider":"ecostake"},{"address":"https://coreum.rpc.silknodes.io","provider":"Silk Nodes"},{"address":"https://coreum-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.m.core.solonation.io","provider":"#SoloNation"},{"address":"https://coreum-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://coreum-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://public.stakewolle.com/cosmos/coreum/rpc","provider":"Stakewolle"},{"address":"https://coreum-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"cosmoshub-4","fees":{"fee_tokens":[{"denom":"uatom","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://cosmoshub.tendermintrpc.lava.build:443","provider":"Lava"},{"address":"https://cosmos-rpc.quickapi.com:443","provider":"Chainlayer"},{"address":"https://cosmos-rpc.onivalidator.com","provider":"Oni Validator ⛩️"},{"address":"https://rpc-cosmoshub.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc.lavenderfive.com:443/cosmoshub","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-cosmoshub.ecostake.com","provider":"ecostake"},{"address":"https://go.getblock.io/17515cb3ec0e43b7817f182e5de6066a","provider":"GetBlock RPC Nodes"},{"address":"https://rpc-cosmoshub.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-cosmoshub.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://cosmos-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://cosmos-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-cosmoshub-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-cosmoshub.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc.cosmos.dragonstake.io","provider":"DragonStake"},{"address":"https://cosmoshub.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://rpc.cosmos.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://cosmos-rpc.rockrpc.net","provider":"RockawayX Infra"},{"address":"http://rpc-cosmoshub.freshstaking.com:26657","provider":"FreshSTAKING"},{"address":"https://cosmos-rpc.easy2stake.com/","provider":"Easy 2 Stake"},{"address":"https://rpc.cosmos.nodestake.top","provider":"NodeStake"},{"address":"https://cosmos.rpc.silknodes.io","provider":"Silk Nodes"},{"address":"https://cosmos-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://cosmoshub.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.cosmoshub.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://rpc-cosmos-hub-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://cosmos-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-cosmoshub.mms.team","provider":"MMS"},{"address":"https://cosmos-rpc.tienthuattoan.com","provider":"TTT πŸ‡»πŸ‡³"},{"address":"https://community.nuxian-node.ch:6797/gaia/trpc","provider":"PRO Delegators"},{"address":"https://cosmos-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://cosmoshub-rpc.cosmosrescue.dev","provider":"cosmosrescue"},{"address":"https://cosmos.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"},{"address":"https://public.stakewolle.com/cosmos/cosmoshub/rpc","provider":"Stakewolle"},{"address":"https://rpc-cosmos.kewrnode.com","provider":"Kewr Node"},{"address":"https://rpc.cosmoshub-4.citizenweb3.com","provider":"Citizen Web3"},{"address":"https://cosmos-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://cosmos-hub.drpc.org","provider":"dRPC"},{"address":"https://cosmoshub-mainnet-rpc.itrocket.net","provider":"ITRocket"},{"address":"https://cosmoshub.rpc.quasarstaking.ai","provider":"Quasar"}]}},{"chain_id":"coss-1","fees":{"fee_tokens":[{"denom":"ucoss","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"ucgas","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"ucias","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://coss-rpc.coss.ink","provider":"StellarGuardian"},{"address":"https://coss-rpc.cias.network","provider":"CelestialPhoenix"}]}},{"chain_id":"crescent-1","fees":{"fee_tokens":[{"denom":"ucre","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://mainnet.crescent.network:26657","provider":"crescent"},{"address":"https://crescent-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-crescent.pupmos.network","provider":"PUPMØS"},{"address":"https://crescent.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://crescent-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-crescent.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://rpc-crescent-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://crescent-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc.crescent.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"cronosmainnet_25-1","fees":{"fee_tokens":[{"denom":"basecro"}]},"apis":{"rpc":[{"address":"https://rpc.cronos.org/","provider":"cronos.org"},{"address":"https://cronos-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://cronos.drpc.org","provider":"dRPC"}]}},{"chain_id":"crypto-org-chain-mainnet-1","fees":{"fee_tokens":[{"denom":"basecro","low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.crypto.org/","provider":"cronos.org"},{"address":"https://rpc-cryptoorgchain-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-cryptoorgchain.ecostake.com","provider":"ecostake"},{"address":"https://cryptocom-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://cryptocom-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-cryptoorg.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://cro-chain-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"mainnet-3","fees":{"fee_tokens":[{"denom":"udec","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://poseidon.mainnet.decentr.xyz","provider":"decentr"},{"address":"https://rpc.decentr.chaintools.tech/","provider":"ChainTools"},{"address":"https://decentr.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://decentr-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc-dcntr.nodine.id/","provider":"Nodine.ID"},{"address":"https://rpc-decentr.mms.team/","provider":"MMS"}]}},{"chain_id":"desmos-mainnet","fees":{"fee_tokens":[{"denom":"udsm","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.03,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.desmos.network","provider":"desmos"},{"address":"https://desmos-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://desmos-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc.desmos.tcnetwork.io","provider":"TC Network"},{"address":"https://rpc.desmos.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://desmos.declab.pro:26613","provider":"Decloud Nodes Lab"},{"address":"https://desmos-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"dhealth","fees":{"fee_tokens":[{"denom":"udhp","fixed_min_gas_price":0.01,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc.dhealth.com","provider":"dhealth"},{"address":"https://rpc.dhealth.nodestake.org","provider":"NodeStake"},{"address":"https://dhealth.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"}]}},{"chain_id":"vota-ash","fees":{"fee_tokens":[{"denom":"peaka","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":100000000000,"high_gas_price":100000000000}]},"apis":{"rpc":[{"address":"https://vota-rpc.dorafactory.org/","provider":"dorafactory"},{"address":"https://m-dora.rpc.utsa.tech","provider":"lesnik | UTSA"},{"address":"https://dora-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://doravota-mainnet-rpc.itrocket.net:443","provider":"ITRocket"}]}},{"chain_id":"dungeon-1","fees":{"fee_tokens":[{"denom":"udgn","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://rpc-dungeon-1.seraphim.zone","provider":"Seraphim"},{"address":"https://rpc-dungeonchain.apeironnodes.com","provider":"ApeironNodes"},{"address":"https://rpc-archive-dungeonchain.apeironnodes.com","provider":"ApeironNodes (Archive)"},{"address":"https://dungeon_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"dydx-mainnet-1","fees":{"fee_tokens":[{"denom":"adydx","fixed_min_gas_price":12500000000,"low_gas_price":12500000000,"average_gas_price":12500000000,"high_gas_price":20000000000},{"denom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://dydx-rpc.kingnodes.com:443","provider":"Kingnodes πŸ‘‘"},{"address":"https://dydx-dao-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://dydx-mainnet-full-rpc.public.blastapi.io","provider":"Bware Labs"},{"address":"https://rpc.lavenderfive.com:443/dydx","provider":"Lavender.Five Nodes 🐝"},{"address":"https://dydx-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-dydx.ecostake.com:443","provider":"ecostake"},{"address":"https://rpc.dydx.nodestake.top:443","provider":"NodeStake"},{"address":"https://rpc-dydx.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://dydx-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-dydx.cros-nest.com:443","provider":"Crosnest"},{"address":"https://dydx-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://community.nuxian-node.ch:6797/dydx/trpc","provider":"PRO Delegators"},{"address":"https://dydx-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://dydx.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"}]}},{"chain_id":"dymension_1100-1","fees":{"fee_tokens":[{"denom":"adym","fixed_min_gas_price":5000000000,"low_gas_price":5000000000,"average_gas_price":5000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://dym-m-rpc.agoranodes.com","provider":"AgoraNodes"},{"address":"https://rpc.dymension.nodestake.org","provider":"NodeStake"},{"address":"http://dymension.mainnet.rpc.noders.team:42657","provider":"[NODERS]TEAM"},{"address":"https://dymension-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.lavenderfive.com:443/dymension","provider":"Lavender.Five Nodes 🐝"},{"address":"https://dymension-rpc.kynraze.com","provider":"Kynraze"},{"address":"https://m-dymension.rpc.utsa.tech","provider":"lesnik | UTSA"},{"address":"https://rpc-dymension.nodeist.net","provider":"Nodeist"},{"address":"https://dym.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://dym.rpc-archive.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.dymension.hexnodes.co","provider":"Hexnodes"},{"address":"https://dymension.rpc.kjnodes.com:443","provider":"kjnodes.com πŸ¦„"},{"address":"https://dymension-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://dymension-rpc.takeshi.team","provider":"TAKESHI"},{"address":"https://dymension-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.dymension.silentvalidator.com:443","provider":"silent"},{"address":"https://rpc-dymension.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://community.nuxian-node.ch:6797/dymension/trpc","provider":"PRO Delegators"},{"address":"https://dymension-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://dymension-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://dymension.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://rpc-dymension.hoodrun.io:443","provider":"HoodRun"},{"address":"https://dymension.0xwave.com:2053","provider":"Wave"},{"address":"https://archive.rpc.dym.cumulo.com.es:443","provider":"Cumulo"},{"address":"https://rpc.dymension.posthuman.digital","provider":"posthuman"},{"address":"https://rpc.dymension.node75.org","provider":"Pro-Nodes75"},{"address":"https://rpc.dymension.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://dymension-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc.mainnet.dymension.aviaone.com","provider":"AVIAONE 🟒"},{"address":"https://rpc.archive.dymension.mainnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://dymension.drpc.org","provider":"dRPC"}]}},{"chain_id":"dyson-mainnet-01","fees":{"fee_tokens":[{"denom":"dys","low_gas_price":0.0001,"average_gas_price":0.0002,"high_gas_price":0.0003}]},"apis":{"rpc":[{"address":"https://dys-tm.dysonprotocol.com:443","provider":"dysonprotocol"},{"address":"https://dyson-rpc.cogwheel.zone:443","provider":"cogwheel"}]}},{"chain_id":"echelon_3000-3","fees":{"fee_tokens":[{"denom":"aechelon","low_gas_price":10000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://ech01trpc.mindheartsoul.org","provider":"Mind Heart Soul"},{"address":"https://rpc.echjoker.lol","provider":"⚑ Echelon Joker βš› πŸƒ"}]}},{"chain_id":"emoney-3","fees":{"fee_tokens":[{"denom":"ungm","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"eeur","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"echf","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"enok","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"esek","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"edkk","low_gas_price":1,"average_gas_price":1,"high_gas_price":1}]},"apis":{"rpc":[{"address":"https://emoney.validator.network","provider":"e-Money"},{"address":"https://rpc-emoney-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.emoney.bh.rocks","provider":"BlockHunters 🎯"}]}},{"chain_id":"empowerchain-1","fees":{"fee_tokens":[{"denom":"umpwr","fixed_min_gas_price":0,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-empowerchain.ecostake.com:443","provider":"ecostake"},{"address":"https://empowerchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://empower.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"http://empw.rpc.m.stavr.tech:22057","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-empowerchain.mzonder.com:443","provider":"MZONDER"},{"address":"https://empower-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-empower.vinjan.xyz:443","provider":"vinjan"},{"address":"https://rpc.empower.nodestake.top","provider":"NodeStake"},{"address":"https://mainnet-empower-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://empower.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://rpc.empowerchain.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://empower.declab.pro:26607","provider":"Decloud Nodes Lab"},{"address":"https://empower-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://empower-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"epix_4242-1","fees":{"fee_tokens":[{"denom":"aepix","fixed_min_gas_price":1000000000000,"low_gas_price":1000000000000,"average_gas_price":2000000000000,"high_gas_price":3000000000000}]},"apis":{"rpc":[{"address":"https://epix.rpc.silknodes.io/","provider":"Silk Nodes"}]}},{"chain_id":"1","fees":{"fee_tokens":[{"denom":"wei","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"ethos_7003-1","fees":{"fee_tokens":[{"denom":"aRYT"}]},"apis":{"rpc":[{"address":"https://ethos-rpc.provable.dev:443/","provider":"laurel.provable"}]}},{"chain_id":"evmos_9001-2","fees":{"fee_tokens":[{"denom":"aevmos","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/evmos","provider":"Lavender.Five Nodes 🐝"},{"address":"https://tendermint.bd.evmos.org:26657","provider":"Blockdaemon"},{"address":"https://rpc-evmos-ia.cosmosia.notional.ventures:443","provider":"Notional"},{"address":"https://rpc.evmos.testnet.run","provider":"TestNetRun"},{"address":"https://rpc.evmos.nodestake.top","provider":"NodeStake"},{"address":"https://rpc.evmos.chaintools.tech/","provider":"ChainTools"},{"address":"https://evmos-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.evmos.silentvalidator.com/","provider":"silent"},{"address":"https://rpc.evmos.tcnetwork.io","provider":"TC Network"},{"address":"https://evmos.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://rpc-evmos.architectnodes.com","provider":"Architect Nodes"},{"address":"https://evmos-rpc.validatrium.club","provider":"Validatrium"},{"address":"https://evmos-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-evmos-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://evmos-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://rpc-evmos.validavia.me","provider":"Validavia"},{"address":"https://evmos-rpc.w3coins.io","provider":"w3coins"},{"address":"https://evmos-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://evmos.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://evmos-rpc.antrixy.org/","provider":"Antrix Validators"},{"address":"https://evmos-mainnet.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://rpc.evmos.validatus.com","provider":"Validatus"},{"address":"https://rpc.evmos.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.evmos.citizenweb3.com:443","provider":"Citizen Web3"},{"address":"https://evmos.drpc.org","provider":"dRPC"}]}},{"chain_id":"fetchhub-4","fees":{"fee_tokens":[{"denom":"afet","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc-fetchhub.fetch.ai:443","provider":"fetch.ai"},{"address":"https://rpc-fetchhub-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://fetch-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://fetchai-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://fetch-rpc.antrixy.org","provider":"Antrix"},{"address":"https://rpc-fetch.architectnodes.com","provider":"Architect Nodes"},{"address":"https://fetchhub-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://fetch-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://fetch-rpc.cosmosrescue.com","provider":"cosmosrescue"},{"address":"https://fetch-rpc.w3coins.io","provider":"w3coins"},{"address":"https://fetch-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://fetch-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://public.stakewolle.com/cosmos/fetchhub/rpc","provider":"Stakewolle"},{"address":"https://fetch.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://rpc.fetchhub-4.fetch.aviaone.com","provider":"AVIAONE 🟒"},{"address":"https://fetchai-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"finschia-2","fees":{"fee_tokens":[{"denom":"cony","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.015,"high_gas_price":0.015}]},"apis":{"rpc":[{"address":"https://finschia-rpc.finschia.io"}]}},{"chain_id":"colosseum-1","fees":{"fee_tokens":[{"denom":"ufct","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.15,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://lcd-mainnet.firmachain.dev:26657","provider":"FirmaChain"},{"address":"https://firma.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.firmachain.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.lavenderfive.com:443/firmachain","provider":"Lavender.Five Nodes 🐝"},{"address":"https://firmachain-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://firmachain.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://firmachain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"furya-1","fees":{"fee_tokens":[{"denom":"ufury","low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.5}]},"apis":{"rpc":[{"address":"https://furya-rpc.synergynodes.com","provider":"synergynodes"},{"address":"https://furya.rpc.nodeshub.online:443","provider":"nodeshub"}]}},{"chain_id":"fxcore","fees":{"fee_tokens":[{"denom":"FX","fixed_min_gas_price":4000000000000,"low_gas_price":4000000000000,"average_gas_price":4200000000000,"high_gas_price":5000000000000}]},"apis":{"rpc":[{"address":"https://fx-json.functionx.io","provider":"Function X"},{"address":"https://functionx.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"}]}},{"chain_id":"galaxy-1","fees":{"fee_tokens":[{"denom":"uglx","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[]}},{"chain_id":"wormchain","fees":{"fee_tokens":[{"denom":"utest","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://tncnt-eu-wormchain-main-01.rpc.p2p.world/","provider":"P2P"},{"address":"https://wormchain-rpc.quickapi.com/","provider":"ChainLayer"}]}},{"chain_id":"genesis_29-2","fees":{"fee_tokens":[{"denom":"el1","low_gas_price":51000000000,"average_gas_price":52000000000,"high_gas_price":53000000000}]},"apis":{"rpc":[{"address":"https://26657.genesisl1.org","provider":"GenesisL1"},{"address":"https://genesisl1-rpc.zenode.app","provider":"anodeofzen"}]}},{"chain_id":"gitopia","fees":{"fee_tokens":[{"denom":"ulore","fixed_min_gas_price":0.001,"low_gas_price":0.0012,"average_gas_price":0.0016,"high_gas_price":0.0024}]},"apis":{"rpc":[{"address":"https://gitopia-rpc.polkachu.com:443","provider":"polkachu"},{"address":"https://rpc.lavenderfive.com:443/gitopia","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.gitopia.nodestake.top:443","provider":"nodestake"},{"address":"https://gitopia-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://gitopia-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://m-gitopia.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://gitopia.rpc.m.stavr.tech:51057","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://gitopia-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://gitopia.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://gitopia-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.gitopia.silentvalidator.com","provider":"silent"},{"address":"https://gitopia-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://rpc-gitopia.mzonder.com","provider":"MZONDER"},{"address":"https://gitopia.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.gitopia.sgtstake.com","provider":"SGTstake"},{"address":"https://mainnet-gitopia-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.gitopia.roomit.xyz","provider":"Roomit"},{"address":"https://gitopia.rpc.moonbridge.team","provider":"Moonbridge"},{"address":"https://gitopia-rpc.stakeangle.com","provider":"StakeAngle"},{"address":"https://gitopia.rpc.m.anode.team","provider":"AlxVoy ⚑ ANODE.TEAM"},{"address":"https://gitopia.rpc.stakevillage.net","provider":"Stake Village"},{"address":"https://gitopia-rpc.enigma-validator.com/","provider":"Enigma"},{"address":"https://rpc.gitopia.tcnetwork.io/","provider":"TC Network"},{"address":"https://gitopia.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://rpc.gitopia.stakeup.tech/","provider":"StakeUp"},{"address":"https://gitopia-mainnet.rpc.l0vd.com:443","provider":"L0vd.com ❀️"},{"address":"https://gitopia-rpc.tothemars.network:443","provider":"ToTheMars"},{"address":"https://gitopia.declab.pro:26625","provider":"Decloud Nodes Lab"},{"address":"https://gitopia-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"govgen-1","fees":{"fee_tokens":[{"denom":"ugovgen","fixed_min_gas_price":0.001,"low_gas_price":0.006,"average_gas_price":0.006,"high_gas_price":0.009}]},"apis":{"rpc":[{"address":"https://rpc.govgen.io:443","provider":"AllInBits"},{"address":"https://rpc-govgen.sg-1.online/","provider":"SG-1"},{"address":"https://govgen.rpc.nodeshub.online:443","provider":"Nodes Hub"},{"address":"https://govgen-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.govgen.posthuman.digital:443","provider":"posthuman"},{"address":"https://rpc-govgen.kewrnode.com/","provider":"Kewr Node"}]}},{"chain_id":"gravity-bridge-3","fees":{"fee_tokens":[{"denom":"ugraviton","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.035},{"denom":"gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","low_gas_price":0.0002,"average_gas_price":0.0005,"high_gas_price":0.0008},{"denom":"gravity0xdAC17F958D2ee523a2206206994597C13D831ec7","low_gas_price":0.0002,"average_gas_price":0.0005,"high_gas_price":0.0008}]},"apis":{"rpc":[{"address":"https://gravitychain.io:26657","provider":"althea"},{"address":"http://gravity-bridge-1-08.nodes.amhost.net:26657","provider":"amhost"},{"address":"https://gravity-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-gravitybridge-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/gravitybridge","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.gravity.bh.rocks/","provider":"BlockHunters 🎯"},{"address":"https://gravity-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://gravity-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://rpc-gravity-bridge-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://gravity-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://gravity-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc.g-bridge.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.gravity-bridge-3.gravity.aviaone.com:443","provider":"AviaOne 🟒"}]}},{"chain_id":"haqq_11235-1","fees":{"fee_tokens":[{"denom":"aISLM","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.tm.haqq.network","provider":"Haqq"},{"address":"https://rpc.haqq.sh","provider":"kioqq"},{"address":"https://rpc.haqq.nodestake.top","provider":"NodeStake"},{"address":"https://haqq-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.lavenderfive.com:443/haqq","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-haqq.sr20de.xyz:443","provider":"Sr20de"},{"address":"https://haqq-rpc.palamar.io","provider":"Palamar"},{"address":"https://haqq-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://haqq.drpc.org","provider":"dRPC"}]}},{"chain_id":"helichain","fees":{"fee_tokens":[{"denom":"uheli","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://rpc.helichain.com/","provider":"HeliChain"}]}},{"chain_id":"highbury_710-1","fees":{"fee_tokens":[{"denom":"ufury","low_gas_price":0.05,"average_gas_price":0.1,"high_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://gridiron.furya.io","provider":"fanfury"}]}},{"chain_id":"humans_1089-1","fees":{"fee_tokens":[{"denom":"aheart","fixed_min_gas_price":250000000,"low_gas_price":80000000000,"average_gas_price":100000000000,"high_gas_price":160000000000}]},"apis":{"rpc":[{"address":"https://rpc.humans.nodestake.top","provider":"NodeStake"},{"address":"https://humans.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://humans.rpc.nodeshub.online","provider":"NodesHub"},{"address":"https://humans-mainnet-rpc.itrocket.net","provider":"itrocket"},{"address":"https://humans-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-humansai.thenop.io:443","provider":"TheNOP.io"},{"address":"https://humans-rpc.stakeangle.com/","provider":"StakeAngle"},{"address":"https://humans-rpc.anyvalid.com:26627","provider":"AnyValid"},{"address":"https://mainnet-humans-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"http://65.21.46.90:5657","provider":"PPNV Service"},{"address":"https://rpc.humans-mainnet.stake-take.com/","provider":"Stake-Take"},{"address":"https://rpc.humans.posthuman.digital","provider":"posthuman"},{"address":"https://humans-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://humans-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://humans-mainnet-rpc.cosmonautstakes.com","provider":"Cosmonaut Stakes πŸ€–"}]}},{"chain_id":"Antora","fees":{"fee_tokens":[{"denom":"idep","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"ixo-5","fees":{"fee_tokens":[{"denom":"uixo","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://proxies.sifchain.finance/api/impacthub-3/rpc","provider":"sifchain"},{"address":"https://impacthub.ixo.world/rpc/","provider":"ixoworld"},{"address":"https://ixo.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-ixo-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/impacthub","provider":"Lavender.Five Nodes 🐝"},{"address":"https://ixo-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://ixo-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://impacthub_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"imversed_5555555-1","fees":{"fee_tokens":[{"denom":"aimv","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[]}},{"chain_id":"injective-1","fees":{"fee_tokens":[{"denom":"inj","fixed_min_gas_price":160000000,"low_gas_price":500000000,"average_gas_price":700000000,"high_gas_price":900000000}]},"apis":{"rpc":[{"address":"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rpc.newmetric.xyz","provider":"NewMetric"},{"address":"https://rpc.injective.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://injective-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.lavenderfive.com:443/injective","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-injective-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://injective-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-injective.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc-injective-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://injective-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://injective-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://public.stakewolle.com/cosmos/injective/rpc","provider":"Stakewolle"},{"address":"https://rpc.injective.bronbro.io/","provider":"Bro_n_Bro"},{"address":"https://injective-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc-injective.ecostake.com","provider":"ecostake"},{"address":"https://rpc-injective.kewrnode.com","provider":"Kewr Node"}]}},{"chain_id":"int3face-1","fees":{"fee_tokens":[{"denom":"uint3","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc","fixed_min_gas_price":1e-7,"low_gas_price":1e-7,"average_gas_price":0.0000025,"high_gas_price":0.000004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch","fixed_min_gas_price":0.000001,"low_gas_price":0.000001,"average_gas_price":0.000025,"high_gas_price":0.00004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc","fixed_min_gas_price":0.000001,"low_gas_price":0.000001,"average_gas_price":0.000025,"high_gas_price":0.00004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.004}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.int3face.zone","provider":"Int3face.io"}]}},{"chain_id":"irishub-1","fees":{"fee_tokens":[{"denom":"uiris","low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc-irisnet-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-irisnet-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://irisnet-rpc.w3coins.io","provider":"w3coins"},{"address":"https://iris-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://iris-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://mainnet-iris-rpc.konsortech.xyz","provider":"KonsorTech"}]}},{"chain_id":"jackal-1","fees":{"fee_tokens":[{"denom":"ujkl","fixed_min_gas_price":0,"low_gas_price":0.002,"average_gas_price":0.002,"high_gas_price":0.02}]},"apis":{"rpc":[{"address":"https://rpc.jackalprotocol.com","provider":"Jackal Labs"},{"address":"https://rpc.lavenderfive.com:443/jackal","provider":"Lavender.Five Nodes 🐝"},{"address":"http://jkl.rpc.m.stavr.tech:11127","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://jackal.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://rpc.jackal.nodestake.top","provider":"NodeStake"},{"address":"https://rpc-jackal.nodeist.net","provider":"Nodeist"},{"address":"https://jackal-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://m-jackal.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc-jackal.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://jackal-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://jackal.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://jackal.rpc.silknodes.io","provider":"Silk Nodes"},{"address":"https://jackal.rpc.skynodejs.net","provider":"skynodejs"},{"address":"https://public.stakewolle.com/cosmos/jackal/rpc","provider":"Stakewolle"},{"address":"https://rpc.jackal.silentvalidator.com","provider":"silent"},{"address":"https://rpc.jackal.mathnodes.com","provider":"MathNodes"},{"address":"https://jackal-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://jackal-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"joltify_1729-1","fees":{"fee_tokens":[{"denom":"ujolt","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.joltify.io","provider":"joltify"},{"address":"https://joltify_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"juno-1","fees":{"fee_tokens":[{"denom":"ujuno","fixed_min_gas_price":0.075,"low_gas_price":0.075,"average_gas_price":0.1,"high_gas_price":0.125},{"denom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","fixed_min_gas_price":0.003,"low_gas_price":0.003,"average_gas_price":0.0035,"high_gas_price":0.004}]},"apis":{"rpc":[{"address":"https://rpc-juno.itastakers.com","provider":"itastakers"},{"address":"http://juno.rpc.m.stavr.tech:1067","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://juno-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.lavenderfive.com:443/juno","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-juno.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-juno.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://rpc-juno-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.juno.chaintools.tech/","provider":"ChainTools"},{"address":"https://juno-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://juno-rpc.icycro.org","provider":"IcyCRO 🧊"},{"address":"https://rpc.juno.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://juno-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://juno-rpc.reece.sh","provider":"Reecepbcups"},{"address":"https://juno-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"},{"address":"https://rpc-juno.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc-juno-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-juno.validavia.me","provider":"Validavia"},{"address":"https://juno-rpc.w3coins.io","provider":"w3coins"},{"address":"https://juno-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://juno-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc-juno.mainnet.validatrium.club:443","provider":"Validatrium"},{"address":"https://juno-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.juno.validatus.com","provider":"Validatus"},{"address":"https://rpc.juno.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://juno-rpc.cogwheel.zone","provider":"Cogwheel"},{"address":"https://juno.declab.pro:26610","provider":"Decloud Nodes Lab"},{"address":"https://juno.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://juno-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"kava_2222-10","fees":{"fee_tokens":[{"denom":"ukava","low_gas_price":0.05,"average_gas_price":0.1,"high_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://rpc.data.kava.io","provider":"kava"},{"address":"https://kava-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-kava-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://kava-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://kava-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc-kava-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://kava-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://kava.drpc.org","provider":"dRPC"}]}},{"chain_id":"kichain-2","fees":{"fee_tokens":[{"denom":"uxki","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc-mainnet.blockchain.ki","provider":"kifoundation"},{"address":"https://kichain-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-kichain-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://kichain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.kichain.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.lavenderfive.com:443/kichain","provider":"Lavender.Five Nodes 🐝"},{"address":"http://ki-chain.statesync.nodersteam.com:14657","provider":"[NODERS]TEAM"},{"address":"https://ki-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc.kichain-2.kichain.aviaone.com","provider":"AVIAONE 🟒"}]}},{"chain_id":"kima_network","fees":{"fee_tokens":[{"denom":"uKIMA","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.kima.network/","provider":"Kima Network"}]}},{"chain_id":"darchub","fees":{"fee_tokens":[{"denom":"udarc","fixed_min_gas_price":0,"low_gas_price":0.0001,"average_gas_price":0.001,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc-konstellation-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://konstellation-rpc.stakerhouse.com","provider":"StakerHouse"}]}},{"chain_id":"luwak-1","fees":{"fee_tokens":[{"denom":"ukopi","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.kopi.money","provider":"Kopi Foundation"},{"address":"https://rpc.kopi.chaintools.tech","provider":"Chaintools"},{"address":"https://kopi-rpc.cosmoscan.com","provider":"Cosmoscan"},{"address":"https://kopi-rpc.stakerhouse.com","provider":"Stakerhouse"},{"address":"https://kopi.rpc.moonbridge.team","provider":"Moonbridge"},{"address":"https://rpc-kopid.vinjan.xyz/","provider":"Vinjan"},{"address":"https://kopi-mainnet-rpc.bonynode.online","provider":"Bony"},{"address":"https://kopi-rpc.bluestake.net:443","provider":"Bluestake"},{"address":"https://rpc-kopi.sychonix.com","provider":"Sychonix"},{"address":"https://kopi-rpc.node9x.com/","provider":"Node9x"},{"address":"https://kopi.rpc.nodeshub.online/","provider":"NodesHub"},{"address":"https://kopi-rpc.polkachu.com/","provider":"Polkachu"}]}},{"chain_id":"kaiyo-1","fees":{"fee_tokens":[{"denom":"ukuji","fixed_min_gas_price":0.0034,"low_gas_price":0.0034,"average_gas_price":0.0051,"high_gas_price":0.00681},{"denom":"factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk","fixed_min_gas_price":0.01186,"low_gas_price":0.01186,"average_gas_price":0.01779,"high_gas_price":0.02372},{"denom":"ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F","fixed_min_gas_price":0.0119,"low_gas_price":0.0119,"average_gas_price":0.01785,"high_gas_price":0.02379},{"denom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","fixed_min_gas_price":0.00129,"low_gas_price":0.00129,"average_gas_price":0.00193,"high_gas_price":0.00258},{"denom":"ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23","fixed_min_gas_price":0.01795,"low_gas_price":0.01795,"average_gas_price":0.02692,"high_gas_price":0.0359},{"denom":"ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07","fixed_min_gas_price":0.65943,"low_gas_price":0.65943,"average_gas_price":0.98915,"high_gas_price":1.31887},{"denom":"ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10","fixed_min_gas_price":160416396197,"low_gas_price":160416396197,"average_gas_price":240624594296,"high_gas_price":320832792394},{"denom":"ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5","fixed_min_gas_price":0.02689,"low_gas_price":0.02689,"average_gas_price":0.04034,"high_gas_price":0.05379},{"denom":"ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986","fixed_min_gas_price":0.01495,"low_gas_price":0.01495,"average_gas_price":0.02243,"high_gas_price":0.02991},{"denom":"ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5","fixed_min_gas_price":0.03139,"low_gas_price":0.03139,"average_gas_price":0.04709,"high_gas_price":0.06278},{"denom":"ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602","fixed_min_gas_price":0.90403,"low_gas_price":0.90403,"average_gas_price":1.35605,"high_gas_price":1.80806},{"denom":"ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2","fixed_min_gas_price":559196837,"low_gas_price":559196837,"average_gas_price":838795256,"high_gas_price":1118393675},{"denom":"ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7","fixed_min_gas_price":5772801,"low_gas_price":5772801,"average_gas_price":8659201,"high_gas_price":11545602},{"denom":"factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta","fixed_min_gas_price":0.01807,"low_gas_price":0.01807,"average_gas_price":0.02711,"high_gas_price":0.03615},{"denom":"ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9","fixed_min_gas_price":0.01194,"low_gas_price":0.01194,"average_gas_price":0.01792,"high_gas_price":0.02389},{"denom":"ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3","fixed_min_gas_price":0.00019,"low_gas_price":0.00019,"average_gas_price":0.00029,"high_gas_price":0.00039}]},"apis":{"rpc":[{"address":"https://rpc.kaiyo.kujira.setten.io","provider":"setten.io"},{"address":"https://kujira-rpc.polkachu.com","provider":"polkachu"},{"address":"https://rpc.lavenderfive.com:443/kujira","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.kujira.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc-kujira-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://kujira-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc-kujira.starsquid.io","provider":"Starsquid"},{"address":"https://kujira.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://kuji-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://rpc-kujira.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://kujira-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.kujira.rektdao.club","provider":"rektDAO"},{"address":"https://kujira-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://kujira-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-kujira.mms.team","provider":"MMS"},{"address":"https://kujira-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://kujira.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"}]}},{"chain_id":"kyve-1","fees":{"fee_tokens":[{"denom":"ukyve","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc.kyve.network","provider":"kyve"},{"address":"https://rpc-kyve.ecostake.com","provider":"ecostake"},{"address":"https://rpc.lavenderfive.com:443/kyve","provider":"Lavender.Five Nodes 🐝"},{"address":"http://kyve.rpc.m.stavr.tech:12357","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-kyve.imperator.co","provider":"Imperator.co"},{"address":"https://kyve-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc.kyve.nodestake.top","provider":"NodeStake"},{"address":"https://kyve.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://rpc-kyve.mms.team","provider":"MMS"},{"address":"https://kyve.declab.pro:26616","provider":"Decloud Nodes Lab"},{"address":"https://kyve-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://kyve_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://kyve-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"lambda_92000-1","fees":{"fee_tokens":[{"denom":"ulamb","low_gas_price":10000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.lambda.im","provider":"Lambda"},{"address":"http://lambda.rpc.m.stavr.tech:31327","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lambda.nodestake.top","provider":"NodeStake"},{"address":"https://lambda-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://lambda_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"lava-mainnet-1","fees":{"fee_tokens":[{"denom":"ulava","fixed_min_gas_price":0.00002,"low_gas_price":0.00002,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://lava.tendermintrpc.lava.build","provider":"Lava Over Lava"},{"address":"https://lava-rpc.w3coins.io:443","provider":"w3coins"},{"address":"https://lava-rpc.finteh.org:26657","provider":"finteh"},{"address":"https://lava-rpc.y2.finance:443","provider":"YTWOFUND"},{"address":"https://lava-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://rpc.lava-mainnet-1.lava.aviaone.com:443","provider":"AVIAONE 🟒"},{"address":"https://rpc-lava.r93axnodes.cloud:443","provider":"r93AX Nodes"},{"address":"https://lava-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://lava.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://lava.rpc-archive.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://lava-rpc.stake-town.com:443","provider":"StakeTown"},{"address":"https://lava.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://lava-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://lava-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://lava.rpc.stakevillage.net:443","provider":"Stake Village"}]}},{"chain_id":"likecoin-mainnet-2","fees":{"fee_tokens":[{"denom":"nanolike","fixed_min_gas_price":1000,"low_gas_price":1000,"average_gas_price":10000,"high_gas_price":1000000}]},"apis":{"rpc":[{"address":"https://mainnet-node.like.co/rpc/","provider":"like.co"},{"address":"https://likecoin-node.oldcat.io:443/rpc/","provider":"Oldcat"},{"address":"https://like.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-likecoin-mainnet.pikaser.net","provider":"PikaSer"},{"address":"https://rpc.likecoin.citizenweb3.com:443","provider":"Citizen Web3"}]}},{"chain_id":"logos_7002-1","fees":{"fee_tokens":[{"denom":"aLYT"}]},"apis":{"rpc":[{"address":"https://logos-rpc.provable.dev:443/","provider":"laurel.provable"}]}},{"chain_id":"loop-1","fees":{"fee_tokens":[{"denom":"token","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.loop.pfc.zone/","provider":"PFC"}]}},{"chain_id":"lorenzo_8329-1","fees":{"fee_tokens":[{"denom":"stBTC","fixed_min_gas_price":2000000,"low_gas_price":2000000,"average_gas_price":2000000,"high_gas_price":8000000}]},"apis":{"rpc":[{"address":"https://rpc-cosmos.lorenzo-protocol.xyz/","provider":"Lorenzo Protocol"}]}},{"chain_id":"loyal-main-02","fees":{"fee_tokens":[{"denom":"ulyl","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-main.joinloyal.io/"},{"address":"https://loyal-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"lum-network-1","fees":{"fee_tokens":[{"denom":"ulum","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.node0.mainnet.lum.network","provider":"Lum Foundation"},{"address":"https://lum.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/lumnetwork","provider":"Lavender.Five Nodes 🐝"},{"address":"https://lum-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://lum-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://lumnetwork_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"mande_18071918-1","fees":{"fee_tokens":[{"denom":"amand","low_gas_price":20000000000,"average_gas_price":20000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://mande-mainnet-tendermint.public.blastapi.io","provider":"BlastAPI"}]}},{"chain_id":"mantra-1","fees":{"fee_tokens":[{"denom":"uom","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.mantrachain.io","provider":"MANTRACHAIN"},{"address":"https://rpc-mantra.r93axnodes.cloud:443","provider":"r93AX Nodes"},{"address":"https://mantrachain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://mantra-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://mantra-mainnet-rpc.itrocket.net:443","provider":"ITRocket"},{"address":"https://mantra.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"mars-1","fees":{"fee_tokens":[{"denom":"umars","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.marsprotocol.io:443","provider":"Delphi Labs"},{"address":"https://rpc.lavenderfive.com:443/mars","provider":"Lavender.Five Nodes 🐝"},{"address":"https://mars-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://mars-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.expedition-mars.com","provider":"Expedition Mars"},{"address":"https://mars-rpc.genznodes.dev:443","provider":"genznodes"},{"address":"https://mars-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"},{"address":"https://mars-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://mars-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"}]}},{"chain_id":"mayachain-mainnet-v1","apis":{"rpc":[{"address":"https://tendermint.mayachain.info","provider":"tendermint"}]}},{"chain_id":"medasdigital-2","fees":{"fee_tokens":[{"denom":"umedas","low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc.medas-digital.io:26657/","provider":"Neptun Validator"}]}},{"chain_id":"meme-1","fees":{"fee_tokens":[{"denom":"umeme","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.035,"high_gas_price":0.045}]},"apis":{"rpc":[{"address":"https://rpc-meme-1.meme.sx/","provider":"MEME Foundation"},{"address":"https://meme-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-meme.pupmos.network/","provider":"PUPMØS"},{"address":"https://meme.rpc.m.anode.team","provider":"ANODE TEAM"}]}},{"chain_id":"migaloo-1","fees":{"fee_tokens":[{"denom":"uwhale","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":2,"high_gas_price":3}]},"apis":{"rpc":[{"address":"https://migaloo-rpc.polkachu.com:443","provider":"Polkachu"},{"address":"https://rpc-migaloo.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://migaloo-rpc.kleomedes.network:443","provider":"Kleomedes"},{"address":"https://rpc.whitewhale.nodestake.top","provider":"NodeStake"},{"address":"https://migaloo-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://migaloo-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"milkyway","fees":{"fee_tokens":[{"denom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035},{"denom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035},{"denom":"ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035},{"denom":"ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.milkyway.zone/","provider":"MilkyWay Labs"}]}},{"chain_id":"mainnet","fees":{"fee_tokens":[{"denom":"umis","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.gw.mises.site:443","provider":"Mises-1"},{"address":"https://e2.mises.site:443","provider":"Mises-3"}]}},{"chain_id":"mtgbp-1","fees":{"fee_tokens":[{"denom":"mtgbp","low_gas_price":0.000001,"average_gas_price":0.000005,"high_gas_price":0.0001}]},"apis":{"rpc":[{"address":"https://rcp.mtgbp.com","provider":"mtgbp"}]}},{"chain_id":"mun-1","fees":{"fee_tokens":[{"denom":"umun","fixed_min_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://mainnet1rpc.mun.money","provider":"Mun"},{"address":"https://mainnet-mun-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.mun.tcnetwork.io","provider":"TC Network"},{"address":"https://mun_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"mythos_7001-1","fees":{"fee_tokens":[{"denom":"aMYT"}]},"apis":{"rpc":[{"address":"https://mythos-rpc.provable.dev:443/","provider":"laurel.provable"}]}},{"chain_id":"neura_266-1","fees":{"fee_tokens":[{"denom":"atankr"}]},"apis":{"rpc":[]}},{"chain_id":"Neutaro-1","fees":{"fee_tokens":[{"denom":"uneutaro","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc2.neutaro.io:443","provider":"Neutaro"},{"address":"https://rpc3.neutaro.io:443","provider":"Neutaro"}]}},{"chain_id":"neutron-1","fees":{"fee_tokens":[{"denom":"untrn","low_gas_price":0.0053,"average_gas_price":0.0053,"high_gas_price":0.0053},{"denom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","low_gas_price":0.0008,"average_gas_price":0.0008,"high_gas_price":0.0008},{"denom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","low_gas_price":0.008,"average_gas_price":0.008,"high_gas_price":0.008},{"denom":"factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH","low_gas_price":2903231.6597,"average_gas_price":2903231.6597,"high_gas_price":2903231.6597},{"denom":"ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130","low_gas_price":2564102564.1026,"average_gas_price":2564102564.1026,"high_gas_price":2564102564.1026},{"denom":"ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7","low_gas_price":0.0004,"average_gas_price":0.0004,"high_gas_price":0.0004}]},"apis":{"rpc":[{"address":"https://rpc-voidara.neutron-1.neutron.org","provider":"Neutron"},{"address":"https://rpc-pulsarix.neutron-1.neutron.org","provider":"Neutron"},{"address":"https://rpc.novel.remedy.tm.p2p.org","provider":"P2P"},{"address":"https://rpc.lavenderfive.com:443/neutron","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-neutron.whispernode.com","provider":"WhisperNode 🀐"},{"address":"https://rpc-neutron.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"http://rpc.neutron.nodestake.top","provider":"NodeStake"},{"address":"https://neutron-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://community.nuxian-node.ch:6797/neutron/trpc","provider":"PRO Delegators"},{"address":"https://rpc.neutron.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.neutron.quokkastake.io","provider":"🐹 Quokka Stake"},{"address":"https://neutron.drpc.org","provider":"dRPC"}]}},{"chain_id":"cataclysm-1","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.nibiru.fi","provider":"Nibiru Foundation"},{"address":"https://nibiru.rpc.kjnodes.com","provider":"kjnodes.com πŸ¦„"},{"address":"https://rpc.nibiru.nodestake.org","provider":"NodeStake"},{"address":"https://rpc.lavenderfive.com:443/nibiru","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.nibiru.silentvalidator.com","provider":"silent"},{"address":"https://nibiru.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://nibiru-rpc.cogwheel.zone","provider":"Cogwheel βš™οΈ"},{"address":"https://nibiru.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://nibiru.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://nibiru-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://nibiru-mainnet.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://nibiru-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.nibiru.roomit.xyz","provider":"Roomit"},{"address":"https://nibiru_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"nim_1122-1","fees":{"fee_tokens":[{"denom":"anim","low_gas_price":20000000000,"average_gas_price":20000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.nimnet.tech","provider":"NIM Foundation"}]}},{"chain_id":"noble-1","fees":{"fee_tokens":[{"denom":"uusdc","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.1,"high_gas_price":0.2},{"denom":"ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.01,"high_gas_price":0.02}]},"apis":{"rpc":[{"address":"https://noble-rpc.polkachu.com","provider":"polkachu"},{"address":"https://rpc.lavenderfive.com:443/noble","provider":"Lavender.Five Nodes 🐝"},{"address":"https://noble-rpc.owallet.io","provider":"OWALLET"}]}},{"chain_id":"nois-1","fees":{"fee_tokens":[{"denom":"unois","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://nois-rpc.nysa.network","provider":"nysa.network"},{"address":"https://nois.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://rpc.lavenderfive.com:443/nois","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-nois.mib.tech/","provider":"MadeInBlock"},{"address":"https://m-nois.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://nois.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-nois.ezstaking.dev","provider":"EZStaking"},{"address":"https://nois-mainnet-rpc.itrocket.net","provider":"itrocket"},{"address":"https://rpc-nois.d-stake.xyz","provider":"D-Stake"},{"address":"https://rpc-nois.sr20de.xyz","provider":"SR20DE"},{"address":"https://nois-mainnet-rpc.autostake.com","provider":"AutoStake"},{"address":"https://nois-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://nois-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://rpc.nois.silentvalidator.com","provider":"silent"},{"address":"https://nois-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.nois.cumulo.org.es","provider":"Cumulo"}]}},{"chain_id":"pirin-1","fees":{"fee_tokens":[{"denom":"unls","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"rpc.nolus.network","provider":"NolusProtocol"},{"address":"https://nolus-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.lavenderfive.com:443/nolus","provider":"Lavender.Five Nodes 🐝"},{"address":"https://nolus.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://rpc-nolus.architectnodes.com","provider":"Architect Nodes"},{"address":"https://nolus.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://nolus-rpc.enigma-validator.com/","provider":"Enigma"},{"address":"https://nolus-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-nolus.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://nolus-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://nolus-rpc.ibs.team","provider":"Inter Blockchain Services"}]}},{"chain_id":"nomic-stakenet-3","fees":{"fee_tokens":[{"denom":"unom","low_gas_price":0,"average_gas_price":0,"high_gas_price":0},{"denom":"usat","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://stakenet-rpc.nomic.io:2096","provider":"nomic-io"},{"address":"https://nomic-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-nomic.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc.nomic.basementnodes.ca:443","provider":"Basement Nodes ⚑️"},{"address":"https://rpc.nomic.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"nyx","fees":{"fee_tokens":[{"denom":"unym","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"unyx","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.nymtech.net/","provider":"Nym"},{"address":"https://rpc.nyx.nodes.guru/","provider":"nodes guru"},{"address":"https://rpc.nym.forbole.com/","provider":"forbole"},{"address":"https://nym-mainnet-rpc.commodum.io/","provider":"commodum"},{"address":"https://nym-rpc.polkachu.com/","provider":"Polkachu"}]}},{"chain_id":"octa","fees":{"fee_tokens":[{"denom":"uocta","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"odin-mainnet-freya","fees":{"fee_tokens":[{"denom":"loki","fixed_min_gas_price":0.0125,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc.odinprotocol.io","provider":"Heimdall Gateway"},{"address":"https://odin.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/odin","provider":"Lavender.Five Nodes 🐝"},{"address":"https://odin-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"exchain-66","fees":{"fee_tokens":[{"denom":"wei","low_gas_price":200000000,"average_gas_price":250000000,"high_gas_price":400000000}]},"apis":{"rpc":[{"address":"https://exchaintmrpc.okex.org","provider":"okx chain"}]}},{"chain_id":"omniflixhub-1","fees":{"fee_tokens":[{"denom":"uflix","fixed_min_gas_price":0,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://omniflix-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://rpc.omniflix.nodestake.top","provider":"NodeStake"},{"address":"https://rpc.omniflix.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc-omniflixhub-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/omniflixhub","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.omniflix.silentvalidator.com/","provider":"silent"},{"address":"https://omniflixhub-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-omniflix.architectnodes.com","provider":"Architect Nodes"},{"address":"https://omniflix-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-omniflixhub.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://omniflix-rpc.dakshavalidator.in","provider":"Daksha Validator"},{"address":"https://rpc-omniflix.mzonder.com:443","provider":"MZONDER"},{"address":"https://rpc.omniflix.stakeup.tech:443","provider":"StakeUp"},{"address":"https://rpc.omniflix.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://omniflix-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://mainnet.omniflix.rpc.srv.stakr.space","provider":"STAKR.space"}]}},{"chain_id":"onex-mainnet-1","fees":{"fee_tokens":[{"denom":"aonex","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.onex.onomy.io","provider":"pendulum"}]}},{"chain_id":"onomy-mainnet-1","fees":{"fee_tokens":[{"denom":"anom","low_gas_price":0,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc-mainnet.onomy.io","provider":"onomy"},{"address":"https://onomy-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"Oraichain","fees":{"fee_tokens":[{"denom":"orai","fixed_min_gas_price":0,"low_gas_price":0.003,"average_gas_price":0.005,"high_gas_price":0.007}]},"apis":{"rpc":[{"address":"https://rpc.orai.io","provider":"oraichain-team"},{"address":"https://rpc.orai.pfc.zone/","provider":"PFC"},{"address":"https://rpc-orai.nodine.id/","provider":"Nodine.ID"},{"address":"https://oraichain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-oraichain.mms.team","provider":"MMS"},{"address":"https://rpc-orai.blockval.io/","provider":"Blockval"},{"address":"https://mainnet-orai-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.orai.mortysnode.nl","provider":"Morty's Nodes"},{"address":"https://orai.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://oraichain-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://orai-rpc.imdev.app","provider":"imORAI"},{"address":"https://orai-rpc.owallet.io","provider":"OWALLET"}]}},{"chain_id":"osmosis-1","fees":{"fee_tokens":[{"denom":"uosmo","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.osmosis.zone/","provider":"Osmosis Foundation"},{"address":"https://rpc-osmosis.blockapsis.com","provider":"chainapsis"},{"address":"https://osmosis-rpc.onivalidator.com","provider":"Oni Validator ⛩️"},{"address":"https://osmosis-rpc.quickapi.com:443","provider":"Chainlayer"},{"address":"https://rpc-osmosis.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc.lavenderfive.com:443/osmosis","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-osmosis.ecostake.com","provider":"ecostake"},{"address":"https://rpc-osmosis.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://osmosis-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-osmosis-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://osmosis.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://osmosis-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://osmosis.api.onfinality.io/public","provider":"OnFinality"},{"address":"https://rpc-osmosis-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://osmosis-rpc.w3coins.io","provider":"w3coins"},{"address":"https://osmosis-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://community.nuxian-node.ch:6797/osmosis/trpc","provider":"PRO Delegators"},{"address":"http://rpc-osmosis.freshstaking.com:31657","provider":"FreshSTAKING"},{"address":"https://osmosis-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://osmosis-mainnet.rpc.l0vd.com:443","provider":"L0vd.com ❀️"},{"address":"https://osmosis-rpc.reece.sh","provider":"Reecepbcups"},{"address":"https://rpc.osmosis.validatus.com","provider":"Validatus"},{"address":"https://rpc.osmosis.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://osmosis.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"},{"address":"https://public.stakewolle.com/cosmos/osmosis/rpc","provider":"Stakewolle"},{"address":"https://rpc.cros-nest.com/osmosis","provider":"Crosnest"},{"address":"https://rpc-osmo.kewrnode.com","provider":"Kewr Node"},{"address":"https://rpc.osmosis.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://osmosis-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://osmosis.drpc.org","provider":"dRPC"},{"address":"https://osmosis-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"tumbler","fees":{"fee_tokens":[{"denom":"ugrain","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-1.paloma.nodes.guru/","provider":"Nodes.Guru"}]}},{"chain_id":"panacea-3","fees":{"fee_tokens":[{"denom":"umed","fixed_min_gas_price":5,"low_gas_price":5,"average_gas_price":7,"high_gas_price":9}]},"apis":{"rpc":[{"address":"https://rpc.gopanacea.org","provider":"medibloc"},{"address":"https://panacea-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://panacea_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"passage-2","fees":{"fee_tokens":[{"denom":"upasg","fixed_min_gas_price":0,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.passage.vitwit.com","provider":"vitwit"},{"address":"https://passage-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-passage.ecostake.com","provider":"ecostake"},{"address":"https://rpc.lavenderfive.com:443/passage","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-passage-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-passage.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://rpc.passage.nodestake.top","provider":"NodeStake"},{"address":"https://passage-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://passage-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc-passage.d-stake.xyz","provider":"D-stake"},{"address":"https://passage-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://passage-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://passage-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://passage-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc-passage.mainnet.validatrium.club","provider":"Validatrium"},{"address":"https://rpc.passage.silentvalidator.com","provider":"silent"},{"address":"https://passage-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"core-1","fees":{"fee_tokens":[{"denom":"uxprt","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.core.persistence.one","provider":"Persistence"},{"address":"https://rpc-persistent-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://persistence.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://persistence-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://persistence-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://rpc-persistence.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc-persistence.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://persistence-mainnet-rpc.cosmonautstakes.com","provider":"Cosmonaut Stakes"},{"address":"https://persistence-rpc.quantnode.tech","provider":"QuantNode"},{"address":"https://persistence-rpc.zenscape.one","provider":"Zenscape"},{"address":"https://persistence-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://persistence-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"},{"address":"https://rpc.persistence.posthuman.digital:443","provider":"POSTHUMAN∞DVS"},{"address":"https://rpc-persistence-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://persistence-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://persistence-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://persistence-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.persistence.validatus.com","provider":"Validatus"},{"address":"https://public.stakewolle.com/cosmos/persistence/rpc","provider":"Stakewolle"},{"address":"https://xprt-rpc.antrixy.org/","provider":"Antrix Validators"},{"address":"https://persistence-rpc.stake-town.com","provider":"StakeTown"}]}},{"chain_id":"planq_7070-2","fees":{"fee_tokens":[{"denom":"aplanq","fixed_min_gas_price":20000000000,"low_gas_price":30000000000,"average_gas_price":35000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.planq.network","provider":"planq.network"},{"address":"https://planq.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://planq.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.planq.nodestake.top","provider":"NodeStake"},{"address":"https://planq-rpc.kynraze.com","provider":"Kynraze"},{"address":"https://rpc.planq.indonode.net","provider":"Indonode"},{"address":"https://rpc.planq.roomit.xyz","provider":"Roomit"},{"address":"https://planq-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://rpc.planq.safeblock.space","provider":"Safe Block"},{"address":"https://planq.rpc.skynodejs.net","provider":"skynodejs"},{"address":"https://planq-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://mainnet-planq-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://planq_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc-planq.blockval.io","provider":"Blockval"}]}},{"chain_id":"point_10687-1","fees":{"fee_tokens":[{"denom":"apoint","low_gas_price":5000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc-mainnet-1.point.space:26657","provider":"Point Network"},{"address":"https://rpc.point.nodestake.top","provider":"NodeStake"},{"address":"https://point.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.point.indonode.net","provider":"Indonode"}]}},{"chain_id":"pio-mainnet-1","fees":{"fee_tokens":[{"denom":"nhash","fixed_min_gas_price":1905,"low_gas_price":1905,"average_gas_price":2100,"high_gas_price":2500}]},"apis":{"rpc":[{"address":"https://rpc-provenance.takeshi.team/","provider":"TAKESHI"},{"address":"https://rpc.provenance.io/","provider":"Figure"},{"address":"https://rpc-provenance-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://provenance-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://provenance-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://provenance-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://rpc.provenance.blockval.io/","provider":"Blockval"},{"address":"https://provenance-rpc.panthea.eu","provider":"Panthea EU"},{"address":"https://provenance_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc.pio-mainnet-1.provenance.aviaone.com","provider":"AVIAONE 🟒"}]}},{"chain_id":"pryzm-1","fees":{"fee_tokens":[{"denom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.004},{"denom":"ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255","fixed_min_gas_price":500000000,"low_gas_price":500000000,"average_gas_price":600000000,"high_gas_price":700000000},{"denom":"ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"ibc/BF28D9C17E0306B194D50F51C3B2590BEAD15E04E03ADD34C3A26E62D85C9676","fixed_min_gas_price":0.002,"low_gas_price":0.002,"average_gas_price":0.003,"high_gas_price":0.004},{"denom":"ibc/B8AF5D92165F35AB31F3FC7C7B444B9D240760FA5D406C49D24862BD0284E395","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.02,"high_gas_price":0.03},{"denom":"ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.015,"high_gas_price":0.02},{"denom":"ibc/F8CA5236869F819BC006EEF088E67889A26E4140339757878F0F4E229CDDA858","fixed_min_gas_price":10000000000,"low_gas_price":10000000000,"average_gas_price":12000000000,"high_gas_price":14000000000},{"denom":"ibc/FA78980867B7E87F382CDA00275C55DDC248CABC7DEE27AC6868CCF97DD5E02F","fixed_min_gas_price":0.002,"low_gas_price":0.002,"average_gas_price":0.003,"high_gas_price":0.004},{"denom":"ibc/120DC39B61CC121E91525C1D51624E41BBE74C537D7B0BE50BBFF9A00E37B6EE","fixed_min_gas_price":10000000000,"low_gas_price":10000000000,"average_gas_price":12000000000,"high_gas_price":14000000000},{"denom":"ibc/EA6E1E8BA2EB9F681C4BD12C8C81A46530A62934F2BD561B120A00F46946CE87","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.004}]},"apis":{"rpc":[{"address":"https://rpc.pryzm.zone","provider":"PRYZM"},{"address":"https://rpc.lavenderfive.com:443/pryzm","provider":"Lavender.Five Nodes 🐝"},{"address":"https://pryzm-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://pryzm-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"PUNDIX","fees":{"fee_tokens":[{"denom":"ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78","fixed_min_gas_price":2000000000000,"low_gas_price":2000000000000,"average_gas_price":2500000000000,"high_gas_price":3000000000000}]},"apis":{"rpc":[{"address":"https://px-json.pundix.com","provider":"Pundi X"},{"address":"https://pundix.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"}]}},{"chain_id":"pylons-mainnet-1","fees":{"fee_tokens":[{"denom":"ubedrock","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.5,"high_gas_price":1}]},"apis":{"rpc":[{"address":"https://rpc.nodejumper.io:443/pylons","provider":"Nodejumper.io"},{"address":"https:/pylons-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"qfs-1","fees":{"fee_tokens":[{"denom":"qfs","low_gas_price":0.000001,"average_gas_price":0.000005,"high_gas_price":0.0001}]},"apis":{"rpc":[{"address":"https://rcp.qfsone.com","provider":"qfs"}]}},{"chain_id":"quasar-1","fees":{"fee_tokens":[{"denom":"uqsr","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.3},{"denom":"ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/quasar","provider":"Lavender.Five Nodes 🐝"},{"address":"https://quasar-rpc.polkachu.com","provider":"polkachu"},{"address":"https://quasar-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://rpc-quasar.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://quasar-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://quasar.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-quasar.validavia.me","provider":"Validavia"},{"address":"https://quasar-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://quasar-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://quasar-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://quasar-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://quasar-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://quasar-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"quicksilver-2","fees":{"fee_tokens":[{"denom":"uqck","fixed_min_gas_price":0.0001,"low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.00025}]},"apis":{"rpc":[{"address":"https://rpc-quicksilver.takeshi.team:443","provider":"TAKESHI"},{"address":"https://rpc.quicksilver.zone:443","provider":"Quicksilver"},{"address":"https://rpc-quicksilver-ia.cosmosia.notional.ventures:443","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/quicksilver","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-quicksilver.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://m-quicksilver.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://quick.rpc.m.stavr.tech:21027","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://quicksilver-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://quicksilver-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://quicksilver.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-quicksilver.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc.quicksilver.indonode.net","provider":"Indonode"},{"address":"https://quicksilver-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://quicksilver-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://quicksilver-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-quicksilver.mms.team/","provider":"MMS"},{"address":"https://quicksilver-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://quicksilver-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://mainnet-quicksilver-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://quicksilver.tdrsys.com:2053","provider":"TdrSys"},{"address":"https://rpc.quicksilver.validatus.com","provider":"Validatus"},{"address":"https://quicksilver-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"qwoyn-1","fees":{"fee_tokens":[{"denom":"uqwoyn","fixed_min_gas_price":0.03,"low_gas_price":0.03,"average_gas_price":0.05,"high_gas_price":0.075}]},"apis":{"rpc":[{"address":"https://rpc.qwoyn.studio:443","provider":"Qwoyn Studios"},{"address":"https://rpc-qwoyn.theamsolutions.info:443","provider":"AM Solutions"},{"address":"https://qwoyn.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://qwoyn-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://qwoyn-rpc-archive.staketab.org:443","provider":"Staketab archive"},{"address":"https://rpc.lavenderfive.com:443/qwoyn","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-qwoyn.mzonder.com:443","provider":"MZONDER"},{"address":"https://rpc.qwoyn.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"realionetwork_3301-1","fees":{"fee_tokens":[{"denom":"ario","fixed_min_gas_price":1000000000,"low_gas_price":4000000000,"average_gas_price":5000000000,"high_gas_price":8000000000}]},"apis":{"rpc":[{"address":"https://realio-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://realio.rpc.bccnodes.com/","provider":"BccNodes"},{"address":"https://rpc-realio-network.nodeist.net","provider":"Nodeist"},{"address":"http://realio.rpc.m.stavr.tech:21097","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.realio.indonode.net","provider":"Indonode"},{"address":"https://rpc-realio.vinjan.xyz","provider":"vinjan"},{"address":"https://api-realio.sr20de.xyz","provider":"Sr20de"},{"address":"https://rpc.realio.safeblock.space","provider":"Safe Block"},{"address":"https://realio.declab.pro:26622","provider":"Decloud Nodes Lab"},{"address":"https://realio-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc-realio.blockval.io","provider":"Blockval"},{"address":"https://realio_rio_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"reb_1111-1","fees":{"fee_tokens":[{"denom":"arebus","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://api.rebuschain.com:26657/","provider":"Rebuschain"},{"address":"https://rebus.rpc.bccnodes.com:443","provider":"BccNodes"},{"address":"https://rebus.rpc.manticore.team:443/","provider":"MantiCore"},{"address":"https://rpc.rebus.nodestake.top/","provider":"NodeStake"},{"address":"http://rebus.rpc.m.stavr.tech:40107","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-1.rebus.nodes.guru","provider":"Nodes.Guru"},{"address":"https://api.mainnet.rebus.money:26657","provider":"Rebuschain"},{"address":"https://rebus-rpc.brocha.in","provider":"Brochain"},{"address":"https://rebus-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rebus.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://rebus-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rebus-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"regen-1","fees":{"fee_tokens":[{"denom":"uregen","low_gas_price":0.015,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc-regen.ecostake.com","provider":"ecostake"},{"address":"http://public-rpc.regen.vitwit.com:26657","provider":"vitwit"},{"address":"https://regen.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://regen.stakesystems.io:2053","provider":"stakesystems"},{"address":"http://rpc.regen.forbole.com:80","provider":"forbole"},{"address":"https://rpc-regen-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://regen-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://regen-rpc.easy2stake.com","provider":"Easy 2 Stake"},{"address":"https://regen-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://regen-rpc.w3coins.io","provider":"w3coins"},{"address":"https://regen-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"titan-1","fees":{"fee_tokens":[{"denom":"uatolo","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpcapi.rizon.world/","provider":"HDAC Technology AG"},{"address":"https://rpc.rizon.chaintools.tech/","provider":"ChainTools"},{"address":"https://rizon-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rizon-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"30","fees":{"fee_tokens":[{"denom":"sat"}]},"apis":{"rpc":[]}},{"chain_id":"router_9600-1","fees":{"fee_tokens":[{"denom":"route","fixed_min_gas_price":7,"low_gas_price":7,"average_gas_price":7,"high_gas_price":10}]},"apis":{"rpc":[{"address":"https://sentry.tm.rpc.routerprotocol.com/","provider":"Router"},{"address":"https://router-rpc.genznodes.dev/","provider":"genznodes"},{"address":"https://router.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://router-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://routerchain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"ssc-1","fees":{"fee_tokens":[{"denom":"usaga","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc-saga.keplr.app","provider":"chainapsis"},{"address":"https://saga-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://saga-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.saga.nodestake.org","provider":"NodeStake"},{"address":"https://saga.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.saga.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://rpc.saga.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.lavenderfive.com:443/saga","provider":"Lavender.Five Nodes 🐝"},{"address":"https://saga-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://saga-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"scorum-1","fees":{"fee_tokens":[{"denom":"gas","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1,"high_gas_price":1}]},"apis":{"rpc":[{"address":"https://scorum-blockchain-mainnet-rpc.scorum.com","provider":"scorum"}]}},{"chain_id":"secret-4","fees":{"fee_tokens":[{"denom":"uscrt","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.1,"high_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://scrt.public-rpc.com","provider":"ANKR"},{"address":"https://rpc.lavenderfive.com:443/secretnetwork","provider":"Lavender.Five Nodes 🐝"},{"address":"https://1rpc.io/scrt-rpc","provider":"1RPC - Automata Network"},{"address":"https://secretnetwork-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://rpc.mainnet.secretsaturn.net","provider":"πŸͺ π•Šecret π•Šaturn"},{"address":"https://rpc-secret.01node.com","provider":"01node"},{"address":"https://public.stakewolle.com/cosmos/secretnetwork/rpc","provider":"Stakewolle"}]}},{"chain_id":"seda-1","fees":{"fee_tokens":[{"denom":"aseda","fixed_min_gas_price":10000000000,"low_gas_price":10000000000,"average_gas_price":10000000000,"high_gas_price":14000000000}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.seda.xyz/","provider":"SEDA"},{"address":"https://seda-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://seda.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://seda-rpc.synergynodes.com/","provider":"Synergy Nodes"},{"address":"https://rpc.lavenderfive.com:443/seda","provider":"Lavender.Five Nodes 🐝"},{"address":"https://seda-rpc.kleomedes.network/","provider":"Kleomedes"},{"address":"https://seda-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://seda-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.seda.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc-seda.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://seda-rpc.applejuice.256x25.tech:443","provider":"Apple juice πŸ§ƒ"},{"address":"https://seda-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://seda_mainnet_rpc.chain.whenmoonwhenlambo.money:443","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc-seda-mainnet.keepitstaked.com:443","provider":"KeepItStaked.com"}]}},{"chain_id":"pacific-1","fees":{"fee_tokens":[{"denom":"usei","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.02,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.sei-apis.com","provider":"Rhino Stake"},{"address":"https://rpc.lavenderfive.com:443/sei","provider":"Lavender.Five Nodes 🐝"},{"address":"https://sei-rpc.polkachu.com","provider":"polkachu.com"},{"address":"https://sei-rpc.brocha.in","provider":"Brochain"},{"address":"https://rpc-sei.stingray.plus","provider":"StingRay"},{"address":"https://rpc-sei.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://sei.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://sei-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://sei.drpc.org","provider":"dRPC - All chains in one place"}]}},{"chain_id":"self-1","fees":{"fee_tokens":[{"denom":"uslf","fixed_min_gas_price":0.005,"low_gas_price":0.005,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.selfchain.io:26657","provider":"Self Chain"},{"address":"https://rpc.selfchain.roomit.xyz","provider":"Roomit"},{"address":"https://selfchain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://selfchain.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://selfchain-mainnet.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://selfchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"sentinelhub-2","fees":{"fee_tokens":[{"denom":"udvpn","low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc-sentinel.busurnode.com","provider":"Busurnode"},{"address":"https://rpc-sentinel-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.sentinel.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.sentinel.quokkastake.io","provider":"🐹 Quokka Stake"},{"address":"https://rpc.dvpn.roomit.xyz","provider":"Roomit"},{"address":"https://sentinel-rpc.badgerbite.io/","provider":"BadgerBite"},{"address":"https://sentinel-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://sentinel-rpc.validatornode.com/","provider":"ValidatorNode"},{"address":"https://rpc.trinitystake.io","provider":"Trinity Stake"},{"address":"https://rpc.sentineldao.com","provider":"Sentinel Growth DAO"},{"address":"https://public.stakewolle.com/cosmos/sentinel/rpc","provider":"Stakewolle"},{"address":"http://163.197.193.2:26657","provider":"Tesla Full Node"},{"address":"https://sentinel.declab.pro:26628","provider":"Decloud Nodes Lab"},{"address":"https://sentinel.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://rpc.dvpn.me:443","provider":"MathNodes China"},{"address":"https://rpc.ro.mathnodes.com:443","provider":"MathNodes Romania"},{"address":"https://rpc.noncompliant.network:443","provider":"Noncompliant Network"},{"address":"https://rpc-sentinel.chainvibes.com:443","provider":"chainvibes"},{"address":"https://sentinel-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"sgenet-1","fees":{"fee_tokens":[{"denom":"usge","fixed_min_gas_price":0.001,"low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.5}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/sge","provider":"Lavenderfive"},{"address":"https://sge-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc.sge.nodestake.top/","provider":"Nodestake"},{"address":"https://rpc.sge.roomit.xyz/","provider":"Roomit"},{"address":"https://sge.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-sge.nodeist.net/","provider":"Nodeist"},{"address":"https://sge-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://sge-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://rpc.sge.tcnetwork.io","provider":"TC Network"},{"address":"https://sge-rpc.sr20de.xyz","provider":"Sr20de"},{"address":"https://rpc.sge.safeblock.space","provider":"Safe Block"},{"address":"https://mainnet-sge-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://sge-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://sge_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"ShareRing-VoyagerNet","fees":{"fee_tokens":[{"denom":"nshr","fixed_min_gas_price":0,"low_gas_price":2000,"average_gas_price":3000,"high_gas_price":4000}]},"apis":{"rpc":[{"address":"https://rpc.explorer.shareri.ng","provider":"ShareRing"}]}},{"chain_id":"shentu-2.2","fees":{"fee_tokens":[{"denom":"uctk","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.shentu.org:443","provider":"Shentu"},{"address":"https://shentu-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://shentu.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://shentu-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://rpc-shentu-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://shentu-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://shentu-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://shentu-rpc.panthea.eu","provider":"Panthea EU"},{"address":"https://shentu-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://shentu-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"shido_9008-1","fees":{"fee_tokens":[{"denom":"shido","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://tendermint.shidoscan.com","provider":"Shido"},{"address":"https://shidochain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc.shido.256x25.tech:443","provider":"256x25"},{"address":"https://rpc.shido.indonode.net:443","provider":"Indonode"},{"address":"https://rpc-maverick.mavnode.io","provider":"MavNode"},{"address":"https://rpc.kenseishido.com","provider":"KENSEI"}]}},{"chain_id":"sifchain-1","fees":{"fee_tokens":[{"denom":"rowan","low_gas_price":1000000000000,"average_gas_price":1500000000000,"high_gas_price":2000000000000}]},"apis":{"rpc":[{"address":"https://sifchain-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://sifchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://sifchain-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://sifchain_mainnet_rpc.chain.whenmoonwhenlambo.money:443","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"sixnet","fees":{"fee_tokens":[{"denom":"usix","fixed_min_gas_price":1.25,"low_gas_price":1.25,"average_gas_price":1.5,"high_gas_price":1.75}]},"apis":{"rpc":[{"address":"https://sixnet-rpc.sixprotocol.net:443"}]}},{"fees":{"fee_tokens":[{"denom":"Lamport","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"sommelier-3","fees":{"fee_tokens":[{"denom":"usomm","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://sommelier-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-sommelier.pupmos.network","provider":"PUPMØS"},{"address":"https://somm.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/sommelier","provider":"Lavender.Five Nodes 🐝"},{"address":"https://sommelier-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://somm-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://sommelier-rpc.w3coins.io","provider":"w3coins"}]}},{"chain_id":"source-1","fees":{"fee_tokens":[{"denom":"usource","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.075,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.source.nodestake.top","provider":"NodeStake"},{"address":"https://source.rpc.bccnodes.com/","provider":"BccNodes"},{"address":"https://source.rpc.moonbridge.team/","provider":"MoonBridge"},{"address":"https://source.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-source.nodeist.net","provider":"Nodeist"},{"address":"https://source-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://source-mainnet-rpc.itrocket.net:443","provider":"ITRocket"},{"address":"https://rpc-source.sr20de.xyz:443","provider":"Sr20de"},{"address":"https://source-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.source.tcnetwork.io","provider":"TC Network"},{"address":"https://rpc.source.indonode.net","provider":"Indonode"},{"address":"https://source.rpc.skynodejs.net/","provider":"skynodejs"},{"address":"https://source.rpc.nodeshub.online/","provider":"Nodes Hub"},{"address":"https://rpc.source.roomit.xyz/","provider":"Roomit"},{"address":"https://rpc.source.posthuman.digital","provider":"posthuman"},{"address":"https://source.declab.pro:26604","provider":"Decloud Nodes Lab"},{"address":"https://rpc.source.stakeup.tech","provider":"StakeUp"},{"address":"https://source_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://source-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"stafihub-1","fees":{"fee_tokens":[{"denom":"ufis","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://public-rpc1.stafihub.io:443","provider":"StaFiHub"},{"address":"https://public-rpc2.stafihub.io:443","provider":"StaFiHub"},{"address":"https://rpc.stafihub.nodestake.top:443","provider":"NodeStake"}]}},{"chain_id":"stargaze-1","fees":{"fee_tokens":[{"denom":"ustars","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1.1,"high_gas_price":1.2}]},"apis":{"rpc":[{"address":"https://rpc.stargaze-apis.com/","provider":"Stargaze Foundation"},{"address":"https://rpc-stargaze.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-stargaze.ezstaking.dev","provider":"EZStaking.io"},{"address":"https://stargaze-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-stargaze-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://stargaze.c29r3.xyz:443/rpc/","provider":"c29r3"},{"address":"https://rpc-stargaze.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://stargaze-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc-stargaze.d-stake.xyz","provider":"D-stake"},{"address":"https://rpc.stargaze.silentvalidator.com/","provider":"silent"},{"address":"https://stargaze-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://stargaze-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://stargaze-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://stargaze-rpc.w3coins.io","provider":"w3coins"},{"address":"https://stargaze-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://stargaze-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://stargaze-rpc.reece.sh:443","provider":"Reecepbcups"},{"address":"https://rpc.stargaze.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://stargaze-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://stargaze-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"iov-mainnet-ibc","fees":{"fee_tokens":[{"denom":"uiov","low_gas_price":1,"average_gas_price":2,"high_gas_price":3}]},"apis":{"rpc":[{"address":"https://rpc-starname-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.starname.app","provider":"Chainmasters"}]}},{"chain_id":"stratos-1","fees":{"fee_tokens":[{"denom":"wei","low_gas_price":1000000000,"average_gas_price":1200000000,"high_gas_price":1600000000}]},"apis":{"rpc":[{"address":"https://rpc.thestratos.org","provider":"thestratos.org"},{"address":"http://stratos.rpc.nodersteam.com:26657/","provider":"[NODERS]TEAM"},{"address":"https://stratos-rpc.noders.services:443","provider":"[NODERS]TEAM"}]}},{"chain_id":"stride-1","fees":{"fee_tokens":[{"denom":"ustrd","fixed_min_gas_price":0.0005,"low_gas_price":0.005,"average_gas_price":0.005,"high_gas_price":0.05},{"denom":"stuatom","fixed_min_gas_price":0.0001,"low_gas_price":0.0001,"average_gas_price":0.0002,"high_gas_price":0.0005},{"denom":"stuosmo","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.004},{"denom":"stustars","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1.1,"high_gas_price":1.2},{"denom":"stujuno","fixed_min_gas_price":0.075,"low_gas_price":0.075,"average_gas_price":0.1,"high_gas_price":0.125},{"denom":"stuluna","fixed_min_gas_price":0.0125,"low_gas_price":0.0125,"average_gas_price":0.015,"high_gas_price":0.04},{"denom":"staevmos","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000},{"denom":"stinj","fixed_min_gas_price":500000000,"low_gas_price":500000000,"average_gas_price":700000000,"high_gas_price":900000000},{"denom":"stucmdx","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"stuumee","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.12,"high_gas_price":0.2},{"denom":"stutia","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1},{"denom":"stadydx","fixed_min_gas_price":15000000000,"low_gas_price":15000000000,"average_gas_price":15000000000,"high_gas_price":20000000000},{"denom":"stadym","fixed_min_gas_price":15000000000,"low_gas_price":15000000000,"average_gas_price":15000000000,"high_gas_price":20000000000},{"denom":"stusaga","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.015,"high_gas_price":0.03},{"denom":"ibc/BF3B4F53F3694B66E13C23107C84B6485BD2B96296BB7EC680EA77BBA75B4801","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://stride-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://stride-rpc.onivalidator.com","provider":"Oni Validator ⛩️"},{"address":"https://rpc.lavenderfive.com:443/stride","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.stride.silentvalidator.com/","provider":"silent"},{"address":"https://rpc-stride.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://stride.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-stride.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-stride.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc-stride.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://stride-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-stride-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://stride-rpc.w3coins.io","provider":"w3coins"},{"address":"https://stride-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://community.nuxian-node.ch:6797/stride/trpc","provider":"PRO Delegators"},{"address":"https://stride-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.stride.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://public.stakewolle.com/cosmos/stride/rpc","provider":"Stakewolle"}]}},{"chain_id":"sunrise-1","fees":{"fee_tokens":[{"denom":"urise","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[]}},{"chain_id":"synternet-1","fees":{"fee_tokens":[{"denom":"usynt","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.synternet.com/","provider":"Synternet"},{"address":"https://synternet_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://synternet-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"taketitan-12","fees":{"fee_tokens":[{"denom":"ttnc","low_gas_price":0.000001,"average_gas_price":0.000005,"high_gas_price":0.0001}]},"apis":{"rpc":[{"address":"https://rcpttnc.taketitan.com","provider":"taketitan"}]}},{"chain_id":"tenet_1559-1","fees":{"fee_tokens":[{"denom":"atenet","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://tendermint-1.rpc.tenet.org","provider":"tenet"},{"address":"https://tenet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://tenet_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"teritori-1","fees":{"fee_tokens":[{"denom":"utori","low_gas_price":0,"average_gas_price":0.25,"high_gas_price":0.5}]},"apis":{"rpc":[{"address":"https://teritori-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://teritori.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.teritori.silentvalidator.com/","provider":"silent"},{"address":"https://teritori-rpc.brocha.in","provider":"Brochain"},{"address":"https://teritori-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://teritori.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.tori.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://teritori-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://m-teritori.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc-teritori.pupmos.network","provider":"PUPMØS"},{"address":"https://teritori-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-teritori.ecostake.com","provider":"ecostake"},{"address":"https://teritori-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://teritori-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://teritori_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://teritori-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"morocco-1","fees":{"fee_tokens":[{"denom":"uthiol","fixed_min_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc-terp.zenchainlabs.io/","provider":"ZenChainLabs"},{"address":"https://terp-mainnet-rpc.itrocket.net:443","provider":"itrocket.net"},{"address":"https://terp.rpc.nodex.one:443","provider":"nodex.one"}]}},{"chain_id":"columbus-5","fees":{"fee_tokens":[{"denom":"uluna","low_gas_price":28.325,"average_gas_price":28.325,"high_gas_price":50},{"denom":"usdr","low_gas_price":0.52469,"average_gas_price":0.52469,"high_gas_price":0.52469},{"denom":"uusd","low_gas_price":0.75,"average_gas_price":0.75,"high_gas_price":0.75},{"denom":"ukrw","low_gas_price":850,"average_gas_price":850,"high_gas_price":850},{"denom":"umnt","low_gas_price":2142.855,"average_gas_price":2142.855,"high_gas_price":2142.855},{"denom":"ueur","low_gas_price":0.625,"average_gas_price":0.625,"high_gas_price":0.625},{"denom":"ucny","low_gas_price":4.9,"average_gas_price":4.9,"high_gas_price":4.9},{"denom":"ujpy","low_gas_price":81.85,"average_gas_price":81.85,"high_gas_price":81.85},{"denom":"ugbp","low_gas_price":0.55,"average_gas_price":0.55,"high_gas_price":0.55},{"denom":"uinr","low_gas_price":54.4,"average_gas_price":54.4,"high_gas_price":54.4},{"denom":"ucad","low_gas_price":0.95,"average_gas_price":0.95,"high_gas_price":0.95},{"denom":"uchf","low_gas_price":0.7,"average_gas_price":0.7,"high_gas_price":0.7},{"denom":"uaud","low_gas_price":0.95,"average_gas_price":0.95,"high_gas_price":0.95},{"denom":"usgd","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"uthb","low_gas_price":23.1,"average_gas_price":23.1,"high_gas_price":23.1},{"denom":"usek","low_gas_price":6.25,"average_gas_price":6.25,"high_gas_price":6.25},{"denom":"unok","low_gas_price":6.25,"average_gas_price":6.25,"high_gas_price":6.25},{"denom":"udkk","low_gas_price":4.5,"average_gas_price":4.5,"high_gas_price":4.5},{"denom":"uidr","low_gas_price":10900,"average_gas_price":10900,"high_gas_price":10900},{"denom":"uphp","low_gas_price":38,"average_gas_price":38,"high_gas_price":38},{"denom":"uhkd","low_gas_price":5.85,"average_gas_price":5.85,"high_gas_price":5.85},{"denom":"umyr","low_gas_price":3,"average_gas_price":3,"high_gas_price":3},{"denom":"utwd","low_gas_price":20,"average_gas_price":20,"high_gas_price":20}]},"apis":{"rpc":[{"address":"https://terra-classic-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-terra-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://terraclassic-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://terraclassic-rpc-server-01.stakely.io","provider":"Stakely"}]}},{"chain_id":"phoenix-1","fees":{"fee_tokens":[{"denom":"uluna","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.015,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/terra2","provider":"Lavender.Five Nodes 🐝"},{"address":"https://terra-rpc.polkachu.com","provider":"polkachu"},{"address":"https://terra-rpc.stakely.io:443/","provider":"stakely"},{"address":"https://phoenix-rpc.terra.dev:443","provider":"Terraform Labs"},{"address":"https://terra-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-terra-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-archive-terra.r93axnodes.cloud:443","provider":"r93AX Nodes"},{"address":"https://rpc-terra.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://terra-phoenix-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://rpc-terra.wildsage.io","provider":"πŸ§™ WildSage Labs"},{"address":"https://terra.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"},{"address":"https://terra2.tdrsys.com:2053","provider":"TdrSys"},{"address":"https://terra-rpc.cosmosrescue.dev:8443","provider":"cosmosrescue"}]}},{"chain_id":"tgrade-mainnet-1","fees":{"fee_tokens":[{"denom":"utgd","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.075,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.mainnet-1.tgrade.confio.run","provider":"Confio"},{"address":"https://rpc.tgrade.posthuman.digital","provider":"POSTHUMAN ꝏ DVS"}]}},{"chain_id":"thorchain-1","apis":{"rpc":[]}},{"chain_id":"titan_18888-1","fees":{"fee_tokens":[{"denom":"atkx","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":110000000000,"high_gas_price":200000000000}]},"apis":{"rpc":[{"address":"https://titan-rpc.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc-tokyo.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc-seoul.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc-hongkong.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc.ibs.team","provider":"ibs.team"}]}},{"fees":{"fee_tokens":[{"denom":"nanoton","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"fees":{"fee_tokens":[{"denom":"sun","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"umee-1","fees":{"fee_tokens":[{"denom":"uumee","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.12,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://umee-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-umee-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://umee-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"http://umee.rpc.m.stavr.tech:10457","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"http://rpc-umee-0.node75.org:26657","provider":"Pro-Nodes75"},{"address":"https://umee-rpc.quantnode.tech","provider":"QuantNode"},{"address":"https://umee-rpc.tienthuattoan.com","provider":"TTT πŸ‡»πŸ‡³"},{"address":"https://rpc-umee-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://umee-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://umee-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://umee.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://umee-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-umee.mms.team","provider":"MMS"},{"address":"https://rpc-umee.mzonder.com","provider":"MZONDER"},{"address":"https://umee-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://umee-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://umee.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://umee-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://umee_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"unicorn-420","fees":{"fee_tokens":[{"denom":"uwunicorn","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[]}},{"chain_id":"FUND-MainNet-2","fees":{"fee_tokens":[{"denom":"nund","fixed_min_gas_price":25,"low_gas_price":100,"average_gas_price":200,"high_gas_price":300}]},"apis":{"rpc":[{"address":"https://rpc.unification.io:443","provider":"Unification"},{"address":"https://rpc.unification.chainmasters.ninja/","provider":"Chainmasters"}]}},{"chain_id":"ununifi-beta-v1","fees":{"fee_tokens":[{"denom":"uguu","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"http://a.lcd.ununifi.cauchye.net:26657","provider":"CauchyE"},{"address":"https://rpc.ununifi.nodestake.top","provider":"NodeStake"},{"address":"https://rpc.lavenderfive.com:443/ununifi","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.lavenderfive.com:443/ununifi","provider":"Lavender.Five Nodes 🐝"},{"address":"https://ununifi-rpc.genznodes.dev","provider":"genznodes"}]}},{"chain_id":"uptick_117-1","fees":{"fee_tokens":[{"denom":"auptick","fixed_min_gas_price":13000000000,"low_gas_price":13000000000,"average_gas_price":16000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://uptick-rpc.brocha.in:443","provider":"Brochain"},{"address":"https://uptick.rpc.bccnodes.com:443","provider":"BccNodes"},{"address":"https://rpc.uptick.nodestake.top","provider":"NodeStake"},{"address":"https://uptick.rpc.kjnodes.com","provider":"kjnodes"},{"address":"http://uptick.rpc.m.stavr.tech:3157","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://m-uptick.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://uptick-mainnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://uptick.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://uptick-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://uptick-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://rpc-uptick.cakralabs.site","provider":"Cakra Labs"},{"address":"https://rpc-uptick.sr20de.xyz","provider":"Sr20de"},{"address":"https://uptick-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"xion-mainnet-1","fees":{"fee_tokens":[{"denom":"uxion","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.001,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.xion-mainnet-1.burnt.com","provider":"πŸ”₯BurntLabsπŸ”₯"},{"address":"https://xion-rpc.lavenderfive.com","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-burnt.imperator.co/","provider":"Imperator.co"},{"address":"https://xion-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://xion-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://xion_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"dimension_37-1","fees":{"fee_tokens":[{"denom":"axpla","fixed_min_gas_price":850000000000,"low_gas_price":850000000000,"average_gas_price":1147500000000,"high_gas_price":1487500000000}]},"apis":{"rpc":[{"address":"https://dimension-rpc.xpla.dev","provider":"Holdings"},{"address":"https://xpla.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/xpla","provider":"Lavender.Five Nodes 🐝"},{"address":"https://xpla-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"zetachain_7000-1","fees":{"fee_tokens":[{"denom":"azeta","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://zetachain.blockpi.network/rpc/v1/public","provider":"BlockPI"},{"address":"https://zetachain-mainnet-archive.allthatnode.com:26657","provider":"All That Node"},{"address":"https://rpc.lavenderfive.com:443/zetachain","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.zetachain.nodestake.org","provider":"NodeStake"},{"address":"https://zetachain-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://zetachain.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://zeta-chain.drpc.org","provider":"dRPC"}]}},{"chain_id":"junction","fees":{"fee_tokens":[{"denom":"amf","fixed_min_gas_price":0,"low_gas_price":0.00025,"average_gas_price":0.005,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://junction-rpc.validatorvn.com/","provider":"Validator VN"},{"address":"https://airchains-testnet-rpc.cosmonautstakes.com/","provider":"Cosmonaut Stakes"},{"address":"https://junction-testnet-rpc.synergynodes.com/","provider":"Synergy Nodes"},{"address":"https://airchains-rpc.anonid.top/","provider":"Anonid Top"},{"address":"https://airchains-test.rpc.moonbridge.team/","provider":"Moonbridge Team"},{"address":"https://airchains-rpc.chainad.org/","provider":"Coin Hunterstr"},{"address":"https://airchains.rpc.t.stavr.tech/","provider":"Stavr Tech"},{"address":"https://rpc.nodejumper.io/airchainstestnet","provider":"Nodejumper"},{"address":"https://t-airchains.rpc.utsa.tech/","provider":"UTSA"},{"address":"https://junction-rpc.kzvn.xyz/","provider":"KZVN"},{"address":"https://airchains-rpc.elessarnodes.xyz/","provider":"Elessar Nodes"},{"address":"https://junction-rpc.apollo-sync.com/","provider":"Apollo Sync"},{"address":"https://rpc-airchain.danggia.xyz/","provider":"DANGGIA"},{"address":"https://airchains-rpc.stakeme.pro/","provider":"Stakeme"},{"address":"https://airchains-testnet-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://airchains-testnet-rpc.crouton.digital/","provider":"Crouton Digital"},{"address":"https://airchains-testnet-rpc.itrocket.net/","provider":"IT Rocket"},{"address":"https://rpc1.airchains.t.cosmostaking.com/","provider":"Cosmostaking"}]}},{"chain_id":"sandbox-01","fees":{"fee_tokens":[{"denom":"uakt","fixed_min_gas_price":0,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.sandbox-01.aksh.pw:443","provider":"akash"}]}},{"chain_id":"constantine-3","fees":{"fee_tokens":[{"denom":"aconst","low_gas_price":1000000000000,"average_gas_price":1500000000000,"high_gas_price":2000000000000}]},"apis":{"rpc":[{"address":"https://rpc.constantine.archway.io","provider":"Archway"},{"address":"https://archway-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"arkeo","fees":{"fee_tokens":[{"denom":"uarkeo"}]},"apis":{"rpc":[{"address":"https://arkeonetwork-testnet.nodejumper.io:26657","provider":"NODEJUMPER"},{"address":"https://test-arkeo-rpc.kynraze.com","provider":"kynraze"},{"address":"https://testnet-arkeo-rpc.lavenderfive.com","provider":"lavenderfive"},{"address":"https://arkeo-rpc.siriusnodes.uk","provider":"siriusnodes"},{"address":"http://seed.arkeo.network:26657","provider":"arkeo"}]}},{"chain_id":"artela_11820-1","fees":{"fee_tokens":[{"denom":"uart","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://testnet-rpc1.artela.network","provider":"Artela Foundation"},{"address":"https://testnet-rpc2.artela.network","provider":"Artela Foundation"}]}},{"chain_id":"aura_6321-3","fees":{"fee_tokens":[{"denom":"ueaura","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://rpc.euphoria.aura.network/","provider":"Aura Network Foundation"}]}},{"chain_id":"axelar-testnet-lisbon-3","fees":{"fee_tokens":[{"denom":"uaxl","low_gas_price":0.007,"average_gas_price":0.007,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc-axelar-testnet.imperator.co:443","provider":"Imperator.co"},{"address":"https://axelartest-rpc.quickapi.com/","provider":"Quickapi"},{"address":"https://axelar-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"bbn-test3","fees":{"fee_tokens":[{"denom":"ubbn"}]},"apis":{"rpc":[{"address":"rpc.testnet3.babylonchain.io:443","provider":"Babylon foundation"}]}},{"chain_id":"bitcanna-dev-1","fees":{"fee_tokens":[{"denom":"ubcna","fixed_min_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://rpc-testnet.bitcanna.io","provider":"bitcanna"},{"address":"https://bitcanna-testnet.rpc.kjnodes.com/","provider":"kjnodes.com"},{"address":"https://testnet-bitcanna-rpc.konsortech.xyz/","provider":"konsortech.xyz"},{"address":"https://rpc.bitcanna-dev-1.bitcanna.aviaone.com/","provider":"aviaone.com"},{"address":"https://bitcanna-testnet.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://bcna-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"blockx_19077-1","apis":{"rpc":[]}},{"chain_id":"cascadia_6102-1","fees":{"fee_tokens":[{"denom":"aCC","fixed_min_gas_price":0,"low_gas_price":7,"average_gas_price":10,"high_gas_price":15}]},"apis":{"rpc":[{"address":"https://rpc.cascadia.foundation:443","provider":"cascadia"},{"address":"https://cscd-rpc.systemd.run:443","provider":"systemd"},{"address":"https://api.cascadia-t.indonode.net:443","provider":"Indonode"},{"address":"https://rpc-test.cascadia.hexnodes.co:443","provider":"Hexnodes"}]}},{"chain_id":"mocha-4","fees":{"fee_tokens":[{"denom":"utia","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc-mocha.pops.one","provider":"P-OPs"},{"address":"https://celestia-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-mocha-full.avril14th.org","provider":"Avril 14th"},{"address":"https://celestia-testnet-rpc.itrocket.net","provider":"πŸš€ITRocketπŸš€"},{"address":"https://rpc-celestia-testnet.cryptech.com.ua","provider":"CrypTech"},{"address":"https://rpc.celestia.testnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://celestia-testnet-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"}]}},{"chain_id":"babajaga-1","fees":{"fee_tokens":[{"denom":"uc4e","fixed_min_gas_price":0,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc-testnet.c4e.io","provider":"C4E"}]}},{"chain_id":"cheqd-testnet-6","fees":{"fee_tokens":[{"denom":"ncheq","fixed_min_gas_price":25,"low_gas_price":50,"average_gas_price":75,"high_gas_price":100}]},"apis":{"rpc":[{"address":"https://rpc.cheqd.network","provider":"cheqd"}]}},{"chain_id":"chimba-testnet","fees":{"fee_tokens":[{"denom":"ucmba","fixed_min_gas_price":0.25,"low_gas_price":1,"average_gas_price":5,"high_gas_price":10}]},"apis":{"rpc":[{"address":"https://rpc.testnet.chimba.ooo","provider":"chimba"}]}},{"chain_id":"banksy-testnet-3","fees":{"fee_tokens":[{"denom":"ppica","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.composable-t.indonode.net:443","provider":"Indonode"},{"address":"https://rpc-composable-testnet.sr20de.xyz:443","provider":"Sr20de"}]}},{"chain_id":"kitten-04","fees":{"fee_tokens":[{"denom":"uccat","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":1,"high_gas_price":2}]},"apis":{"rpc":[{"address":"https://rpc.coolcat.space","provider":"Digital Kitchen"}]}},{"chain_id":"coreum-testnet-1","fees":{"fee_tokens":[{"denom":"utestcore","fixed_min_gas_price":0.03125,"low_gas_price":0.0625,"average_gas_price":0.0625,"high_gas_price":62.5}]},"apis":{"rpc":[{"address":"https://full-node.testnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-eris.testnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://coreum-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"theta-testnet-001","fees":{"fee_tokens":[{"denom":"uatom","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://cosmoshubt.tendermintrpc.lava.build:443","provider":"Lava"},{"address":"https://rpc.sentry-01.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.sentry-02.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.state-sync-01.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.state-sync-02.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://public-cosmos-theta.w3node.com","provider":"Interchain.FM"},{"address":"https://rpc-theta.osmotest5.osmosis.zone/","provider":"Osmosis"}]}},{"chain_id":"provider","fees":{"fee_tokens":[{"denom":"uatom","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.provider-sentry-01.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.provider-sentry-02.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.provider-state-sync-01.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.provider-state-sync-02.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://cosmos-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"malaga-420","fees":{"fee_tokens":[{"denom":"umlg","low_gas_price":0.03,"average_gas_price":0.04,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.malaga-420.cosmwasm.com:443","provider":"Confio"}]}},{"chain_id":"coss-testnet-1","fees":{"fee_tokens":[{"denom":"ucgas","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://coss-testnet-rpc.coss.ink","provider":"COSS"}]}},{"chain_id":"cudos-testnet-public-3","apis":{"rpc":[{"address":"https://rpc.testnet.cudos.org:443/","provider":"cudo"},{"address":"http://sentry-01.hosts.testnet.cudos.org:26657","provider":"cudo"},{"address":"http://sentry-02.hosts.testnet.cudos.org:26657","provider":"cudo"},{"address":"http://sentry-03.hosts.testnet.cudos.org:26657","provider":"cudo"}]}},{"chain_id":"deardoge-testnet","fees":{"fee_tokens":[{"denom":"udear","fixed_min_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://testnet-rpc.deardoge.org","provider":"dorafactory"}]}},{"chain_id":"morpheus-apollo-3","fees":{"fee_tokens":[{"denom":"udaric","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.03,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.morpheus.desmos.network","provider":"desmos"}]}},{"chain_id":"dhealth-testnet-2","fees":{"fee_tokens":[{"denom":"utdhp","fixed_min_gas_price":0.01,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc-testnet.dhealth.dev","provider":"dHealth"}]}},{"chain_id":"vota-testnet","fees":{"fee_tokens":[{"denom":"peaka","fixed_min_gas_price":100000000000}]},"apis":{"rpc":[{"address":"https://vota-testnet-rpc.dorafactory.org/","provider":"dorafactory"}]}},{"chain_id":"dydx-testnet-4","fees":{"fee_tokens":[{"denom":"adv4tnt","fixed_min_gas_price":12500000000,"low_gas_price":12500000000,"average_gas_price":12500000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://dydx-rpc-testnet.enigma-validator.com","provider":"Enigma"},{"address":"https://testnet-dydx-rpc.lavenderfive.com","provider":"Lavender Five"},{"address":"https://test-dydx-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://dydx-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://dydx-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"dymension_1405-1","fees":{"fee_tokens":[{"denom":"adym","low_gas_price":5000000000,"average_gas_price":5500000000,"high_gas_price":6000000000}]},"apis":{"rpc":[{"address":"https://rpc-dym-migration-test-2.mzonder.com","provider":"mzonder"}]}},{"chain_id":"elystestnet-1","fees":{"fee_tokens":[{"denom":"uelys","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/2180E84E20F5679FCC760D8C165B60F42065DEF7F46A72B447CFF1B7DC6C0A65","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.testnet.elys.network","provider":"Elys Network"},{"address":"https://elys-testnet-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://elys-testnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://elys-rpc.kleomedes.network:443","provider":"Kleomedes"},{"address":"https://elys-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"empe-testnet-2","fees":{"fee_tokens":[{"denom":"uempe","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-testnet.empe.io/","provider":"empe"},{"address":"https://rpc-archive-testnet.empe.io/","provider":"empe-archive"}]}},{"chain_id":"circulus-1","fees":{"fee_tokens":[{"denom":"umpwr","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://empower-testnet-rpc.polkachu.com:443","provider":"Polkachu"},{"address":"https://empower.rpc.cumulo.com.es:443","provider":"Cumulo"},{"address":"https://rpc-t.empower.nodestake.top:443","provider":"NodeStake"},{"address":"https://rpc-empower.nodeist.net:443","provider":"Nodeist"},{"address":"https://empower-testnet.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://empower-testnet-rpc.itrocket.net:443","provider":"ITRocket"},{"address":"https://rpc.circulus-1.empower.aviaone.com:443","provider":"AviaOne"}]}},{"chain_id":"epix_4243-1","fees":{"fee_tokens":[{"denom":"aepix","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.testnet.epix.zone","provider":"Epix Testnet"}]}},{"chain_id":"evmos_9000-4","fees":{"fee_tokens":[{"denom":"atevmos","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://evmos.test.rpc.coldyvalidator.net","provider":"coldy"},{"address":"https://evmos-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://evmos-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"dorado-1","fees":{"fee_tokens":[{"denom":"atestfet","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc-dorado.fetch.ai:443","provider":"fetch.ai"}]}},{"chain_id":"fiamma-testnet-1","fees":{"fee_tokens":[{"denom":"ufia"}]},"apis":{"rpc":[{"address":"https://testnet-rpc.fiammachain.io","provider":"Fiamma"}]}},{"chain_id":"ebony-2","fees":{"fee_tokens":[{"denom":"tcony","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.015,"high_gas_price":0.015}]},"apis":{"rpc":[{"address":"https://ebony-rpc.finschia.io"}]}},{"chain_id":"galactica_9302-1","fees":{"fee_tokens":[{"denom":"agnet","fixed_min_gas_price":10,"low_gas_price":10,"average_gas_price":10,"high_gas_price":20}]},"apis":{"rpc":[{"address":"https://rpc.galactica.test.pfc.zone/","provider":"PFC"},{"address":"https://galactica-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"gitopia-janus-testnet-2","fees":{"fee_tokens":[{"denom":"utlore","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://gitopia-testnet.nodejumper.io","provider":"NODEJUMPER"}]}},{"chain_id":"berberis-1","fees":{"fee_tokens":[{"denom":"uhedge","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-berberis.hedgeblock.io","provider":"Hedge"}]}},{"chain_id":"testnet-1","fees":{"fee_tokens":[{"denom":"uheart","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://humans-testnet.nodejumper.io","provider":"NODEJUMPER"},{"address":"https://humans-testnet-rpc.cosmonautstakes.com","provider":"Cosmonaut Stakes πŸ€–"}]}},{"chain_id":"prajna-1","fees":{"fee_tokens":[{"denom":"uhid","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.prajna.hypersign.id","provider":"Hypersign"}]}},{"chain_id":"pandora-8","fees":{"fee_tokens":[{"denom":"uixo","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.testnet.ixo.earth/","provider":"ixoworld"}]}},{"chain_id":"imversed-test-1","fees":{"fee_tokens":[{"denom":"nimv","fixed_min_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://tx-endpoint-test.imversed.com/","provider":"imversed"}]}},{"chain_id":"injective-888","fees":{"fee_tokens":[{"denom":"inj","fixed_min_gas_price":160000000,"low_gas_price":500000000,"average_gas_price":700000000,"high_gas_price":900000000}]},"apis":{"rpc":[{"address":"https://injective-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://testnet.sentry.tm.injective.network:443","provider":"injectiveLabs"},{"address":"https://testnet.tm.injective.network","provider":"injectiveLabs"},{"address":"https://injective-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"canine-1","fees":{"fee_tokens":[{"denom":"ujkl","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"http://jkl.rpc.t.stavr.tech:19127","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://testnet-rpc.jackalprotocol.com","provider":"Jackal Labs"}]}},{"chain_id":"mesomelas-1","fees":{"fee_tokens":[{"denom":"ujkl","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://jackal-testnet-v4-rpc.brocha.in","provider":"Brochain"}]}},{"chain_id":"uni-6","fees":{"fee_tokens":[{"denom":"ujunox","low_gas_price":0.003,"average_gas_price":0.0045,"high_gas_price":0.006}]},"apis":{"rpc":[{"address":"https://juno-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"kichain-t-4","fees":{"fee_tokens":[{"denom":"utki","fixed_min_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://rpc-challenge.blockchain.ki/","provider":"kifoundation"}]}},{"chain_id":"kima_testnet","fees":{"fee_tokens":[{"denom":"uKIMA","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc-testnet.kima.finance/","provider":"Kima Network"}]}},{"chain_id":"harpoon-4","fees":{"fee_tokens":[{"denom":"ukuji","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://kujira-testnet-rpc.polkachu.com","provider":"polkachu"}]}},{"chain_id":"kaon-1","fees":{"fee_tokens":[{"denom":"tkyve","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc.kaon.kyve.network","provider":"kyve"},{"address":"https://rpc-kyve-test.ecostake.com","provider":"ecostake"},{"address":"https://kyve-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"lava-testnet-2","fees":{"fee_tokens":[{"denom":"ulava","fixed_min_gas_price":0.000001,"low_gas_price":0.000001,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://lav1.tendermintrpc.lava.build:443","provider":"Lava"},{"address":"http://lava.rpc.t.stavr.tech:198","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://lava-testnet-rpc.itrocket.net:443","provider":"πŸš€ITRocketπŸš€"},{"address":"https://lava-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"likecoin-public-testnet-5","fees":{"fee_tokens":[{"denom":"nanoekil","fixed_min_gas_price":1000,"low_gas_price":1000,"average_gas_price":10000,"high_gas_price":1000000}]},"apis":{"rpc":[{"address":"https://node.testnet.like.co/rpc/","provider":"like.co"}]}},{"chain_id":"lumenx-test","fees":{"fee_tokens":[{"denom":"ulumen","fixed_min_gas_price":0.0025,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://testnet-rpc.lumenx.chaintools.tech/","provider":"ChainTools"},{"address":"https://testrpc-lumenx.cryptonet.pl/","provider":"CryptoNet"}]}},{"chain_id":"manifest-ledger-beta","fees":{"fee_tokens":[{"denom":"umfx","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.007,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://nodes.chandrastation.com/rpc/manifest/","provider":"Chandra Station"},{"address":"https://manifest-beta-rpc.liftedinit.tech/","provider":"Lifted Initiative"}]}},{"chain_id":"mantra-hongbai-1","fees":{"fee_tokens":[{"denom":"uom","fixed_min_gas_price":0,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.003}]},"apis":{"rpc":[{"address":"https://rpc.hongbai.mantrachain.io","provider":"MANTRACHAIN"},{"address":"https://mantra-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"mantra-dukong-1","fees":{"fee_tokens":[{"denom":"uom","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.dukong.mantrachain.io","provider":"MANTRACHAIN"},{"address":"https://mantra-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"ares-1","fees":{"fee_tokens":[{"denom":"umars","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://testnet-rpc.marsprotocol.io/","provider":"Mars Protocol"},{"address":"https://rpc-mars.nodeist.net/","provider":"Nodeist"}]}},{"chain_id":"mnova_10096-1","apis":{"rpc":[]}},{"chain_id":"narwhal-2","fees":{"fee_tokens":[{"denom":"uwhale","fixed_min_gas_price":0.25,"low_gas_price":0.25,"average_gas_price":0.5,"high_gas_price":0.75}]},"apis":{"rpc":[{"address":"https://migaloo-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"neura_267-1","fees":{"fee_tokens":[{"denom":"atankr"}]},"apis":{"rpc":[{"address":"https://rpc.ankr.com/neura_testnet","provider":"ankr"}]}},{"chain_id":"pion-1","fees":{"fee_tokens":[{"denom":"untrn","low_gas_price":0.0053,"average_gas_price":0.0053,"high_gas_price":0.0053}]},"apis":{"rpc":[{"address":"https://rpc-falcron.pion-1.ntrn.tech","provider":"Neutron"},{"address":"https://neutron-testnet-rpc.polkachu.com/","provider":"Polkachu"}]}},{"chain_id":"nibiru-testnet-1","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet-1.nibiru.fi","provider":"Nibiru Foundation"}]}},{"chain_id":"nibiru-testnet-2","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet-2.nibiru.fi","provider":"Nibiru Foundation"}]}},{"chain_id":"nibiru-testnet-3","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet-3.nibiru.fi","provider":"Nibiru Foundation"}]}},{"chain_id":"nillion-chain-testnet-1","fees":{"fee_tokens":[{"denom":"unil","low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.00025}]},"apis":{"rpc":[{"address":"https://nillion-testnet-rpc.polkachu.com/","provider":"polkachu"},{"address":"https://testnet-nillion-rpc.lavenderfive.com","provider":"lavenderfive"},{"address":"https://nillion-testnet.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://nillion-testnet.rpc.nodex.one","provider":"NodeX Emperor"}]}},{"chain_id":"grand-1","fees":{"fee_tokens":[{"denom":"uusdc","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://noble-testnet-rpc.polkachu.com","provider":"polkachu"},{"address":"https://rpc.testnet.noble.strange.love:443","provider":"strangelove"}]}},{"chain_id":"nois-testnet-005","fees":{"fee_tokens":[{"denom":"unois","fixed_min_gas_price":0,"low_gas_price":0.05,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://nois-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://nois-testnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://rpc.nois.mcbnode.online:443","provider":"mcbnode"},{"address":"https://nois-testnet.rpc.kjnodes.com:443","provider":"kjnodes"},{"address":"https://tnois-rpc.systemd.run:443","provider":"systemd"}]}},{"chain_id":"rila-1","fees":{"fee_tokens":[{"denom":"unls","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rila-cl.nolus.network:26657","provider":"NolusProtocol"}]}},{"chain_id":"nomic-testnet-6","fees":{"fee_tokens":[{"denom":"unom","low_gas_price":0,"average_gas_price":0,"high_gas_price":0},{"denom":"usat","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://testnet-rpc.nomic.io:2096","provider":"nomic"}]}},{"chain_id":"sandbox","fees":{"fee_tokens":[{"denom":"unym","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"unyx","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.sandbox.nymtech.net","provider":"Nym"}]}},{"chain_id":"okp4-nemeton-1","fees":{"fee_tokens":[{"denom":"uknow","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://api.testnet.okp4.network/rpc","provider":"OKP4"},{"address":"https://okptest-rpc.quickapi.com","provider":"Chainlayer"},{"address":"http://okp.rpc.t.stavr.tech:10097","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://okp4-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"osmo-test-5","fees":{"fee_tokens":[{"denom":"uosmo","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.osmotest5.osmosis.zone/","provider":"Osmosis"}]}},{"chain_id":"INVALID-ID-permtestnet-testnet-1","fees":{"fee_tokens":[{"denom":"uperm","low_gas_price":0.0025,"average_gas_price":0.0025,"high_gas_price":0.0024}]},"apis":{"rpc":[{"address":"https://rpc.3.finance/","provider":"Perm Network"}]}},{"chain_id":"test-core-1","fees":{"fee_tokens":[{"denom":"uxprt","fixed_min_gas_price":0,"low_gas_price":0.05,"average_gas_price":0.125,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://rpc-testnet-persistence.architectnodes.com/","provider":"Architect Nodes"},{"address":"https://persistence-testnet-rpc.baryon.dev/","provider":"Baryon"},{"address":"https://persistence-testnet-rpc.cosmonautstakes.com/","provider":"Cosmonaut Stakes"},{"address":"https://rpc.testnet.persistence.one/","provider":"Persistence"},{"address":"https://persistence-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://xprt-trpc.antrixy.org/","provider":"Antrix Validators"}]}},{"chain_id":"test-core-2","fees":{"fee_tokens":[{"denom":"uxprt","fixed_min_gas_price":0,"low_gas_price":0.05,"average_gas_price":0.125,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://rpc-persistence-testnet-01.stakeflow.io/","provider":"StakeFlow"},{"address":"https://persistence-testnet-rpc.baryon.dev/","provider":"Baryon"},{"address":"https://persistence-testnet-rpc.cosmonautstakes.com/","provider":"Cosmonaut Stakes"},{"address":"https://rpc.testnet2.persistence.one/","provider":"Persistence"},{"address":"https://persistence-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://persistencecoretest-rpc.ytwofund.pro/","provider":"YTWOFUND"},{"address":"http://persistence-testnet.paranorm.pro:24657/","provider":"Paranorm"}]}},{"chain_id":"planq_7077-1","fees":{"fee_tokens":[{"denom":"atplanq","fixed_min_gas_price":20000000000,"low_gas_price":30000000000,"average_gas_price":35000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc-atlas.planq.network","provider":"Planq Network"},{"address":"https://planq_testnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"pocket-beta","fees":{"fee_tokens":[{"denom":"upokt","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://shannon-testnet-grove-rpc.beta.poktroll.com","provider":"Grove"}]}},{"chain_id":"indigo-1","fees":{"fee_tokens":[{"denom":"upryzm","fixed_min_gas_price":0,"low_gas_price":0.015,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://testnet-rpc.pryzm.zone","provider":"PRYZM"},{"address":"https://pryzm-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"quasar-test-1","fees":{"fee_tokens":[{"denom":"uqsr","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://quasar-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://quasar-testnet-rpc.stakeandrelax.net/","provider":"Stake and Relax"},{"address":"https://quasar-testnet.rpc.kjnodes.com","provider":"KJNodes.com"}]}},{"chain_id":"rhye-2","fees":{"fee_tokens":[{"denom":"uqck","low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.00025}]},"apis":{"rpc":[{"address":"http://quick.rpc.t.stavr.tech:20027","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://quicksilver-testnet-rpc.polkachu.com/","provider":"polkachu"},{"address":"https://quicksilver-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"earendel-1","fees":{"fee_tokens":[{"denom":"uqwoyn"}]},"apis":{"rpc":[{"address":"https://testnet-rpc.qwoyn.studio","provider":"Qwoyn Studios"}]}},{"chain_id":"ssc-testnet-1","fees":{"fee_tokens":[{"denom":"utsaga","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://testnet-ssc.sagarpc.io/","provider":"Saga"}]}},{"chain_id":"pulsar-3","fees":{"fee_tokens":[{"denom":"uscrt","fixed_min_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet.secretsaturn.net","provider":"π•Šecret π•Šaturn"},{"address":"https://rpc.pulsar.scrttestnet.com","provider":"SCRT Testnet Committee"}]}},{"chain_id":"atlantic-1","fees":{"fee_tokens":[{"denom":"usei","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://sei-testnet-rpc.brocha.in","provider":"Brochain"}]}},{"chain_id":"atlantic-2","fees":{"fee_tokens":[{"denom":"usei","fixed_min_gas_price":0.08}]},"apis":{"rpc":[{"address":"https://sei-testnet-2-rpc.brocha.in","provider":"Brochain"},{"address":"https://rpc-testnet-sei.stingray.plus","provider":"StingRay"}]}},{"chain_id":"self-dev-1","fees":{"fee_tokens":[{"denom":"uself","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-devnet.selfchain.xyz","provider":"Selfchain"}]}},{"chain_id":"sge-network-3","fees":{"fee_tokens":[{"denom":"usge","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.testnet.sgenetwork.io","provider":"Sge Network"},{"address":"https://testnet-saage-rpc.lavenderfive.com/ ","provider":"Lavender.Five"},{"address":"https://saage-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-t.sge.nodestake.top/","provider":"Nodestake.top"},{"address":"https://sge.rpc.t.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"sge-network-4","fees":{"fee_tokens":[{"denom":"usge","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.testnet.sgenetwork.io","provider":"Sge Network"},{"address":"https://testnet-saage-rpc.lavenderfive.com/ ","provider":"Lavender.Five"},{"address":"https://saage-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-t.sge.nodestake.top/","provider":"Nodestake.top"}]}},{"chain_id":"yulei-2.1","fees":{"fee_tokens":[{"denom":"uctk","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://yulei-rpc.shentu.org:443","provider":"Shentu"}]}},{"chain_id":"fivenet","fees":{"fee_tokens":[{"denom":"usix","fixed_min_gas_price":1.25,"low_gas_price":1.25,"average_gas_price":1.5,"high_gas_price":1.75}]},"apis":{"rpc":[{"address":"https://rpc1.fivenet.sixprotocol.net:443"}]}},{"chain_id":"soarchaintestnet","fees":{"fee_tokens":[{"denom":"utsoar","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc1.testnet.soarchain.com","provider":"soarchain"},{"address":"https://rpc2.testnet.soarchain.com/","provider":"soarchain"},{"address":"https://soarchain-testnet-rpc.tienthuattoan.com","provider":"tienthuattoan"},{"address":"https://soarchain-testnet.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-t.soarchain.nodestake.org","provider":"nodeStake"},{"address":"https://soarchain-testnet-rpc.stakerhouse.com","provider":"stakerHouse"}]}},{"chain_id":"sourcetest-1","fees":{"fee_tokens":[{"denom":"usource","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.075,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://source-testnet-rpc.itrocket.net/","provider":"ITRocket"},{"address":"https://source-test.rpc.moonbridge.team/","provider":"MoonBridge"},{"address":"https://source-testnet-rpc.stake-town.com:443","provider":"StakeTown"},{"address":"https://rpc-testnet-source.sr20de.xyz","provider":"SR20DE"},{"address":"https://source-testnet.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://source_testnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"elgafar-1","fees":{"fee_tokens":[{"denom":"ustars","low_gas_price":0.03,"average_gas_price":0.04,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.elgafar-1.stargaze-apis.com","provider":"Stargaze Foundation"},{"address":"https://stargaze-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"stateset-1-testnet","fees":{"fee_tokens":[{"denom":"ustate","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.stateset.zone/","provider":"stateset"}]}},{"chain_id":"stride-internal-1","fees":{"fee_tokens":[{"denom":"ustrd","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://stride.testnet-1.stridenet.co","provider":"Stride"}]}},{"chain_id":"sunrise-test-0.1","fees":{"fee_tokens":[{"denom":"urise","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://a-node.sunrise-test-1.cauchye.net/","provider":"CauchyE"},{"address":"https://b-node.sunrise-test-1.cauchye.net/","provider":"CauchyE"}]}},{"chain_id":"swisstronik_1291-1","fees":{"fee_tokens":[{"denom":"aswtr","fixed_min_gas_price":7}]},"apis":{"rpc":[{"address":"https://rpc.testnet.swisstronik.com","provider":"Swisstronik"},{"address":"https://testnet-swisstronik-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://rpc.swisstronik.comunitynode.my.id","provider":"ComunityNode"}]}},{"chain_id":"symphony-testnet-3","fees":{"fee_tokens":[{"denom":"note","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://symphony.test.rpc.nodeshub.online/","provider":"Nodes Hub"},{"address":"https://symphony-testnet-rpc.cogwheel.zone/","provider":"Cogwheel βš™οΈ"}]}},{"chain_id":"amber-2","fees":{"fee_tokens":[{"denom":"uamber","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-testnet.synternet.com/","provider":"Synternet"}]}},{"chain_id":"90u-4","fees":{"fee_tokens":[{"denom":"uthiolx","fixed_min_gas_price":0.5,"low_gas_price":0.75,"average_gas_price":1,"high_gas_price":1.25}]},"apis":{"rpc":[{"address":"https://testnet-rpc.terp.network:443/","provider":"Terpnet Foundation"},{"address":"https://terp-testnet-rpc.itrocket.net:443/","provider":"itrocket"}]}},{"chain_id":"90u-2","fees":{"fee_tokens":[{"denom":"uthiolx","fixed_min_gas_price":0.5,"low_gas_price":0.75,"average_gas_price":1,"high_gas_price":1.25}]},"apis":{"rpc":[{"address":"https://terp-testnet-rpc.itrocket.net:443/","provider":"itrocket"}]}},{"chain_id":"pisco-1","fees":{"fee_tokens":[{"denom":"uluna","fixed_min_gas_price":0.0125,"low_gas_price":0.0125,"average_gas_price":0.015,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://pisco-rpc.terra.dev:443","provider":"Terraform Labs"},{"address":"https://terra-testnet-rpc.polkachu.com:443","provider":"Polkachu"}]}},{"chain_id":"titan_18889-1","fees":{"fee_tokens":[{"denom":"atkx","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":110000000000,"high_gas_price":200000000000}]},"apis":{"rpc":[{"address":"https://titan-testnet-rpc.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-1.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-2.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-3.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-4.titanlab.io:443","provider":"Titanlab.io"}]}},{"chain_id":"tucana_712-1","fees":{"fee_tokens":[{"denom":"atuc","fixed_min_gas_price":5000000000,"low_gas_price":10000000000,"average_gas_price":25000000000,"high_gas_price":30000000000}]},"apis":{"rpc":[{"address":"https://rpc.birdee-2.tucana.zone/","provider":"Tucana"}]}},{"chain_id":"ulas","apis":{"rpc":[{"address":"http://65.49.204.199:26657","provider":"UlasNetwork"}]}},{"chain_id":"FUND-TestNet-2","fees":{"fee_tokens":[{"denom":"nund","fixed_min_gas_price":25,"low_gas_price":100,"average_gas_price":200,"high_gas_price":300}]},"apis":{"rpc":[{"address":"https://rpc-testnet.unification.io:443","provider":"Unification"}]}},{"chain_id":"union-testnet-8","fees":{"fee_tokens":[{"denom":"muno","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.testnet-8.union.build","provider":"union"},{"address":"https://union-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-testnet-union.nodeist.net","provider":"Nodeist"},{"address":"https://union-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"uptick_7000-2","fees":{"fee_tokens":[{"denom":"auptick","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://uptick-7000-2-rpc.staketab.org:443","provider":"Staketab"}]}},{"chain_id":"buenavista-1","fees":{"fee_tokens":[{"denom":"uward","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.buenavista.wardenprotocol.org/","provider":"Warden Protocol"}]}},{"chain_id":"INVALID-ID-wavehashtestnet-testnet-1","fees":{"fee_tokens":[{"denom":"uwahax","low_gas_price":0.0025,"average_gas_price":0.0025,"high_gas_price":0.0024}]},"apis":{"rpc":[{"address":"https://rpc.wavehash.online/","provider":"WaveHash Network"}]}},{"chain_id":"xion-testnet-1","fees":{"fee_tokens":[{"denom":"uxion","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.001,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.xion-testnet-1.burnt.com","provider":"πŸ”₯BurntLabsπŸ”₯"},{"address":"https://testnet-burnt-rpc.lavenderfive.com","provider":"Lavender.Five Nodes 🐝"},{"address":"https://xion-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://burnt-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"cube_47-5","fees":{"fee_tokens":[{"denom":"axpla","fixed_min_gas_price":850000000000,"low_gas_price":850000000000,"average_gas_price":1147500000000,"high_gas_price":1487500000000}]},"apis":{"rpc":[{"address":"https://cube-rpc.xpla.dev","provider":"Holdings"}]}},{"chain_id":"gardia-2","fees":{"fee_tokens":[{"denom":"urock","fixed_min_gas_price":0.5,"low_gas_price":0.5,"average_gas_price":0.55,"high_gas_price":0.6}]},"apis":{"rpc":[{"address":"https://rpc.gardia.zenrocklabs.io/","provider":"zenrock"}]}},{"chain_id":"athens_7001-1","fees":{"fee_tokens":[{"denom":"azeta","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://zetachain-athens.blockpi.network/rpc/v1/public","provider":"BlockPI"},{"address":"https://zetachain-testnet-archive.allthatnode.com:26657","provider":"All That Node"}]}},{"chain_id":"landlord-2","fees":{"fee_tokens":[{"denom":"l2/1666ede2bf1985307a86de36a6b78411cbf1edeffc2ac569e6a7b2f8753db4bb","fixed_min_gas_price":0.15,"low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://maze-rpc-sequencer-53ecf1d6-4fa1-4103-827f-a9430df97cef.ane1-prod-nocsm.newmetric.xyz","provider":"Civitia"}]}},{"chain_id":"initiation-2","fees":{"fee_tokens":[{"denom":"uinit","fixed_min_gas_price":0.15,"low_gas_price":0.15,"average_gas_price":0.15,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc.testnet.initia.xyz/","provider":"Initia Labs"},{"address":"https://rpc-skip.testnet.initia.xyz/","provider":"Initia Labs","authorizedUser":"skip"}]}},{"chain_id":"glados-2.1","fees":{"fee_tokens":[{"denom":"umilk","fixed_min_gas_price":0.15,"low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4},{"denom":"ibc/37A3FB4FED4CA04ED6D9E5DA36C6D27248645F0E22F585576A1488B8A89C5A50","fixed_min_gas_price":0.15,"low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc.testnet.milkyway.zone","provider":"MilkyWay Labs"},{"address":"https://rpc-skip.testnet.milkyway.zone","provider":"MilkyWay Labs","authorizedUser":"skip","indexForSkip":0}]}},{"chain_id":"minievm-2","fees":{"fee_tokens":[{"denom":"GAS","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.minievm-2.initia.xyz","provider":"Initia Labs"},{"address":"https://rpc-skip.minievm-2.initia.xyz","provider":"Initia Labs","authorizedUser":"skip","indexForSkip":0}]}},{"chain_id":"minimove-2","fees":{"fee_tokens":[{"denom":"umin","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.minimove-2.initia.xyz","provider":"Initia Labs"},{"address":"https://rpc-skip.minimove-2.initia.xyz","provider":"Initia Labs","authorizedUser":"skip","indexForSkip":0}]}},{"chain_id":"miniwasm-2","fees":{"fee_tokens":[{"denom":"umin","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.miniwasm-2.initia.xyz","provider":"Initia Labs"},{"address":"https://rpc-skip.miniwasm-2.initia.xyz","provider":"Initia Labs","authorizedUser":"skip","indexForSkip":0}]}}] \ No newline at end of file diff --git a/packages/widget/package.json b/packages/widget/package.json index 859b387d6..123e1728f 100644 --- a/packages/widget/package.json +++ b/packages/widget/package.json @@ -11,6 +11,7 @@ "dev": "vite --force --host", "dev:storybook": "storybook dev -p 6006", "build": "npm run generate-chains && NODE_OPTIONS=--max-old-space-size=16384 vite build", + "watch:build": "vite build --watch", "lint": "NODE_OPTIONS=--max-old-space-size=32384 eslint . --fix", "preview": "vite preview", "build:web-component": "NODE_OPTIONS=--max-old-space-size=32384 webpack --config webpack.config.js", @@ -49,7 +50,7 @@ "@types/eslint__js": "^8.42.3", "@types/pluralize": "^0.0.33", "@types/react": "^17.0.0", - "@types/react-dom": "^17.0.0", + "@types/react-dom": "^19.0.2", "@typescript-eslint/eslint-plugin": "^7.15.0", "@typescript-eslint/parser": "^7.15.0", "@vitejs/plugin-react": "^4.3.1", diff --git a/packages/widget/src/components/RenderWalletList.tsx b/packages/widget/src/components/RenderWalletList.tsx index 5d95464f3..b37b88814 100644 --- a/packages/widget/src/components/RenderWalletList.tsx +++ b/packages/widget/src/components/RenderWalletList.tsx @@ -14,6 +14,7 @@ import { clearAssetInputAmountsAtom } from "@/state/swapPage"; import NiceModal from "@ebay/nice-modal-react"; import { Modals } from "@/modals/registerModals"; import { ChainType } from "@skip-go/client"; +import { WalletSource } from "@/modals/SetAddressModal/SetAddressModal"; export type RenderWalletListProps = { title: string; @@ -21,7 +22,7 @@ export type RenderWalletListProps = { onClickBackButton: () => void; isDestinationAddress?: boolean; chainId?: string; - chainType?: string; + chainType?: ChainType; isConnectEco?: boolean; chainAddressIndex?: number; }; @@ -74,9 +75,9 @@ export const RenderWalletList = ({ ...prev, [destinationIndex]: { chainID: chainId, - chainType: chainType as ChainType, - address: address, - source: "wallet", + chainType, + address, + source: WalletSource.Wallet, wallet: { walletName: wallet.walletName, walletPrettyName: wallet.walletPrettyName, diff --git a/packages/widget/src/devMode/loadWidget.tsx b/packages/widget/src/devMode/loadWidget.tsx index dc47bc6e2..ca472cb53 100644 --- a/packages/widget/src/devMode/loadWidget.tsx +++ b/packages/widget/src/devMode/loadWidget.tsx @@ -46,21 +46,6 @@ const DevMode = () => { routeConfig={{ goFast: true, }} - // // @ts-expect-error - testing - // connectedAddress={{ - // "cosmoshub-4": "address", - // "1": "0xaddress", - // "solana": "address", - // }} - // getCosmosSigner={(chainId) => { - // return getSigner(chainId) - // }} - // getEVMSigner={(chainId) => { - // return getSigner(chainId) - // }} - // getSVMSigner={(chainId) => { - // return getSigner(chainId) - // }} /> diff --git a/packages/widget/src/hooks/useAutoSetAddress.ts b/packages/widget/src/hooks/useAutoSetAddress.ts index 9301f9bbd..11015c6bc 100644 --- a/packages/widget/src/hooks/useAutoSetAddress.ts +++ b/packages/widget/src/hooks/useAutoSetAddress.ts @@ -5,6 +5,7 @@ import { chainAddressesAtom, swapExecutionStateAtom, } from "@/state/swapExecutionPage"; +import { connectedAddressesAtom } from "@/state/wallets"; import { walletsAtom } from "@/state/wallets"; import { useQuery } from "@tanstack/react-query"; import { useAtom, useAtomValue } from "jotai"; @@ -16,6 +17,7 @@ import { getClientOperations } from "@/utils/clientType"; import NiceModal from "@ebay/nice-modal-react"; import { Modals } from "@/modals/registerModals"; import { ChainType } from "@skip-go/client"; +import { WalletSource } from "@/modals/SetAddressModal/SetAddressModal"; export const useAutoSetAddress = () => { const [chainAddresses, setChainAddresses] = useAtom(chainAddressesAtom); @@ -30,6 +32,8 @@ export const useAutoSetAddress = () => { const { createEvmWallets } = useCreateEvmWallets(); const { createSolanaWallets } = useCreateSolanaWallets(); + const connectedAddress = useAtomValue(connectedAddressesAtom); + const signRequiredChains = useMemo(() => { if (!route?.operations) return; const operations = getClientOperations(route.operations); @@ -63,6 +67,18 @@ export const useAutoSetAddress = () => { return; } const isSignRequired = signRequiredChains?.includes(chainID); + if (connectedAddress?.[chainID]) { + setChainAddresses((prev) => ({ + ...prev, + [index]: { + chainID, + address: connectedAddress[chainID], + chainType: chains?.find((c) => c.chainID === chainID)?.chainType, + source: WalletSource.Injected, + }, + })); + return; + } const chainType = chain.chainType; // If already set by manual entry do not auto set if (chainAddresses[index]?.address) return; @@ -94,7 +110,7 @@ export const useAutoSetAddress = () => { chainID, address, chainType: ChainType.Cosmos, - source: "wallet", + source: WalletSource.Wallet, wallet: { walletName: wallet?.walletName, walletPrettyName: wallet?.walletPrettyName, @@ -134,7 +150,7 @@ export const useAutoSetAddress = () => { chainID, address, chainType: ChainType.SVM, - source: "wallet", + source: WalletSource.Wallet, wallet: { walletName: wallet?.walletName, walletPrettyName: wallet?.walletPrettyName, @@ -175,7 +191,7 @@ export const useAutoSetAddress = () => { chainID, address, chainType: ChainType.EVM, - source: "wallet", + source: WalletSource.Wallet, wallet: { walletName: wallet?.walletName, walletPrettyName: wallet?.walletPrettyName, @@ -205,7 +221,8 @@ export const useAutoSetAddress = () => { sourceWallet.evm, sourceWallet.svm, signRequiredChains, - chainAddresses + chainAddresses, + connectedAddress, ] ); @@ -213,13 +230,13 @@ export const useAutoSetAddress = () => { queryKey: [ "auto-set-address", { - requiredChainAddresses, chains, sourceWallet, signRequiredChains, chainAddresses + requiredChainAddresses, chains, sourceWallet, signRequiredChains, chainAddresses, connectedAddress, }, ], enabled: !!requiredChainAddresses && !!chains && - (!!sourceWallet.cosmos || !!sourceWallet.evm || !!sourceWallet.svm), + (!!sourceWallet.cosmos || !!sourceWallet.evm || !!sourceWallet.svm || !!connectedAddress), queryFn: async () => { if (!requiredChainAddresses) return; await connectRequiredChains(); diff --git a/packages/widget/src/hooks/useFetchAllBalances.ts b/packages/widget/src/hooks/useFetchAllBalances.ts index 5776a3a5c..d287ef76c 100644 --- a/packages/widget/src/hooks/useFetchAllBalances.ts +++ b/packages/widget/src/hooks/useFetchAllBalances.ts @@ -1,26 +1,41 @@ -import { useAtomValue, useSetAtom } from "jotai"; -import { useGetAccount } from "./useGetAccount"; -import { skipAllBalancesRequestAtom } from "@/state/balances"; -import { skipAssetsAtom, skipChainsAtom } from "@/state/skipClient"; -import { useAccount } from "wagmi"; -import { useQuery } from "@tanstack/react-query"; -import { useMemo } from "react"; -import { ChainType } from "@skip-go/client"; +import { useAtomValue, useSetAtom } from 'jotai'; +import { useGetAccount } from './useGetAccount'; +import { skipAllBalancesRequestAtom } from '@/state/balances'; +import { skipAssetsAtom, skipChainsAtom } from '@/state/skipClient'; +import { useAccount } from 'wagmi'; +import { useQuery } from '@tanstack/react-query'; +import { useMemo } from 'react'; +import { connectedAddressesAtom } from '@/state/wallets'; +import { ChainType } from '@skip-go/client'; export const useFetchAllBalances = () => { const getAccount = useGetAccount(); - const { data: assets, isFetched: assetsFetched } = useAtomValue(skipAssetsAtom); + const { data: assets, isFetched: assetsFetched } = + useAtomValue(skipAssetsAtom); const setSkipAllBalancesRequest = useSetAtom(skipAllBalancesRequestAtom); const { data: chains } = useAtomValue(skipChainsAtom); + const connectedAddresses = useAtomValue(connectedAddressesAtom); + const evmConnectedAddress = useMemo(() => { + if (!connectedAddresses) return; + const chainIds = Object.keys(connectedAddresses); + const _evmChainId = chainIds.find((chainId) => { + const chain = chains?.find((chain) => chain.chainID === chainId); + return chain?.chainType === ChainType.EVM; + }); + return _evmChainId && connectedAddresses?.[_evmChainId]; + }, [connectedAddresses, chains]); + const { chainId: evmChainId } = useAccount(); const allBalancesRequest = useMemo(() => { - if (!assets || !chains) return {}; - - return assets.reduce((acc, asset) => { - const chain = chains.find((c) => c.chainID === asset.chainID); + return assets?.reduce((acc, asset) => { + const chain = chains?.find((chain) => chain.chainID === asset.chainID); const isEVM = chain?.chainType === ChainType.EVM; - const evmAddress = isEVM && evmChainId ? getAccount(String(evmChainId))?.address : undefined; + const evmAddress = isEVM + ? evmConnectedAddress + : evmChainId + ? getAccount(String(evmChainId))?.address + : undefined; const addressToUse = evmAddress || getAccount(asset.chainID)?.address; if (addressToUse && !acc[asset.chainID]) { @@ -29,13 +44,13 @@ export const useFetchAllBalances = () => { return acc; }, {} as Record); - }, [assets, chains, evmChainId, getAccount]); + }, [assets, getAccount, chains, evmChainId]); useQuery({ - queryKey: ["all-balances-request", allBalancesRequest], + queryKey: ['all-balances-request', allBalancesRequest], queryFn: () => { if (!allBalancesRequest || Object.keys(allBalancesRequest).length === 0) { - throw new Error("No balance request provided"); + throw new Error('No balance request provided'); } setSkipAllBalancesRequest({ chains: allBalancesRequest }); return { chains: allBalancesRequest }; diff --git a/packages/widget/src/hooks/useGetAccount.ts b/packages/widget/src/hooks/useGetAccount.ts index 6d3b95dc6..0150da9a9 100644 --- a/packages/widget/src/hooks/useGetAccount.ts +++ b/packages/widget/src/hooks/useGetAccount.ts @@ -6,6 +6,7 @@ import { evmWalletAtom, svmWalletAtom, walletsAtom, + connectedAddressesAtom } from "@/state/wallets"; import { useAccount as useCosmosAccount, WalletType } from "graz"; import { useAtom, useAtomValue } from "jotai"; @@ -18,6 +19,7 @@ export const useGetAccount = () => { const [evmWallet, setEvmWallet] = useAtom(evmWalletAtom); const [cosmosWallet, setCosmosWallet] = useAtom(cosmosWalletAtom); const [svmWallet, setSvmWallet] = useAtom(svmWalletAtom); + const connectedAddress = useAtomValue(connectedAddressesAtom); const { data: chains } = useAtomValue(skipChainsAtom); const { data: cosmosAccounts, walletType } = useCosmosAccount({ @@ -65,7 +67,18 @@ export const useGetAccount = () => { const getAccount = useCallback( // if checkChainType is true, it only check wallet connected no chainId is dependent (chainId?: string, checkChainType?: boolean) => { + if (!chainId) return const chainType = chains?.find((c) => c.chainID === chainId)?.chainType; + if (connectedAddress && connectedAddress[chainId]) { + return { + address: connectedAddress[chainId], + chainType: chainType, + wallet: { + name: "injected", + prettyName: "injected", + }, + } + } switch (chainType) { case ChainType.Cosmos: if (walletType && cosmosWallet === undefined) { @@ -172,6 +185,7 @@ export const useGetAccount = () => { wallet.cosmos, wallet.svm, connectors, + connectedAddress, ] ); diff --git a/packages/widget/src/modals/ConnectedWalletModal/ConnectedWalletModal.tsx b/packages/widget/src/modals/ConnectedWalletModal/ConnectedWalletModal.tsx index 6ecbb5e68..2fd0f39a1 100644 --- a/packages/widget/src/modals/ConnectedWalletModal/ConnectedWalletModal.tsx +++ b/packages/widget/src/modals/ConnectedWalletModal/ConnectedWalletModal.tsx @@ -130,7 +130,7 @@ const ConnectEco = ({ leftContent={ account ? ( - { + {account?.wallet.logo && ( {`${account?.wallet.prettyName} + ) } { const isMobileScreenSize = useIsMobileScreenSize(); const { theme, chainId, chainAddressIndex } = modalProps; @@ -97,7 +103,7 @@ export const SetAddressModal = createModal((modalProps: SetAddressModalProps) => chainID: chainId, chainType: chainType as ChainType, address: manualWalletAddress, - source: "input", + source: WalletSource.Input, }, }; }); diff --git a/packages/widget/src/pages/SwapPage/ConnectedWalletContent.tsx b/packages/widget/src/pages/SwapPage/ConnectedWalletContent.tsx index ea06b1717..ab6830ba2 100644 --- a/packages/widget/src/pages/SwapPage/ConnectedWalletContent.tsx +++ b/packages/widget/src/pages/SwapPage/ConnectedWalletContent.tsx @@ -53,7 +53,7 @@ export const ConnectedWalletContent = () => { align="center" gap={8} > - {sourceAccount && ( + {sourceAccount?.wallet.logo && ( (defaultTheme); export const skipClient = atom((get) => { const options = get(skipClientConfigAtom); const wallets = get(walletsAtom); + const getSigners = get(getConnectedSignersAtom); return new SkipClient({ ...options, getCosmosSigner: async (chainID) => { + if (getSigners?.getCosmosSigner) { + return getSigners.getCosmosSigner(chainID); + } if (!wallets.cosmos) { throw new Error("getCosmosSigner error: no cosmos wallet"); } @@ -50,6 +55,9 @@ export const skipClient = atom((get) => { : wallet.getOfflineSigner(chainID); }, getEVMSigner: async (chainID) => { + if (getSigners?.getEVMSigner) { + return getSigners.getEVMSigner(chainID); + } const evmWalletClient = (await getWalletClient(config, { chainId: parseInt(chainID), })) as WalletClient; @@ -57,6 +65,9 @@ export const skipClient = atom((get) => { return evmWalletClient; }, getSVMSigner: async () => { + if (getSigners?.getSVMSigner) { + return getSigners.getSVMSigner() + } const walletName = wallets.svm?.walletName; if (!walletName) throw new Error("getSVMSigner error: no svm wallet"); const solanaWallet = solanaWallets.find((w) => w.name === walletName); diff --git a/packages/widget/src/state/swapExecutionPage.ts b/packages/widget/src/state/swapExecutionPage.ts index 2fe8b39a5..238154d42 100644 --- a/packages/widget/src/state/swapExecutionPage.ts +++ b/packages/widget/src/state/swapExecutionPage.ts @@ -35,7 +35,7 @@ export type ChainAddress = { chainType?: ChainType; address?: string; } & ( - | { source?: "input" | "parent" } + | { source?: "input" | "parent" | "injected" } | { source?: "wallet"; wallet: Pick< diff --git a/packages/widget/src/state/wallets.ts b/packages/widget/src/state/wallets.ts index 2a3cd3609..ea2a148b7 100644 --- a/packages/widget/src/state/wallets.ts +++ b/packages/widget/src/state/wallets.ts @@ -1,7 +1,7 @@ import { atom } from "jotai"; import { SignClientTypes } from "@walletconnect/types"; import { WalletConnectModalConfig } from "@walletconnect/modal"; -import { ChainType } from "@skip-go/client"; +import { ChainType, SignerGetters } from "@skip-go/client"; export type MinimalWallet = { walletName: string; @@ -30,6 +30,7 @@ type WalletState = { chainType: string; }; + export type WalletConnect = { options: Pick | null; walletConnectModal?: Pick< @@ -65,3 +66,7 @@ export const knownEthermintLikeChains = [ 'haqq_11235-1', 'shido_9008-1', ]; + +export const getConnectedSignersAtom = atom() + +export const connectedAddressesAtom = atom>(); \ No newline at end of file diff --git a/packages/widget/src/widget/Widget.tsx b/packages/widget/src/widget/Widget.tsx index d5360a0f2..6f3d8884c 100644 --- a/packages/widget/src/widget/Widget.tsx +++ b/packages/widget/src/widget/Widget.tsx @@ -7,32 +7,21 @@ import { ReactElement, ReactNode, useEffect, - useMemo, } from "react"; -import { defaultTheme, lightTheme, PartialTheme, Theme } from "./theme"; +import { PartialTheme } from "./theme"; import { Router } from "./Router"; -import { useSetAtom } from "jotai"; -import { - skipClientConfigAtom, - themeAtom, - defaultSkipClientConfig, - onlyTestnetsAtom, -} from "@/state/skipClient"; import { ChainAffiliates, SkipClientOptions } from "@skip-go/client"; -import { DefaultRouteConfig, useInitDefaultRoute } from "./useInitDefaultRoute"; +import { DefaultRouteConfig } from "./useInitDefaultRoute"; import { ChainFilter, - chainFilterAtom, - defaultSwapSettings, - swapSettingsAtom, } from "@/state/swapPage"; -import { routeConfigAtom } from "@/state/route"; import { RouteConfig } from "@skip-go/client"; import { registerModals } from "@/modals/registerModals"; import { WalletProviders } from "@/providers/WalletProviders"; import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; -import { WalletConnect, walletConnectAtom } from "@/state/wallets"; -import { Callbacks, callbacksAtom } from "@/state/callbacks"; +import { useInitWidget } from "./useInitWidget"; +import { WalletConnect } from "@/state/wallets"; +import { Callbacks } from "@/state/callbacks"; export type WidgetRouteConfig = Omit< RouteConfig, @@ -57,11 +46,22 @@ export type WidgetProps = { routeConfig?: WidgetRouteConfig; filter?: ChainFilter; walletConnect?: WalletConnect; + /** + * Map of connected wallet addresses, allowing your app to pass pre-connected addresses to the widget. + * This feature enables the widget to display a specific address as connected for a given chain. + * + * If a chain ID is mapped to an address, the widget will automatically use it as the connected address for that chain. + * + * @example + * ```tsx + * + * ``` + */ + connectedAddresses?: Record; } & Pick< NewSkipClientOptions, - "apiUrl" | "chainIdsToAffiliates" | "endpointOptions" -> & - Callbacks; + "apiUrl" | "chainIdsToAffiliates" | "endpointOptions" | "getCosmosSigner" | "getEVMSigner" | "getSVMSigner" +> & Callbacks; type NewSwapVenueRequest = { name: string; @@ -142,116 +142,6 @@ const WidgetWrapper = ({ children }: { children: ReactNode }) => { ); }; -const useInitWidget = (props: WidgetProps) => { - useInitDefaultRoute(props.defaultRoute); - const setSkipClientConfig = useSetAtom(skipClientConfigAtom); - const setTheme = useSetAtom(themeAtom); - const setSwapSettings = useSetAtom(swapSettingsAtom); - const setRouteConfig = useSetAtom(routeConfigAtom); - const setChainFilter = useSetAtom(chainFilterAtom); - const setOnlyTestnets = useSetAtom(onlyTestnetsAtom); - const setWalletConnect = useSetAtom(walletConnectAtom); - const setCallbacks = useSetAtom(callbacksAtom); - - const mergedSkipClientConfig: SkipClientOptions = useMemo(() => { - const { apiUrl, chainIdsToAffiliates, endpointOptions } = props; - const fromWidgetProps = { - apiUrl, - chainIdsToAffiliates, - endpointOptions, - }; - - // merge if not undefined - - return { - apiURL: fromWidgetProps.apiUrl ?? defaultSkipClientConfig.apiUrl, - endpointOptions: - fromWidgetProps.endpointOptions ?? - defaultSkipClientConfig.endpointOptions, - chainIDsToAffiliates: fromWidgetProps.chainIdsToAffiliates ?? {}, - }; - }, [props]); - - const mergedTheme = useMemo(() => { - let theme: Theme; - if (typeof props.theme === "string") { - theme = props.theme === "light" ? lightTheme : defaultTheme; - } else { - theme = { ...defaultTheme, ...props.theme }; - } - if (props.brandColor) { - theme.brandColor = props.brandColor; - } - return theme; - }, [props.brandColor, props.theme]); - - useEffect(() => { - setSkipClientConfig({ - apiURL: mergedSkipClientConfig.apiURL, - endpointOptions: mergedSkipClientConfig.endpointOptions, - chainIDsToAffiliates: mergedSkipClientConfig.chainIDsToAffiliates, - }); - setTheme(mergedTheme); - }, [setSkipClientConfig, mergedSkipClientConfig, setTheme, mergedTheme]); - - useEffect(() => { - if (props.settings) { - setSwapSettings({ - ...defaultSwapSettings, - ...props.settings, - }); - } - if (props.routeConfig) { - setRouteConfig((prev) => { - return { - ...prev, - ...props.routeConfig, - }; - }); - } - if (props.filter) { - setChainFilter(props.filter); - } - if (props.onlyTestnet) { - setOnlyTestnets(props.onlyTestnet); - } - if (props.walletConnect) { - setWalletConnect(props.walletConnect); - } - const callbacks = { - onWalletConnected: props.onWalletConnected, - onWalletDisconnected: props.onWalletDisconnected, - onTransactionBroadcasted: props.onTransactionBroadcasted, - onTransactionComplete: props.onTransactionComplete, - onTransactionFailed: props.onTransactionFailed, - }; - - if (Object.values(callbacks).some((callback) => callback !== undefined)) { - setCallbacks(callbacks); - } - }, [ - props, - props.filter, - props.onTransactionBroadcasted, - props.onTransactionComplete, - props.onTransactionFailed, - props.onWalletConnected, - props.onWalletDisconnected, - props.onlyTestnet, - props.routeConfig, - props.settings?.slippage, - props.walletConnect, - setCallbacks, - setChainFilter, - setOnlyTestnets, - setRouteConfig, - setSwapSettings, - setWalletConnect, - ]); - - return { theme: mergedTheme }; -}; - const WidgetContainer = styled.div` width: 100%; position: relative; diff --git a/packages/widget/src/widget/useInitWidget.ts b/packages/widget/src/widget/useInitWidget.ts new file mode 100644 index 000000000..c26469de0 --- /dev/null +++ b/packages/widget/src/widget/useInitWidget.ts @@ -0,0 +1,152 @@ +import { + useEffect, + useMemo, +} from "react"; +import { defaultTheme, lightTheme, Theme } from "./theme"; +import { useSetAtom } from "jotai"; +import { + skipClientConfigAtom, + themeAtom, + defaultSkipClientConfig, + onlyTestnetsAtom, +} from "@/state/skipClient"; +import { SkipClientOptions } from "@skip-go/client"; +import { useInitDefaultRoute } from "./useInitDefaultRoute"; +import { + chainFilterAtom, + defaultSwapSettings, + swapSettingsAtom, +} from "@/state/swapPage"; +import { routeConfigAtom } from "@/state/route"; +import { walletConnectAtom, getConnectedSignersAtom, connectedAddressesAtom } from "@/state/wallets"; +import { WidgetProps } from "./Widget"; +import { callbacksAtom } from "@/state/callbacks"; + +export const useInitWidget = (props: WidgetProps) => { + useInitDefaultRoute(props.defaultRoute); + useInitGetSigners(props); + + const setSkipClientConfig = useSetAtom(skipClientConfigAtom); + const setTheme = useSetAtom(themeAtom); + const setSwapSettings = useSetAtom(swapSettingsAtom); + const setRouteConfig = useSetAtom(routeConfigAtom); + const setChainFilter = useSetAtom(chainFilterAtom); + const setOnlyTestnets = useSetAtom(onlyTestnetsAtom); + const setWalletConnect = useSetAtom(walletConnectAtom); + const setCallbacks = useSetAtom(callbacksAtom); + + const mergedSkipClientConfig: SkipClientOptions = useMemo(() => { + const { apiUrl, chainIdsToAffiliates, endpointOptions } = props; + const fromWidgetProps = { + apiUrl, + chainIdsToAffiliates, + endpointOptions, + }; + + // merge if not undefined + return { + apiURL: fromWidgetProps.apiUrl ?? defaultSkipClientConfig.apiUrl, + endpointOptions: + fromWidgetProps.endpointOptions ?? + defaultSkipClientConfig.endpointOptions, + chainIDsToAffiliates: fromWidgetProps.chainIdsToAffiliates ?? {}, + }; + }, [props]); + + const mergedTheme = useMemo(() => { + let theme: Theme; + if (typeof props.theme === "string") { + theme = props.theme === "light" ? lightTheme : defaultTheme; + } else { + theme = { ...defaultTheme, ...props.theme }; + } + if (props.brandColor) { + theme.brandColor = props.brandColor; + } + return theme; + }, [props.brandColor, props.theme]); + + useEffect(() => { + setSkipClientConfig({ + apiURL: mergedSkipClientConfig.apiURL, + endpointOptions: mergedSkipClientConfig.endpointOptions, + chainIDsToAffiliates: mergedSkipClientConfig.chainIDsToAffiliates, + }); + setTheme(mergedTheme); + }, [setSkipClientConfig, mergedSkipClientConfig, setTheme, mergedTheme]); + + + useEffect(() => { + if (props.settings) { + setSwapSettings({ + ...defaultSwapSettings, + ...props.settings, + }); + } + if (props.routeConfig) { + setRouteConfig((prev) => { + return { + ...prev, + ...props.routeConfig, + }; + }); + } + if (props.filter) { + setChainFilter(props.filter); + } + if (props.onlyTestnet) { + setOnlyTestnets(props.onlyTestnet); + } + if (props.walletConnect) { + setWalletConnect(props.walletConnect); + } + + const callbacks = { + onWalletConnected: props.onWalletConnected, + onWalletDisconnected: props.onWalletDisconnected, + onTransactionBroadcasted: props.onTransactionBroadcasted, + onTransactionComplete: props.onTransactionComplete, + onTransactionFailed: props.onTransactionFailed, + }; + + if (Object.values(callbacks).some((callback) => callback !== undefined)) { + setCallbacks(callbacks); + } + + }, [ + props.filter, + props.onlyTestnet, + props.routeConfig, + props.settings, + props.settings?.slippage, + props.walletConnect, + setChainFilter, + setOnlyTestnets, + setRouteConfig, + setSwapSettings, + setWalletConnect, + setCallbacks + ]); + + return { theme: mergedTheme }; +}; + +const useInitGetSigners = (props: Partial) => { + const setGetSigners = useSetAtom(getConnectedSignersAtom); + const setInjectedAddresses = useSetAtom(connectedAddressesAtom); + + // Update injected addresses whenever `connectedAddresses` changes + useEffect(() => { + setInjectedAddresses(props.connectedAddresses); + }, [props.connectedAddresses, setInjectedAddresses]); + + // Update all signers together whenever any of them changes + useEffect(() => { + setGetSigners((prev) => ({ + ...prev, + ...(props.getCosmosSigner && { getCosmosSigner: props.getCosmosSigner }), + ...(props.getEVMSigner && { getEVMSigner: props.getEVMSigner }), + ...(props.getSVMSigner && { getSVMSigner: props.getSVMSigner }), + })); + }, [props.getCosmosSigner, props.getEVMSigner, props.getSVMSigner, setGetSigners]); +}; diff --git a/yarn.lock b/yarn.lock index 197868563..6db42dc22 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7674,7 +7674,7 @@ __metadata: "@types/eslint__js": ^8.42.3 "@types/pluralize": ^0.0.33 "@types/react": ^17.0.0 - "@types/react-dom": ^17.0.0 + "@types/react-dom": ^19.0.2 "@typescript-eslint/eslint-plugin": ^7.15.0 "@typescript-eslint/parser": ^7.15.0 "@vitejs/plugin-react": ^4.3.1 @@ -9416,15 +9416,6 @@ __metadata: languageName: node linkType: hard -"@types/react-dom@npm:^17.0.0": - version: 17.0.25 - resolution: "@types/react-dom@npm:17.0.25" - dependencies: - "@types/react": ^17 - checksum: d1e582682478e0848c8d54ea3e89d02047bac6d916266b85ce63731b06987575919653ea7159d98fda47ade3362b8c4d5796831549564b83088e7aa9ce8b60ed - languageName: node - linkType: hard - "@types/react-dom@npm:^18": version: 18.3.1 resolution: "@types/react-dom@npm:18.3.1" @@ -9434,6 +9425,15 @@ __metadata: languageName: node linkType: hard +"@types/react-dom@npm:^19.0.2": + version: 19.0.2 + resolution: "@types/react-dom@npm:19.0.2" + peerDependencies: + "@types/react": ^19.0.0 + checksum: d2ae81ec0b8eee7a4bf31918796fdaa34e8db68f69682163bc212d759de76783e6ffcc02c02722dcf508429067148841e6da81414cc730ca2a28c9c2b350c880 + languageName: node + linkType: hard + "@types/react@npm:*, @types/react@npm:^18": version: 18.3.12 resolution: "@types/react@npm:18.3.12" @@ -9444,7 +9444,7 @@ __metadata: languageName: node linkType: hard -"@types/react@npm:^17, @types/react@npm:^17.0.0": +"@types/react@npm:^17.0.0": version: 17.0.83 resolution: "@types/react@npm:17.0.83" dependencies: From d33addb6d6f99076b5eb08473072955713497536 Mon Sep 17 00:00:00 2001 From: Nur Fikri Date: Wed, 18 Dec 2024 03:09:17 +0700 Subject: [PATCH 06/24] [FRE-1308] Mobile evm wallet (#581) Co-authored-by: plubber <51789398+ericHgorski@users.noreply.github.com> --- .changeset/strange-readers-relax.md | 5 + package.json | 4 +- packages/widget/package.json | 6 +- packages/widget/src/constants/wagmi.ts | 39 +- .../widget/src/hooks/useCreateEvmWallets.tsx | 3 +- packages/widget/src/hooks/useGetAccount.ts | 3 +- yarn.lock | 609 ++++++++---------- 7 files changed, 282 insertions(+), 387 deletions(-) create mode 100644 .changeset/strange-readers-relax.md diff --git a/.changeset/strange-readers-relax.md b/.changeset/strange-readers-relax.md new file mode 100644 index 000000000..1d90dbfa0 --- /dev/null +++ b/.changeset/strange-readers-relax.md @@ -0,0 +1,5 @@ +--- +'@skip-go/widget': minor +--- + +evm mobile wallet support diff --git a/package.json b/package.json index b42667ff3..cbd8216b0 100644 --- a/package.json +++ b/package.json @@ -86,9 +86,9 @@ "tsx": "^4.12.0", "typescript": "5.2.x", "typescript-plugin-styled-components": "3.0.0", - "viem": "2.21.4", + "viem": "^2.21.55", "vitest": "^1.2.2", - "wagmi": "2.12.9" + "wagmi": "^2.14.1" }, "packageManager": "yarn@3.2.0", "dependencies": { diff --git a/packages/widget/package.json b/packages/widget/package.json index 123e1728f..9e1d74990 100644 --- a/packages/widget/package.json +++ b/packages/widget/package.json @@ -82,8 +82,8 @@ "graz": "^0.1.30", "react": ">=17.0.0", "react-dom": ">=17.0.0", - "viem": "2.21.4", - "wagmi": "2.12.9" + "viem": "^2.21.55", + "wagmi": "^2.14.1" }, "dependencies": { "@cosmjs/cosmwasm-stargate": "^0.32.4", @@ -109,6 +109,8 @@ "@solana/wallet-adapter-trust": "^0.1.13", "@solana/web3.js": "^1.95.8", "@tanstack/query-core": "^5.51.21", + "@walletconnect/modal": "2.7.0", + "@walletconnect/sign-client": "2.17.2", "jotai": "^2.10.1", "jotai-effect": "^1.0.2", "jotai-tanstack-query": "^0.8.6", diff --git a/packages/widget/src/constants/wagmi.ts b/packages/widget/src/constants/wagmi.ts index 5d6a4bfb2..4ed729ea1 100644 --- a/packages/widget/src/constants/wagmi.ts +++ b/packages/widget/src/constants/wagmi.ts @@ -29,37 +29,12 @@ import { polygonMumbai, sei, sepolia, + forma } from "wagmi/chains"; import { defineChain } from "viem"; -const isBrowser = typeof window !== "undefined"; +import { walletConnect } from "wagmi/connectors" -export const forma = defineChain({ - id: 984_122, - name: "Forma", - nativeCurrency: { - name: "TIA", - symbol: "TIA", - decimals: 18, - }, - rpcUrls: { - default: { - http: ["https://rpc.forma.art"], - }, - }, - blockExplorers: { - default: { - name: "Forma Explorer", - url: "https://explorer.forma.art", - }, - }, - contracts: { - multicall3: { - address: "0xd53C6FFB123F7349A32980F87faeD8FfDc9ef079", - blockCreated: 252_705, - }, - }, - testnet: false, -}); +const isBrowser = typeof window !== "undefined"; export const formaTestnet = defineChain({ id: 984_123, @@ -154,4 +129,12 @@ export const config: Config = createConfig({ storage: isBrowser ? localStorage : undefined, // Use a fallback for SSR key: "skip-go-widget-wagmi", }), + connectors: [ + walletConnect({ + projectId: "ff1b9e9bd6329cfb07642bd7f4d11a8c", + showQrModal: true + }) + ] }); + +export const walletConnectLogo = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsCAMAAABOo35HAAADAFBMVEVHcEwge/wfffwKcv4TeP0MdP4ngvwog/wcfP0Xe/0hgP0Vev0hgP0ff/wbfv8cffwbffwbfPwaff4QeP4Jc/4sg/oshfsng/wafPwggv8ihf8dffwYgf8hfPgffvsogfslgv0ffvwefvwafP0Ze/0Xe/4QeP4JdP4wiPskgfsliP8igPwhf/wgf/wff/wXe/0VfP8Wefw0ifsXev0Wev0Tfv8Hc/4nhv8kgfwjgPwVef0Tef8IdP4Hcv4vh/sTef0Gc/4Fcf4phf0rif8ng/0lgfsmgvsTeP0ngvsSeP0phf4og/sRd/0Pev8Pd/8Off8vjf8pg/sQd/0qhPsDcf4rhPsPdv4shfsyjf8thfsNdv4uhvs3i/sNdf4Ecf5Aj/k0i/0vh/wvhvoMdv8GdP40ivwyif0wh/oJev8zi/02j/8Ldf5Ik/kxh/oyiPoEcf5CkPgLdP4Kdf8ziPo5kf80ifoJdP41ifo3jP02ivoIdP8Ic/4IeP1Ik/g5jf03ivoHd/89lP84i/pCj/k5i/o5i/k6jPk7jfoGc/88jvw7jPkGcv4/kPw9kf88jflAkvtGkvpAk/89jfkBcP9Dlv8+jfk+jvkCdv9Dkfk/jvkEcv4DeP9Aj/kFcf9Bj/lJmP9Cj/lPlvhEkvxCkPkDcf9DkPlKk/dDkPhEkfhIlfxFkfhBj/hGkvhGkfhQnP9HkvgBc/9PlvdIk/gCcP9Jk/hOmf1Kk/hNlfdKlPhNlfhRl/dLlPggfvsdffspgvpVnPxgpP12sP2Ct/0ae/tanfqbxf2z0/7I3/7Z6f/k8P/x9//2+v/////U5/98s/wrhPqsz/7P4/78/f9Mlfi61/5bof6Uwf1OlfhtqvxQlveMvf1Ql/dOlfff7f9Wn/9OlvcthPlPlvcwhvlop/tQl/eiyf0AcP80iPlSmPdWmvZRl/cNdP3r9P82iflVm/nB2/5TmPdWmfdVmfdUmPdXmvdWmfdWmvhYmfZZm/Y+jfg8jPhZnPUDb/1bnPZbm/VcnfcUYgSRAAAA/3RSTlMACh8sRU5rhJSqw9XR7f//////7YASLOD4/////wQYObf//////7VfYf///////////53///+b///////AjKj/4Wvt///////////////////////V/////////7n/to33////+Nn////p//8o//+nSv///////////////4D//////7X///////////////ju///u/////9///////////2j/////W//////V//////+Z///////R//+o/////////////////////////////////////+b/t//v/////////////////9D/////////6f/////b9v///77///H5MkSAAAAo7klEQVR4AeTWBW4rMRSF4SbDWAgzM3PKzIz7X8o798HIr5Y1YnWSfwmfjq+88QMKhSVZUTXdMC3bcTfR1tY22olYlmnoUVWRpXBoY82LxWVVM+yEk0yl0+kUct3MJqPlum6WcpOOZRtRVY7H1pAply+oetF20lQKlUqlMpXJMFqoUqlWq7XaDqGhiFXXG4V8bn2k4k2t6LTS7XY61en2qH6fsMRag9/VarUhwIajSD3aiK/BouLNMfZETqkO6nah9YdLqFX1tCaTyXQ6HQ6Hs+wwYs0b0govLC/rptNuL9LLXapDdRE7Ln8ttLe3tz+czbKRg0M5v4pSYfUosVi000vKRwvxL5HVIq7j42OADU+M0/CKXSm1eNY+X1wsLy8vWx4WtNiXyN8tHou0PCxqf5idReqn0spsqlk8O4fUFbpErZb/tlgtJJoWur7e35/Bq7EC+wopRyR1g2CFWC2Gy1cLibSub2+H8JoroWA/P82+O1/c34OK1/J7ieKzxWGhh8fZoxUN7HPMyTSqu/vf/a8FLk+L25a/1hTxWg9Pz7OIIQfxOxFTzfOX81fkaSGhFvcSM9+vfFW8LcIirbc3zOvgNBa0o64lMKp35HFxT9HvbnFfeQ9LuC1wPT0/f0TDgTpVZy9/qARal4i9WxR3t/gPBK/FY4HrcRY5lIJCNQbVJ8VqUYIz//0llpDoK88/RF7r6+nxOTKXgkL1ixmz4I0jiGKwyigKCsrMzMzMeHwX3jAzc/Kv+6aBp63PmulKC/4Jn2w/z/z+/XNN7uZSWpeQluUk+mEJrV+/DK6axHeVQWWksETUWwALSj6QtUTGXQ+3JvoC1qaep9Pp34ALvcWTiOM0EK2M4HpSldjLeGb/ly/ZrMACXGAuksQLnBYPIoMl+vhx3+lE7q7DOUFlpLB+85pnSYSS59bCi4i08h8/Fg4nDtWhYilVV59dE3rL0NIoYhKRFhsQ7tZao9XwufHhoYQlsCnVXC8CXGAuqHlG69L/1lZ5a+UF14/TSZoLj1Kplvp1cXMRWi91y5MkktqCIBJaGc87lZTVdXBna1tzi8idlmNvkbVFrEVhtbc3fK58moii78ilUp0ihguiyGjhSSS0uLUorfZkmOuM2EpQrdHy40obobmAlgi9hUF0L3mFpbTEXHE311Zpq66urk7FFcBbMLfYSbTD4tYSXF53rIu+p6mtWVghLcUVMIkkiIQW/mz5aK3B6u3zfuyIr9l3ldr6+/u71sRxYRI5LSx5fhH5q6e8tXp7PzdWHYyr2dtSwkppKS5uLj2KnJazt9yD2L5Oq8Er1MQTwYHmQcOKm4sUF/EWOYmuteVbpsxaQ32fn2yPntXOUtugyE5LcTFa8Ki2r63jQa01NOQ1Po0Y1ZZrbW3Dw8ODwIuay+otHKf22iK04Imo1hJaDd6tLZEuhtzAiLBSWvYosiTy2gpmLV8Qf6m1FNZQn/cgwg1xuGlgVEgBLndaJIn4pvavLd7xZMdjaxlaY96Pw5FVe+vAqJHiolEkE4LTOgtriwSRv3pIaykskVcZ0eI6UxJWbrR4b3FYtm3qbi1yEI3GJ6Kp+cmpgenpUSsu8BZreTIguLX49wM7iApLafXNVIW/2osDU9N/RXCBuTCJnBbdpjyIfD7Qg7hGa2bm4cGQWV2bNaxsuEgUMYkaRaXFg+je8W9ZEBXW+Jh3K1RaW4TV3Nwc0qLeIkkkA4LScm2texQWtJah1R3i4Kqen51aEFgWXFBcmESgBds0SMffczyISqtQHRqr3OzC4uLCgo8XiyLQ4klk3iLbFFsLaFm21pDSelAdGqulxUVOi3hLewvWKfxAMFgkiO4HMVOu4tdoHQql23Ozy0tCyxEXnxCBrKVBZE9E+wfzv+vBaMUrbAnlDgorIwsuMBfpLRwQZD/AZw0E0dFa2FprLX8wBFarAkpxLfpw/eHNLHAru4IgGlrCjHBAnIgVFAQXYWGYGQRBQTgxM+MfMzMtL/d7XFFaR6167/krdwlHVdXVfY24grY0E722ak3E7PhgpFW01XFab//a09vbW5cWcgshz27qi3ytgahrfAqraOvlDu84V6wq4kpofWxoGWn5jPepRR+W1/dTZzefp/oHegd7r1+CK4jLONHQyu4PacbnzTQbiN9FWh3cqr8ZGhgsL9JS0qfaMk78H6SVrNOQVt8vH3TsYnN/eGR08OGjuP4ALmgLtBDyNWnpaGoHom8PojV2v0M35A9HRtsv4OoFrkxcciK0ZY2Ybz1+INbzYaHV9VhHluc3xkf1UnVRXKRlncj7gzWiOT54aQlW3ycvdaKcPjPeMzERaAkXaEFbxonVpSVaRVqExYjPvy4yH/Z1f/JCB/4HR/onJycKLj2KS1ZMnQhabPKk5aUVajyu8YJVqT20afmR6AfhyGR5gZfURXHJiZ6WYOVGzI41vJlyIEJaSC3C6pv64Ikbhvv0+MzMpHBBXIFWaFyZE/O2VUNabkNke2DEE1bfL6/dKOTv/l5YtV+CC9oytExsma0H+7RJLdfiBUu0ZufeunuTLWe8f0YvmDHBZWgh5E1sIeP9QPTtgT4UrdnuuVs3Cqz5+Rq0ktyysZXDorSQWs19CFiz3c2b/L3p8fnyIq8cF4ciaXlp5SsiUgvFFAti1W1aPlz45bWmh9NXxhcXF+cDL8nLiUu0sCeyPzDjFVt5xntpsT3wFk9YswtzXzc8NYz3L1494poIuEjrt/raskY0A9G0Bxvx17C6pxq1rS+Gxxf1SEtWhBMTbWEk+olIWIx43x4Ey0S8fLjwy9jjDWD9vtRqtSIu8aIVnRM5EmtIy3Steu0h+pCwFpr0hwfjyysrK+DF5KK4PC1Ii7RM1+JnvmCl7cH4ULRWZcRaJiysAi7SYszLiRiJkBZoua6l1OK3mPFhTVgLUzSiNeHa2tpK5CVctCJp5SFvjYgzIAdiSK2kPZiqlYbWwurcW/VYrY8vr109jwvBRSdaIxpppQPRt3gXWqIlWG0fdk89Weunfnp8ozzxAq4KtH5rTovXB6QWfYjUMj7MI351dapWNX17aXNzsxYtOlG0stjKth4/EHEEJCzvwxxWoTVX4yfx/tBWgUVexBVyPmgrGYmGlhmIdX1oein2Q8Hq/uB+9cPM0vb29mbkJVxOXNGJrj8kB3mmFqQlWmzxecQnsOjD1epla31pebv9qtFKnCgjNpcWa7wuNfjn4crDXspTfDYPV8urmvG3d5a29cTrX1wt4IITORIJK6PFgajjg9l52OLzjwsfWgVW1+1qF7+l3b297ciLuBrRorZs1xItl1qC5aqWXaYlrVvVrlhtWP/BJTOKFrVlY4uwIC1b4yEtE/F2HhpYlQ7yb+/vlhd4SVzApeACLUhLuFJpkZZpD2abNr3UlPg2rQr14bHhpYPd6xflJVyyYqQ1mdJiNcXWgzOgpGV8yENN/f0wg3U45qV1tH9w9YRrD+qSuGhFp61EWuXVkBZuD86H5ZnQChuP5uHq3Av+2rBVSCW4Ai05McJiyCdFPhmISC3f4lW1XC+tsUyvPpTW41ZYx4IlXpFWwRW0hZk4GGl5aX2cD0S0B/qwPO/DRqF1AmlBWEvH7RdxSV0Ql5woWtBWkBZpGWkZH4qW9SH+LdIfsQAL0sIoLKRIa5e0oC3ElpFW2rVwjddZSzfAHBZ7KUq833gEq0jrZTMKT09PyUviUs53gpbvWrrUpNIK+yF6qfNhfqYRLAzEWN73T69f4AVxwYmiZY1oB2KBZdpDUrV8L+XlwcA6Cd/5uPmdCRZ5CZesaGj1GlphRaySWrZq+V7qNx6dSyWt1/IN8cH++fk5aMGKogUnyog2481ABCzjQ8HCPExKvN94JK38p+fuxf7l5Xn7RV7Q1nZtWn/kRkxSy/vQ7IdNygNhdf1D3B3FtHlleQAnnc5z1tL0CXUqGqSVFWcii9VqqLrqRhoH0vULbNKIInVVa5S8DJlWUZJGUYtUxRmVdKNdKlKl0+2oNDsR0k6ajept0hhjbABif2DjDQz1xJRCgaZAyHQ6uyVNtvvdfD01fzj2uZ8/w5yH5Jmfzj3fvdf3nrul0KGZq11XrAAubijCSJTKFrvqKfZBNKVwqsWOQ/1JvP1tGsJ663ShYzUfXbx2hbQsLkwuvm7xZUuu8cw43N/gc9eGreju7g6HPW6f7aIl7zzoV3gztX5ZaEIauqZinRcORX4kkpZc47lxGNgf8bnD4f2vdYZ6otFobyzWa/7XE3r9+O543FSrdZOWRtFyUOERS2nBxBTmDQ+sVoEhFyYXaklli0ktwgo01Ycjxzv7Yv0Dg0PXE0nj+0gmrg8PDvSP9LzWHPZ2b3fTkgfXh8KmFhUtocIDFqQWO3vY8iFh6WnB7FSjxrPr6YMRX+pUNJYeTWSMgpFJjKZjfc+H4/Htbn4rnp/E26vwJ/hxyJf4F0Kh/zYDvGgswlCE3GJS6xxpCVXrcCDiO9gTu3E9aWhE8vrASKjWG9/Bfw/xoLezCg9Y5y/9kC3vykoFphdw8VpQ5AvXePggHmryvTrWPypCAdjo+MWf1bk8SguxcOdB2KbR3QBUWHyJf+j3oatmkBdwyVqQW6AFS8TvsVoigdD4qFFCDMY6K71VNA757yH7ixhb4WEtzWPRAhFn7yZVnosbizASscgX/SLCelphBSInJ24kjRIjMRD9B6+LxdJfHjJHHngsdhb/MWERGHmtGYqMFlvkC38QD0Y6s8OGoxgeOVDnwsmDMA7ltTRsLT/AonH43LpJ1h9CN28W4WK0fseVLbHGt0T+PZszHEcudsAfZ3Ye7C4P5QrPTLXenfzkpgrUwtyiuoVYfGrlpw+AdcSkuu7ACLie97sKr3hELHlaSuPw17vWjcJPVCgxnoutW6RlYTFaOA5bp07GckbZYqh3e93jO0QsqPD6WIXH4UN/CH2qrMCLuJiRiLklVC3Cmg7MjBpljcFJbw1M4m2vpRELt5bhewjfws8+VUFexMUnl6zFVK3WqavpjFHmyMy+5N/KrHiEtbS0tYxYc2u+hx9NKioVjBbmFhR5ObVoPT0/P3Ld2IDITdR4Rawn7Gw8IJYKvKPyyO8vfpoP5ILc0tc6C6kVnLoyYGxQpA80VupXeL/e5xCwLsEZ0xcufv6ZGRwXJlexgYg1HqpW6/REztiwGBrzV+PyUN4t1Z87rFsf/tOksiqixZUteSAS1nzreMbYwMhkXV5YHjr+HCLW3OoTNY/emvzii88YL9AyQ2nxqYWTLaxaLZdvGBscA81+xMKiJe/SCFh7H101fe/54kGAFyZXvspj2SItvmopq+nokLHhMdS1sFX/cyhj4edw9ST+t5NKCrhAC0Yij2VpMeOwbXpi0diEuD624BKwmF0a4ecwwppbdR73P/NYZkBysVrERVqExYzD4HQsaWxKJCcWquVdGnn/j8fKH6j5MI+FXKgFRZ6v8bCeNrGCS9mMsUmRidXVcFvLwpaWjKXGoSpaVLI+V1GIi8ktNrUurEutU/P9xiZGlrSErWVNLNrSgqL1257bnzNahXOLSS36IALWqSXbVonc8PLycjpt/jOcS9jW8teUCes0Yp2/REXr5bE7d+58bgXklqyF0wcL63utNltWyaHl/t6+0Hunmpr/sTvesH/fq6939fSO3xhK2tNiTh4JWKDFY83RUa1HP568YwV6QXIxWJYWVC2YPdiwyuTSI30n6+t9vvpIZN++/c3N+xoa6n2esBmHekbSuYy+1k5mwSNNtGSsN7+7zPPIH3vucFqQW0UHIjt7OBvUtRqanXk15atvOqgCTmqp8yG7w3FP81j/sK7WU9Uilt8+1vk3rOXhY1/2/ElF3ou4GC2YyEPVgompibUUM3RicWDmlC8SOEjnabhjbfW+7vjz0QG9+VrIL68ObWBR0Zp7zNrL6rltUuW9ZC0+tXAcnm0b1ZlKjodSkQAcPmKOtanTNLXd3Z1aO9KxRmHBI2LhvgNV+F3WlHTsSxV5LlbrJle2ILVo9mBhnemS/7Jc9r1I6vAR5vARYNGptu74EY1d6WwjFS1nWDjRomnpxwpLBSQX1C2+xjPjMJ9a54KD0gDs76wPUKMaBos5E+/xHs9Kg3HSFtaz2ljPPajvtyws4ILc4rTog1h4HLaOCBsFoUgAztNwV3nWYNWb1b4zXXwr0LVTxiItG1iX9j5izd+/zAejhQNRSK38VOtscLzYCOwNpODwER5rAyw8Et/dPTNUxOpxr7yzXArW+Qdz+BfGvlJKkFxUt7jUgiWihYWpRfPS9qXCWgNdkWPMiUkRS2nVel9KF7SqfIr/odUx1tylh9XHcOz2n81ALqxbhEVaMHuABSLMS9uXsvzsOxELBOg4DZ2Y5LGwwtNJ3G5Xb6KAVV0l7v85wvo3wNr1YLHzlQry4rSIC6sWrHloyYPz0ukRTms4mjrWKmM1FcRye7whbmIyW+mt3FoiFmixWGrB85GJZQVwkVaxgQhTLWZe+nYHpzV4eUqdEEEsrPASlvun3gPLxtoY9yorm1ikJWOpz+EtCwu02IEoY+E4VPul7eu10sHpk3ksM3Sx8Niyq3bWwOj37qy0gdVoF2uveZT0fwiL1+LHYZF5KW5qdbSs0ZpdaqGTWpRa2hMtOOPtqhrHvFJWlQ5+DROw3vr7LRU//iNhARdocakFRQuwYFNrbW71Ty8FgzyWPNECrNpKbxasqqsQC+cOjrHUiYdf/G/fV6jFp1bxcYgzLdgBPNPSu7ja6pSAdVAXq7aqJrvaCk+0bdtWZqy5n/+g4rG+vq/NYHLL0sKqRctpqcLDL2LTM4urrBgs0NLHqn2cciuTrYmvO+Fdbqy5hyteiJpUwJUfiDAOSQumWsyKhz6HeSxLi6xOMdctSsJSWt/l1ojfVbVBWHmtN39Y8S5hfc0MRBiHEhal1nqsdqWlrFrb6CyuMywfXeIxtTLqZ52tVWXHOr0Oa1fFyxYWcaEWMw5vMpN4KFoMVoepNTicnW9ts7CCNrFg7gBY26tqov1Rb+VPNgPrR+ZulmJCLajxUOIJi7QI68LK3XMXEMuMVT9Mz7e9PR9s08SKuN0NSoufaOE1zSqv11u1owjWEwsnFvYglnyDh10c/m3FR4AFWvRBZL+HgHXug4lY9J1zWOEBq70teKaNwWKW0il358zMa+59IhZetOCxqp/1/3P0NzsXxF14DaxfVnxDWHxqIdanPNbdmeGkkbxx9S5tAAIWHAHksHB1mEplFzOZXG9tQzmwXjwwkDSSg/96r046GyJjPVlxq+/+/ft5Laxa676H3Ezr/bvfHf0Y/OSuLhbMHQArlfpuGZMNNzjHOnpg2Nrr71JazrDm9ppLQxMrz8WNQ5zE44pHWY0kaIl89S6PheeWi2GRldLyNDjFOmFaWbE4prScYv3ft/dBi8eCogVYl+/mlzOmVpDDUlp6WGRFueUEa1v1ic78nmpCaTnDeqPCsuKxoGjxWGBlGKO3g/g5tIcVUVagZQ8Le4ecgB+YlJYzrLmK+xTcOBSxPiArilxfED+HNrAOpw4pK9Cqt4GFqbXtqLJCrT3lxFJhB+sDq16h1lKpWJHjePaUtGQsrofPi5YVavmdYX2LWnawrl1eYTbZh5RWKVhgRTHr85WGtQBWdDjwdKMzrG9lLHaipazyJ7ZRqxQssAKtoljbeSysVxSZ3nuNzrC+lbHYidYHYIUj0T5WCqxAy20bK74wpqxYrWf+ElhohVrRJbtYkVa0Qi2bWNsWogUPDSqt8mMJw/DKBbSCWJxZsocVOYtWqOV228JyLUSxlGJunXCCVVqBv9DLW5HWvA2sY5HOoueTZnd7bBR4Vz6vWK3Q6c2eOlx7Z8AwRC09LLTib5uEdbF4K6C/17jJk9L/+t2gIWvpYfFWEDeaw5qTUn4MgvzRZ0rEKnm5s5I2RK23NbBkK9Jq0FnuxBtnBCtj/F6pw7DkhfSFmYSkNTGvgSVakdb+cIOIZVpxpRRi8aWjJS+kb/WVuEXzTq+klRiZ7xC3aCJdshVpiVimlSFZhe452s8iKhkLJvArolbS1BI2/yI9OdmJtLoFLFfjiJRXCdOqdKxvxogKreTVzpWVieuSVu90R5FtZWVl45b58ivxolguv2iV+809f8lYT2r+YMHvwd+dkbXm2wtjYV7JMXoyXgRLI69yr9xz9IMF+1PYnzV/ClvR0Jo+UxArclu2Qq1fKS0eq9ob07By9lOY+CMrYbE/smrk1sj8mQJYzBgUtV6KF8CKe8fFay+mlXCnXPiRFX6+t8LOz/caWtn5NuhKQz/f81aylsJa14NTtlJ55fTne6cHQ1bk6+LZ+VM4c1BYxyMss6z1Snx9w1KPS8/K6cEQh0eOTK3bw2LbhZYgYKnEiuCk1oZWpxf6BotWhHyv1CNH9DV8WB1m+9rZYbZzGlrTwTVYJVupH0y9iOXRGIODT592eD7r/M9/UI5jknJuGUprFVZrasZB/4Jclxc6Ule7ZKufnXB8pvSNh/AALm+F5Z05Q7Nye1Qjt/L1/dWUlFeyVh6r5idpDSvnZ0rNA7j80W7CEo92KyxBi04pLxEW1StnWoRVXaVlJbeykzJrb7kuDaxcWRa15pcsrNapXmkMZpKiVp2FVVu9Q7Z6+mg5zsE/R9dRzHB2HWXlfR0tq0ObuCpJTvRJnLmQd3utspLzavnpo/J1FA2sv7MuOplQJpVgJVx0Wrmso2Um1tRIUrTqDoek2VtirM5MLJdsNbBtwe5FJx5rl3WFjqCIirXKJxZ7hU5TS8NqcSLc1BzulL6wi6ZW9U91rGrKd4UOL2diXiGWcDlz5f0bolZLRByDi33hZjN0tBaeX9azKgOW1WDlkVuTZbr2u3IhLfbnG9ewsg4ra2iNyFZ/tSB10NK/9lveC+UrK2nHbbD6wnTPSdYyZKtnC14oV2HzQjm1KgCrklsVONKivCKs/Y610lufKXergnI2wehoT5fDysIytQYNB9H/lL/sTTDK2l6l40za0RjE+xXhI8sOrPzKCrGctFehxj1/ctK4BzvZtbfPlt7k0L22F40Drf49/mq2cY8+FnwMf+y4JRTT5ahjabxUKx9Z5e+ieA6VqNVft6e6/C2h1IIHpJgxKCQWXjUsUWu4y9fCNCrwyLnFj8G6sjcbwzZ2QEVWZthrYwdadvKKvfNb2kgcr6srdxs7ew0SOSxscUTHlDkt2arQBenwAdsNdGONT1Q7x2IbJLKtN7m84q2wLxt1VknaHYOFr957GtI2rRb+xnnrTb5fMNfUlW8lyfYpZfsFt0OHAjEGX48Uaxfi2Z22Z+XdoKau2C6Y6Rd8VbOnK/YKaZ+3oTX4q0jx3ioeX9qWFbbtkbFeFLH+WrcRtdBbmco7NqLu0NdaVlbFejrIWmBV46wR9Qm+ETXX4pyoMK1g6s5YMS3OzZGY0c2rw0y3ELhM3uBx62llyKpMLc7PU8nC5vlMN3i0wmcs8GEnrnn+GbFukRU+zcq2VmkIU25J3ahrNrJ5PjzLQCE/y8A3OIfmF+3U3Vy24ksWPGPrCY/LVjMLOzfwWQb+wQ8V7IMfhCU++EEdCiStgdYU34Ymj0UtHTzd47LVto198IN/SoZLKyxYYHWBf0pG1BpoeWAllCwLi9dCK5fQw87BUzLwSBH/7I4KB48U8VpgZWGRVYASC7HqVexmtcBKeHfHySNF8PwVQVFWaT7oBI+FMW8UTc8kdKz4xCIsOgEfjhfWSqyy2raRz18JD6vhGLxs72G16WiuoNWU2PwWG0n6wq5CWos9ppX+w2pm6D+s9iRaPfrupIIiKcwqTCvMK4UlPNk3dTvHWx1qQiu+vGPLnnCcn70tXlRWwovuTp/sg8cgb27MY5DTrNbsoaYj9rHcO7y9GdbKpAKsDXkMcuOfGWVzqz8VOAYtaJiSxd733Z7XgryqBCyHz4y+xTxvCN/DvBRS4RjEQaj5gC1poRXTvo4vWXjDCXOLrDbgAVvC2sU/jQxUYIV5BQWLxYL3a5XW8Bqrg0eO2ByFhFVbBVrKqrFS82nkPfafRlYn/sr86Lb01u/Uf4yiFTaCkkYh9q/D3BrqbNzMR7fhOXeBirOC6s4/MRoMdI7CGAQrpokkNwoJy8yt/Oxt6PUFZVW5qc+5b/nw4jWUIipMq/x3UFnxxZ17zT1AuZXJBgLYjo2a1yEWl1h0s2KHP5ogKz92CgEsZaW7P8Njvbl3SwUTL18UrCCv4EMoYql7AoHOQWvHKdKirLBiIdY+XEQjlnVXoE5pkRViVWtgPauN9aMKLn7xLyGQ4qjsWsGD24H3+oeGlieayAorlljed0OHgipvKD083H+gjn+fXHPLQdz5w0kWlHiCIimi4tIKJlhkxVd3uo3ZYr6D0tJ0+FjBxBLKO95CqaneWllTY+/le9vPV/z6/1k7A87IzjAK30RbAEpTqGkAlmqxWEq2tv9hC6wEggFaUIRlYtvtpJvYRC8Jg2ljtdIl2lL9e+0dGsc+N4833877Ex7nnPe834yZm3hHxF8pK+gqA0uEFT9M+h8k/CailCyF9enACT9uJLAa8v3Vi4z3nMk/1wOoIJWoQlfJ6uc3hUVWASt/EtFdKLvwE/vZrMJhWP9kh/GeLX6V6UQVsmJelQLrhpUIiy5EI8WPquDfyS2yPN8JK9s7Zuvi70TlrN4ILN45hEVhob1XXXgDKyOLlbQh3xPWH4+2Ag/aA0klquxXEu4prEwsY7VGF/phKPmOZbiI3oDZPF0mqUQFVvBgmBCsCCtNaKyqLoy/zKw//DmsfCIdm73rv5LUChVkVWXVYEK8J7Nk0YWs7/xiln1N+db398XDjpPFdBmsUlZkNXgwwx0mBCtZhZFYASsTK2GtWDksCsu/H0lYKKSYP68D1EAqZZVVNHVlgaXCwnsDXMi7EMLii8MwjcUhYS0edD4fnl4FqVQVZUUPFlgNtUGEJb0B8Z7C4t988HlGisNYZI0JC9IiqmSFvBoPLE93X4XsDYx3wJJd6N9iu/VJWYQVC/F/UkAVuhIPZmApK7yQ4oYulax6fedhKK+ktgpjISapSCugAqtoo4V0D1YQlrhQS1alvsthmLCwCsfm44vlAAqkAhUsmNkugSXpnqyGobC8ZFWP6PKtc/4ohCU1foD1e7DKsEoLorgj3BUWr0IkFtp7uLDcSOXWEVhS3nM2Xi+DVMgqUEFXEBZYcRPKKoSwJN4/8kYqkSUuPH+81ZXm1+UlSDGt2BnASgIrE8uExcQKF1rJqtR3uXXiG7c+k2dLskpZZbSjYCGwisJiIWVviHjPn8uvwDJhEdZiZ9IVZ/vlVZAKVGlB82AWLArLWaULJbE+83iXIxqweOvM97e78uwtgxRURVnRgytdMdydVVFYfMm6eyPVyPLawFfA/jdnlXlFXaWwUld1YbE3eMmiC72RamSd53dICxnfXyapROW6qrJiHxVWld4gd6E3Ut46c6a7z7PlClRkFVBBVqMFiyYMVoV0HxeWuLBUsvTFYbHbcfxhq09SROWsdBE2mvDzZFU4dcSFbKQB6zxeG4rzS38ZqIIVdSUerLcGW4UopHAhEqsd1iv5REeMmKSIKuPKWTGw6sLiCe03NF3okcXPdRa7UrHEiEmKqMZl5azGhSUXtJzQTCy6MD/WqUSWmNDnXn88ymrcgqErCfcWYQksb+/eSMdhzWdiQpsv+iAlqMAqdGUNS1hZx9JXP8Y7P4k2F45/EaT0stUHKaBiXCkr05Wk+1De1YXvszfos58Ka2Z11Oebl2cgRVQhq0ZWX9VNaMKykiXCCljz/Xe75nnaH1dYxT1IVgErWRGWvmOFsO7mQmmkOKLnlRc/eazpb0cVyR7RLnnF6s5NKMIKVugNTS6EsKQ1VGbzoh9IARVkVWVFXZU3oaxC7w3FkvViJs/u1dhKVGTlurLAgrAcFlZhfLTqvaG4Cw/23+nect47O44NCFRYg02sKCy+vHsh5avfXXfhfCENqzr3+6MQVaASC8KDlXAXXXnHwk9eMN7x+I54n08fdG8/G0/6MVVBVtSVBFY53UVY3hu8vdOF052Nbg2z+foMqNbAKsK9bkKe0P7q54kVsGaPNdzrs316lgYMUkAFD2bBqgdWYRUWC2k+zogLZz9tN+PBSjwJUlAVZAVW7sFg1WLCXIWl3sB4n7U3d8zk3snJjzRgskpZ5R5MD0a4qwlxFHrHkngvuvDg2y+7Nc7Tw6MbVCmrtKDFFUpDu7C8Y7X0hoPZB91aZ29F6zlVRVTjrOhBBpaz4gNpdRXShXnqzKcPu/XO5P7h0fNgBVkFrGAlgRWs7prupVWYsCzeD6ZfT7r10/phVFbDAFWFlQUWWeGC5ir0xKIL18kK5XSg9T1UBVSUFVjhfIYJq+kuwioV0vl018to42w9OcxYJyqRVezB0UUodw4Cq1VY7A2DrnbwNLo2Wt+RFXSFe1DCHayqsIJVvZCiN/zLnRmwJhHGYfzvmUotIFAdBDcXwZQFEANnsE3mDIiNU6FFB8lmOOV2LJIhUIOW++bdm8DBw8vz3lF6556P8ON5fv7vNWBVFlkarXtFClHxXrEN6lhphUXsDqzgIGV3w513UZalJbP3cM9QYa34BnmvEBYfodlYUKyF2zMiy6X1OyIr0isqLH5iRb+xOCxgtZTYl7N7Myrs1RfO6gMvVly749uM/rNw7h3ZsuwUFK2felRcV7FYvTGzem22Ox7vYbHm85KsIPXhDFmRXsEGQVh4uUe3O39uMN4N86u2rCL29HoWDZVug1q5k7cGPsKQFRqL/xR6xZysKNXxA6ACs0OtiK+AFRuhut2Z3cmNBcW6886rsrJYg9kPPSqsFfcVbhCv0bisVICVpli33qElK0xmz/cJq2+cFfw/gXKP9J3Di8V+CkfefkZWm/zQJ6hQV6RXRO7/OEL9J7QHal9JpuPZJESFE0RdISvaKzzdyTlq+oLGe/S2d/xEEsjNwHf1rFivogoLR/h/ijXyLrKSSOzC0AdUkXuFrPAajS+sKF+F3lXJlqQyHfsTfatIrYivtNcoOUeJ3TU31q13npMEY7V8V9sqqFV0VtirV7GExYw18r5bkmzq1/4EWIUXQ9grskEqdyos89NMCGvUK9Yk8VQGrouoFqxYr85Yr4jcyfMoLZbn7WQlBbHzQbnQVlgr4waj/xCab3dkpWrVtiUdqbRcd0EKaoUTDN8ZcIMaYZFfwnjGglolnvrYnYSoCKszZKXvFV6j/JeQv4+Oesc1SVW2LofuV4oKWRk3yIVl7tUC1qh3dWRJ2lId9Ptgq8+IitwMwIoIC16x6AhHjnNRlRTGro/7fWAFaqe+ItcoERa1u+Ns1GxJZ8q/Nt2OYYJsg4wVH6GuWF2nd1wqS3pjFU76nRAVqRXZoBIWyD0+qwBVMX2ygtzsLXB9MvsKN8jlHt3uClaAaj8r6U9F4QJUpg1yucctVhdRpRrX3zF+1NeKsIINwuczsAqiZ9V1GsWjlKMCd212OqeMFW4Qe0WvUVKsbi/QuiXrlXL+WaffAVShrsDt0ViZT3en4Ry2t2T9Yk9bJ0G9oFYxWb0g1yj2qttrFJ/mbFnTVArPTztNhYpPEH8HKSvN6a4SlGqjlJV1Tian6tUEtS96RX2FRwO8y0CxDhqqVBlZ+1j1bcXrPfwM8g0iKyL3A0Vqp2bJI0klv32yG/B6t2ClrRVuEL8I9XI/eKtItbMitjyeWPnWZrO5+1K1Cn2FvYoqrADUn3LrAUmCGArAcOxk0Uy70Cytzfsfam3MlEf/Eb7gvb07eY/AGlYRoew0nWbzrH4v7r+WhucbVQRXglRgbSvj4cDYbJoy7z/e4GyrX/dqb2/vuNgL9EmPS7DuPYHxxo4vYr93hhlWbdvuFUWxdxR0169Qm1FZ1Uw0T3fsJe/9TKu23XXFS4HuBKurEmxeUUwYlyaxqX8l8859tdp17hXJpVYbec0IjsCGBxEmlHEhldbWfbEKtFZShIwSjJZh4XwEFR7YAWTU9FMAAAAASUVORK5CYII=" diff --git a/packages/widget/src/hooks/useCreateEvmWallets.tsx b/packages/widget/src/hooks/useCreateEvmWallets.tsx index e7feab2fa..a1c5a27af 100644 --- a/packages/widget/src/hooks/useCreateEvmWallets.tsx +++ b/packages/widget/src/hooks/useCreateEvmWallets.tsx @@ -8,6 +8,7 @@ import { createPublicClient, http } from "viem"; import { sei } from "viem/chains"; import { useAccount, useConnect, useConnectors } from "wagmi"; import { ChainType } from "@skip-go/client"; +import { walletConnectLogo } from "@/constants/wagmi"; import { callbacksAtom } from "@/state/callbacks"; export const useCreateEvmWallets = () => { @@ -81,7 +82,7 @@ export const useCreateEvmWallets = () => { walletPrettyName: connector.name, walletChainType: ChainType.EVM, walletInfo: { - logo: connector.icon, + logo: connector.id === "walletConnect" ? walletConnectLogo : connector.icon, }, connectEco: async () => { if ( diff --git a/packages/widget/src/hooks/useGetAccount.ts b/packages/widget/src/hooks/useGetAccount.ts index 0150da9a9..e9c4e8123 100644 --- a/packages/widget/src/hooks/useGetAccount.ts +++ b/packages/widget/src/hooks/useGetAccount.ts @@ -13,6 +13,7 @@ import { useAtom, useAtomValue } from "jotai"; import { useCallback, useEffect } from "react"; import { useAccount as useEvmAccount, useConnectors } from "wagmi"; import { ChainType } from "@skip-go/client"; +import { walletConnectLogo } from "@/constants/wagmi"; export const useGetAccount = () => { const wallet = useAtomValue(walletsAtom); @@ -145,7 +146,7 @@ export const useGetAccount = () => { wallet: { name: evmAccount.connector.id, prettyName: evmAccount.connector.name, - logo: connectors.find( + logo: evmAccount.connector.id === "walletConnect" ? walletConnectLogo : connectors.find( (item) => item.id === evmAccount.connector?.id )?.icon, }, diff --git a/yarn.lock b/yarn.lock index 6db42dc22..73193f870 100644 --- a/yarn.lock +++ b/yarn.lock @@ -12,13 +12,6 @@ __metadata: languageName: node linkType: hard -"@adraffy/ens-normalize@npm:1.10.0": - version: 1.10.0 - resolution: "@adraffy/ens-normalize@npm:1.10.0" - checksum: af0540f963a2632da2bbc37e36ea6593dcfc607b937857133791781e246d47f870d5e3d21fa70d5cfe94e772c284588c81ea3f5b7f4ea8fbb824369444e4dbcb - languageName: node - linkType: hard - "@adraffy/ens-normalize@npm:^1.10.1": version: 1.11.0 resolution: "@adraffy/ens-normalize@npm:1.11.0" @@ -1908,7 +1901,7 @@ __metadata: languageName: node linkType: hard -"@babel/runtime@npm:^7.11.2, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.18.9, @babel/runtime@npm:^7.19.4, @babel/runtime@npm:^7.20.1, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.23.8, @babel/runtime@npm:^7.24.7, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.4": +"@babel/runtime@npm:^7.11.2, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.18.3, @babel/runtime@npm:^7.18.9, @babel/runtime@npm:^7.20.1, @babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.23.8, @babel/runtime@npm:^7.24.7, @babel/runtime@npm:^7.5.5, @babel/runtime@npm:^7.8.4": version: 7.24.7 resolution: "@babel/runtime@npm:7.24.7" dependencies: @@ -1917,7 +1910,7 @@ __metadata: languageName: node linkType: hard -"@babel/runtime@npm:^7.17.8, @babel/runtime@npm:^7.23.2": +"@babel/runtime@npm:^7.17.8, @babel/runtime@npm:^7.26.0": version: 7.26.0 resolution: "@babel/runtime@npm:7.26.0" dependencies: @@ -2459,17 +2452,15 @@ __metadata: languageName: node linkType: hard -"@coinbase/wallet-sdk@npm:4.0.4": - version: 4.0.4 - resolution: "@coinbase/wallet-sdk@npm:4.0.4" +"@coinbase/wallet-sdk@npm:4.2.3": + version: 4.2.3 + resolution: "@coinbase/wallet-sdk@npm:4.2.3" dependencies: - buffer: ^6.0.3 + "@noble/hashes": ^1.4.0 clsx: ^1.2.1 eventemitter3: ^5.0.1 - keccak: ^3.0.3 - preact: ^10.16.0 - sha.js: ^2.4.11 - checksum: 002d03d791683a15b465a285d7293a7994684f6f91d67c01b52ee9a07ba62f555a12d5c9471c964ccae0df048190f9c2e82929aeba9247e6d97ad1a9e9dd4132 + preact: ^10.24.2 + checksum: f1cb3c5975bf7eed46aa56077943becea16e92ac7dda46e78fb2939b3f3864815a7f218842410abb40b2b3182d09c9636ea699714c3d564009438c3611f45abc languageName: node linkType: hard @@ -2992,6 +2983,15 @@ __metadata: languageName: node linkType: hard +"@ecies/ciphers@npm:^0.2.1": + version: 0.2.2 + resolution: "@ecies/ciphers@npm:0.2.2" + peerDependencies: + "@noble/ciphers": ^1.0.0 + checksum: 10a623261aa212184850fcd41788ae1f616365b5084df03ac0d7108223519e24a5f7d92caac1ee9e0f2e3b6cfae3037a42e466b25de20cf85e91098f60ba1187 + languageName: node + linkType: hard + "@emnapi/runtime@npm:^1.2.0": version: 1.3.1 resolution: "@emnapi/runtime@npm:1.3.1" @@ -5674,9 +5674,9 @@ __metadata: languageName: node linkType: hard -"@metamask/sdk-communication-layer@npm:0.28.2": - version: 0.28.2 - resolution: "@metamask/sdk-communication-layer@npm:0.28.2" +"@metamask/sdk-communication-layer@npm:0.31.0": + version: 0.31.0 + resolution: "@metamask/sdk-communication-layer@npm:0.31.0" dependencies: bufferutil: ^4.0.8 date-fns: ^2.29.3 @@ -5685,71 +5685,47 @@ __metadata: uuid: ^8.3.2 peerDependencies: cross-fetch: ^4.0.0 - eciesjs: ^0.3.16 - eventemitter2: ^6.4.7 + eciesjs: "*" + eventemitter2: ^6.4.9 readable-stream: ^3.6.2 socket.io-client: ^4.5.1 - checksum: 349103ca72018fc4077ddf3d84d3976572525cf27b17b65308c6a00710c66f06d2d3880bb611a4a6462d1fb54bc59edd6855826f78796f49d8c7cd9904742577 + checksum: 3f9283d828d736f331154bfa0e1368b7c7c18e00eff66ccd20e97fb86618433cef3c60ed4168e2565bda825303562eb00bb9ca101d1abdcdc3f3848f807e614e languageName: node linkType: hard -"@metamask/sdk-install-modal-web@npm:0.28.1": - version: 0.28.1 - resolution: "@metamask/sdk-install-modal-web@npm:0.28.1" +"@metamask/sdk-install-modal-web@npm:0.31.2": + version: 0.31.2 + resolution: "@metamask/sdk-install-modal-web@npm:0.31.2" dependencies: - qr-code-styling: ^1.6.0-rc.1 - peerDependencies: - i18next: 23.11.5 - react: ^18.2.0 - react-dom: ^18.2.0 - react-native: "*" - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - react-native: - optional: true - checksum: 8ee147c63927323105bdf7d76667c06618119b30b355543a74f3a08e7559448d217bdf9a4fee0900efa0fc3f5a13f6376a76b2679e0b8322f6811789868dce42 + "@paulmillr/qr": ^0.2.1 + checksum: 02b5dac25b572d5ede5cf436dae3905193d38010da51bcfc89551902a4aa2867c51e03d95c11d8e13839b7478d368fb3e38fd19d3bde9882d1adbec51ad8a240 languageName: node linkType: hard -"@metamask/sdk@npm:0.28.2": - version: 0.28.2 - resolution: "@metamask/sdk@npm:0.28.2" +"@metamask/sdk@npm:0.31.2": + version: 0.31.2 + resolution: "@metamask/sdk@npm:0.31.2" dependencies: + "@babel/runtime": ^7.26.0 "@metamask/onboarding": ^1.0.1 "@metamask/providers": 16.1.0 - "@metamask/sdk-communication-layer": 0.28.2 - "@metamask/sdk-install-modal-web": 0.28.1 - "@types/dom-screen-wake-lock": ^1.0.0 - "@types/uuid": ^10.0.0 + "@metamask/sdk-communication-layer": 0.31.0 + "@metamask/sdk-install-modal-web": 0.31.2 + "@paulmillr/qr": ^0.2.1 bowser: ^2.9.0 cross-fetch: ^4.0.0 debug: ^4.3.4 - eciesjs: ^0.3.15 + eciesjs: ^0.4.11 eth-rpc-errors: ^4.0.3 - eventemitter2: ^6.4.7 - i18next: 23.11.5 - i18next-browser-languagedetector: 7.1.0 + eventemitter2: ^6.4.9 obj-multiplex: ^1.0.0 pump: ^3.0.0 - qrcode-terminal-nooctal: ^0.12.1 - react-native-webview: ^11.26.0 readable-stream: ^3.6.2 - rollup-plugin-visualizer: ^5.9.2 socket.io-client: ^4.5.1 + tslib: ^2.6.0 util: ^0.12.4 uuid: ^8.3.2 - peerDependencies: - react: ^18.2.0 - react-dom: ^18.2.0 - peerDependenciesMeta: - react: - optional: true - react-dom: - optional: true - checksum: f51eb506b8614b8eae2015668eccb9c5924c31bbdfc050bfa788bd03349107d9281a52107021f6daf3888bd0bd15796605ce883b270b2c4a304f830bac15aaf7 + checksum: a48f12bc0cfcab952608aa2c69c1174aca61bfb35b980a886e3e86c2ced9c789adbded24aca21e3c7357411e6667fcb9c691d1cd26a0c38753051f52b539d0bf languageName: node linkType: hard @@ -6060,6 +6036,13 @@ __metadata: languageName: node linkType: hard +"@noble/ciphers@npm:^1.0.0": + version: 1.1.3 + resolution: "@noble/ciphers@npm:1.1.3" + checksum: d6a740dbabbbc08637ef83332ca0ad2f38f3ec16d254afc7e3ec845533cd7fa4c76fb904b0c9ab217c76b7d7cc138a347e1fbaf7d0a2939983fe1270a21aee7e + languageName: node + linkType: hard + "@noble/curves@npm:1.4.0, @noble/curves@npm:^1.1.0, @noble/curves@npm:^1.4.0, @noble/curves@npm:~1.4.0": version: 1.4.0 resolution: "@noble/curves@npm:1.4.0" @@ -6078,6 +6061,15 @@ __metadata: languageName: node linkType: hard +"@noble/curves@npm:1.7.0, @noble/curves@npm:~1.7.0": + version: 1.7.0 + resolution: "@noble/curves@npm:1.7.0" + dependencies: + "@noble/hashes": 1.6.0 + checksum: e220b704f1e516f326fff985e794e840a267f5542e1388737142b08177672ebc41b460b5a5bf636d7622c68e8ae719bc042ccd8aed16dc14311450a94b5f2a05 + languageName: node + linkType: hard + "@noble/curves@npm:~1.3.0": version: 1.3.0 resolution: "@noble/curves@npm:1.3.0" @@ -6108,6 +6100,20 @@ __metadata: languageName: node linkType: hard +"@noble/hashes@npm:1.6.0": + version: 1.6.0 + resolution: "@noble/hashes@npm:1.6.0" + checksum: 07729b80108d2a9b862eb4e070d4f78ca7ee86b9a9c13a4f7c338ba47a15d4386dd283235da71f21ad515fa9f0b9429fc3da39d2f2b4a50e2442212d14cfd4a9 + languageName: node + linkType: hard + +"@noble/hashes@npm:1.6.1, @noble/hashes@npm:~1.6.0": + version: 1.6.1 + resolution: "@noble/hashes@npm:1.6.1" + checksum: 57c62f65ee217c0293b4321b547792aa6d79812bfe70a7d62dc83e0f936cc677b14ed981b4e88cf8fdad37cd6d3a0cbd3bd0908b0728adc9daf066e678be8901 + languageName: node + linkType: hard + "@nodelib/fs.scandir@npm:2.1.5": version: 2.1.5 resolution: "@nodelib/fs.scandir@npm:2.1.5" @@ -6517,6 +6523,13 @@ __metadata: languageName: node linkType: hard +"@paulmillr/qr@npm:^0.2.1": + version: 0.2.1 + resolution: "@paulmillr/qr@npm:0.2.1" + checksum: 8a7b882f74f472759b0e5911c9c902a29c5232609373af4c5775625d9aad4ebda635d84c25be27e694144ba73d8e4204e72c3b9b59e9a375ec1d19f034a2d2ad + languageName: node + linkType: hard + "@penumbra-zone/bech32m@npm:^7.0.0": version: 7.0.0 resolution: "@penumbra-zone/bech32m@npm:7.0.0" @@ -7464,13 +7477,13 @@ __metadata: languageName: node linkType: hard -"@safe-global/safe-apps-provider@npm:0.18.3": - version: 0.18.3 - resolution: "@safe-global/safe-apps-provider@npm:0.18.3" +"@safe-global/safe-apps-provider@npm:0.18.4": + version: 0.18.4 + resolution: "@safe-global/safe-apps-provider@npm:0.18.4" dependencies: "@safe-global/safe-apps-sdk": ^9.1.0 events: ^3.3.0 - checksum: e208df42fe49474d54847d8edd44efb601b5aafaf9e25537500db7fefb1172201a62f577c749f424b34932439dd7ebe461d33b23075cf6b80fb35ef841017a30 + checksum: 8e4254c2d5d6852133d70f2fe63417796b349e2af875f45464a2d99e2423657af4465575779419d6f7c9db2155bbec42e0f617727666790fdd1c9f170b5b1794 languageName: node linkType: hard @@ -7505,6 +7518,13 @@ __metadata: languageName: node linkType: hard +"@scure/base@npm:~1.2.1": + version: 1.2.1 + resolution: "@scure/base@npm:1.2.1" + checksum: 061e04e4f6ed7bada6cdad4c799e6a82f30dda3f4008895bdb2e556f333f9b41f44dc067d25c064357ed6c012ea9c8be1e7927caf8a083af865b8de27b52370c + languageName: node + linkType: hard + "@scure/bip32@npm:1.4.0": version: 1.4.0 resolution: "@scure/bip32@npm:1.4.0" @@ -7527,6 +7547,17 @@ __metadata: languageName: node linkType: hard +"@scure/bip32@npm:1.6.0": + version: 1.6.0 + resolution: "@scure/bip32@npm:1.6.0" + dependencies: + "@noble/curves": ~1.7.0 + "@noble/hashes": ~1.6.0 + "@scure/base": ~1.2.1 + checksum: 1347477e28678a9bc4e2ec5e8e0f679263f2e3cb19c0e65849f76810c4c608461d4b283521c897249fa7dacc8c76e1b50e2a866b22467c8e93662a9c545cd42b + languageName: node + linkType: hard + "@scure/bip39@npm:1.3.0": version: 1.3.0 resolution: "@scure/bip39@npm:1.3.0" @@ -7547,6 +7578,16 @@ __metadata: languageName: node linkType: hard +"@scure/bip39@npm:1.5.0": + version: 1.5.0 + resolution: "@scure/bip39@npm:1.5.0" + dependencies: + "@noble/hashes": ~1.6.0 + "@scure/base": ~1.2.1 + checksum: 03d1888f5d0d514eebc5c3adc1e071d225963d434fcf789abea5ef2c8b4b99f3ad9ebee8a597c0c13d5415e6b2b380f55f61560c1643cd871961ab91cbcf5122 + languageName: node + linkType: hard + "@scure/starknet@npm:~1.0.0": version: 1.0.0 resolution: "@scure/starknet@npm:1.0.0" @@ -7678,6 +7719,8 @@ __metadata: "@typescript-eslint/eslint-plugin": ^7.15.0 "@typescript-eslint/parser": ^7.15.0 "@vitejs/plugin-react": ^4.3.1 + "@walletconnect/modal": 2.7.0 + "@walletconnect/sign-client": 2.17.2 buffer: ^6.0.3 chain-registry: ^1.69.58 eslint: ^9.9.0 @@ -7716,8 +7759,8 @@ __metadata: graz: ^0.1.30 react: ">=17.0.0" react-dom: ">=17.0.0" - viem: 2.21.4 - wagmi: 2.12.9 + viem: ^2.21.55 + wagmi: ^2.14.1 languageName: unknown linkType: soft @@ -9105,13 +9148,6 @@ __metadata: languageName: node linkType: hard -"@types/dom-screen-wake-lock@npm:^1.0.0": - version: 1.0.3 - resolution: "@types/dom-screen-wake-lock@npm:1.0.3" - checksum: 66bece3508b4f4147db97a530c758f8f5d3132ef00c06cab1db4bf2b4af6a3a614ae0a0ba6b53ddc4177a6545adf9d312547087256efc8eff7314b13221380b8 - languageName: node - linkType: hard - "@types/elliptic@npm:^6.4.9": version: 6.4.18 resolution: "@types/elliptic@npm:6.4.18" @@ -9485,7 +9521,7 @@ __metadata: languageName: node linkType: hard -"@types/secp256k1@npm:^4.0.1, @types/secp256k1@npm:^4.0.6": +"@types/secp256k1@npm:^4.0.1": version: 4.0.6 resolution: "@types/secp256k1@npm:4.0.6" dependencies: @@ -9538,13 +9574,6 @@ __metadata: languageName: node linkType: hard -"@types/uuid@npm:^10.0.0": - version: 10.0.0 - resolution: "@types/uuid@npm:10.0.0" - checksum: e3958f8b0fe551c86c14431f5940c3470127293280830684154b91dc7eb3514aeb79fe3216968833cf79d4d1c67f580f054b5be2cd562bebf4f728913e73e944 - languageName: node - linkType: hard - "@types/uuid@npm:^8.3.4": version: 8.3.4 resolution: "@types/uuid@npm:8.3.4" @@ -10562,35 +10591,34 @@ __metadata: languageName: node linkType: hard -"@wagmi/connectors@npm:5.1.9": - version: 5.1.9 - resolution: "@wagmi/connectors@npm:5.1.9" +"@wagmi/connectors@npm:5.6.1": + version: 5.6.1 + resolution: "@wagmi/connectors@npm:5.6.1" dependencies: - "@coinbase/wallet-sdk": 4.0.4 - "@metamask/sdk": 0.28.2 - "@safe-global/safe-apps-provider": 0.18.3 + "@coinbase/wallet-sdk": 4.2.3 + "@metamask/sdk": 0.31.2 + "@safe-global/safe-apps-provider": 0.18.4 "@safe-global/safe-apps-sdk": 9.1.0 - "@walletconnect/ethereum-provider": 2.15.3 - "@walletconnect/modal": 2.6.2 + "@walletconnect/ethereum-provider": 2.17.0 cbw-sdk: "npm:@coinbase/wallet-sdk@3.9.3" peerDependencies: - "@wagmi/core": 2.13.4 + "@wagmi/core": 2.16.0 typescript: ">=5.0.4" viem: 2.x peerDependenciesMeta: typescript: optional: true - checksum: 6ed6ef067142b65f5f417c330aaf5a010a47c3b19b307b43e00de9a5e11c976f4ab7bbef19dde52e89a6ae9d1a2e627a5265db9772cfadb7b25ce466f84916d7 + checksum: 6e9e4ebcfa7dcac7a6141f19332480b64a6a649a033a80d93dd50b3e8076d34247a3bbaf74209746db6673ed1fc61ef10db8e722ac9c88fd3faf10a6784e5265 languageName: node linkType: hard -"@wagmi/core@npm:2.13.4": - version: 2.13.4 - resolution: "@wagmi/core@npm:2.13.4" +"@wagmi/core@npm:2.16.0": + version: 2.16.0 + resolution: "@wagmi/core@npm:2.16.0" dependencies: eventemitter3: 5.0.1 mipd: 0.0.7 - zustand: 4.4.1 + zustand: 5.0.0 peerDependencies: "@tanstack/query-core": ">=5.0.0" typescript: ">=5.0.4" @@ -10600,7 +10628,7 @@ __metadata: optional: true typescript: optional: true - checksum: aa53de9dba8fa6d6b846a6584cb05fc03f2fb7ae023f8666ab030d5583966fc4b5aa81ca29b5ff8b6c04d26f1e6508126b62afad0ca2fa7fc5136e3a04e5cb33 + checksum: 344570354e94ab5e670b674d99fa2823120b0998227e601a6d81e3bf07b00b18b91be77fb66314dba57c749ea227cfdd812f4e1da1db07d49841d543615a24b8 languageName: node linkType: hard @@ -10650,9 +10678,9 @@ __metadata: languageName: node linkType: hard -"@walletconnect/core@npm:2.15.3": - version: 2.15.3 - resolution: "@walletconnect/core@npm:2.15.3" +"@walletconnect/core@npm:2.17.0": + version: 2.17.0 + resolution: "@walletconnect/core@npm:2.17.0" dependencies: "@walletconnect/heartbeat": 1.2.2 "@walletconnect/jsonrpc-provider": 1.0.14 @@ -10665,12 +10693,12 @@ __metadata: "@walletconnect/relay-auth": 1.0.4 "@walletconnect/safe-json": 1.0.2 "@walletconnect/time": 1.0.2 - "@walletconnect/types": 2.15.3 - "@walletconnect/utils": 2.15.3 + "@walletconnect/types": 2.17.0 + "@walletconnect/utils": 2.17.0 events: 3.3.0 lodash.isequal: 4.5.0 uint8arrays: 3.1.0 - checksum: 1a535024d37551fda0fe663612b6d5224899b6fddcc8fc5e6f09d306e81ed3c7aae0435f85a13835d22dd59b3f0b9a05e68ea73be481eacb18034bd63de7f8a8 + checksum: 97cd155fe79fe6dfc7128da6c38b6644209cf1840bc4c43fc76d691c3c0ba2fe544e5c61e5a8198886c3b037cc5551ed211523938793220db7f1effce705f4e2 languageName: node linkType: hard @@ -10708,21 +10736,21 @@ __metadata: languageName: node linkType: hard -"@walletconnect/ethereum-provider@npm:2.15.3": - version: 2.15.3 - resolution: "@walletconnect/ethereum-provider@npm:2.15.3" +"@walletconnect/ethereum-provider@npm:2.17.0": + version: 2.17.0 + resolution: "@walletconnect/ethereum-provider@npm:2.17.0" 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 - "@walletconnect/sign-client": 2.15.3 - "@walletconnect/types": 2.15.3 - "@walletconnect/universal-provider": 2.15.3 - "@walletconnect/utils": 2.15.3 + "@walletconnect/modal": 2.7.0 + "@walletconnect/sign-client": 2.17.0 + "@walletconnect/types": 2.17.0 + "@walletconnect/universal-provider": 2.17.0 + "@walletconnect/utils": 2.17.0 events: 3.3.0 - checksum: 08964c56345da848a0987eed6baec1f4ce487811034a6de84456352bb82cad361a7248d006fe0ccecdee7c1694e842459e99c50d74084544254c7bd1d361ac75 + checksum: e851ed258f9a1ef45db00cf46b225a9dc2efb09e4503f4a711a48e14abf4fa3746fad60960791e14c87cebde855e8487fe29146f1b025644472bacb5bb1d3a0f languageName: node linkType: hard @@ -10829,15 +10857,6 @@ __metadata: languageName: node linkType: hard -"@walletconnect/modal-core@npm:2.6.2": - version: 2.6.2 - resolution: "@walletconnect/modal-core@npm:2.6.2" - dependencies: - valtio: 1.11.2 - checksum: 94daceba50c323b06ecbeac2968d9f0972f327359c6118887c6526cd64006249b12f64322d71bc6c4a2b928436ecc89cf3d3af706511fcdc264c1f4b34a2dd5d - languageName: node - linkType: hard - "@walletconnect/modal-core@npm:2.7.0": version: 2.7.0 resolution: "@walletconnect/modal-core@npm:2.7.0" @@ -10847,18 +10866,6 @@ __metadata: languageName: node linkType: hard -"@walletconnect/modal-ui@npm:2.6.2": - version: 2.6.2 - resolution: "@walletconnect/modal-ui@npm:2.6.2" - dependencies: - "@walletconnect/modal-core": 2.6.2 - lit: 2.8.0 - motion: 10.16.2 - qrcode: 1.5.3 - checksum: cd1ec0205eb491e529670599d3dd26f6782d7c5a99d5594bf6949a8c760c1c5f4eb6ed72b8662450774fe4e2dd47678f2c05145c8f2494bd7153446ddf4bd7ed - languageName: node - linkType: hard - "@walletconnect/modal-ui@npm:2.7.0": version: 2.7.0 resolution: "@walletconnect/modal-ui@npm:2.7.0" @@ -10871,16 +10878,6 @@ __metadata: languageName: node linkType: hard -"@walletconnect/modal@npm:2.6.2": - version: 2.6.2 - resolution: "@walletconnect/modal@npm:2.6.2" - dependencies: - "@walletconnect/modal-core": 2.6.2 - "@walletconnect/modal-ui": 2.6.2 - checksum: 68b354d49960b96d22de0e47a3801df27c01a3e96ec5fbde3ca6df1344ca2b20668b0c4d58fe1803f5670ac7b7b4c6f5b7b405e354f5f9eaff5cca147c13de9c - languageName: node - linkType: hard - "@walletconnect/modal@npm:2.7.0": version: 2.7.0 resolution: "@walletconnect/modal@npm:2.7.0" @@ -10923,20 +10920,20 @@ __metadata: languageName: node linkType: hard -"@walletconnect/sign-client@npm:2.15.3": - version: 2.15.3 - resolution: "@walletconnect/sign-client@npm:2.15.3" +"@walletconnect/sign-client@npm:2.17.0": + version: 2.17.0 + resolution: "@walletconnect/sign-client@npm:2.17.0" dependencies: - "@walletconnect/core": 2.15.3 + "@walletconnect/core": 2.17.0 "@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.15.3 - "@walletconnect/utils": 2.15.3 + "@walletconnect/types": 2.17.0 + "@walletconnect/utils": 2.17.0 events: 3.3.0 - checksum: 16d66bb1b035b7ff3366cebcccb67f532700d9c0d56d98c4400af55fe55c3a29dca92c1755401c29085080fb820325aef6e1df6b274a0a223b33b064e0fce285 + checksum: 980c747a815c7016191086597f295268a4f285a5a830d6d80b2896bc6f6ca4a2528bae3c16bde83d2524b94553feb6fe74fd041de8d95d54dc6fd7f0613e87e2 languageName: node linkType: hard @@ -10966,9 +10963,9 @@ __metadata: languageName: node linkType: hard -"@walletconnect/types@npm:2.15.3": - version: 2.15.3 - resolution: "@walletconnect/types@npm:2.15.3" +"@walletconnect/types@npm:2.17.0": + version: 2.17.0 + resolution: "@walletconnect/types@npm:2.17.0" dependencies: "@walletconnect/events": 1.0.1 "@walletconnect/heartbeat": 1.2.2 @@ -10976,7 +10973,7 @@ __metadata: "@walletconnect/keyvaluestorage": 1.1.1 "@walletconnect/logger": 2.1.2 events: 3.3.0 - checksum: df59fa1b19e56f586d142de34f7839a0f936f0ad2eb871175257f8b152744842d154fc4ec992945d13b4418a6398dddb77585616580d826363e0d99a464e50bc + checksum: 0dd1eecd69a90a920f7cd33baeb1613f11ca24466783482752435b80a9362fd8f55b0d21c03073d97c20224f932d3fafc72fe8f6defeb0d1a139e8f10cc58aa3 languageName: node linkType: hard @@ -10994,26 +10991,26 @@ __metadata: languageName: node linkType: hard -"@walletconnect/universal-provider@npm:2.15.3": - version: 2.15.3 - resolution: "@walletconnect/universal-provider@npm:2.15.3" +"@walletconnect/universal-provider@npm:2.17.0": + version: 2.17.0 + resolution: "@walletconnect/universal-provider@npm:2.17.0" 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.15.3 - "@walletconnect/types": 2.15.3 - "@walletconnect/utils": 2.15.3 + "@walletconnect/sign-client": 2.17.0 + "@walletconnect/types": 2.17.0 + "@walletconnect/utils": 2.17.0 events: 3.3.0 - checksum: 02f8fe842f3ea2aa1ee9dac06647305bd34adf600b415d7339cf28b9f2470c141014d3bf9c8a3815092c4859f9e8ccd7d56e23f32f0e69b460d871544e0cdf08 + checksum: c7bb25a571ad5e354bd5e2aceabab3468def3b47a7ea83e0e93278b3c33c5a68a751e95bc526cd3b27c071cfabf37cda72736315c1416fcf226100b75c74c363 languageName: node linkType: hard -"@walletconnect/utils@npm:2.15.3": - version: 2.15.3 - resolution: "@walletconnect/utils@npm:2.15.3" +"@walletconnect/utils@npm:2.17.0": + version: 2.17.0 + resolution: "@walletconnect/utils@npm:2.17.0" dependencies: "@stablelib/chacha20poly1305": 1.0.1 "@stablelib/hkdf": 1.0.1 @@ -11024,14 +11021,14 @@ __metadata: "@walletconnect/relay-auth": 1.0.4 "@walletconnect/safe-json": 1.0.2 "@walletconnect/time": 1.0.2 - "@walletconnect/types": 2.15.3 + "@walletconnect/types": 2.17.0 "@walletconnect/window-getters": 1.0.1 "@walletconnect/window-metadata": 1.0.1 detect-browser: 5.3.0 elliptic: ^6.5.7 query-string: 7.1.3 uint8arrays: 3.1.0 - checksum: 1ff57939b99e0fbcd0398007373a321516d78d2d61561c062a427d890f88ac7ebe3645ade021f91f1f1f6574cdd7760239a3dd004f5a9060ad165dd634fc228e + checksum: 093e508718f1c770b1ff05442376add40ecbaffa8cb5c8cfdf76786d6422e33afdb39d4b7b374a3b65330a4da2cbb71a2c552b041831295a12006dc29cb32340 languageName: node linkType: hard @@ -11386,9 +11383,9 @@ __metadata: languageName: node linkType: hard -"abitype@npm:1.0.5": - version: 1.0.5 - resolution: "abitype@npm:1.0.5" +"abitype@npm:1.0.6, abitype@npm:^1.0.6": + version: 1.0.6 + resolution: "abitype@npm:1.0.6" peerDependencies: typescript: ">=5.0.4" zod: ^3 >=3.22.0 @@ -11397,13 +11394,13 @@ __metadata: optional: true zod: optional: true - checksum: 4a4865926e5e8e33e4fab0081a106ce4f627db30b4052fbc449e4707aea6d34d805d46c8d6d0a72234bdd9a2b4900993591515fc299bc57d393181c70dc0c19e + checksum: 0bf6ed5ec785f372746c3ec5d6c87bf4d8cf0b6db30867b8d24e86fbc66d9f6599ae3d463ccd49817e67eedec6deba7cdae317bcf4da85b02bc48009379b9f84 languageName: node linkType: hard -"abitype@npm:1.0.6, abitype@npm:^1.0.6": - version: 1.0.6 - resolution: "abitype@npm:1.0.6" +"abitype@npm:1.0.7": + version: 1.0.7 + resolution: "abitype@npm:1.0.7" peerDependencies: typescript: ">=5.0.4" zod: ^3 >=3.22.0 @@ -11412,7 +11409,7 @@ __metadata: optional: true zod: optional: true - checksum: 0bf6ed5ec785f372746c3ec5d6c87bf4d8cf0b6db30867b8d24e86fbc66d9f6599ae3d463ccd49817e67eedec6deba7cdae317bcf4da85b02bc48009379b9f84 + checksum: c3b3ee19becbbce1d5c55a40a13dee6c09c0d710eee9c601433eb496c5ee2cd39e97dd0d043fa1ff7e68b1239ef83fe56951b2009d467e989fe941785cd7f8b8 languageName: node linkType: hard @@ -14789,14 +14786,15 @@ __metadata: languageName: node linkType: hard -"eciesjs@npm:^0.3.15": - version: 0.3.19 - resolution: "eciesjs@npm:0.3.19" +"eciesjs@npm:^0.4.11": + version: 0.4.12 + resolution: "eciesjs@npm:0.4.12" dependencies: - "@types/secp256k1": ^4.0.6 - futoin-hkdf: ^1.5.3 - secp256k1: ^5.0.0 - checksum: 29d2cafcac452ae7086048cebeedf7b4307caf4a8e916120d0314e6da2076f2d1763b7f6a1916c6526fb78f0eb5e394d7dd0654c9a8bfe59252d242adb4830b2 + "@ecies/ciphers": ^0.2.1 + "@noble/ciphers": ^1.0.0 + "@noble/curves": ^1.6.0 + "@noble/hashes": ^1.5.0 + checksum: ef98528b8af23b013dd432b43cc1a378d58621f887a7db234ebc997006e16ab9ffa0ea973bf2195aa63dbfa996afa9e3a8f8410b6e3d5c3808365a3d02b1141a languageName: node linkType: hard @@ -15504,13 +15502,6 @@ __metadata: languageName: node linkType: hard -"escape-string-regexp@npm:2.0.0, escape-string-regexp@npm:^2.0.0": - version: 2.0.0 - resolution: "escape-string-regexp@npm:2.0.0" - checksum: 9f8a2d5743677c16e85c810e3024d54f0c8dea6424fad3c79ef6666e81dd0846f7437f5e729dfcdac8981bc9e5294c39b4580814d114076b8d36318f46ae4395 - languageName: node - linkType: hard - "escape-string-regexp@npm:^1.0.2, escape-string-regexp@npm:^1.0.5": version: 1.0.5 resolution: "escape-string-regexp@npm:1.0.5" @@ -15518,6 +15509,13 @@ __metadata: languageName: node linkType: hard +"escape-string-regexp@npm:^2.0.0": + version: 2.0.0 + resolution: "escape-string-regexp@npm:2.0.0" + checksum: 9f8a2d5743677c16e85c810e3024d54f0c8dea6424fad3c79ef6666e81dd0846f7437f5e729dfcdac8981bc9e5294c39b4580814d114076b8d36318f46ae4395 + languageName: node + linkType: hard + "escape-string-regexp@npm:^4.0.0": version: 4.0.0 resolution: "escape-string-regexp@npm:4.0.0" @@ -16098,7 +16096,7 @@ __metadata: languageName: node linkType: hard -"eventemitter2@npm:^6.4.7": +"eventemitter2@npm:^6.4.9": version: 6.4.9 resolution: "eventemitter2@npm:6.4.9" checksum: be59577c1e1c35509c7ba0e2624335c35bbcfd9485b8a977384c6cc6759341ea1a98d3cb9dbaa5cea4fff9b687e504504e3f9c2cc1674cf3bd8a43a7c74ea3eb @@ -16728,13 +16726,6 @@ __metadata: languageName: node linkType: hard -"futoin-hkdf@npm:^1.5.3": - version: 1.5.3 - resolution: "futoin-hkdf@npm:1.5.3" - checksum: 790da5675b31df4b9a34c19a5181f673171b5ad81fa92b91981bcfd2250692f895d6aada5ae4203212babba3c7d7a1916432e0b42c7aa88d3f70408439ec315e - languageName: node - linkType: hard - "fuzzy@npm:0.1.3": version: 0.1.3 resolution: "fuzzy@npm:0.1.3" @@ -17555,24 +17546,6 @@ __metadata: languageName: node linkType: hard -"i18next-browser-languagedetector@npm:7.1.0": - version: 7.1.0 - resolution: "i18next-browser-languagedetector@npm:7.1.0" - dependencies: - "@babel/runtime": ^7.19.4 - checksum: 36981b9a9995ed66387f3735cceffe107ed3cdb6ca278d45fa243fabc65669c0eca095ed4a55a93dac046ca1eb23fd986ec0079723be7ebb8505e6ba25f379bb - languageName: node - linkType: hard - -"i18next@npm:23.11.5": - version: 23.11.5 - resolution: "i18next@npm:23.11.5" - dependencies: - "@babel/runtime": ^7.23.2 - checksum: e9ec83703af59205af81f10929fd420314c0c976d1f4c42a191dc4d13f1284d13517105325286772571292953839c7183baa92e9bb43f41efe87dbc50c9aed1c - languageName: node - linkType: hard - "iconv-lite@npm:0.4.24, iconv-lite@npm:^0.4.17, iconv-lite@npm:^0.4.24": version: 0.4.24 resolution: "iconv-lite@npm:0.4.24" @@ -17867,7 +17840,7 @@ __metadata: languageName: node linkType: hard -"invariant@npm:2.2.4, invariant@npm:^2.2.4": +"invariant@npm:^2.2.4": version: 2.2.4 resolution: "invariant@npm:2.2.4" dependencies: @@ -18331,15 +18304,6 @@ __metadata: languageName: node linkType: hard -"isows@npm:1.0.4": - version: 1.0.4 - resolution: "isows@npm:1.0.4" - peerDependencies: - ws: "*" - checksum: a3ee62e3d6216abb3adeeb2a551fe2e7835eac87b05a6ecc3e7739259bf5f8e83290501f49e26137390c8093f207fc3378d4a7653aab76ad7bbab4b2dba9c5b9 - languageName: node - linkType: hard - "isows@npm:1.0.6": version: 1.0.6 resolution: "isows@npm:1.0.6" @@ -20827,15 +20791,6 @@ __metadata: languageName: node linkType: hard -"node-addon-api@npm:^5.0.0": - version: 5.1.0 - resolution: "node-addon-api@npm:5.1.0" - dependencies: - node-gyp: latest - checksum: 2508bd2d2981945406243a7bd31362fc7af8b70b8b4d65f869c61731800058fb818cc2fd36c8eac714ddd0e568cc85becf5e165cebbdf7b5024d5151bbc75ea1 - languageName: node - linkType: hard - "node-addon-api@npm:^7.0.0": version: 7.1.0 resolution: "node-addon-api@npm:7.1.0" @@ -22885,6 +22840,13 @@ __metadata: languageName: node linkType: hard +"preact@npm:^10.24.2": + version: 10.25.2 + resolution: "preact@npm:10.25.2" + checksum: f0927e3938a5a62df4a9fd639eecb01d184fb0526953ed03d75de4552ab511f507843bf050d6e1cea5b83f6592f1dc1641fea591061dc0e1838c2f3236684c6c + languageName: node + linkType: hard + "preferred-pm@npm:^3.0.0": version: 3.1.3 resolution: "preferred-pm@npm:3.1.3" @@ -23148,31 +23110,6 @@ __metadata: languageName: node linkType: hard -"qr-code-styling@npm:^1.6.0-rc.1": - version: 1.6.0-rc.1 - resolution: "qr-code-styling@npm:1.6.0-rc.1" - dependencies: - qrcode-generator: ^1.4.3 - checksum: 778754790fe0b586ecd38fb02de777c7dd9cf844cf6e3c88f9a23ad85b122200a8567c946e3c41dba84ddd2f0016aa31ddfd1507150e1dbfea8a58323b62d944 - languageName: node - linkType: hard - -"qrcode-generator@npm:^1.4.3": - version: 1.4.4 - resolution: "qrcode-generator@npm:1.4.4" - checksum: 860cfdd2a7a608d34e92cab99774cc08182e1911432f30ed36d16f8a5cdabd7fdf40239caed91fa2691cfe66c8d95c1340a2fc9cc439eed07a9f2eb328c6f527 - languageName: node - linkType: hard - -"qrcode-terminal-nooctal@npm:^0.12.1": - version: 0.12.1 - resolution: "qrcode-terminal-nooctal@npm:0.12.1" - bin: - qrcode-terminal: bin/qrcode-terminal.js - checksum: 1071c4be2bfa07b3956ad0a63c87452ced0b5180a9dc19f224fc3dd69bb24ad687a7af365acdde0f876ddf89dc1a4beadba88d89c7c5c5cbf2ef3efaef64736e - languageName: node - linkType: hard - "qrcode@npm:1.5.3": version: 1.5.3 resolution: "qrcode@npm:1.5.3" @@ -23455,19 +23392,6 @@ __metadata: languageName: node linkType: hard -"react-native-webview@npm:^11.26.0": - version: 11.26.1 - resolution: "react-native-webview@npm:11.26.1" - dependencies: - escape-string-regexp: 2.0.0 - invariant: 2.2.4 - peerDependencies: - react: "*" - react-native: "*" - checksum: d2f95a89e944a2f1e8cf402e4e274f3568edae42e7ef190915e9fba8004a01d699c962459bdc9688c159060538e90aea3017cab24e6f4112021cbbc10ef57104 - languageName: node - linkType: hard - "react-refresh@npm:^0.14.2": version: 0.14.2 resolution: "react-refresh@npm:0.14.2" @@ -24050,7 +23974,7 @@ __metadata: languageName: node linkType: hard -"rollup-plugin-visualizer@npm:^5.12.0, rollup-plugin-visualizer@npm:^5.5.4, rollup-plugin-visualizer@npm:^5.9.2": +"rollup-plugin-visualizer@npm:^5.12.0, rollup-plugin-visualizer@npm:^5.5.4": version: 5.12.0 resolution: "rollup-plugin-visualizer@npm:5.12.0" dependencies: @@ -24387,18 +24311,6 @@ __metadata: languageName: node linkType: hard -"secp256k1@npm:^5.0.0": - version: 5.0.0 - resolution: "secp256k1@npm:5.0.0" - dependencies: - elliptic: ^6.5.4 - node-addon-api: ^5.0.0 - node-gyp: latest - node-gyp-build: ^4.2.0 - checksum: a0719dff4687c38d385b5e0b7e811c51a4ea24893128be9d097aee99f879eb0ea52582590deb15a49da627a3db23c6b028ad5c9c6ac1fca92ce760153b8cf21c - languageName: node - linkType: hard - "secure-json-parse@npm:^2.4.0": version: 2.7.0 resolution: "secure-json-parse@npm:2.7.0" @@ -24869,9 +24781,9 @@ __metadata: tsx: ^4.12.0 typescript: 5.2.x typescript-plugin-styled-components: 3.0.0 - viem: 2.21.4 + viem: ^2.21.55 vitest: ^1.2.2 - wagmi: 2.12.9 + wagmi: ^2.14.1 languageName: unknown linkType: soft @@ -26236,7 +26148,7 @@ __metadata: languageName: node linkType: hard -"tslib@npm:^2.0.1": +"tslib@npm:^2.0.1, tslib@npm:^2.6.0": version: 2.8.1 resolution: "tslib@npm:2.8.1" checksum: e4aba30e632b8c8902b47587fd13345e2827fa639e7c3121074d5ee0880723282411a8838f830b55100cbe4517672f84a2472667d355b81e8af165a55dc6203a @@ -27257,37 +27169,37 @@ __metadata: languageName: node linkType: hard -"viem@npm:2.21.4": - version: 2.21.4 - resolution: "viem@npm:2.21.4" +"viem@npm:^2.1.1": + version: 2.21.45 + resolution: "viem@npm:2.21.45" dependencies: - "@adraffy/ens-normalize": 1.10.0 - "@noble/curves": 1.4.0 - "@noble/hashes": 1.4.0 - "@scure/bip32": 1.4.0 + "@noble/curves": 1.6.0 + "@noble/hashes": 1.5.0 + "@scure/bip32": 1.5.0 "@scure/bip39": 1.4.0 - abitype: 1.0.5 - isows: 1.0.4 - webauthn-p256: 0.0.5 - ws: 8.17.1 + abitype: 1.0.6 + isows: 1.0.6 + ox: 0.1.2 + webauthn-p256: 0.0.10 + ws: 8.18.0 peerDependencies: typescript: ">=5.0.4" peerDependenciesMeta: typescript: optional: true - checksum: b322e0e476d672852b28270bf00f15ed1572ab3d8ce5e7087e5708fbf0bb293a8da38ffd401c48b82df24cbe8a601ba142f087c803dce147763ed16fb992eafd + checksum: 1873d32a4a1b86830344ce348501783e35351c7d0fb2e16c1219df3dbd206a916ac174a23d7ef6aca9878e2d9afa42dceafc8ad8c6f69527a0065814be9a2a9d languageName: node linkType: hard -"viem@npm:^2.1.1": - version: 2.21.45 - resolution: "viem@npm:2.21.45" +"viem@npm:^2.21.55": + version: 2.21.55 + resolution: "viem@npm:2.21.55" dependencies: - "@noble/curves": 1.6.0 - "@noble/hashes": 1.5.0 - "@scure/bip32": 1.5.0 - "@scure/bip39": 1.4.0 - abitype: 1.0.6 + "@noble/curves": 1.7.0 + "@noble/hashes": 1.6.1 + "@scure/bip32": 1.6.0 + "@scure/bip39": 1.5.0 + abitype: 1.0.7 isows: 1.0.6 ox: 0.1.2 webauthn-p256: 0.0.10 @@ -27297,7 +27209,7 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 1873d32a4a1b86830344ce348501783e35351c7d0fb2e16c1219df3dbd206a916ac174a23d7ef6aca9878e2d9afa42dceafc8ad8c6f69527a0065814be9a2a9d + checksum: db937a33071f744951edf98f31f9c25e71ebce07bb620389980cd4c921f310b808ec87d132c23e022b5576b943c359dde65cbba5b9ab8d63c27ad8a6cba877dd languageName: node linkType: hard @@ -27764,12 +27676,12 @@ __metadata: languageName: node linkType: hard -"wagmi@npm:2.12.9": - version: 2.12.9 - resolution: "wagmi@npm:2.12.9" +"wagmi@npm:^2.14.1": + version: 2.14.1 + resolution: "wagmi@npm:2.14.1" dependencies: - "@wagmi/connectors": 5.1.9 - "@wagmi/core": 2.13.4 + "@wagmi/connectors": 5.6.1 + "@wagmi/core": 2.16.0 use-sync-external-store: 1.2.0 peerDependencies: "@tanstack/react-query": ">=5.0.0" @@ -27779,7 +27691,7 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 978a280a079640169abb161f6f3285d3a402bcff512e3b04ad68a321e0e8fb7e8c5bbee601205be71277e64730b40bed2eca5caeb887d14a8d3ceb44982dda69 + checksum: 00d2e4c315f7cf631dc7b7fddeddfdc0e43fd091063d91fb1e527dcd92de94de49b1ffd7021fa69f75744a3e8bc754158b9f663511fa398f586fda195b6c67a2 languageName: node linkType: hard @@ -27875,16 +27787,6 @@ __metadata: languageName: node linkType: hard -"webauthn-p256@npm:0.0.5": - version: 0.0.5 - resolution: "webauthn-p256@npm:0.0.5" - dependencies: - "@noble/curves": ^1.4.0 - "@noble/hashes": ^1.4.0 - checksum: 2837188d1e6d947c87c5728374fb6aec96387cb766f78e7a04d5903774264feb278d68a639748f09997f591e5278796c662bb5c4e8b8286b0f22254694023584 - languageName: node - linkType: hard - "webextension-polyfill@npm:>=0.10.0 <1.0": version: 0.12.0 resolution: "webextension-polyfill@npm:0.12.0" @@ -28250,9 +28152,9 @@ __metadata: languageName: node linkType: hard -"ws@npm:8.17.1, ws@npm:^8.11.0, ws@npm:^8.5.0, ws@npm:~8.17.1": - version: 8.17.1 - resolution: "ws@npm:8.17.1" +"ws@npm:8.18.0, ws@npm:^8.18.0, ws@npm:^8.2.3": + version: 8.18.0 + resolution: "ws@npm:8.18.0" peerDependencies: bufferutil: ^4.0.1 utf-8-validate: ">=5.0.2" @@ -28261,37 +28163,37 @@ __metadata: optional: true utf-8-validate: optional: true - checksum: 442badcce1f1178ec87a0b5372ae2e9771e07c4929a3180321901f226127f252441e8689d765aa5cfba5f50ac60dd830954afc5aeae81609aefa11d3ddf5cecf + checksum: 91d4d35bc99ff6df483bdf029b9ea4bfd7af1f16fc91231a96777a63d263e1eabf486e13a2353970efc534f9faa43bdbf9ee76525af22f4752cbc5ebda333975 languageName: node linkType: hard -"ws@npm:8.18.0, ws@npm:^8.18.0, ws@npm:^8.2.3": - version: 8.18.0 - resolution: "ws@npm:8.18.0" +"ws@npm:^7, ws@npm:^7.4.5, ws@npm:^7.5.1, ws@npm:^7.5.10": + version: 7.5.10 + resolution: "ws@npm:7.5.10" peerDependencies: bufferutil: ^4.0.1 - utf-8-validate: ">=5.0.2" + utf-8-validate: ^5.0.2 peerDependenciesMeta: bufferutil: optional: true utf-8-validate: optional: true - checksum: 91d4d35bc99ff6df483bdf029b9ea4bfd7af1f16fc91231a96777a63d263e1eabf486e13a2353970efc534f9faa43bdbf9ee76525af22f4752cbc5ebda333975 + checksum: f9bb062abf54cc8f02d94ca86dcd349c3945d63851f5d07a3a61c2fcb755b15a88e943a63cf580cbdb5b74436d67ef6b67f745b8f7c0814e411379138e1863cb languageName: node linkType: hard -"ws@npm:^7, ws@npm:^7.4.5, ws@npm:^7.5.1, ws@npm:^7.5.10": - version: 7.5.10 - resolution: "ws@npm:7.5.10" +"ws@npm:^8.11.0, ws@npm:^8.5.0, ws@npm:~8.17.1": + version: 8.17.1 + resolution: "ws@npm:8.17.1" peerDependencies: bufferutil: ^4.0.1 - utf-8-validate: ^5.0.2 + utf-8-validate: ">=5.0.2" peerDependenciesMeta: bufferutil: optional: true utf-8-validate: optional: true - checksum: f9bb062abf54cc8f02d94ca86dcd349c3945d63851f5d07a3a61c2fcb755b15a88e943a63cf580cbdb5b74436d67ef6b67f745b8f7c0814e411379138e1863cb + checksum: 442badcce1f1178ec87a0b5372ae2e9771e07c4929a3180321901f226127f252441e8689d765aa5cfba5f50ac60dd830954afc5aeae81609aefa11d3ddf5cecf languageName: node linkType: hard @@ -28564,14 +28466,14 @@ __metadata: languageName: node linkType: hard -"zustand@npm:4.4.1": - version: 4.4.1 - resolution: "zustand@npm:4.4.1" +"zustand@npm:4.5.2": + version: 4.5.2 + resolution: "zustand@npm:4.5.2" dependencies: use-sync-external-store: 1.2.0 peerDependencies: "@types/react": ">=16.8" - immer: ">=9.0" + immer: ">=9.0.6" react: ">=16.8" peerDependenciesMeta: "@types/react": @@ -28580,19 +28482,18 @@ __metadata: optional: true react: optional: true - checksum: 80acd0fbf633782996642802c8692bbb80ae5c80a8dff4c501b88250acd5ccd468fbc6398bdce198475a25e3839c91385b81da921274f33ffb5c2d08c3eab400 + checksum: 160052a7faaefbaad1071e890a06e5d7a04f6ff6985def30a7b4471f4ddbdd1d30bb05b3688a2777cd0b717d1f0d98dad24883a5caa3deeb3afb4d83b6dabc55 languageName: node linkType: hard -"zustand@npm:4.5.2": - version: 4.5.2 - resolution: "zustand@npm:4.5.2" - dependencies: - use-sync-external-store: 1.2.0 +"zustand@npm:5.0.0": + version: 5.0.0 + resolution: "zustand@npm:5.0.0" peerDependencies: - "@types/react": ">=16.8" + "@types/react": ">=18.0.0" immer: ">=9.0.6" - react: ">=16.8" + react: ">=18.0.0" + use-sync-external-store: ">=1.2.0" peerDependenciesMeta: "@types/react": optional: true @@ -28600,6 +28501,8 @@ __metadata: optional: true react: optional: true - checksum: 160052a7faaefbaad1071e890a06e5d7a04f6ff6985def30a7b4471f4ddbdd1d30bb05b3688a2777cd0b717d1f0d98dad24883a5caa3deeb3afb4d83b6dabc55 + use-sync-external-store: + optional: true + checksum: dc7414de234f9d2c0afad472d6971e9ac32281292faa8ee0910521cad063f84eeeb6f792efab068d6750dab5854fb1a33ac6e9294b796925eb680a59fc1b42f9 languageName: node linkType: hard From 6cd3ad5a628bc3ec3c81cabdd71d02957f3766e5 Mon Sep 17 00:00:00 2001 From: plubber <51789398+ericHgorski@users.noreply.github.com> Date: Tue, 17 Dec 2024 15:13:41 -0500 Subject: [PATCH 07/24] [FRE-1332, FRE-1331] docs: enhance widget documentation with connected wallet functionality (#585) --- docs/widget/configuration.mdx | 88 +++++++++++++++++++++----------- docs/widget/connected-wallet.mdx | 43 ++++++++++++++++ 2 files changed, 100 insertions(+), 31 deletions(-) create mode 100644 docs/widget/connected-wallet.mdx diff --git a/docs/widget/configuration.mdx b/docs/widget/configuration.mdx index 3e39778b1..5a6dd2551 100644 --- a/docs/widget/configuration.mdx +++ b/docs/widget/configuration.mdx @@ -187,25 +187,33 @@ chainIdsToAffiliates: { } ``` -## Coming Soon - -The following props are in development and will be available soon. - ### `callbacks` Event handling functions. ```ts -onWalletConnected?: ({ walletName: string, chainId: string, address?: string }) => void; -onWalletDisconnected?: ({ chainType?: string }) => void; -onTransactionBroadcasted?: ({ txHash: string, chainId: string, explorerLink: string }) => void; -onTransactionComplete?: ({ txHash: string, chainId: string, explorerLink: string }) => void; -onTransactionFailed?: ({ error: string }) => void; -onValidateGasBalance?: (value: { - chainID?: string; - txIndex?: number; - status: "success" | "error" | "pending" | "completed" - }) => Promise; +onWalletConnected?: (params: { + walletName?: string; + chainIdToAddressMap: Record; + address?: string; +}) => void; + +onWalletDisconnected?: (params: { + walletName?: string; + chainType?: string; +}) => void; + +onTransactionBroadcasted?: (params: { + txHash: string; + chainId: string; + explorerLink?: string; +}) => void; +onTransactionComplete?: (params: { + txHash: string; + chainId: string; + explorerLink?: string; +}) => void; +onTransactionFailed?: (params: { error: Error }) => void; ``` - `onWalletConnected`: Called when a wallet is connected. @@ -213,27 +221,45 @@ onValidateGasBalance?: (value: { - `onTransactionBroadcasted`: Called when a transaction is broadcasted. This is called multiple times for multi-transaction routes. - `onTransactionComplete`: Triggered when a transaction is completed. - `onTransactionFailed`: Triggered when a transaction fails. -- `onValidateGasBalance`: Triggered when validating gas balance. -### `connectedWallet` +### `connectedAddresses` & `signers` + +If your application has already connected to a user's wallet (e.g., via MetaMask for EVM networks, Phantom for Solana, or Keplr for Cosmos), you **must provide both** the `connectedAddresses` and corresponding signer functions in order to enable the widget’s injected wallet functionality. +See an implementation example [here](https://github.com/skip-mev/skip-go/tree/staging/examples/nextjs/src/app/injected/page.tsx). -Inject your own wallet provider into the `Widget`. See an implementation example [here](https://github.com/skip-mev/skip-go/blob/3a7dcadde0eb0604c795b6a3bc857e6d2209b7a7/examples/nextjs/pages/inject-wallet.tsx#L73). `WalletClient` comes from the [`viem` package](https://viem.sh/docs/clients/wallet.html). `Adapter` comes from the [`@solana/wallet-adapter-base` package](https://solana.com/developers/cookbook/wallets/connect-wallet-react). And `OfflineSigner` comes from the [`@cosmjs` package](https://docs.keplr.app/api/cosmjs.html). -```ts -connectedWallet?: { - cosmos?: { - getAddress: (chainID: string) => Promise; - getSigner: (chainID: string) => Promise - }; - evm?: { - getAddress: (chainID: string) => Promise; - getSigner: (chainID: string) => Promise; - }; - svm?: { - getAddress: (chainID: string) => Promise; - getSigner: () => Promise; - }; +- **Type:** `Record` + +**Example:** +```typescript +const connectedAddresses: Record = { + "1": "0x123...abc", // Ethereum mainnet address + "cosmoshub-4": "cosmos1...", // Cosmos Hub address + "solana": "3n9...xyz", // Solana address + // ... add more chain IDs and addresses as needed }; ``` +### Signer Functions + +Each signer function below must be implemented to fully leverage the injected wallet capabilities: + +- **`getCosmosSigner(): Promise`** + Returns a Cosmos-compatible signer. + +- **`getEVMSigner(): Promise`** + Returns an EVM-compatible signer (e.g., from `viem`). + +- **`getSVMSigner(): Promise`** + Returns a Solana-compatible signer, such as a `PhantomWalletAdapter`. + +**Complete Example for injected wallet functionality:** +```jsx + +``` diff --git a/docs/widget/connected-wallet.mdx b/docs/widget/connected-wallet.mdx new file mode 100644 index 000000000..1e641b25b --- /dev/null +++ b/docs/widget/connected-wallet.mdx @@ -0,0 +1,43 @@ +--- +title: 'Connected Wallet' + +--- + +## Overview + +If your application has already connected to a user's wallet (e.g., via MetaMask for EVM networks, Phantom for Solana, or Keplr for Cosmos), you can provide this information directly to the Widget. By doing so, the Widget will: + +- Display and query balances for the user's already-connected wallet addresses for supported chains. +- Use the signer functions you provide to facilitate transactions, token swaps, or any operation that requires the user's signature. + +This eliminates the need for the user to perform a separate connection flow within the widget itself, improving their overall experience and reducing friction. + + +See a full code example [here](https://github.com/skip-mev/skip-go/tree/staging/examples/nextjs/src/app/injected/page.tsx). + + +## Key Props and Concepts + +### `connectedAddresses` + +The `connectedAddresses` prop is a map from chain IDs to addresses. This map tells the widget which addresses are currently connected and should be used for transactions. + +- **Type:** `Record` +- **Example:** + ```typescript + const accountMap: Record = { + "1": "0x123...abc", // Ethereum mainnet address + "solana": "3n9...xyz", // Solana address + "cosmoshub-4": "cosmos1...", // Cosmos Hub address + ... + }; + +### Signer Functions + +In addition to passing in `connectedAddresses`, you must also provide the widget with signer functions so it can sign and send transactions on behalf of the user. These functions vary by chain type and are provided as separate props: + +- `getCosmosSigner() => Promise` +- `getEVMSigner() => Promise` +- `getSVMSigner() => Promise` + +Each of these functions should return a signer (or signer-like interface) that the widget can use to create and broadcast transactions. From a1a3c12ceb3b1735076f7446381b1637db2bd3c7 Mon Sep 17 00:00:00 2001 From: Nur Fikri Date: Wed, 18 Dec 2024 03:16:11 +0700 Subject: [PATCH 08/24] Sync main to staging 18 dec (#587) --- examples/nextjs/CHANGELOG.md | 7 ++++++ examples/nextjs/package.json | 2 +- packages/client/CHANGELOG.md | 6 +++++ packages/client/package.json | 4 ++-- packages/client/src/codegen/chains.json | 2 +- packages/widget/CHANGELOG.md | 8 +++++++ packages/widget/package.json | 4 ++-- .../src/constants/cosmosChains/explorers.json | 2 +- .../src/constants/cosmosChains/mainnet.json | 2 +- .../src/constants/cosmosChains/testnet.json | 2 +- packages/widget/src/state/wallets.ts | 3 +-- yarn.lock | 22 +++++++++---------- 12 files changed, 42 insertions(+), 22 deletions(-) diff --git a/examples/nextjs/CHANGELOG.md b/examples/nextjs/CHANGELOG.md index 73da5e7a7..70b9b841d 100644 --- a/examples/nextjs/CHANGELOG.md +++ b/examples/nextjs/CHANGELOG.md @@ -1,5 +1,12 @@ # nextjs +## 0.1.27 + +### Patch Changes + +- Updated dependencies [6e9f9cc] + - @skip-go/widget@3.0.25 + ## 0.1.26 ### Patch Changes diff --git a/examples/nextjs/package.json b/examples/nextjs/package.json index a8c33405f..2a35124ba 100644 --- a/examples/nextjs/package.json +++ b/examples/nextjs/package.json @@ -1,6 +1,6 @@ { "name": "nextjs", - "version": "0.1.26", + "version": "0.1.27", "private": true, "scripts": { "dev": "next dev", diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index 4daeb2709..8e3f3082e 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -1,5 +1,11 @@ # @skip-go/client +## 0.15.6 + +### Patch Changes + +- 6e9f9cc: bump chain registry versions + ## 0.15.5 ### Patch Changes diff --git a/packages/client/package.json b/packages/client/package.json index d7492554c..a15917055 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,7 +1,7 @@ { "name": "@skip-go/client", "description": "JavaScript SDK for Skip Go API", - "version": "0.15.5", + "version": "0.15.6", "repository": "https://github.com/skip-mev/skip-go", "main": "dist/index.js", "types": "dist/index.d.ts", @@ -35,7 +35,7 @@ "@protobufs/gogoproto": "0.0.10", "@protobufs/google": "0.0.10", "@types/keccak": "3.0.4", - "chain-registry": "^1.69.58", + "chain-registry": "^1.69.65", "minimatch": "^9.0.3", "proxy-from-env": "^1.1.0", "vitest": "^1.2.2" diff --git a/packages/client/src/codegen/chains.json b/packages/client/src/codegen/chains.json index 0da96ab98..f77197fb0 100644 --- a/packages/client/src/codegen/chains.json +++ b/packages/client/src/codegen/chains.json @@ -1 +1 @@ -[{"chain_id":"aaronetwork","fees":{"fee_tokens":[{"denom":"uaaron","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://mainnet-rpc.aaronetwork.xyz","provider":"Aaron Network Foundation"},{"address":"https://aaronetwork_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"acre_9052-1","fees":{"fee_tokens":[{"denom":"aacre","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.acre.nodestake.top","provider":"nodestake"},{"address":"https://rpc-acre.synergynodes.com","provider":"Synergy Nodes"},{"address":"https://acrechain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.acre.tcnetwork.io","provider":"TC Network"},{"address":"https://mainnet-acre-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://acred-rpc.staketab.org:443","provider":"Staketab"}]}},{"chain_id":"agoric-3","fees":{"fee_tokens":[{"denom":"ubld","low_gas_price":0.03,"average_gas_price":0.05,"high_gas_price":0.07},{"denom":"uist","low_gas_price":0.0034,"average_gas_price":0.007,"high_gas_price":0.02}]},"apis":{"rpc":[{"address":"https://main.rpc.agoric.net:443"},{"address":"https://agoric-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.agoric.nodestake.top","provider":"NodeStake"},{"address":"https://agoric.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://agoric-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-agoric-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://agoric-rpc.0base.dev","provider":"0base.vc"},{"address":"https://agoric-rpc.stakeangle.com","provider":"StakeAngle"},{"address":"https://agoric-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc.agoric.stakewith.us","provider":"StakeWithUs"},{"address":"https://rpc-agoric-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://agoric-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.agoric.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"aioz_168-1","fees":{"fee_tokens":[{"denom":"attoaioz","fixed_min_gas_price":7000000000,"low_gas_price":7000000000,"average_gas_price":7000000000,"high_gas_price":10000000000}]},"apis":{"rpc":[{"address":"https://rpc-dataseed.aioz.network:443","provider":"AIOZ Network"}]}},{"chain_id":"akashnet-2","fees":{"fee_tokens":[{"denom":"uakt","fixed_min_gas_price":0.00025,"low_gas_price":0.00025,"average_gas_price":0.0025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://rpc.akash.forbole.com:443","provider":"forbole"},{"address":"https://rpc-akash.ecostake.com:443","provider":"ecostake"},{"address":"https://rpc.lavenderfive.com:443/akash","provider":"Lavender.Five Nodes"},{"address":"https://akash-rpc.polkachu.com","provider":"Polkachu"},{"address":"http://akash.c29r3.xyz:80/rpc","provider":"c29r3"},{"address":"https://akash-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://akash-mainnet-rpc.cosmonautstakes.com:443","provider":"Cosmonaut Stakes"},{"address":"https://akash-rpc.w3coins.io","provider":"w3coins"},{"address":"https://akash-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://akash.declab.pro:26601","provider":"Decloud Nodes Lab"},{"address":"https://rpc.akash.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"althea_258432-1","fees":{"fee_tokens":[{"denom":"aalthea","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":100000000000,"high_gas_price":300000000000}]},"apis":{"rpc":[{"address":"https://nodes.chandrastation.com/rpc/althea/","provider":"Chandra Station"},{"address":"https://althea.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/althea","provider":"Lavender.Five Nodes 🐝"}]}},{"chain_id":"andromeda-1","fees":{"fee_tokens":[{"denom":"uandr","low_gas_price":0.03,"average_gas_price":0.05,"high_gas_price":0.075}]},"apis":{"rpc":[{"address":"https://rpc.andromeda-1.andromeda.aviaone.com","provider":"AviaOne 🟒"},{"address":"https://andromeda.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://andromeda.rpc.nodex.one","provider":"nodex"},{"address":"https://andro.rpc.m.stavr.tech/","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/andromeda","provider":"Lavender.Five Nodes 🐝"},{"address":"https://andromeda-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://andromeda-rpc.stakerhouse.com:443","provider":"StakerHouse"},{"address":"https://andromeda-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://andromeda-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://andromeda.rpc.kjnodes.com","provider":"kjnodes.com πŸ¦„"},{"address":"andromeda-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"rpc-andromeda.blockval.io","provider":"Blockval"},{"address":"https://andromeda.rpc.liveraven.net","provider":"LiveRaveN"}]}},{"chain_id":"archway-1","fees":{"fee_tokens":[{"denom":"aarch","fixed_min_gas_price":140000000000,"low_gas_price":196000000000,"average_gas_price":225400000000,"high_gas_price":254800000000}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.archway.io","provider":"Archway Foundation"},{"address":"https://archway-mainnet-archive.allthatnode.com:26657","provider":"All That Node"},{"address":"https://m-archway.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc-1.archway.nodes.guru","provider":"Nodes.Guru"},{"address":"https://archway.rpc.silknodes.io/","provider":"Silk Nodes"},{"address":"https://archway.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-archway.cryptech.com.ua","provider":"cryptech"},{"address":"https://rpc.archway.nodestake.top","provider":"NodeStake"},{"address":"https://rpc-archway.theamsolutions.info","provider":"AM Solutions"},{"address":"https://archway-rpc.w3coins.io","provider":"w3coins"},{"address":"https://m-archway.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc.lavenderfive.com:443/archway","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-archway.mms.team","provider":"MMS"},{"address":"https://rpc-archway.mzonder.com","provider":"MZONDER"},{"address":"https://rpc.archway.lgns.net","provider":"Luganodes"},{"address":"https://archway-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://archway-rpc.0base.dev","provider":"0base.vc"},{"address":"https://archway-mainnet.rpc.l0vd.com","provider":"L0vd.com"},{"address":"https://archway-rpc.openbitlab.com","provider":"openbitlab"},{"address":"https://rpc-archway.mzonder.com","provider":"MZONDER"},{"address":"https://rpc-archway.mainnet.validatrium.club","provider":"Validatrium"},{"address":"https://rpc.archway.stakeup.tech","provider":"StakeUp"},{"address":"https://archway-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.archway.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc-archway.luckyfriday.io/","provider":"GlobalStake"},{"address":"https://archway-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://archway-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"arkh","fees":{"fee_tokens":[{"denom":"arkh","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://asc-dataseed.arkhadian.com/","provider":"arkhnetwork"},{"address":"https://arkh_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"mantle-1","fees":{"fee_tokens":[{"denom":"umntl","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.assetmantle.one","provider":"AssetMantle"},{"address":"https://assetmantle-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.assetmantle.nodestake.top","provider":"NodeStake"},{"address":"https://rpc-assetmantle-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.mantle.paranorm.pro:443","provider":"paranorm"},{"address":"https://assetmantle-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://assetmantle-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"atomone-1","fees":{"fee_tokens":[{"denom":"uatone","fixed_min_gas_price":0.001,"low_gas_price":0.006,"average_gas_price":0.006,"high_gas_price":0.009}]},"apis":{"rpc":[{"address":"https://atomone-rpc.allinbits.com:443","provider":"AllInBits"},{"address":"https://atomone-rpc.cogwheel.zone","provider":"Cogwheel βš™οΈ"},{"address":"https://atomone.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://rpc-atomone.nodeist.net","provider":"Nodeist"},{"address":"https://rpc-atomone-1.cros-nest.com:443","provider":"crosnest"},{"address":"https://community.nuxian-node.ch:6797/atomone/trpc","provider":"PRO Delegators"},{"address":"https://atomone-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://atomone_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://atomone-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://atomone-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"aura_6322-2","fees":{"fee_tokens":[{"denom":"uaura","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://rpc.aura.network/","provider":"Aura Network Foundation"},{"address":"https://m-aura.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://aura.rpc.m.stavr.tech:11047","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://aura-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://aura.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://mainnet-aura-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.lavenderfive.com:443/aura","provider":"Lavender.Five Nodes 🐝"},{"address":"https://aura-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc.aura.safeblock.space","provider":"Safe Block"},{"address":"https://rpc.aura.silentvalidator.com","provider":"silent"},{"address":"https://rpc-aura.mms.team","provider":"MMS"},{"address":"https://aura-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://aura-rpc.palamar.io","provider":"Palamar"},{"address":"https://aura.rpc.srv.stakr.space","provider":"STAKR.space"},{"address":"https://aura-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://aura-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"axelar-dojo-1","fees":{"fee_tokens":[{"denom":"uaxl","fixed_min_gas_price":0.007,"low_gas_price":0.007,"average_gas_price":0.007,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc-axelar.imperator.co:443","provider":"Imperator.co"},{"address":"https://axelar-rpc.quickapi.com:443","provider":"chainlayer"},{"address":"https://rpc-axelar.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://axelar-rpc.pops.one:443","provider":"p-ops"},{"address":"https://axelar-rpc.qubelabs.io:443","provider":"Qubelabs"},{"address":"https://rpc-1.axelar.nodes.guru:443","provider":"nodes.guru"},{"address":"https://rpc-axelar-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://axelar-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://axelar.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://rpc.axelar.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://axelar-rpc.validatrium.club","provider":"Validatrium"},{"address":"https://rpc-axelar.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://axelar-rpc.quantnode.tech/","provider":"QuantNode"},{"address":"https://axelar-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://axelar-rpc.rockrpc.net/","provider":"RockawayX Infra"},{"address":"https://axelar-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc-axelar-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://axelar-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://axelar-rpc.w3coins.io","provider":"w3coins"},{"address":"https://axelar-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://axelar.drpc.org","provider":"dRPC"}]}},{"chain_id":"laozi-mainnet","fees":{"fee_tokens":[{"denom":"uband","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.005}]},"apis":{"rpc":[{"address":"http://rpc.laozi1.bandchain.org:80","provider":"bandprotocol"},{"address":"https://rpc-bandchain-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://band-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://bandchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://band.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-band-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-band.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://band-rpc.w3coins.io","provider":"w3coins"},{"address":"https://bandprotocol-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://public.stakewolle.com/cosmos/bandchain/rpc","provider":"Stakewolle"},{"address":"https://rpc.band.bronbro.io/","provider":"Bro_n_Bro"},{"address":"https://rpc.band.roomit.xyz/","provider":"Roomit"},{"address":"https://band-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"beezee-1","fees":{"fee_tokens":[{"denom":"ubze","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.getbze.com","provider":"AlphaTeam"},{"address":"https://rpc-1.getbze.com","provider":"AlphaTeam"},{"address":"https://rpc-2.getbze.com","provider":"AlphaTeam"},{"address":"https://beezee_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bitbadges-1","fees":{"fee_tokens":[{"denom":"ubadge","fixed_min_gas_price":0,"low_gas_price":0.00025,"average_gas_price":0.0025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"http://134.122.12.165:26657","provider":"bitbadges"},{"address":"https://bitbadges_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bitcanna-1","fees":{"fee_tokens":[{"denom":"ubcna","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.bitcanna.io/","provider":"bitcanna"},{"address":"https://bcna-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://bitcanna-rpc.panthea.eu/","provider":"Panthea EU"},{"address":"https://rpc.bitcanna.sgtstake.com/","provider":"SGTstake"},{"address":"https://bitcanna.rpc.m.anode.team/","provider":"AlxVoy ⚑ ANODE.TEAM"},{"address":"https://bitcanna.rpc.m.stavr.tech/","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-bcna.kjinc.io/","provider":"KJINC.io"},{"address":"https://mainnet-bitcanna-rpc.konsortech.xyz/","provider":"KonsorTech"},{"address":"https://bitcanna.rpc.kjnodes.com/","provider":"kjnodes"},{"address":"https://bitcanna-rpc.genznodes.dev/","provider":"genznodes"},{"address":"https://rpc.bitcanna-1.bitcanna.aviaone.com/","provider":"AVIAONE 🟒"},{"address":"https://rpc.bitcanna-mainnet.hexnodes.one/","provider":"Hexnodes"},{"address":"https://rpc.bitcanna.citizenweb3.com/","provider":"Citizen Web3"},{"address":"https://bitcanna-mainnet.rpc.l0vd.com/","provider":"L0vd.com"},{"address":"https://bitcanna-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.bitcanna.safeblock.space","provider":"Safe Block"},{"address":"https://bitcanna.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://rpc.bitcanna.indonode.net/","provider":"Indonode"},{"address":"https://rpc-bitcanna.mms.team:443","provider":"MMS"},{"address":"https://bitcanna-rpc.validatornode.com","provider":"ValidatorNode"},{"address":"https://bitcanna.rpc.nodex.one","provider":"NodeX Emperor ⚑ Bitcanna"},{"address":"https://bcna.rpc.arcturian.tech/","provider":"Arcturian Tech"},{"address":"https://rpc.bitcanna.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://bitcanna-rpc.bluestake.net","provider":"BlueStake"},{"address":"https://rpc-bitcanna.cryptech.com.ua","provider":"CrypTech"},{"address":"https://bitcanna-rpc.kalia.network/","provider":"Kalia Network"},{"address":"https://bitcanna.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://bitcanna_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bitsong-2b","fees":{"fee_tokens":[{"denom":"ubtsg","fixed_min_gas_price":0,"low_gas_price":3,"average_gas_price":10,"high_gas_price":20}]},"apis":{"rpc":[{"address":"https://rpc-bitsong-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.explorebitsong.com","provider":"stake.systems"},{"address":"https://bitsong-rpc.validatrium.club","provider":"Validatrium"},{"address":"https://rpc.bitsong.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.bitsong.quokkastake.io","provider":"🐹 Quokka Stake"},{"address":"https://rpc-bitsong.starsquid.io","provider":"Starsquid"},{"address":"https://rpc-bitsong.architectnodes.com","provider":"Architect Nodes"},{"address":"http://bitsong.statesync.nodersteam.com:11657","provider":"[NODERS]TEAM"},{"address":"https://rpc.bitsong.safeblock.space","provider":"Safe Block"},{"address":"https://bitsong.tdrsys.com:2053","provider":"TdrSys"},{"address":"https://bitsong-rpc.panthea.eu","provider":"Panthea EU"},{"address":"https://rpc.bitsong.mathnodes.com","provider":"MathNodes"},{"address":"https://bitsong-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://bitsong-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://bitsong.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"blockx_19191-1","apis":{"rpc":[{"address":"https://rpc-blockx.nodeist.net","provider":"Nodeist"},{"address":"https://blockx_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bluechip-2","fees":{"fee_tokens":[{"denom":"ubluechip","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[]}},{"chain_id":"bluzelle-9","fees":{"fee_tokens":[{"denom":"ubnt","fixed_min_gas_price":0.002,"low_gas_price":0.002,"average_gas_price":0.002,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://a.client.sentry.net.bluzelle.com:26657","provider":"Bluzelle"},{"address":"https://b.client.sentry.net.bluzelle.com:26657","provider":"Bluzelle"},{"address":"https://c.client.sentry.net.bluzelle.com:26657","provider":"Bluzelle"},{"address":"https://bluzelle_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bostrom","fees":{"fee_tokens":[{"denom":"boot","low_gas_price":0,"average_gas_price":0,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.bostrom.cybernode.ai","provider":"cybercongress"},{"address":"https://rpc-cyber-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.cyber.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"bouachain","fees":{"fee_tokens":[{"denom":"ubouacoin","fixed_min_gas_price":0,"low_gas_price":0.0006,"average_gas_price":0.012,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.bouachain.com","provider":"BouaValidator"}]}},{"chain_id":"canto_7700-1","fees":{"fee_tokens":[{"denom":"acanto","fixed_min_gas_price":1000000000000,"low_gas_price":1000000000000,"average_gas_price":2000000000000,"high_gas_price":3000000000000}]},"apis":{"rpc":[{"address":"https://rpc.canto.nodestake.top","provider":"NodeStake"},{"address":"https://canto-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.canto.silentvalidator.com/","provider":"silent"},{"address":"https://canto.gravitychain.io:26657","provider":"Althea"},{"address":"https://canto-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-canto.kewrnode.com","provider":"Kewr Node"}]}},{"chain_id":"carbon-1","fees":{"fee_tokens":[{"denom":"swth","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1,"high_gas_price":1,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"usc","fixed_min_gas_price":0,"low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.0001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"bnb.1.6.773edb","fixed_min_gas_price":0,"low_gas_price":1000000,"average_gas_price":1000000,"high_gas_price":1000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"bneo.1.14.e2e5f6","fixed_min_gas_price":0,"low_gas_price":0.0015,"average_gas_price":0.0015,"high_gas_price":0.0015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"busd.1.6.754a80","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"cglp.1.19.1698d3","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"cgt/1","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"eth.1.19.c3b805","fixed_min_gas_price":0,"low_gas_price":100000,"average_gas_price":100000,"high_gas_price":100000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"eth.1.2.942d87","fixed_min_gas_price":0,"low_gas_price":100000,"average_gas_price":100000,"high_gas_price":100000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C","fixed_min_gas_price":0,"low_gas_price":0.0035,"average_gas_price":0.0035,"high_gas_price":0.0035,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","fixed_min_gas_price":0,"low_gas_price":0.0000075,"average_gas_price":0.0000075,"high_gas_price":0.0000075,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5","fixed_min_gas_price":0,"low_gas_price":0.00005,"average_gas_price":0.00005,"high_gas_price":0.00005,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5","fixed_min_gas_price":0,"low_gas_price":0.00032,"average_gas_price":0.00032,"high_gas_price":0.00032,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364","fixed_min_gas_price":0,"low_gas_price":300000000,"average_gas_price":300000000,"high_gas_price":300000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118","fixed_min_gas_price":0,"low_gas_price":0.0006,"average_gas_price":0.0006,"high_gas_price":0.0006,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5","fixed_min_gas_price":0,"low_gas_price":0.00015,"average_gas_price":0.00015,"high_gas_price":0.00015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","fixed_min_gas_price":0,"low_gas_price":0.0000075,"average_gas_price":0.0000075,"high_gas_price":0.0000075,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93","fixed_min_gas_price":0,"low_gas_price":0.00015,"average_gas_price":0.00015,"high_gas_price":0.00015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861","fixed_min_gas_price":0,"low_gas_price":200000000,"average_gas_price":200000000,"high_gas_price":200000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701","fixed_min_gas_price":0,"low_gas_price":0.00001,"average_gas_price":0.00001,"high_gas_price":0.00001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C","fixed_min_gas_price":0,"low_gas_price":0.00001,"average_gas_price":0.00001,"high_gas_price":0.00001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","fixed_min_gas_price":0,"low_gas_price":0.00015,"average_gas_price":0.00015,"high_gas_price":0.00015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"usdc.1.2.343151","fixed_min_gas_price":0,"low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.0001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"usdc.1.6.53ff75","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"zil.1.18.1a4a06","fixed_min_gas_price":0,"low_gas_price":6000,"average_gas_price":6000,"high_gas_price":6000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}}]},"apis":{"rpc":[{"address":"https://tm-api.carbon.network","provider":"switcheo-labs"},{"address":"https://rpc.lavenderfive.com:443/carbon","provider":"Lavender.Five Nodes 🐝"},{"address":"https://carbon-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.carbon.blockhunters.org","provider":"BlockHunters"}]}},{"chain_id":"celestia","fees":{"fee_tokens":[{"denom":"utia","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://public-celestia-rpc.numia.xyz","provider":"Numia"},{"address":"https://celestia-rpc.mesa.newmetric.xyz","provider":"Newmetric"},{"address":"https://rpc.lunaroasis.net","provider":"Lunar Oasis"},{"address":"https://rpc.celestia.nodestake.top","provider":"NodeStake"},{"address":"https://rpc.lavenderfive.com:443/celestia","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-celestia-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-celestia.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"http://celestia.rpc.nodersteam.com:29657","provider":"[NODERS]TEAM"},{"address":"https://celestia.rpc.interchain.validao.xyz","provider":"ValiDAO"},{"address":"https://celestia-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://celestia.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://celestia.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://celestia-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-celestia.mzonder.com","provider":"MZONDER"},{"address":"https://celestia-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://rpc-celestia.theamsolutions.info","provider":"AM Solutions"},{"address":"https://celestia-mainnet-rpc.autostake.com:443","provider":"AutoStake | Delegate for StakeDrops"},{"address":"https://rpc.celestia.validatus.com","provider":"Validatus"},{"address":"https://celestia-rpc.sr20de.xyz","provider":"Sr20de"},{"address":"https://rpc-celestia-full.avril14th.org","provider":"Avril 14th"},{"address":"https://rpc.freshstaking.com/celestia","provider":"FreshSTAKING"},{"address":"https://celestia.cumulo.org.es/","provider":"Cumulo"},{"address":"https://celestia-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.celestia-app.bronbro.io","provider":"Bro_n_Bro"},{"address":"https://celestia-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc.celestia.citizenweb3.com","provider":"Citizen Web3"},{"address":"https://celestia-mainnet-rpc.itrocket.net","provider":"πŸš€ itrocket πŸš€"},{"address":"https://rpc.celestia.mainnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://celestia-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"}]}},{"chain_id":"perun-1","fees":{"fee_tokens":[{"denom":"uc4e","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.c4e.io/","provider":"C4E"},{"address":"https://rpc.c4e.mainnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://rpc.c4e.nodestake.top","provider":"NodeStake"},{"address":"https://c4e.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://chain4energy-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://c4e.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-c4e.takeshi.team","provider":"TAKESHI"},{"address":"https://rpc-c4e.mzonder.com","provider":"MZONDER"},{"address":"https://rpc.cros-nest.com/chain4energy","provider":"Crosnest"},{"address":"https://rpc.c4e.indonode.net","provider":"Indonode"},{"address":"https://c4e-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.c4e.silentvalidator.com","provider":"silent"},{"address":"http://rpc.c4e.stakeup.tech","provider":"StakeUp"},{"address":"https://chain4energy-rpc.stakeangle.com","provider":"StakeAngle"},{"address":"https://c4e-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://rpc-c4e.theamsolutions.info","provider":"AM Solutions"},{"address":"https://c4e.rpc.m.anode.team","provider":"AlxVoy ⚑ ANODE.TEAM"},{"address":"http://185.245.182.192:46657","provider":"Meerlabs"},{"address":"http://89.117.58.109:26657","provider":"medes"},{"address":"http://c4e.rpc.node75.org:26957","provider":"Pro-nodes75"},{"address":"http://164.68.125.243:26657","provider":"Smt Network"},{"address":"https://c4e-rpc.antrixy.org/","provider":"Antrix Validators"},{"address":"https://c4e.doubletop.tech/","provider":"DOUBLETOP"},{"address":"https://c4e-rpc.kalia.network:443","provider":"Kalia Network"},{"address":"http://38.242.220.64:16657","provider":"mahof"},{"address":"http://209.182.239.169:46657","provider":"SECARD"},{"address":"https://rpc.c4e.validatus.com:443","provider":"Validatus"},{"address":"https://rpc-m-c4e.apeironnodes.com:443","provider":"Apeiron Nodes"},{"address":"http://rpc-c4e.cryptech.com.ua:443","provider":"Cryptech"},{"address":"http://37.60.240.43:46657","provider":"NakoTurk"},{"address":"https://chain4energy_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"cheqd-mainnet-1","fees":{"fee_tokens":[{"denom":"ncheq","fixed_min_gas_price":25,"low_gas_price":50,"average_gas_price":75,"high_gas_price":100}]},"apis":{"rpc":[{"address":"https://rpc.cheqd.net","provider":"cheqd"},{"address":"https://rpc.lavenderfive.com:443/cheqd","provider":"Lavender.Five Nodes"},{"address":"https://cheqd.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-cheqd-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.cheqd.nodestake.top","provider":"NodeStake"},{"address":"https://rpc-cheqd.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://cheqd-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-cheqd.blockval.io","provider":"Blockval"},{"address":"https://public.stakewolle.com/cosmos/cheqd/rpc","provider":"Stakewolle"},{"address":"https://cheq-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://cheqd-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"chihuahua-1","fees":{"fee_tokens":[{"denom":"uhuahua","fixed_min_gas_price":0,"low_gas_price":500,"average_gas_price":1250,"high_gas_price":2000}]},"apis":{"rpc":[{"address":"https://rpc.chihuahua.wtf","provider":"Chihuahua"},{"address":"https://rpc-chihuahua.ecostake.com","provider":"ecostake"},{"address":"https://chihua.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://chihuahua-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-chihuahua-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/chihuahua","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.huahua.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://chihuahua-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://rpc-chihuahua.pupmos.network","provider":"PUPMØS"},{"address":"https://chihuahua-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://chihuahua-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.chihuahua.validatus.com","provider":"Validatus"},{"address":"https://chihuahua-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://chihuahua.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"}]}},{"chain_id":"chimba","fees":{"fee_tokens":[{"denom":"ucmba","fixed_min_gas_price":0.25,"low_gas_price":1,"average_gas_price":5,"high_gas_price":10}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.chimba.ooo","provider":"chimba"}]}},{"chain_id":"cifer-2","fees":{"fee_tokens":[{"denom":"ucif","fixed_min_gas_price":0.0025,"low_gas_price":1,"average_gas_price":5,"high_gas_price":10}]},"apis":{"rpc":[{"address":"http://34.128.114.243:26657","provider":"Cifer"}]}},{"chain_id":"cnho_stables-1","fees":{"fee_tokens":[{"denom":"ucnho","fixed_min_gas_price":0.000005,"low_gas_price":0.000001,"average_gas_price":0.00001,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://rpc.cnho.io","provider":"CNHO Stables"},{"address":"https://cnhostables_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"comdex-1","fees":{"fee_tokens":[{"denom":"ucmdx","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.comdex.one","provider":"comdex"},{"address":"https://comdex-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://comdex.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.comdex.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.lavenderfive.com:443/comdex","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-comdex.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://comdex-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://comdex-rpc.w3coins.io","provider":"w3coins"},{"address":"https://comdex-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://comdex-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-comdex-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://comdex-rpc.validatornode.com","provider":"ValidatorNode"},{"address":"https://rpc-comdex.blockval.io","provider":"Blockval"},{"address":"https://comdex-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://comdex-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"commercio-3","fees":{"fee_tokens":[{"denom":"ucommercio"}]},"apis":{"rpc":[{"address":"https://rpc-mainnet.commercio.network"}]}},{"chain_id":"centauri-1","fees":{"fee_tokens":[{"denom":"ppica","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-composable-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://composable-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://picasso-rpc.cogwheel.zone:443","provider":"Cogwheel βš™οΈ"},{"address":"https://rpc.lavenderfive.com:443/picasso","provider":"Lavender.Five Nodes 🐝"},{"address":"https://composable-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://picasso-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://composable.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://picasso-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.centauri.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://composable.rpc.moonbridge.team","provider":"Moonbridge"},{"address":"https://rpc.composable.citizenweb3.com:443","provider":"Citizen Web3"},{"address":"https://composable.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"cvn_2032-1","fees":{"fee_tokens":[{"denom":"acvnt","fixed_min_gas_price":100000000,"low_gas_price":100000000,"average_gas_price":200000000,"high_gas_price":300000000}]},"apis":{"rpc":[{"address":"https://rpc.cvn.io/","provider":"cvn.io"},{"address":"https://conscious_mainnet_rpc.chain.whenmoonwhenlambo.money/","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"coreum-mainnet-1","fees":{"fee_tokens":[{"denom":"ucore","fixed_min_gas_price":0.03125,"low_gas_price":0.0625,"average_gas_price":0.0625,"high_gas_price":62.5}]},"apis":{"rpc":[{"address":"https://full-node.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-californium.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-curium.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-uranium.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://rpc-coreum.ecostake.com","provider":"ecostake"},{"address":"https://coreum.rpc.silknodes.io","provider":"Silk Nodes"},{"address":"https://coreum-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.m.core.solonation.io","provider":"#SoloNation"},{"address":"https://coreum-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://coreum-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://public.stakewolle.com/cosmos/coreum/rpc","provider":"Stakewolle"},{"address":"https://coreum-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"cosmoshub-4","fees":{"fee_tokens":[{"denom":"uatom","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://cosmoshub.tendermintrpc.lava.build:443","provider":"Lava"},{"address":"https://cosmos-rpc.quickapi.com:443","provider":"Chainlayer"},{"address":"https://cosmos-rpc.onivalidator.com","provider":"Oni Validator ⛩️"},{"address":"https://rpc-cosmoshub.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc.lavenderfive.com:443/cosmoshub","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-cosmoshub.ecostake.com","provider":"ecostake"},{"address":"https://go.getblock.io/17515cb3ec0e43b7817f182e5de6066a","provider":"GetBlock RPC Nodes"},{"address":"https://rpc-cosmoshub.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-cosmoshub.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://cosmos-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://cosmos-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-cosmoshub-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-cosmoshub.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc.cosmos.dragonstake.io","provider":"DragonStake"},{"address":"https://cosmoshub.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://rpc.cosmos.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://cosmos-rpc.rockrpc.net","provider":"RockawayX Infra"},{"address":"http://rpc-cosmoshub.freshstaking.com:26657","provider":"FreshSTAKING"},{"address":"https://cosmos-rpc.easy2stake.com/","provider":"Easy 2 Stake"},{"address":"https://rpc.cosmos.nodestake.top","provider":"NodeStake"},{"address":"https://cosmos.rpc.silknodes.io","provider":"Silk Nodes"},{"address":"https://cosmos-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://cosmoshub.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.cosmoshub.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://rpc-cosmos-hub-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://cosmos-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-cosmoshub.mms.team","provider":"MMS"},{"address":"https://cosmos-rpc.tienthuattoan.com","provider":"TTT πŸ‡»πŸ‡³"},{"address":"https://community.nuxian-node.ch:6797/gaia/trpc","provider":"PRO Delegators"},{"address":"https://cosmos-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://cosmoshub-rpc.cosmosrescue.dev","provider":"cosmosrescue"},{"address":"https://cosmos.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"},{"address":"https://public.stakewolle.com/cosmos/cosmoshub/rpc","provider":"Stakewolle"},{"address":"https://rpc-cosmos.kewrnode.com","provider":"Kewr Node"},{"address":"https://rpc.cosmoshub-4.citizenweb3.com","provider":"Citizen Web3"},{"address":"https://cosmos-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://cosmos-hub.drpc.org","provider":"dRPC"},{"address":"https://cosmoshub-mainnet-rpc.itrocket.net","provider":"ITRocket"},{"address":"https://cosmoshub.rpc.quasarstaking.ai","provider":"Quasar"}]}},{"chain_id":"coss-1","fees":{"fee_tokens":[{"denom":"ucoss","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"ucgas","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"ucias","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://coss-rpc.coss.ink","provider":"StellarGuardian"},{"address":"https://coss-rpc.cias.network","provider":"CelestialPhoenix"}]}},{"chain_id":"crescent-1","fees":{"fee_tokens":[{"denom":"ucre","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://mainnet.crescent.network:26657","provider":"crescent"},{"address":"https://crescent-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-crescent.pupmos.network","provider":"PUPMØS"},{"address":"https://crescent.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://crescent-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-crescent.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://rpc-crescent-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://crescent-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc.crescent.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"cronosmainnet_25-1","fees":{"fee_tokens":[{"denom":"basecro"}]},"apis":{"rpc":[{"address":"https://rpc.cronos.org/","provider":"cronos.org"},{"address":"https://cronos-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://cronos.drpc.org","provider":"dRPC"}]}},{"chain_id":"crypto-org-chain-mainnet-1","fees":{"fee_tokens":[{"denom":"basecro","low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.crypto.org/","provider":"cronos.org"},{"address":"https://rpc-cryptoorgchain-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-cryptoorgchain.ecostake.com","provider":"ecostake"},{"address":"https://cryptocom-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://cryptocom-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-cryptoorg.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://cro-chain-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"mainnet-3","fees":{"fee_tokens":[{"denom":"udec","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://poseidon.mainnet.decentr.xyz","provider":"decentr"},{"address":"https://rpc.decentr.chaintools.tech/","provider":"ChainTools"},{"address":"https://decentr.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://decentr-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc-dcntr.nodine.id/","provider":"Nodine.ID"},{"address":"https://rpc-decentr.mms.team/","provider":"MMS"}]}},{"chain_id":"desmos-mainnet","fees":{"fee_tokens":[{"denom":"udsm","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.03,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.desmos.network","provider":"desmos"},{"address":"https://desmos-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://desmos-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc.desmos.tcnetwork.io","provider":"TC Network"},{"address":"https://rpc.desmos.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://desmos.declab.pro:26613","provider":"Decloud Nodes Lab"},{"address":"https://desmos-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"dhealth","fees":{"fee_tokens":[{"denom":"udhp","fixed_min_gas_price":0.01,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc.dhealth.com","provider":"dhealth"},{"address":"https://rpc.dhealth.nodestake.org","provider":"NodeStake"},{"address":"https://dhealth.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"}]}},{"chain_id":"vota-ash","fees":{"fee_tokens":[{"denom":"peaka","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":100000000000,"high_gas_price":100000000000}]},"apis":{"rpc":[{"address":"https://vota-rpc.dorafactory.org/","provider":"dorafactory"},{"address":"https://m-dora.rpc.utsa.tech","provider":"lesnik | UTSA"},{"address":"https://dora-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://doravota-mainnet-rpc.itrocket.net:443","provider":"ITRocket"}]}},{"chain_id":"dungeon-1","fees":{"fee_tokens":[{"denom":"udgn","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://rpc-dungeon-1.seraphim.zone","provider":"Seraphim"},{"address":"https://rpc-dungeonchain.apeironnodes.com","provider":"ApeironNodes"},{"address":"https://rpc-archive-dungeonchain.apeironnodes.com","provider":"ApeironNodes (Archive)"},{"address":"https://dungeon_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"dydx-mainnet-1","fees":{"fee_tokens":[{"denom":"adydx","fixed_min_gas_price":12500000000,"low_gas_price":12500000000,"average_gas_price":12500000000,"high_gas_price":20000000000},{"denom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://dydx-rpc.kingnodes.com:443","provider":"Kingnodes πŸ‘‘"},{"address":"https://dydx-dao-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://dydx-mainnet-full-rpc.public.blastapi.io","provider":"Bware Labs"},{"address":"https://rpc.lavenderfive.com:443/dydx","provider":"Lavender.Five Nodes 🐝"},{"address":"https://dydx-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-dydx.ecostake.com:443","provider":"ecostake"},{"address":"https://rpc.dydx.nodestake.top:443","provider":"NodeStake"},{"address":"https://rpc-dydx.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://dydx-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-dydx.cros-nest.com:443","provider":"Crosnest"},{"address":"https://dydx-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://community.nuxian-node.ch:6797/dydx/trpc","provider":"PRO Delegators"},{"address":"https://dydx-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://dydx.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"}]}},{"chain_id":"dymension_1100-1","fees":{"fee_tokens":[{"denom":"adym","fixed_min_gas_price":5000000000,"low_gas_price":5000000000,"average_gas_price":5000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://dym-m-rpc.agoranodes.com","provider":"AgoraNodes"},{"address":"https://rpc.dymension.nodestake.org","provider":"NodeStake"},{"address":"http://dymension.mainnet.rpc.noders.team:42657","provider":"[NODERS]TEAM"},{"address":"https://dymension-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.lavenderfive.com:443/dymension","provider":"Lavender.Five Nodes 🐝"},{"address":"https://dymension-rpc.kynraze.com","provider":"Kynraze"},{"address":"https://m-dymension.rpc.utsa.tech","provider":"lesnik | UTSA"},{"address":"https://rpc-dymension.nodeist.net","provider":"Nodeist"},{"address":"https://dym.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://dym.rpc-archive.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.dymension.hexnodes.co","provider":"Hexnodes"},{"address":"https://dymension.rpc.kjnodes.com:443","provider":"kjnodes.com πŸ¦„"},{"address":"https://dymension-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://dymension-rpc.takeshi.team","provider":"TAKESHI"},{"address":"https://dymension-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.dymension.silentvalidator.com:443","provider":"silent"},{"address":"https://rpc-dymension.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://community.nuxian-node.ch:6797/dymension/trpc","provider":"PRO Delegators"},{"address":"https://dymension-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://dymension-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://dymension.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://rpc-dymension.hoodrun.io:443","provider":"HoodRun"},{"address":"https://dymension.0xwave.com:2053","provider":"Wave"},{"address":"https://archive.rpc.dym.cumulo.com.es:443","provider":"Cumulo"},{"address":"https://rpc.dymension.posthuman.digital","provider":"posthuman"},{"address":"https://rpc.dymension.node75.org","provider":"Pro-Nodes75"},{"address":"https://rpc.dymension.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://dymension-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc.mainnet.dymension.aviaone.com","provider":"AVIAONE 🟒"},{"address":"https://rpc.archive.dymension.mainnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://dymension.drpc.org","provider":"dRPC"}]}},{"chain_id":"dyson-mainnet-01","fees":{"fee_tokens":[{"denom":"dys","low_gas_price":0.0001,"average_gas_price":0.0002,"high_gas_price":0.0003}]},"apis":{"rpc":[{"address":"https://dys-tm.dysonprotocol.com:443","provider":"dysonprotocol"},{"address":"https://dyson-rpc.cogwheel.zone:443","provider":"cogwheel"}]}},{"chain_id":"echelon_3000-3","fees":{"fee_tokens":[{"denom":"aechelon","low_gas_price":10000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://ech01trpc.mindheartsoul.org","provider":"Mind Heart Soul"},{"address":"https://rpc.echjoker.lol","provider":"⚑ Echelon Joker βš› πŸƒ"}]}},{"chain_id":"emoney-3","fees":{"fee_tokens":[{"denom":"ungm","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"eeur","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"echf","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"enok","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"esek","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"edkk","low_gas_price":1,"average_gas_price":1,"high_gas_price":1}]},"apis":{"rpc":[{"address":"https://emoney.validator.network","provider":"e-Money"},{"address":"https://rpc-emoney-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.emoney.bh.rocks","provider":"BlockHunters 🎯"}]}},{"chain_id":"empowerchain-1","fees":{"fee_tokens":[{"denom":"umpwr","fixed_min_gas_price":0,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-empowerchain.ecostake.com:443","provider":"ecostake"},{"address":"https://empowerchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://empower.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"http://empw.rpc.m.stavr.tech:22057","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-empowerchain.mzonder.com:443","provider":"MZONDER"},{"address":"https://empower-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-empower.vinjan.xyz:443","provider":"vinjan"},{"address":"https://rpc.empower.nodestake.top","provider":"NodeStake"},{"address":"https://mainnet-empower-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://empower.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://rpc.empowerchain.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://empower.declab.pro:26607","provider":"Decloud Nodes Lab"},{"address":"https://empower-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://empower-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"epix_4242-1","fees":{"fee_tokens":[{"denom":"aepix","fixed_min_gas_price":1000000000000,"low_gas_price":1000000000000,"average_gas_price":2000000000000,"high_gas_price":3000000000000}]},"apis":{"rpc":[{"address":"https://epix.rpc.silknodes.io/","provider":"Silk Nodes"}]}},{"chain_id":"1","fees":{"fee_tokens":[{"denom":"wei","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"ethos_7003-1","fees":{"fee_tokens":[{"denom":"aRYT"}]},"apis":{"rpc":[{"address":"https://ethos-rpc.provable.dev:443/","provider":"laurel.provable"}]}},{"chain_id":"evmos_9001-2","fees":{"fee_tokens":[{"denom":"aevmos","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/evmos","provider":"Lavender.Five Nodes 🐝"},{"address":"https://tendermint.bd.evmos.org:26657","provider":"Blockdaemon"},{"address":"https://rpc-evmos-ia.cosmosia.notional.ventures:443","provider":"Notional"},{"address":"https://rpc.evmos.testnet.run","provider":"TestNetRun"},{"address":"https://rpc.evmos.nodestake.top","provider":"NodeStake"},{"address":"https://rpc.evmos.chaintools.tech/","provider":"ChainTools"},{"address":"https://evmos-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.evmos.silentvalidator.com/","provider":"silent"},{"address":"https://rpc.evmos.tcnetwork.io","provider":"TC Network"},{"address":"https://evmos.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://rpc-evmos.architectnodes.com","provider":"Architect Nodes"},{"address":"https://evmos-rpc.validatrium.club","provider":"Validatrium"},{"address":"https://evmos-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-evmos-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://evmos-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://rpc-evmos.validavia.me","provider":"Validavia"},{"address":"https://evmos-rpc.w3coins.io","provider":"w3coins"},{"address":"https://evmos-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://evmos.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://evmos-rpc.antrixy.org/","provider":"Antrix Validators"},{"address":"https://evmos-mainnet.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://rpc.evmos.validatus.com","provider":"Validatus"},{"address":"https://rpc.evmos.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.evmos.citizenweb3.com:443","provider":"Citizen Web3"},{"address":"https://evmos.drpc.org","provider":"dRPC"}]}},{"chain_id":"fetchhub-4","fees":{"fee_tokens":[{"denom":"afet","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc-fetchhub.fetch.ai:443","provider":"fetch.ai"},{"address":"https://rpc-fetchhub-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://fetch-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://fetchai-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://fetch-rpc.antrixy.org","provider":"Antrix"},{"address":"https://rpc-fetch.architectnodes.com","provider":"Architect Nodes"},{"address":"https://fetchhub-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://fetch-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://fetch-rpc.cosmosrescue.com","provider":"cosmosrescue"},{"address":"https://fetch-rpc.w3coins.io","provider":"w3coins"},{"address":"https://fetch-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://fetch-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://public.stakewolle.com/cosmos/fetchhub/rpc","provider":"Stakewolle"},{"address":"https://fetch.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://rpc.fetchhub-4.fetch.aviaone.com","provider":"AVIAONE 🟒"},{"address":"https://fetchai-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"finschia-2","fees":{"fee_tokens":[{"denom":"cony","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.015,"high_gas_price":0.015}]},"apis":{"rpc":[{"address":"https://finschia-rpc.finschia.io"}]}},{"chain_id":"colosseum-1","fees":{"fee_tokens":[{"denom":"ufct","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.15,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://lcd-mainnet.firmachain.dev:26657","provider":"FirmaChain"},{"address":"https://firma.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.firmachain.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.lavenderfive.com:443/firmachain","provider":"Lavender.Five Nodes 🐝"},{"address":"https://firmachain-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://firmachain.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://firmachain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"furya-1","fees":{"fee_tokens":[{"denom":"ufury","low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.5}]},"apis":{"rpc":[{"address":"https://furya-rpc.synergynodes.com","provider":"synergynodes"},{"address":"https://furya.rpc.nodeshub.online:443","provider":"nodeshub"}]}},{"chain_id":"fxcore","fees":{"fee_tokens":[{"denom":"FX","fixed_min_gas_price":4000000000000,"low_gas_price":4000000000000,"average_gas_price":4200000000000,"high_gas_price":5000000000000}]},"apis":{"rpc":[{"address":"https://fx-json.functionx.io","provider":"Function X"},{"address":"https://functionx.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"}]}},{"chain_id":"galaxy-1","fees":{"fee_tokens":[{"denom":"uglx","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[]}},{"chain_id":"wormchain","fees":{"fee_tokens":[{"denom":"utest","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://tncnt-eu-wormchain-main-01.rpc.p2p.world/","provider":"P2P"},{"address":"https://wormchain-rpc.quickapi.com/","provider":"ChainLayer"}]}},{"chain_id":"genesis_29-2","fees":{"fee_tokens":[{"denom":"el1","low_gas_price":51000000000,"average_gas_price":52000000000,"high_gas_price":53000000000}]},"apis":{"rpc":[{"address":"https://26657.genesisl1.org","provider":"GenesisL1"},{"address":"https://genesisl1-rpc.zenode.app","provider":"anodeofzen"}]}},{"chain_id":"gitopia","fees":{"fee_tokens":[{"denom":"ulore","fixed_min_gas_price":0.001,"low_gas_price":0.0012,"average_gas_price":0.0016,"high_gas_price":0.0024}]},"apis":{"rpc":[{"address":"https://gitopia-rpc.polkachu.com:443","provider":"polkachu"},{"address":"https://rpc.lavenderfive.com:443/gitopia","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.gitopia.nodestake.top:443","provider":"nodestake"},{"address":"https://gitopia-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://gitopia-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://m-gitopia.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://gitopia.rpc.m.stavr.tech:51057","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://gitopia-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://gitopia.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://gitopia-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.gitopia.silentvalidator.com","provider":"silent"},{"address":"https://gitopia-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://rpc-gitopia.mzonder.com","provider":"MZONDER"},{"address":"https://gitopia.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.gitopia.sgtstake.com","provider":"SGTstake"},{"address":"https://mainnet-gitopia-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.gitopia.roomit.xyz","provider":"Roomit"},{"address":"https://gitopia.rpc.moonbridge.team","provider":"Moonbridge"},{"address":"https://gitopia-rpc.stakeangle.com","provider":"StakeAngle"},{"address":"https://gitopia.rpc.m.anode.team","provider":"AlxVoy ⚑ ANODE.TEAM"},{"address":"https://gitopia.rpc.stakevillage.net","provider":"Stake Village"},{"address":"https://gitopia-rpc.enigma-validator.com/","provider":"Enigma"},{"address":"https://rpc.gitopia.tcnetwork.io/","provider":"TC Network"},{"address":"https://gitopia.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://rpc.gitopia.stakeup.tech/","provider":"StakeUp"},{"address":"https://gitopia-mainnet.rpc.l0vd.com:443","provider":"L0vd.com ❀️"},{"address":"https://gitopia-rpc.tothemars.network:443","provider":"ToTheMars"},{"address":"https://gitopia.declab.pro:26625","provider":"Decloud Nodes Lab"},{"address":"https://gitopia-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"govgen-1","fees":{"fee_tokens":[{"denom":"ugovgen","fixed_min_gas_price":0.001,"low_gas_price":0.006,"average_gas_price":0.006,"high_gas_price":0.009}]},"apis":{"rpc":[{"address":"https://rpc.govgen.io:443","provider":"AllInBits"},{"address":"https://rpc-govgen.sg-1.online/","provider":"SG-1"},{"address":"https://govgen.rpc.nodeshub.online:443","provider":"Nodes Hub"},{"address":"https://govgen-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.govgen.posthuman.digital:443","provider":"posthuman"},{"address":"https://rpc-govgen.kewrnode.com/","provider":"Kewr Node"}]}},{"chain_id":"gravity-bridge-3","fees":{"fee_tokens":[{"denom":"ugraviton","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.035},{"denom":"gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","low_gas_price":0.0002,"average_gas_price":0.0005,"high_gas_price":0.0008},{"denom":"gravity0xdAC17F958D2ee523a2206206994597C13D831ec7","low_gas_price":0.0002,"average_gas_price":0.0005,"high_gas_price":0.0008}]},"apis":{"rpc":[{"address":"https://gravitychain.io:26657","provider":"althea"},{"address":"http://gravity-bridge-1-08.nodes.amhost.net:26657","provider":"amhost"},{"address":"https://gravity-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-gravitybridge-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/gravitybridge","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.gravity.bh.rocks/","provider":"BlockHunters 🎯"},{"address":"https://gravity-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://gravity-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://rpc-gravity-bridge-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://gravity-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://gravity-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc.g-bridge.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.gravity-bridge-3.gravity.aviaone.com:443","provider":"AviaOne 🟒"}]}},{"chain_id":"haqq_11235-1","fees":{"fee_tokens":[{"denom":"aISLM","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.tm.haqq.network","provider":"Haqq"},{"address":"https://rpc.haqq.sh","provider":"kioqq"},{"address":"https://rpc.haqq.nodestake.top","provider":"NodeStake"},{"address":"https://haqq-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.lavenderfive.com:443/haqq","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-haqq.sr20de.xyz:443","provider":"Sr20de"},{"address":"https://haqq-rpc.palamar.io","provider":"Palamar"},{"address":"https://haqq-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://haqq.drpc.org","provider":"dRPC"}]}},{"chain_id":"helichain","fees":{"fee_tokens":[{"denom":"uheli","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://rpc.helichain.com/","provider":"HeliChain"}]}},{"chain_id":"highbury_710-1","fees":{"fee_tokens":[{"denom":"ufury","low_gas_price":0.05,"average_gas_price":0.1,"high_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://gridiron.furya.io","provider":"fanfury"}]}},{"chain_id":"humans_1089-1","fees":{"fee_tokens":[{"denom":"aheart","fixed_min_gas_price":250000000,"low_gas_price":80000000000,"average_gas_price":100000000000,"high_gas_price":160000000000}]},"apis":{"rpc":[{"address":"https://rpc.humans.nodestake.top","provider":"NodeStake"},{"address":"https://humans.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://humans.rpc.nodeshub.online","provider":"NodesHub"},{"address":"https://humans-mainnet-rpc.itrocket.net","provider":"itrocket"},{"address":"https://humans-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-humansai.thenop.io:443","provider":"TheNOP.io"},{"address":"https://humans-rpc.stakeangle.com/","provider":"StakeAngle"},{"address":"https://humans-rpc.anyvalid.com:26627","provider":"AnyValid"},{"address":"https://mainnet-humans-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"http://65.21.46.90:5657","provider":"PPNV Service"},{"address":"https://rpc.humans-mainnet.stake-take.com/","provider":"Stake-Take"},{"address":"https://rpc.humans.posthuman.digital","provider":"posthuman"},{"address":"https://humans-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://humans-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://humans-mainnet-rpc.cosmonautstakes.com","provider":"Cosmonaut Stakes πŸ€–"}]}},{"chain_id":"Antora","fees":{"fee_tokens":[{"denom":"idep","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"ixo-5","fees":{"fee_tokens":[{"denom":"uixo","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://proxies.sifchain.finance/api/impacthub-3/rpc","provider":"sifchain"},{"address":"https://impacthub.ixo.world/rpc/","provider":"ixoworld"},{"address":"https://ixo.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-ixo-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/impacthub","provider":"Lavender.Five Nodes 🐝"},{"address":"https://ixo-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://ixo-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://impacthub_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"imversed_5555555-1","fees":{"fee_tokens":[{"denom":"aimv","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[]}},{"chain_id":"injective-1","fees":{"fee_tokens":[{"denom":"inj","fixed_min_gas_price":160000000,"low_gas_price":500000000,"average_gas_price":700000000,"high_gas_price":900000000}]},"apis":{"rpc":[{"address":"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rpc.newmetric.xyz","provider":"NewMetric"},{"address":"https://rpc.injective.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://injective-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.lavenderfive.com:443/injective","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-injective-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://injective-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-injective.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc-injective-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://injective-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://injective-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://public.stakewolle.com/cosmos/injective/rpc","provider":"Stakewolle"},{"address":"https://rpc.injective.bronbro.io/","provider":"Bro_n_Bro"},{"address":"https://injective-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc-injective.ecostake.com","provider":"ecostake"},{"address":"https://rpc-injective.kewrnode.com","provider":"Kewr Node"}]}},{"chain_id":"int3face-1","fees":{"fee_tokens":[{"denom":"uint3","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc","fixed_min_gas_price":1e-7,"low_gas_price":1e-7,"average_gas_price":0.0000025,"high_gas_price":0.000004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch","fixed_min_gas_price":0.000001,"low_gas_price":0.000001,"average_gas_price":0.000025,"high_gas_price":0.00004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc","fixed_min_gas_price":0.000001,"low_gas_price":0.000001,"average_gas_price":0.000025,"high_gas_price":0.00004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.004}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.int3face.zone","provider":"Int3face.io"}]}},{"chain_id":"irishub-1","fees":{"fee_tokens":[{"denom":"uiris","low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc-irisnet-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-irisnet-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://irisnet-rpc.w3coins.io","provider":"w3coins"},{"address":"https://iris-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://iris-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://mainnet-iris-rpc.konsortech.xyz","provider":"KonsorTech"}]}},{"chain_id":"jackal-1","fees":{"fee_tokens":[{"denom":"ujkl","fixed_min_gas_price":0,"low_gas_price":0.002,"average_gas_price":0.002,"high_gas_price":0.02}]},"apis":{"rpc":[{"address":"https://rpc.jackalprotocol.com","provider":"Jackal Labs"},{"address":"https://rpc.lavenderfive.com:443/jackal","provider":"Lavender.Five Nodes 🐝"},{"address":"http://jkl.rpc.m.stavr.tech:11127","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://jackal.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://rpc.jackal.nodestake.top","provider":"NodeStake"},{"address":"https://rpc-jackal.nodeist.net","provider":"Nodeist"},{"address":"https://jackal-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://m-jackal.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc-jackal.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://jackal-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://jackal.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://jackal.rpc.silknodes.io","provider":"Silk Nodes"},{"address":"https://jackal.rpc.skynodejs.net","provider":"skynodejs"},{"address":"https://public.stakewolle.com/cosmos/jackal/rpc","provider":"Stakewolle"},{"address":"https://rpc.jackal.silentvalidator.com","provider":"silent"},{"address":"https://rpc.jackal.mathnodes.com","provider":"MathNodes"},{"address":"https://jackal-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://jackal-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"joltify_1729-1","fees":{"fee_tokens":[{"denom":"ujolt","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.joltify.io","provider":"joltify"},{"address":"https://joltify_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"juno-1","fees":{"fee_tokens":[{"denom":"ujuno","fixed_min_gas_price":0.075,"low_gas_price":0.075,"average_gas_price":0.1,"high_gas_price":0.125},{"denom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","fixed_min_gas_price":0.003,"low_gas_price":0.003,"average_gas_price":0.0035,"high_gas_price":0.004}]},"apis":{"rpc":[{"address":"https://rpc-juno.itastakers.com","provider":"itastakers"},{"address":"http://juno.rpc.m.stavr.tech:1067","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://juno-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.lavenderfive.com:443/juno","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-juno.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-juno.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://rpc-juno-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.juno.chaintools.tech/","provider":"ChainTools"},{"address":"https://juno-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://juno-rpc.icycro.org","provider":"IcyCRO 🧊"},{"address":"https://rpc.juno.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://juno-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://juno-rpc.reece.sh","provider":"Reecepbcups"},{"address":"https://juno-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"},{"address":"https://rpc-juno.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc-juno-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-juno.validavia.me","provider":"Validavia"},{"address":"https://juno-rpc.w3coins.io","provider":"w3coins"},{"address":"https://juno-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://juno-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc-juno.mainnet.validatrium.club:443","provider":"Validatrium"},{"address":"https://juno-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.juno.validatus.com","provider":"Validatus"},{"address":"https://rpc.juno.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://juno-rpc.cogwheel.zone","provider":"Cogwheel"},{"address":"https://juno.declab.pro:26610","provider":"Decloud Nodes Lab"},{"address":"https://juno.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://juno-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"kava_2222-10","fees":{"fee_tokens":[{"denom":"ukava","low_gas_price":0.05,"average_gas_price":0.1,"high_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://rpc.data.kava.io","provider":"kava"},{"address":"https://kava-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-kava-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://kava-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://kava-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc-kava-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://kava-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://kava.drpc.org","provider":"dRPC"}]}},{"chain_id":"kichain-2","fees":{"fee_tokens":[{"denom":"uxki","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc-mainnet.blockchain.ki","provider":"kifoundation"},{"address":"https://kichain-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-kichain-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://kichain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.kichain.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.lavenderfive.com:443/kichain","provider":"Lavender.Five Nodes 🐝"},{"address":"http://ki-chain.statesync.nodersteam.com:14657","provider":"[NODERS]TEAM"},{"address":"https://ki-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc.kichain-2.kichain.aviaone.com","provider":"AVIAONE 🟒"}]}},{"chain_id":"kima_network","fees":{"fee_tokens":[{"denom":"uKIMA","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.kima.network/","provider":"Kima Network"}]}},{"chain_id":"darchub","fees":{"fee_tokens":[{"denom":"udarc","fixed_min_gas_price":0,"low_gas_price":0.0001,"average_gas_price":0.001,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc-konstellation-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://konstellation-rpc.stakerhouse.com","provider":"StakerHouse"}]}},{"chain_id":"luwak-1","fees":{"fee_tokens":[{"denom":"ukopi","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.kopi.money","provider":"Kopi Foundation"},{"address":"https://rpc.kopi.chaintools.tech","provider":"Chaintools"},{"address":"https://kopi-rpc.cosmoscan.com","provider":"Cosmoscan"},{"address":"https://kopi-rpc.stakerhouse.com","provider":"Stakerhouse"},{"address":"https://kopi.rpc.moonbridge.team","provider":"Moonbridge"},{"address":"https://rpc-kopid.vinjan.xyz/","provider":"Vinjan"},{"address":"https://kopi-mainnet-rpc.bonynode.online","provider":"Bony"},{"address":"https://kopi-rpc.bluestake.net:443","provider":"Bluestake"},{"address":"https://rpc-kopi.sychonix.com","provider":"Sychonix"},{"address":"https://kopi-rpc.node9x.com/","provider":"Node9x"},{"address":"https://kopi.rpc.nodeshub.online/","provider":"NodesHub"},{"address":"https://kopi-rpc.polkachu.com/","provider":"Polkachu"}]}},{"chain_id":"kaiyo-1","fees":{"fee_tokens":[{"denom":"ukuji","fixed_min_gas_price":0.0034,"low_gas_price":0.0034,"average_gas_price":0.0051,"high_gas_price":0.00681},{"denom":"factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk","fixed_min_gas_price":0.01186,"low_gas_price":0.01186,"average_gas_price":0.01779,"high_gas_price":0.02372},{"denom":"ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F","fixed_min_gas_price":0.0119,"low_gas_price":0.0119,"average_gas_price":0.01785,"high_gas_price":0.02379},{"denom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","fixed_min_gas_price":0.00129,"low_gas_price":0.00129,"average_gas_price":0.00193,"high_gas_price":0.00258},{"denom":"ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23","fixed_min_gas_price":0.01795,"low_gas_price":0.01795,"average_gas_price":0.02692,"high_gas_price":0.0359},{"denom":"ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07","fixed_min_gas_price":0.65943,"low_gas_price":0.65943,"average_gas_price":0.98915,"high_gas_price":1.31887},{"denom":"ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10","fixed_min_gas_price":160416396197,"low_gas_price":160416396197,"average_gas_price":240624594296,"high_gas_price":320832792394},{"denom":"ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5","fixed_min_gas_price":0.02689,"low_gas_price":0.02689,"average_gas_price":0.04034,"high_gas_price":0.05379},{"denom":"ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986","fixed_min_gas_price":0.01495,"low_gas_price":0.01495,"average_gas_price":0.02243,"high_gas_price":0.02991},{"denom":"ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5","fixed_min_gas_price":0.03139,"low_gas_price":0.03139,"average_gas_price":0.04709,"high_gas_price":0.06278},{"denom":"ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602","fixed_min_gas_price":0.90403,"low_gas_price":0.90403,"average_gas_price":1.35605,"high_gas_price":1.80806},{"denom":"ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2","fixed_min_gas_price":559196837,"low_gas_price":559196837,"average_gas_price":838795256,"high_gas_price":1118393675},{"denom":"ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7","fixed_min_gas_price":5772801,"low_gas_price":5772801,"average_gas_price":8659201,"high_gas_price":11545602},{"denom":"factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta","fixed_min_gas_price":0.01807,"low_gas_price":0.01807,"average_gas_price":0.02711,"high_gas_price":0.03615},{"denom":"ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9","fixed_min_gas_price":0.01194,"low_gas_price":0.01194,"average_gas_price":0.01792,"high_gas_price":0.02389},{"denom":"ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3","fixed_min_gas_price":0.00019,"low_gas_price":0.00019,"average_gas_price":0.00029,"high_gas_price":0.00039}]},"apis":{"rpc":[{"address":"https://rpc.kaiyo.kujira.setten.io","provider":"setten.io"},{"address":"https://kujira-rpc.polkachu.com","provider":"polkachu"},{"address":"https://rpc.lavenderfive.com:443/kujira","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.kujira.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc-kujira-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://kujira-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc-kujira.starsquid.io","provider":"Starsquid"},{"address":"https://kujira.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://kuji-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://rpc-kujira.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://kujira-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.kujira.rektdao.club","provider":"rektDAO"},{"address":"https://kujira-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://kujira-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-kujira.mms.team","provider":"MMS"},{"address":"https://kujira-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://kujira.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"}]}},{"chain_id":"kyve-1","fees":{"fee_tokens":[{"denom":"ukyve","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc.kyve.network","provider":"kyve"},{"address":"https://rpc-kyve.ecostake.com","provider":"ecostake"},{"address":"https://rpc.lavenderfive.com:443/kyve","provider":"Lavender.Five Nodes 🐝"},{"address":"http://kyve.rpc.m.stavr.tech:12357","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-kyve.imperator.co","provider":"Imperator.co"},{"address":"https://kyve-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc.kyve.nodestake.top","provider":"NodeStake"},{"address":"https://kyve.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://rpc-kyve.mms.team","provider":"MMS"},{"address":"https://kyve.declab.pro:26616","provider":"Decloud Nodes Lab"},{"address":"https://kyve-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://kyve_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://kyve-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"lambda_92000-1","fees":{"fee_tokens":[{"denom":"ulamb","low_gas_price":10000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.lambda.im","provider":"Lambda"},{"address":"http://lambda.rpc.m.stavr.tech:31327","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lambda.nodestake.top","provider":"NodeStake"},{"address":"https://lambda-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://lambda_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"lava-mainnet-1","fees":{"fee_tokens":[{"denom":"ulava","fixed_min_gas_price":0.00002,"low_gas_price":0.00002,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://lava.tendermintrpc.lava.build","provider":"Lava Over Lava"},{"address":"https://lava-rpc.w3coins.io:443","provider":"w3coins"},{"address":"https://lava-rpc.finteh.org:26657","provider":"finteh"},{"address":"https://lava-rpc.y2.finance:443","provider":"YTWOFUND"},{"address":"https://lava-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://rpc.lava-mainnet-1.lava.aviaone.com:443","provider":"AVIAONE 🟒"},{"address":"https://rpc-lava.r93axnodes.cloud:443","provider":"r93AX Nodes"},{"address":"https://lava-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://lava.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://lava.rpc-archive.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://lava-rpc.stake-town.com:443","provider":"StakeTown"},{"address":"https://lava.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://lava-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://lava-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://lava.rpc.stakevillage.net:443","provider":"Stake Village"}]}},{"chain_id":"likecoin-mainnet-2","fees":{"fee_tokens":[{"denom":"nanolike","fixed_min_gas_price":1000,"low_gas_price":1000,"average_gas_price":10000,"high_gas_price":1000000}]},"apis":{"rpc":[{"address":"https://mainnet-node.like.co/rpc/","provider":"like.co"},{"address":"https://likecoin-node.oldcat.io:443/rpc/","provider":"Oldcat"},{"address":"https://like.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-likecoin-mainnet.pikaser.net","provider":"PikaSer"},{"address":"https://rpc.likecoin.citizenweb3.com:443","provider":"Citizen Web3"}]}},{"chain_id":"logos_7002-1","fees":{"fee_tokens":[{"denom":"aLYT"}]},"apis":{"rpc":[{"address":"https://logos-rpc.provable.dev:443/","provider":"laurel.provable"}]}},{"chain_id":"loop-1","fees":{"fee_tokens":[{"denom":"token","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.loop.pfc.zone/","provider":"PFC"}]}},{"chain_id":"lorenzo_8329-1","fees":{"fee_tokens":[{"denom":"stBTC","fixed_min_gas_price":2000000,"low_gas_price":2000000,"average_gas_price":2000000,"high_gas_price":8000000}]},"apis":{"rpc":[{"address":"https://rpc-cosmos.lorenzo-protocol.xyz/","provider":"Lorenzo Protocol"}]}},{"chain_id":"loyal-main-02","fees":{"fee_tokens":[{"denom":"ulyl","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-main.joinloyal.io/"},{"address":"https://loyal-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"lum-network-1","fees":{"fee_tokens":[{"denom":"ulum","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.node0.mainnet.lum.network","provider":"Lum Foundation"},{"address":"https://lum.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/lumnetwork","provider":"Lavender.Five Nodes 🐝"},{"address":"https://lum-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://lum-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://lumnetwork_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"mande_18071918-1","fees":{"fee_tokens":[{"denom":"amand","low_gas_price":20000000000,"average_gas_price":20000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://mande-mainnet-tendermint.public.blastapi.io","provider":"BlastAPI"}]}},{"chain_id":"mantra-1","fees":{"fee_tokens":[{"denom":"uom","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.mantrachain.io","provider":"MANTRACHAIN"},{"address":"https://rpc-mantra.r93axnodes.cloud:443","provider":"r93AX Nodes"},{"address":"https://mantrachain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://mantra-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://mantra-mainnet-rpc.itrocket.net:443","provider":"ITRocket"},{"address":"https://mantra.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"mars-1","fees":{"fee_tokens":[{"denom":"umars","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.marsprotocol.io:443","provider":"Delphi Labs"},{"address":"https://rpc.lavenderfive.com:443/mars","provider":"Lavender.Five Nodes 🐝"},{"address":"https://mars-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://mars-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.expedition-mars.com","provider":"Expedition Mars"},{"address":"https://mars-rpc.genznodes.dev:443","provider":"genznodes"},{"address":"https://mars-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"},{"address":"https://mars-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://mars-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"}]}},{"chain_id":"mayachain-mainnet-v1","apis":{"rpc":[{"address":"https://tendermint.mayachain.info","provider":"tendermint"}]}},{"chain_id":"medasdigital-2","fees":{"fee_tokens":[{"denom":"umedas","low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc.medas-digital.io:26657/","provider":"Neptun Validator"}]}},{"chain_id":"meme-1","fees":{"fee_tokens":[{"denom":"umeme","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.035,"high_gas_price":0.045}]},"apis":{"rpc":[{"address":"https://rpc-meme-1.meme.sx/","provider":"MEME Foundation"},{"address":"https://meme-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-meme.pupmos.network/","provider":"PUPMØS"},{"address":"https://meme.rpc.m.anode.team","provider":"ANODE TEAM"}]}},{"chain_id":"migaloo-1","fees":{"fee_tokens":[{"denom":"uwhale","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":2,"high_gas_price":3}]},"apis":{"rpc":[{"address":"https://migaloo-rpc.polkachu.com:443","provider":"Polkachu"},{"address":"https://rpc-migaloo.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://migaloo-rpc.kleomedes.network:443","provider":"Kleomedes"},{"address":"https://rpc.whitewhale.nodestake.top","provider":"NodeStake"},{"address":"https://migaloo-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://migaloo-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"milkyway","fees":{"fee_tokens":[{"denom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035},{"denom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035},{"denom":"ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035},{"denom":"ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.milkyway.zone/","provider":"MilkyWay Labs"}]}},{"chain_id":"mainnet","fees":{"fee_tokens":[{"denom":"umis","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.gw.mises.site:443","provider":"Mises-1"},{"address":"https://e2.mises.site:443","provider":"Mises-3"}]}},{"chain_id":"mtgbp-1","fees":{"fee_tokens":[{"denom":"mtgbp","low_gas_price":0.000001,"average_gas_price":0.000005,"high_gas_price":0.0001}]},"apis":{"rpc":[{"address":"https://rcp.mtgbp.com","provider":"mtgbp"}]}},{"chain_id":"mun-1","fees":{"fee_tokens":[{"denom":"umun","fixed_min_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://mainnet1rpc.mun.money","provider":"Mun"},{"address":"https://mainnet-mun-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.mun.tcnetwork.io","provider":"TC Network"},{"address":"https://mun_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"mythos_7001-1","fees":{"fee_tokens":[{"denom":"aMYT"}]},"apis":{"rpc":[{"address":"https://mythos-rpc.provable.dev:443/","provider":"laurel.provable"}]}},{"chain_id":"neura_266-1","fees":{"fee_tokens":[{"denom":"atankr"}]},"apis":{"rpc":[]}},{"chain_id":"Neutaro-1","fees":{"fee_tokens":[{"denom":"uneutaro","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc2.neutaro.io:443","provider":"Neutaro"},{"address":"https://rpc3.neutaro.io:443","provider":"Neutaro"}]}},{"chain_id":"neutron-1","fees":{"fee_tokens":[{"denom":"untrn","low_gas_price":0.0053,"average_gas_price":0.0053,"high_gas_price":0.0053},{"denom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","low_gas_price":0.0008,"average_gas_price":0.0008,"high_gas_price":0.0008},{"denom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","low_gas_price":0.008,"average_gas_price":0.008,"high_gas_price":0.008},{"denom":"factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH","low_gas_price":2903231.6597,"average_gas_price":2903231.6597,"high_gas_price":2903231.6597},{"denom":"ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130","low_gas_price":2564102564.1026,"average_gas_price":2564102564.1026,"high_gas_price":2564102564.1026},{"denom":"ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7","low_gas_price":0.0004,"average_gas_price":0.0004,"high_gas_price":0.0004}]},"apis":{"rpc":[{"address":"https://rpc-voidara.neutron-1.neutron.org","provider":"Neutron"},{"address":"https://rpc-pulsarix.neutron-1.neutron.org","provider":"Neutron"},{"address":"https://rpc.novel.remedy.tm.p2p.org","provider":"P2P"},{"address":"https://rpc.lavenderfive.com:443/neutron","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-neutron.whispernode.com","provider":"WhisperNode 🀐"},{"address":"https://rpc-neutron.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"http://rpc.neutron.nodestake.top","provider":"NodeStake"},{"address":"https://neutron-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://community.nuxian-node.ch:6797/neutron/trpc","provider":"PRO Delegators"},{"address":"https://rpc.neutron.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.neutron.quokkastake.io","provider":"🐹 Quokka Stake"},{"address":"https://neutron.drpc.org","provider":"dRPC"}]}},{"chain_id":"cataclysm-1","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.nibiru.fi","provider":"Nibiru Foundation"},{"address":"https://nibiru.rpc.kjnodes.com","provider":"kjnodes.com πŸ¦„"},{"address":"https://rpc.nibiru.nodestake.org","provider":"NodeStake"},{"address":"https://rpc.lavenderfive.com:443/nibiru","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.nibiru.silentvalidator.com","provider":"silent"},{"address":"https://nibiru.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://nibiru-rpc.cogwheel.zone","provider":"Cogwheel βš™οΈ"},{"address":"https://nibiru.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://nibiru.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://nibiru-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://nibiru-mainnet.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://nibiru-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.nibiru.roomit.xyz","provider":"Roomit"},{"address":"https://nibiru_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"nim_1122-1","fees":{"fee_tokens":[{"denom":"anim","low_gas_price":20000000000,"average_gas_price":20000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.nimnet.tech","provider":"NIM Foundation"}]}},{"chain_id":"noble-1","fees":{"fee_tokens":[{"denom":"uusdc","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.1,"high_gas_price":0.2},{"denom":"ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.01,"high_gas_price":0.02}]},"apis":{"rpc":[{"address":"https://noble-rpc.polkachu.com","provider":"polkachu"},{"address":"https://rpc.lavenderfive.com:443/noble","provider":"Lavender.Five Nodes 🐝"},{"address":"https://noble-rpc.owallet.io","provider":"OWALLET"}]}},{"chain_id":"nois-1","fees":{"fee_tokens":[{"denom":"unois","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://nois-rpc.nysa.network","provider":"nysa.network"},{"address":"https://nois.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://rpc.lavenderfive.com:443/nois","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-nois.mib.tech/","provider":"MadeInBlock"},{"address":"https://m-nois.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://nois.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-nois.ezstaking.dev","provider":"EZStaking"},{"address":"https://nois-mainnet-rpc.itrocket.net","provider":"itrocket"},{"address":"https://rpc-nois.d-stake.xyz","provider":"D-Stake"},{"address":"https://rpc-nois.sr20de.xyz","provider":"SR20DE"},{"address":"https://nois-mainnet-rpc.autostake.com","provider":"AutoStake"},{"address":"https://nois-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://nois-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://rpc.nois.silentvalidator.com","provider":"silent"},{"address":"https://nois-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.nois.cumulo.org.es","provider":"Cumulo"}]}},{"chain_id":"pirin-1","fees":{"fee_tokens":[{"denom":"unls","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"rpc.nolus.network","provider":"NolusProtocol"},{"address":"https://nolus-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.lavenderfive.com:443/nolus","provider":"Lavender.Five Nodes 🐝"},{"address":"https://nolus.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://rpc-nolus.architectnodes.com","provider":"Architect Nodes"},{"address":"https://nolus.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://nolus-rpc.enigma-validator.com/","provider":"Enigma"},{"address":"https://nolus-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-nolus.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://nolus-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://nolus-rpc.ibs.team","provider":"Inter Blockchain Services"}]}},{"chain_id":"nomic-stakenet-3","fees":{"fee_tokens":[{"denom":"unom","low_gas_price":0,"average_gas_price":0,"high_gas_price":0},{"denom":"usat","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://stakenet-rpc.nomic.io:2096","provider":"nomic-io"},{"address":"https://nomic-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-nomic.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc.nomic.basementnodes.ca:443","provider":"Basement Nodes ⚑️"},{"address":"https://rpc.nomic.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"nyx","fees":{"fee_tokens":[{"denom":"unym","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"unyx","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.nymtech.net/","provider":"Nym"},{"address":"https://rpc.nyx.nodes.guru/","provider":"nodes guru"},{"address":"https://rpc.nym.forbole.com/","provider":"forbole"},{"address":"https://nym-mainnet-rpc.commodum.io/","provider":"commodum"},{"address":"https://nym-rpc.polkachu.com/","provider":"Polkachu"}]}},{"chain_id":"octa","fees":{"fee_tokens":[{"denom":"uocta","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"odin-mainnet-freya","fees":{"fee_tokens":[{"denom":"loki","fixed_min_gas_price":0.0125,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc.odinprotocol.io","provider":"Heimdall Gateway"},{"address":"https://odin.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/odin","provider":"Lavender.Five Nodes 🐝"},{"address":"https://odin-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"exchain-66","fees":{"fee_tokens":[{"denom":"wei","low_gas_price":200000000,"average_gas_price":250000000,"high_gas_price":400000000}]},"apis":{"rpc":[{"address":"https://exchaintmrpc.okex.org","provider":"okx chain"}]}},{"chain_id":"omniflixhub-1","fees":{"fee_tokens":[{"denom":"uflix","fixed_min_gas_price":0,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://omniflix-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://rpc.omniflix.nodestake.top","provider":"NodeStake"},{"address":"https://rpc.omniflix.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc-omniflixhub-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/omniflixhub","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.omniflix.silentvalidator.com/","provider":"silent"},{"address":"https://omniflixhub-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-omniflix.architectnodes.com","provider":"Architect Nodes"},{"address":"https://omniflix-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-omniflixhub.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://omniflix-rpc.dakshavalidator.in","provider":"Daksha Validator"},{"address":"https://rpc-omniflix.mzonder.com:443","provider":"MZONDER"},{"address":"https://rpc.omniflix.stakeup.tech:443","provider":"StakeUp"},{"address":"https://rpc.omniflix.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://omniflix-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://mainnet.omniflix.rpc.srv.stakr.space","provider":"STAKR.space"}]}},{"chain_id":"onex-mainnet-1","fees":{"fee_tokens":[{"denom":"aonex","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.onex.onomy.io","provider":"pendulum"}]}},{"chain_id":"onomy-mainnet-1","fees":{"fee_tokens":[{"denom":"anom","low_gas_price":0,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc-mainnet.onomy.io","provider":"onomy"},{"address":"https://onomy-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"Oraichain","fees":{"fee_tokens":[{"denom":"orai","fixed_min_gas_price":0,"low_gas_price":0.003,"average_gas_price":0.005,"high_gas_price":0.007}]},"apis":{"rpc":[{"address":"https://rpc.orai.io","provider":"oraichain-team"},{"address":"https://rpc.orai.pfc.zone/","provider":"PFC"},{"address":"https://rpc-orai.nodine.id/","provider":"Nodine.ID"},{"address":"https://oraichain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-oraichain.mms.team","provider":"MMS"},{"address":"https://rpc-orai.blockval.io/","provider":"Blockval"},{"address":"https://mainnet-orai-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.orai.mortysnode.nl","provider":"Morty's Nodes"},{"address":"https://orai.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://oraichain-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://orai-rpc.imdev.app","provider":"imORAI"},{"address":"https://orai-rpc.owallet.io","provider":"OWALLET"}]}},{"chain_id":"osmosis-1","fees":{"fee_tokens":[{"denom":"uosmo","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.osmosis.zone/","provider":"Osmosis Foundation"},{"address":"https://rpc-osmosis.blockapsis.com","provider":"chainapsis"},{"address":"https://osmosis-rpc.onivalidator.com","provider":"Oni Validator ⛩️"},{"address":"https://osmosis-rpc.quickapi.com:443","provider":"Chainlayer"},{"address":"https://rpc-osmosis.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc.lavenderfive.com:443/osmosis","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-osmosis.ecostake.com","provider":"ecostake"},{"address":"https://rpc-osmosis.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://osmosis-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-osmosis-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://osmosis.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://osmosis-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://osmosis.api.onfinality.io/public","provider":"OnFinality"},{"address":"https://rpc-osmosis-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://osmosis-rpc.w3coins.io","provider":"w3coins"},{"address":"https://osmosis-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://community.nuxian-node.ch:6797/osmosis/trpc","provider":"PRO Delegators"},{"address":"http://rpc-osmosis.freshstaking.com:31657","provider":"FreshSTAKING"},{"address":"https://osmosis-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://osmosis-mainnet.rpc.l0vd.com:443","provider":"L0vd.com ❀️"},{"address":"https://osmosis-rpc.reece.sh","provider":"Reecepbcups"},{"address":"https://rpc.osmosis.validatus.com","provider":"Validatus"},{"address":"https://rpc.osmosis.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://osmosis.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"},{"address":"https://public.stakewolle.com/cosmos/osmosis/rpc","provider":"Stakewolle"},{"address":"https://rpc.cros-nest.com/osmosis","provider":"Crosnest"},{"address":"https://rpc-osmo.kewrnode.com","provider":"Kewr Node"},{"address":"https://rpc.osmosis.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://osmosis-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://osmosis.drpc.org","provider":"dRPC"},{"address":"https://osmosis-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"tumbler","fees":{"fee_tokens":[{"denom":"ugrain","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-1.paloma.nodes.guru/","provider":"Nodes.Guru"}]}},{"chain_id":"panacea-3","fees":{"fee_tokens":[{"denom":"umed","fixed_min_gas_price":5,"low_gas_price":5,"average_gas_price":7,"high_gas_price":9}]},"apis":{"rpc":[{"address":"https://rpc.gopanacea.org","provider":"medibloc"},{"address":"https://panacea-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://panacea_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"passage-2","fees":{"fee_tokens":[{"denom":"upasg","fixed_min_gas_price":0,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.passage.vitwit.com","provider":"vitwit"},{"address":"https://passage-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-passage.ecostake.com","provider":"ecostake"},{"address":"https://rpc.lavenderfive.com:443/passage","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-passage-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-passage.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://rpc.passage.nodestake.top","provider":"NodeStake"},{"address":"https://passage-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://passage-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc-passage.d-stake.xyz","provider":"D-stake"},{"address":"https://passage-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://passage-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://passage-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://passage-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc-passage.mainnet.validatrium.club","provider":"Validatrium"},{"address":"https://rpc.passage.silentvalidator.com","provider":"silent"},{"address":"https://passage-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"core-1","fees":{"fee_tokens":[{"denom":"uxprt","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.core.persistence.one","provider":"Persistence"},{"address":"https://rpc-persistent-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://persistence.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://persistence-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://persistence-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://rpc-persistence.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc-persistence.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://persistence-mainnet-rpc.cosmonautstakes.com","provider":"Cosmonaut Stakes"},{"address":"https://persistence-rpc.quantnode.tech","provider":"QuantNode"},{"address":"https://persistence-rpc.zenscape.one","provider":"Zenscape"},{"address":"https://persistence-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://persistence-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"},{"address":"https://rpc.persistence.posthuman.digital:443","provider":"POSTHUMAN∞DVS"},{"address":"https://rpc-persistence-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://persistence-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://persistence-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://persistence-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.persistence.validatus.com","provider":"Validatus"},{"address":"https://public.stakewolle.com/cosmos/persistence/rpc","provider":"Stakewolle"},{"address":"https://xprt-rpc.antrixy.org/","provider":"Antrix Validators"},{"address":"https://persistence-rpc.stake-town.com","provider":"StakeTown"}]}},{"chain_id":"planq_7070-2","fees":{"fee_tokens":[{"denom":"aplanq","fixed_min_gas_price":20000000000,"low_gas_price":30000000000,"average_gas_price":35000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.planq.network","provider":"planq.network"},{"address":"https://planq.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://planq.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.planq.nodestake.top","provider":"NodeStake"},{"address":"https://planq-rpc.kynraze.com","provider":"Kynraze"},{"address":"https://rpc.planq.indonode.net","provider":"Indonode"},{"address":"https://rpc.planq.roomit.xyz","provider":"Roomit"},{"address":"https://planq-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://rpc.planq.safeblock.space","provider":"Safe Block"},{"address":"https://planq.rpc.skynodejs.net","provider":"skynodejs"},{"address":"https://planq-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://mainnet-planq-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://planq_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc-planq.blockval.io","provider":"Blockval"}]}},{"chain_id":"point_10687-1","fees":{"fee_tokens":[{"denom":"apoint","low_gas_price":5000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc-mainnet-1.point.space:26657","provider":"Point Network"},{"address":"https://rpc.point.nodestake.top","provider":"NodeStake"},{"address":"https://point.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.point.indonode.net","provider":"Indonode"}]}},{"chain_id":"pio-mainnet-1","fees":{"fee_tokens":[{"denom":"nhash","fixed_min_gas_price":1905,"low_gas_price":1905,"average_gas_price":2100,"high_gas_price":2500}]},"apis":{"rpc":[{"address":"https://rpc-provenance.takeshi.team/","provider":"TAKESHI"},{"address":"https://rpc.provenance.io/","provider":"Figure"},{"address":"https://rpc-provenance-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://provenance-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://provenance-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://provenance-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://rpc.provenance.blockval.io/","provider":"Blockval"},{"address":"https://provenance-rpc.panthea.eu","provider":"Panthea EU"},{"address":"https://provenance_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc.pio-mainnet-1.provenance.aviaone.com","provider":"AVIAONE 🟒"}]}},{"chain_id":"pryzm-1","fees":{"fee_tokens":[{"denom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.004},{"denom":"ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255","fixed_min_gas_price":500000000,"low_gas_price":500000000,"average_gas_price":600000000,"high_gas_price":700000000},{"denom":"ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"ibc/BF28D9C17E0306B194D50F51C3B2590BEAD15E04E03ADD34C3A26E62D85C9676","fixed_min_gas_price":0.002,"low_gas_price":0.002,"average_gas_price":0.003,"high_gas_price":0.004},{"denom":"ibc/B8AF5D92165F35AB31F3FC7C7B444B9D240760FA5D406C49D24862BD0284E395","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.02,"high_gas_price":0.03},{"denom":"ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.015,"high_gas_price":0.02},{"denom":"ibc/F8CA5236869F819BC006EEF088E67889A26E4140339757878F0F4E229CDDA858","fixed_min_gas_price":10000000000,"low_gas_price":10000000000,"average_gas_price":12000000000,"high_gas_price":14000000000},{"denom":"ibc/FA78980867B7E87F382CDA00275C55DDC248CABC7DEE27AC6868CCF97DD5E02F","fixed_min_gas_price":0.002,"low_gas_price":0.002,"average_gas_price":0.003,"high_gas_price":0.004},{"denom":"ibc/120DC39B61CC121E91525C1D51624E41BBE74C537D7B0BE50BBFF9A00E37B6EE","fixed_min_gas_price":10000000000,"low_gas_price":10000000000,"average_gas_price":12000000000,"high_gas_price":14000000000},{"denom":"ibc/EA6E1E8BA2EB9F681C4BD12C8C81A46530A62934F2BD561B120A00F46946CE87","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.004}]},"apis":{"rpc":[{"address":"https://rpc.pryzm.zone","provider":"PRYZM"},{"address":"https://rpc.lavenderfive.com:443/pryzm","provider":"Lavender.Five Nodes 🐝"},{"address":"https://pryzm-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://pryzm-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"PUNDIX","fees":{"fee_tokens":[{"denom":"ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78","fixed_min_gas_price":2000000000000,"low_gas_price":2000000000000,"average_gas_price":2500000000000,"high_gas_price":3000000000000}]},"apis":{"rpc":[{"address":"https://px-json.pundix.com","provider":"Pundi X"},{"address":"https://pundix.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"}]}},{"chain_id":"pylons-mainnet-1","fees":{"fee_tokens":[{"denom":"ubedrock","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.5,"high_gas_price":1}]},"apis":{"rpc":[{"address":"https://rpc.nodejumper.io:443/pylons","provider":"Nodejumper.io"},{"address":"https:/pylons-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"qfs-1","fees":{"fee_tokens":[{"denom":"qfs","low_gas_price":0.000001,"average_gas_price":0.000005,"high_gas_price":0.0001}]},"apis":{"rpc":[{"address":"https://rcp.qfsone.com","provider":"qfs"}]}},{"chain_id":"quasar-1","fees":{"fee_tokens":[{"denom":"uqsr","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.3},{"denom":"ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/quasar","provider":"Lavender.Five Nodes 🐝"},{"address":"https://quasar-rpc.polkachu.com","provider":"polkachu"},{"address":"https://quasar-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://rpc-quasar.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://quasar-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://quasar.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-quasar.validavia.me","provider":"Validavia"},{"address":"https://quasar-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://quasar-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://quasar-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://quasar-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://quasar-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://quasar-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"quicksilver-2","fees":{"fee_tokens":[{"denom":"uqck","fixed_min_gas_price":0.0001,"low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.00025}]},"apis":{"rpc":[{"address":"https://rpc-quicksilver.takeshi.team:443","provider":"TAKESHI"},{"address":"https://rpc.quicksilver.zone:443","provider":"Quicksilver"},{"address":"https://rpc-quicksilver-ia.cosmosia.notional.ventures:443","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/quicksilver","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-quicksilver.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://m-quicksilver.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://quick.rpc.m.stavr.tech:21027","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://quicksilver-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://quicksilver-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://quicksilver.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-quicksilver.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc.quicksilver.indonode.net","provider":"Indonode"},{"address":"https://quicksilver-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://quicksilver-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://quicksilver-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-quicksilver.mms.team/","provider":"MMS"},{"address":"https://quicksilver-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://quicksilver-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://mainnet-quicksilver-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://quicksilver.tdrsys.com:2053","provider":"TdrSys"},{"address":"https://rpc.quicksilver.validatus.com","provider":"Validatus"},{"address":"https://quicksilver-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"qwoyn-1","fees":{"fee_tokens":[{"denom":"uqwoyn","fixed_min_gas_price":0.03,"low_gas_price":0.03,"average_gas_price":0.05,"high_gas_price":0.075}]},"apis":{"rpc":[{"address":"https://rpc.qwoyn.studio:443","provider":"Qwoyn Studios"},{"address":"https://rpc-qwoyn.theamsolutions.info:443","provider":"AM Solutions"},{"address":"https://qwoyn.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://qwoyn-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://qwoyn-rpc-archive.staketab.org:443","provider":"Staketab archive"},{"address":"https://rpc.lavenderfive.com:443/qwoyn","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-qwoyn.mzonder.com:443","provider":"MZONDER"},{"address":"https://rpc.qwoyn.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"realionetwork_3301-1","fees":{"fee_tokens":[{"denom":"ario","fixed_min_gas_price":1000000000,"low_gas_price":4000000000,"average_gas_price":5000000000,"high_gas_price":8000000000}]},"apis":{"rpc":[{"address":"https://realio-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://realio.rpc.bccnodes.com/","provider":"BccNodes"},{"address":"https://rpc-realio-network.nodeist.net","provider":"Nodeist"},{"address":"http://realio.rpc.m.stavr.tech:21097","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.realio.indonode.net","provider":"Indonode"},{"address":"https://rpc-realio.vinjan.xyz","provider":"vinjan"},{"address":"https://api-realio.sr20de.xyz","provider":"Sr20de"},{"address":"https://rpc.realio.safeblock.space","provider":"Safe Block"},{"address":"https://realio.declab.pro:26622","provider":"Decloud Nodes Lab"},{"address":"https://realio-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc-realio.blockval.io","provider":"Blockval"},{"address":"https://realio_rio_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"reb_1111-1","fees":{"fee_tokens":[{"denom":"arebus","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://api.rebuschain.com:26657/","provider":"Rebuschain"},{"address":"https://rebus.rpc.bccnodes.com:443","provider":"BccNodes"},{"address":"https://rebus.rpc.manticore.team:443/","provider":"MantiCore"},{"address":"https://rpc.rebus.nodestake.top/","provider":"NodeStake"},{"address":"http://rebus.rpc.m.stavr.tech:40107","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-1.rebus.nodes.guru","provider":"Nodes.Guru"},{"address":"https://api.mainnet.rebus.money:26657","provider":"Rebuschain"},{"address":"https://rebus-rpc.brocha.in","provider":"Brochain"},{"address":"https://rebus-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rebus.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://rebus-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rebus-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"regen-1","fees":{"fee_tokens":[{"denom":"uregen","low_gas_price":0.015,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc-regen.ecostake.com","provider":"ecostake"},{"address":"http://public-rpc.regen.vitwit.com:26657","provider":"vitwit"},{"address":"https://regen.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://regen.stakesystems.io:2053","provider":"stakesystems"},{"address":"http://rpc.regen.forbole.com:80","provider":"forbole"},{"address":"https://rpc-regen-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://regen-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://regen-rpc.easy2stake.com","provider":"Easy 2 Stake"},{"address":"https://regen-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://regen-rpc.w3coins.io","provider":"w3coins"},{"address":"https://regen-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"titan-1","fees":{"fee_tokens":[{"denom":"uatolo","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpcapi.rizon.world/","provider":"HDAC Technology AG"},{"address":"https://rpc.rizon.chaintools.tech/","provider":"ChainTools"},{"address":"https://rizon-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rizon-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"30","fees":{"fee_tokens":[{"denom":"sat"}]},"apis":{"rpc":[]}},{"chain_id":"router_9600-1","fees":{"fee_tokens":[{"denom":"route","fixed_min_gas_price":7,"low_gas_price":7,"average_gas_price":7,"high_gas_price":10}]},"apis":{"rpc":[{"address":"https://sentry.tm.rpc.routerprotocol.com/","provider":"Router"},{"address":"https://router-rpc.genznodes.dev/","provider":"genznodes"},{"address":"https://router.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://router-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://routerchain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"ssc-1","fees":{"fee_tokens":[{"denom":"usaga","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc-saga.keplr.app","provider":"chainapsis"},{"address":"https://saga-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://saga-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.saga.nodestake.org","provider":"NodeStake"},{"address":"https://saga.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.saga.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://rpc.saga.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.lavenderfive.com:443/saga","provider":"Lavender.Five Nodes 🐝"},{"address":"https://saga-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://saga-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"scorum-1","fees":{"fee_tokens":[{"denom":"gas","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1,"high_gas_price":1}]},"apis":{"rpc":[{"address":"https://scorum-blockchain-mainnet-rpc.scorum.com","provider":"scorum"}]}},{"chain_id":"secret-4","fees":{"fee_tokens":[{"denom":"uscrt","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.1,"high_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://scrt.public-rpc.com","provider":"ANKR"},{"address":"https://rpc.lavenderfive.com:443/secretnetwork","provider":"Lavender.Five Nodes 🐝"},{"address":"https://1rpc.io/scrt-rpc","provider":"1RPC - Automata Network"},{"address":"https://secretnetwork-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://rpc.mainnet.secretsaturn.net","provider":"πŸͺ π•Šecret π•Šaturn"},{"address":"https://rpc-secret.01node.com","provider":"01node"},{"address":"https://public.stakewolle.com/cosmos/secretnetwork/rpc","provider":"Stakewolle"}]}},{"chain_id":"seda-1","fees":{"fee_tokens":[{"denom":"aseda","fixed_min_gas_price":10000000000,"low_gas_price":10000000000,"average_gas_price":10000000000,"high_gas_price":14000000000}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.seda.xyz/","provider":"SEDA"},{"address":"https://seda-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://seda.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://seda-rpc.synergynodes.com/","provider":"Synergy Nodes"},{"address":"https://rpc.lavenderfive.com:443/seda","provider":"Lavender.Five Nodes 🐝"},{"address":"https://seda-rpc.kleomedes.network/","provider":"Kleomedes"},{"address":"https://seda-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://seda-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.seda.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc-seda.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://seda-rpc.applejuice.256x25.tech:443","provider":"Apple juice πŸ§ƒ"},{"address":"https://seda-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://seda_mainnet_rpc.chain.whenmoonwhenlambo.money:443","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc-seda-mainnet.keepitstaked.com:443","provider":"KeepItStaked.com"}]}},{"chain_id":"pacific-1","fees":{"fee_tokens":[{"denom":"usei","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.02,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.sei-apis.com","provider":"Rhino Stake"},{"address":"https://rpc.lavenderfive.com:443/sei","provider":"Lavender.Five Nodes 🐝"},{"address":"https://sei-rpc.polkachu.com","provider":"polkachu.com"},{"address":"https://sei-rpc.brocha.in","provider":"Brochain"},{"address":"https://rpc-sei.stingray.plus","provider":"StingRay"},{"address":"https://rpc-sei.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://sei.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://sei-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://sei.drpc.org","provider":"dRPC - All chains in one place"}]}},{"chain_id":"self-1","fees":{"fee_tokens":[{"denom":"uslf","fixed_min_gas_price":0.005,"low_gas_price":0.005,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.selfchain.io:26657","provider":"Self Chain"},{"address":"https://rpc.selfchain.roomit.xyz","provider":"Roomit"},{"address":"https://selfchain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://selfchain.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://selfchain-mainnet.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://selfchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"sentinelhub-2","fees":{"fee_tokens":[{"denom":"udvpn","low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc-sentinel.busurnode.com","provider":"Busurnode"},{"address":"https://rpc-sentinel-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.sentinel.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.sentinel.quokkastake.io","provider":"🐹 Quokka Stake"},{"address":"https://rpc.dvpn.roomit.xyz","provider":"Roomit"},{"address":"https://sentinel-rpc.badgerbite.io/","provider":"BadgerBite"},{"address":"https://sentinel-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://sentinel-rpc.validatornode.com/","provider":"ValidatorNode"},{"address":"https://rpc.trinitystake.io","provider":"Trinity Stake"},{"address":"https://rpc.sentineldao.com","provider":"Sentinel Growth DAO"},{"address":"https://public.stakewolle.com/cosmos/sentinel/rpc","provider":"Stakewolle"},{"address":"http://163.197.193.2:26657","provider":"Tesla Full Node"},{"address":"https://sentinel.declab.pro:26628","provider":"Decloud Nodes Lab"},{"address":"https://sentinel.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://rpc.dvpn.me:443","provider":"MathNodes China"},{"address":"https://rpc.ro.mathnodes.com:443","provider":"MathNodes Romania"},{"address":"https://rpc.noncompliant.network:443","provider":"Noncompliant Network"},{"address":"https://rpc-sentinel.chainvibes.com:443","provider":"chainvibes"},{"address":"https://sentinel-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"sgenet-1","fees":{"fee_tokens":[{"denom":"usge","fixed_min_gas_price":0.001,"low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.5}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/sge","provider":"Lavenderfive"},{"address":"https://sge-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc.sge.nodestake.top/","provider":"Nodestake"},{"address":"https://rpc.sge.roomit.xyz/","provider":"Roomit"},{"address":"https://sge.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-sge.nodeist.net/","provider":"Nodeist"},{"address":"https://sge-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://sge-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://rpc.sge.tcnetwork.io","provider":"TC Network"},{"address":"https://sge-rpc.sr20de.xyz","provider":"Sr20de"},{"address":"https://rpc.sge.safeblock.space","provider":"Safe Block"},{"address":"https://mainnet-sge-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://sge-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://sge_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"ShareRing-VoyagerNet","fees":{"fee_tokens":[{"denom":"nshr","fixed_min_gas_price":0,"low_gas_price":2000,"average_gas_price":3000,"high_gas_price":4000}]},"apis":{"rpc":[{"address":"https://rpc.explorer.shareri.ng","provider":"ShareRing"}]}},{"chain_id":"shentu-2.2","fees":{"fee_tokens":[{"denom":"uctk","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.shentu.org:443","provider":"Shentu"},{"address":"https://shentu-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://shentu.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://shentu-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://rpc-shentu-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://shentu-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://shentu-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://shentu-rpc.panthea.eu","provider":"Panthea EU"},{"address":"https://shentu-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://shentu-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"shido_9008-1","fees":{"fee_tokens":[{"denom":"shido","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://tendermint.shidoscan.com","provider":"Shido"},{"address":"https://shidochain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc.shido.256x25.tech:443","provider":"256x25"},{"address":"https://rpc.shido.indonode.net:443","provider":"Indonode"},{"address":"https://rpc-maverick.mavnode.io","provider":"MavNode"},{"address":"https://rpc.kenseishido.com","provider":"KENSEI"}]}},{"chain_id":"sifchain-1","fees":{"fee_tokens":[{"denom":"rowan","low_gas_price":1000000000000,"average_gas_price":1500000000000,"high_gas_price":2000000000000}]},"apis":{"rpc":[{"address":"https://sifchain-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://sifchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://sifchain-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://sifchain_mainnet_rpc.chain.whenmoonwhenlambo.money:443","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"sixnet","fees":{"fee_tokens":[{"denom":"usix","fixed_min_gas_price":1.25,"low_gas_price":1.25,"average_gas_price":1.5,"high_gas_price":1.75}]},"apis":{"rpc":[{"address":"https://sixnet-rpc.sixprotocol.net:443"}]}},{"fees":{"fee_tokens":[{"denom":"Lamport","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"sommelier-3","fees":{"fee_tokens":[{"denom":"usomm","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://sommelier-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-sommelier.pupmos.network","provider":"PUPMØS"},{"address":"https://somm.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/sommelier","provider":"Lavender.Five Nodes 🐝"},{"address":"https://sommelier-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://somm-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://sommelier-rpc.w3coins.io","provider":"w3coins"}]}},{"chain_id":"source-1","fees":{"fee_tokens":[{"denom":"usource","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.075,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.source.nodestake.top","provider":"NodeStake"},{"address":"https://source.rpc.bccnodes.com/","provider":"BccNodes"},{"address":"https://source.rpc.moonbridge.team/","provider":"MoonBridge"},{"address":"https://source.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-source.nodeist.net","provider":"Nodeist"},{"address":"https://source-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://source-mainnet-rpc.itrocket.net:443","provider":"ITRocket"},{"address":"https://rpc-source.sr20de.xyz:443","provider":"Sr20de"},{"address":"https://source-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.source.tcnetwork.io","provider":"TC Network"},{"address":"https://rpc.source.indonode.net","provider":"Indonode"},{"address":"https://source.rpc.skynodejs.net/","provider":"skynodejs"},{"address":"https://source.rpc.nodeshub.online/","provider":"Nodes Hub"},{"address":"https://rpc.source.roomit.xyz/","provider":"Roomit"},{"address":"https://rpc.source.posthuman.digital","provider":"posthuman"},{"address":"https://source.declab.pro:26604","provider":"Decloud Nodes Lab"},{"address":"https://rpc.source.stakeup.tech","provider":"StakeUp"},{"address":"https://source_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://source-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"stafihub-1","fees":{"fee_tokens":[{"denom":"ufis","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://public-rpc1.stafihub.io:443","provider":"StaFiHub"},{"address":"https://public-rpc2.stafihub.io:443","provider":"StaFiHub"},{"address":"https://rpc.stafihub.nodestake.top:443","provider":"NodeStake"}]}},{"chain_id":"stargaze-1","fees":{"fee_tokens":[{"denom":"ustars","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1.1,"high_gas_price":1.2}]},"apis":{"rpc":[{"address":"https://rpc.stargaze-apis.com/","provider":"Stargaze Foundation"},{"address":"https://rpc-stargaze.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-stargaze.ezstaking.dev","provider":"EZStaking.io"},{"address":"https://stargaze-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-stargaze-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://stargaze.c29r3.xyz:443/rpc/","provider":"c29r3"},{"address":"https://rpc-stargaze.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://stargaze-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc-stargaze.d-stake.xyz","provider":"D-stake"},{"address":"https://rpc.stargaze.silentvalidator.com/","provider":"silent"},{"address":"https://stargaze-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://stargaze-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://stargaze-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://stargaze-rpc.w3coins.io","provider":"w3coins"},{"address":"https://stargaze-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://stargaze-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://stargaze-rpc.reece.sh:443","provider":"Reecepbcups"},{"address":"https://rpc.stargaze.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://stargaze-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://stargaze-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"iov-mainnet-ibc","fees":{"fee_tokens":[{"denom":"uiov","low_gas_price":1,"average_gas_price":2,"high_gas_price":3}]},"apis":{"rpc":[{"address":"https://rpc-starname-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.starname.app","provider":"Chainmasters"}]}},{"chain_id":"stratos-1","fees":{"fee_tokens":[{"denom":"wei","low_gas_price":1000000000,"average_gas_price":1200000000,"high_gas_price":1600000000}]},"apis":{"rpc":[{"address":"https://rpc.thestratos.org","provider":"thestratos.org"},{"address":"http://stratos.rpc.nodersteam.com:26657/","provider":"[NODERS]TEAM"},{"address":"https://stratos-rpc.noders.services:443","provider":"[NODERS]TEAM"}]}},{"chain_id":"stride-1","fees":{"fee_tokens":[{"denom":"ustrd","fixed_min_gas_price":0.0005,"low_gas_price":0.005,"average_gas_price":0.005,"high_gas_price":0.05},{"denom":"stuatom","fixed_min_gas_price":0.0001,"low_gas_price":0.0001,"average_gas_price":0.0002,"high_gas_price":0.0005},{"denom":"stuosmo","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.004},{"denom":"stustars","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1.1,"high_gas_price":1.2},{"denom":"stujuno","fixed_min_gas_price":0.075,"low_gas_price":0.075,"average_gas_price":0.1,"high_gas_price":0.125},{"denom":"stuluna","fixed_min_gas_price":0.0125,"low_gas_price":0.0125,"average_gas_price":0.015,"high_gas_price":0.04},{"denom":"staevmos","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000},{"denom":"stinj","fixed_min_gas_price":500000000,"low_gas_price":500000000,"average_gas_price":700000000,"high_gas_price":900000000},{"denom":"stucmdx","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"stuumee","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.12,"high_gas_price":0.2},{"denom":"stutia","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1},{"denom":"stadydx","fixed_min_gas_price":15000000000,"low_gas_price":15000000000,"average_gas_price":15000000000,"high_gas_price":20000000000},{"denom":"stadym","fixed_min_gas_price":15000000000,"low_gas_price":15000000000,"average_gas_price":15000000000,"high_gas_price":20000000000},{"denom":"stusaga","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.015,"high_gas_price":0.03},{"denom":"ibc/BF3B4F53F3694B66E13C23107C84B6485BD2B96296BB7EC680EA77BBA75B4801","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://stride-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://stride-rpc.onivalidator.com","provider":"Oni Validator ⛩️"},{"address":"https://rpc.lavenderfive.com:443/stride","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.stride.silentvalidator.com/","provider":"silent"},{"address":"https://rpc-stride.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://stride.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-stride.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-stride.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc-stride.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://stride-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-stride-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://stride-rpc.w3coins.io","provider":"w3coins"},{"address":"https://stride-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://community.nuxian-node.ch:6797/stride/trpc","provider":"PRO Delegators"},{"address":"https://stride-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.stride.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://public.stakewolle.com/cosmos/stride/rpc","provider":"Stakewolle"}]}},{"chain_id":"sunrise-1","fees":{"fee_tokens":[{"denom":"urise","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[]}},{"chain_id":"synternet-1","fees":{"fee_tokens":[{"denom":"usynt","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.synternet.com/","provider":"Synternet"},{"address":"https://synternet_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://synternet-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"taketitan-12","fees":{"fee_tokens":[{"denom":"ttnc","low_gas_price":0.000001,"average_gas_price":0.000005,"high_gas_price":0.0001}]},"apis":{"rpc":[{"address":"https://rcpttnc.taketitan.com","provider":"taketitan"}]}},{"chain_id":"tenet_1559-1","fees":{"fee_tokens":[{"denom":"atenet","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://tendermint-1.rpc.tenet.org","provider":"tenet"},{"address":"https://tenet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://tenet_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"teritori-1","fees":{"fee_tokens":[{"denom":"utori","low_gas_price":0,"average_gas_price":0.25,"high_gas_price":0.5}]},"apis":{"rpc":[{"address":"https://teritori-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://teritori.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.teritori.silentvalidator.com/","provider":"silent"},{"address":"https://teritori-rpc.brocha.in","provider":"Brochain"},{"address":"https://teritori-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://teritori.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.tori.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://teritori-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://m-teritori.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc-teritori.pupmos.network","provider":"PUPMØS"},{"address":"https://teritori-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-teritori.ecostake.com","provider":"ecostake"},{"address":"https://teritori-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://teritori-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://teritori_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://teritori-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"morocco-1","fees":{"fee_tokens":[{"denom":"uthiol","fixed_min_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc-terp.zenchainlabs.io/","provider":"ZenChainLabs"},{"address":"https://terp-mainnet-rpc.itrocket.net:443","provider":"itrocket.net"},{"address":"https://terp.rpc.nodex.one:443","provider":"nodex.one"}]}},{"chain_id":"columbus-5","fees":{"fee_tokens":[{"denom":"uluna","low_gas_price":28.325,"average_gas_price":28.325,"high_gas_price":50},{"denom":"usdr","low_gas_price":0.52469,"average_gas_price":0.52469,"high_gas_price":0.52469},{"denom":"uusd","low_gas_price":0.75,"average_gas_price":0.75,"high_gas_price":0.75},{"denom":"ukrw","low_gas_price":850,"average_gas_price":850,"high_gas_price":850},{"denom":"umnt","low_gas_price":2142.855,"average_gas_price":2142.855,"high_gas_price":2142.855},{"denom":"ueur","low_gas_price":0.625,"average_gas_price":0.625,"high_gas_price":0.625},{"denom":"ucny","low_gas_price":4.9,"average_gas_price":4.9,"high_gas_price":4.9},{"denom":"ujpy","low_gas_price":81.85,"average_gas_price":81.85,"high_gas_price":81.85},{"denom":"ugbp","low_gas_price":0.55,"average_gas_price":0.55,"high_gas_price":0.55},{"denom":"uinr","low_gas_price":54.4,"average_gas_price":54.4,"high_gas_price":54.4},{"denom":"ucad","low_gas_price":0.95,"average_gas_price":0.95,"high_gas_price":0.95},{"denom":"uchf","low_gas_price":0.7,"average_gas_price":0.7,"high_gas_price":0.7},{"denom":"uaud","low_gas_price":0.95,"average_gas_price":0.95,"high_gas_price":0.95},{"denom":"usgd","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"uthb","low_gas_price":23.1,"average_gas_price":23.1,"high_gas_price":23.1},{"denom":"usek","low_gas_price":6.25,"average_gas_price":6.25,"high_gas_price":6.25},{"denom":"unok","low_gas_price":6.25,"average_gas_price":6.25,"high_gas_price":6.25},{"denom":"udkk","low_gas_price":4.5,"average_gas_price":4.5,"high_gas_price":4.5},{"denom":"uidr","low_gas_price":10900,"average_gas_price":10900,"high_gas_price":10900},{"denom":"uphp","low_gas_price":38,"average_gas_price":38,"high_gas_price":38},{"denom":"uhkd","low_gas_price":5.85,"average_gas_price":5.85,"high_gas_price":5.85},{"denom":"umyr","low_gas_price":3,"average_gas_price":3,"high_gas_price":3},{"denom":"utwd","low_gas_price":20,"average_gas_price":20,"high_gas_price":20}]},"apis":{"rpc":[{"address":"https://terra-classic-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-terra-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://terraclassic-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://terraclassic-rpc-server-01.stakely.io","provider":"Stakely"}]}},{"chain_id":"phoenix-1","fees":{"fee_tokens":[{"denom":"uluna","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.015,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/terra2","provider":"Lavender.Five Nodes 🐝"},{"address":"https://terra-rpc.polkachu.com","provider":"polkachu"},{"address":"https://terra-rpc.stakely.io:443/","provider":"stakely"},{"address":"https://phoenix-rpc.terra.dev:443","provider":"Terraform Labs"},{"address":"https://terra-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-terra-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-archive-terra.r93axnodes.cloud:443","provider":"r93AX Nodes"},{"address":"https://rpc-terra.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://terra-phoenix-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://rpc-terra.wildsage.io","provider":"πŸ§™ WildSage Labs"},{"address":"https://terra.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"},{"address":"https://terra2.tdrsys.com:2053","provider":"TdrSys"},{"address":"https://terra-rpc.cosmosrescue.dev:8443","provider":"cosmosrescue"}]}},{"chain_id":"tgrade-mainnet-1","fees":{"fee_tokens":[{"denom":"utgd","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.075,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.mainnet-1.tgrade.confio.run","provider":"Confio"},{"address":"https://rpc.tgrade.posthuman.digital","provider":"POSTHUMAN ꝏ DVS"}]}},{"chain_id":"thorchain-1","apis":{"rpc":[]}},{"chain_id":"titan_18888-1","fees":{"fee_tokens":[{"denom":"atkx","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":110000000000,"high_gas_price":200000000000}]},"apis":{"rpc":[{"address":"https://titan-rpc.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc-tokyo.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc-seoul.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc-hongkong.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc.ibs.team","provider":"ibs.team"}]}},{"fees":{"fee_tokens":[{"denom":"nanoton","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"fees":{"fee_tokens":[{"denom":"sun","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"umee-1","fees":{"fee_tokens":[{"denom":"uumee","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.12,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://umee-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-umee-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://umee-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"http://umee.rpc.m.stavr.tech:10457","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"http://rpc-umee-0.node75.org:26657","provider":"Pro-Nodes75"},{"address":"https://umee-rpc.quantnode.tech","provider":"QuantNode"},{"address":"https://umee-rpc.tienthuattoan.com","provider":"TTT πŸ‡»πŸ‡³"},{"address":"https://rpc-umee-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://umee-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://umee-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://umee.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://umee-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-umee.mms.team","provider":"MMS"},{"address":"https://rpc-umee.mzonder.com","provider":"MZONDER"},{"address":"https://umee-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://umee-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://umee.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://umee-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://umee_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"unicorn-420","fees":{"fee_tokens":[{"denom":"uwunicorn","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[]}},{"chain_id":"FUND-MainNet-2","fees":{"fee_tokens":[{"denom":"nund","fixed_min_gas_price":25,"low_gas_price":100,"average_gas_price":200,"high_gas_price":300}]},"apis":{"rpc":[{"address":"https://rpc.unification.io:443","provider":"Unification"},{"address":"https://rpc.unification.chainmasters.ninja/","provider":"Chainmasters"}]}},{"chain_id":"ununifi-beta-v1","fees":{"fee_tokens":[{"denom":"uguu","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"http://a.lcd.ununifi.cauchye.net:26657","provider":"CauchyE"},{"address":"https://rpc.ununifi.nodestake.top","provider":"NodeStake"},{"address":"https://rpc.lavenderfive.com:443/ununifi","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.lavenderfive.com:443/ununifi","provider":"Lavender.Five Nodes 🐝"},{"address":"https://ununifi-rpc.genznodes.dev","provider":"genznodes"}]}},{"chain_id":"uptick_117-1","fees":{"fee_tokens":[{"denom":"auptick","fixed_min_gas_price":13000000000,"low_gas_price":13000000000,"average_gas_price":16000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://uptick-rpc.brocha.in:443","provider":"Brochain"},{"address":"https://uptick.rpc.bccnodes.com:443","provider":"BccNodes"},{"address":"https://rpc.uptick.nodestake.top","provider":"NodeStake"},{"address":"https://uptick.rpc.kjnodes.com","provider":"kjnodes"},{"address":"http://uptick.rpc.m.stavr.tech:3157","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://m-uptick.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://uptick-mainnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://uptick.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://uptick-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://uptick-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://rpc-uptick.cakralabs.site","provider":"Cakra Labs"},{"address":"https://rpc-uptick.sr20de.xyz","provider":"Sr20de"},{"address":"https://uptick-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"xion-mainnet-1","fees":{"fee_tokens":[{"denom":"uxion","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.001,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.xion-mainnet-1.burnt.com","provider":"πŸ”₯BurntLabsπŸ”₯"},{"address":"https://xion-rpc.lavenderfive.com","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-burnt.imperator.co/","provider":"Imperator.co"},{"address":"https://xion-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://xion-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://xion_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"dimension_37-1","fees":{"fee_tokens":[{"denom":"axpla","fixed_min_gas_price":850000000000,"low_gas_price":850000000000,"average_gas_price":1147500000000,"high_gas_price":1487500000000}]},"apis":{"rpc":[{"address":"https://dimension-rpc.xpla.dev","provider":"Holdings"},{"address":"https://xpla.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/xpla","provider":"Lavender.Five Nodes 🐝"},{"address":"https://xpla-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"zetachain_7000-1","fees":{"fee_tokens":[{"denom":"azeta","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://zetachain.blockpi.network/rpc/v1/public","provider":"BlockPI"},{"address":"https://zetachain-mainnet-archive.allthatnode.com:26657","provider":"All That Node"},{"address":"https://rpc.lavenderfive.com:443/zetachain","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.zetachain.nodestake.org","provider":"NodeStake"},{"address":"https://zetachain-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://zetachain.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://zeta-chain.drpc.org","provider":"dRPC"}]}},{"chain_id":"junction","fees":{"fee_tokens":[{"denom":"amf","fixed_min_gas_price":0,"low_gas_price":0.00025,"average_gas_price":0.005,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://junction-rpc.validatorvn.com/","provider":"Validator VN"},{"address":"https://airchains-testnet-rpc.cosmonautstakes.com/","provider":"Cosmonaut Stakes"},{"address":"https://junction-testnet-rpc.synergynodes.com/","provider":"Synergy Nodes"},{"address":"https://airchains-rpc.anonid.top/","provider":"Anonid Top"},{"address":"https://airchains-test.rpc.moonbridge.team/","provider":"Moonbridge Team"},{"address":"https://airchains-rpc.chainad.org/","provider":"Coin Hunterstr"},{"address":"https://airchains.rpc.t.stavr.tech/","provider":"Stavr Tech"},{"address":"https://rpc.nodejumper.io/airchainstestnet","provider":"Nodejumper"},{"address":"https://t-airchains.rpc.utsa.tech/","provider":"UTSA"},{"address":"https://junction-rpc.kzvn.xyz/","provider":"KZVN"},{"address":"https://airchains-rpc.elessarnodes.xyz/","provider":"Elessar Nodes"},{"address":"https://junction-rpc.apollo-sync.com/","provider":"Apollo Sync"},{"address":"https://rpc-airchain.danggia.xyz/","provider":"DANGGIA"},{"address":"https://airchains-rpc.stakeme.pro/","provider":"Stakeme"},{"address":"https://airchains-testnet-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://airchains-testnet-rpc.crouton.digital/","provider":"Crouton Digital"},{"address":"https://airchains-testnet-rpc.itrocket.net/","provider":"IT Rocket"},{"address":"https://rpc1.airchains.t.cosmostaking.com/","provider":"Cosmostaking"}]}},{"chain_id":"sandbox-01","fees":{"fee_tokens":[{"denom":"uakt","fixed_min_gas_price":0,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.sandbox-01.aksh.pw:443","provider":"akash"}]}},{"chain_id":"constantine-3","fees":{"fee_tokens":[{"denom":"aconst","low_gas_price":1000000000000,"average_gas_price":1500000000000,"high_gas_price":2000000000000}]},"apis":{"rpc":[{"address":"https://rpc.constantine.archway.io","provider":"Archway"},{"address":"https://archway-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"arkeo","fees":{"fee_tokens":[{"denom":"uarkeo"}]},"apis":{"rpc":[{"address":"https://arkeonetwork-testnet.nodejumper.io:26657","provider":"NODEJUMPER"},{"address":"https://test-arkeo-rpc.kynraze.com","provider":"kynraze"},{"address":"https://testnet-arkeo-rpc.lavenderfive.com","provider":"lavenderfive"},{"address":"https://arkeo-rpc.siriusnodes.uk","provider":"siriusnodes"},{"address":"http://seed.arkeo.network:26657","provider":"arkeo"}]}},{"chain_id":"artela_11820-1","fees":{"fee_tokens":[{"denom":"uart","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://testnet-rpc1.artela.network","provider":"Artela Foundation"},{"address":"https://testnet-rpc2.artela.network","provider":"Artela Foundation"}]}},{"chain_id":"aura_6321-3","fees":{"fee_tokens":[{"denom":"ueaura","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://rpc.euphoria.aura.network/","provider":"Aura Network Foundation"}]}},{"chain_id":"axelar-testnet-lisbon-3","fees":{"fee_tokens":[{"denom":"uaxl","low_gas_price":0.007,"average_gas_price":0.007,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc-axelar-testnet.imperator.co:443","provider":"Imperator.co"},{"address":"https://axelartest-rpc.quickapi.com/","provider":"Quickapi"},{"address":"https://axelar-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"bbn-test3","fees":{"fee_tokens":[{"denom":"ubbn"}]},"apis":{"rpc":[{"address":"rpc.testnet3.babylonchain.io:443","provider":"Babylon foundation"}]}},{"chain_id":"bitcanna-dev-1","fees":{"fee_tokens":[{"denom":"ubcna","fixed_min_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://rpc-testnet.bitcanna.io","provider":"bitcanna"},{"address":"https://bitcanna-testnet.rpc.kjnodes.com/","provider":"kjnodes.com"},{"address":"https://testnet-bitcanna-rpc.konsortech.xyz/","provider":"konsortech.xyz"},{"address":"https://rpc.bitcanna-dev-1.bitcanna.aviaone.com/","provider":"aviaone.com"},{"address":"https://bitcanna-testnet.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://bcna-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"blockx_19077-1","apis":{"rpc":[]}},{"chain_id":"cascadia_6102-1","fees":{"fee_tokens":[{"denom":"aCC","fixed_min_gas_price":0,"low_gas_price":7,"average_gas_price":10,"high_gas_price":15}]},"apis":{"rpc":[{"address":"https://rpc.cascadia.foundation:443","provider":"cascadia"},{"address":"https://cscd-rpc.systemd.run:443","provider":"systemd"},{"address":"https://api.cascadia-t.indonode.net:443","provider":"Indonode"},{"address":"https://rpc-test.cascadia.hexnodes.co:443","provider":"Hexnodes"}]}},{"chain_id":"mocha-4","fees":{"fee_tokens":[{"denom":"utia","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc-mocha.pops.one","provider":"P-OPs"},{"address":"https://celestia-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-mocha-full.avril14th.org","provider":"Avril 14th"},{"address":"https://celestia-testnet-rpc.itrocket.net","provider":"πŸš€ITRocketπŸš€"},{"address":"https://rpc-celestia-testnet.cryptech.com.ua","provider":"CrypTech"},{"address":"https://rpc.celestia.testnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://celestia-testnet-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"}]}},{"chain_id":"babajaga-1","fees":{"fee_tokens":[{"denom":"uc4e","fixed_min_gas_price":0,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc-testnet.c4e.io","provider":"C4E"}]}},{"chain_id":"cheqd-testnet-6","fees":{"fee_tokens":[{"denom":"ncheq","fixed_min_gas_price":25,"low_gas_price":50,"average_gas_price":75,"high_gas_price":100}]},"apis":{"rpc":[{"address":"https://rpc.cheqd.network","provider":"cheqd"}]}},{"chain_id":"chimba-testnet","fees":{"fee_tokens":[{"denom":"ucmba","fixed_min_gas_price":0.25,"low_gas_price":1,"average_gas_price":5,"high_gas_price":10}]},"apis":{"rpc":[{"address":"https://rpc.testnet.chimba.ooo","provider":"chimba"}]}},{"chain_id":"banksy-testnet-3","fees":{"fee_tokens":[{"denom":"ppica","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.composable-t.indonode.net:443","provider":"Indonode"},{"address":"https://rpc-composable-testnet.sr20de.xyz:443","provider":"Sr20de"}]}},{"chain_id":"kitten-04","fees":{"fee_tokens":[{"denom":"uccat","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":1,"high_gas_price":2}]},"apis":{"rpc":[{"address":"https://rpc.coolcat.space","provider":"Digital Kitchen"}]}},{"chain_id":"coreum-testnet-1","fees":{"fee_tokens":[{"denom":"utestcore","fixed_min_gas_price":0.03125,"low_gas_price":0.0625,"average_gas_price":0.0625,"high_gas_price":62.5}]},"apis":{"rpc":[{"address":"https://full-node.testnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-eris.testnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://coreum-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"theta-testnet-001","fees":{"fee_tokens":[{"denom":"uatom","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://cosmoshubt.tendermintrpc.lava.build:443","provider":"Lava"},{"address":"https://rpc.sentry-01.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.sentry-02.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.state-sync-01.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.state-sync-02.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://public-cosmos-theta.w3node.com","provider":"Interchain.FM"},{"address":"https://rpc-theta.osmotest5.osmosis.zone/","provider":"Osmosis"}]}},{"chain_id":"provider","fees":{"fee_tokens":[{"denom":"uatom","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.provider-sentry-01.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.provider-sentry-02.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.provider-state-sync-01.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.provider-state-sync-02.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://cosmos-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"malaga-420","fees":{"fee_tokens":[{"denom":"umlg","low_gas_price":0.03,"average_gas_price":0.04,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.malaga-420.cosmwasm.com:443","provider":"Confio"}]}},{"chain_id":"coss-testnet-1","fees":{"fee_tokens":[{"denom":"ucgas","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://coss-testnet-rpc.coss.ink","provider":"COSS"}]}},{"chain_id":"cudos-testnet-public-3","apis":{"rpc":[{"address":"https://rpc.testnet.cudos.org:443/","provider":"cudo"},{"address":"http://sentry-01.hosts.testnet.cudos.org:26657","provider":"cudo"},{"address":"http://sentry-02.hosts.testnet.cudos.org:26657","provider":"cudo"},{"address":"http://sentry-03.hosts.testnet.cudos.org:26657","provider":"cudo"}]}},{"chain_id":"deardoge-testnet","fees":{"fee_tokens":[{"denom":"udear","fixed_min_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://testnet-rpc.deardoge.org","provider":"dorafactory"}]}},{"chain_id":"morpheus-apollo-3","fees":{"fee_tokens":[{"denom":"udaric","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.03,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.morpheus.desmos.network","provider":"desmos"}]}},{"chain_id":"dhealth-testnet-2","fees":{"fee_tokens":[{"denom":"utdhp","fixed_min_gas_price":0.01,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc-testnet.dhealth.dev","provider":"dHealth"}]}},{"chain_id":"vota-testnet","fees":{"fee_tokens":[{"denom":"peaka","fixed_min_gas_price":100000000000}]},"apis":{"rpc":[{"address":"https://vota-testnet-rpc.dorafactory.org/","provider":"dorafactory"}]}},{"chain_id":"dydx-testnet-4","fees":{"fee_tokens":[{"denom":"adv4tnt","fixed_min_gas_price":12500000000,"low_gas_price":12500000000,"average_gas_price":12500000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://dydx-rpc-testnet.enigma-validator.com","provider":"Enigma"},{"address":"https://testnet-dydx-rpc.lavenderfive.com","provider":"Lavender Five"},{"address":"https://test-dydx-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://dydx-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://dydx-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"dymension_1405-1","fees":{"fee_tokens":[{"denom":"adym","low_gas_price":5000000000,"average_gas_price":5500000000,"high_gas_price":6000000000}]},"apis":{"rpc":[{"address":"https://rpc-dym-migration-test-2.mzonder.com","provider":"mzonder"}]}},{"chain_id":"elystestnet-1","fees":{"fee_tokens":[{"denom":"uelys","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/2180E84E20F5679FCC760D8C165B60F42065DEF7F46A72B447CFF1B7DC6C0A65","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.testnet.elys.network","provider":"Elys Network"},{"address":"https://elys-testnet-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://elys-testnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://elys-rpc.kleomedes.network:443","provider":"Kleomedes"},{"address":"https://elys-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"empe-testnet-2","fees":{"fee_tokens":[{"denom":"uempe","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-testnet.empe.io/","provider":"empe"},{"address":"https://rpc-archive-testnet.empe.io/","provider":"empe-archive"}]}},{"chain_id":"circulus-1","fees":{"fee_tokens":[{"denom":"umpwr","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://empower-testnet-rpc.polkachu.com:443","provider":"Polkachu"},{"address":"https://empower.rpc.cumulo.com.es:443","provider":"Cumulo"},{"address":"https://rpc-t.empower.nodestake.top:443","provider":"NodeStake"},{"address":"https://rpc-empower.nodeist.net:443","provider":"Nodeist"},{"address":"https://empower-testnet.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://empower-testnet-rpc.itrocket.net:443","provider":"ITRocket"},{"address":"https://rpc.circulus-1.empower.aviaone.com:443","provider":"AviaOne"}]}},{"chain_id":"epix_4243-1","fees":{"fee_tokens":[{"denom":"aepix","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.testnet.epix.zone","provider":"Epix Testnet"}]}},{"chain_id":"evmos_9000-4","fees":{"fee_tokens":[{"denom":"atevmos","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://evmos.test.rpc.coldyvalidator.net","provider":"coldy"},{"address":"https://evmos-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://evmos-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"dorado-1","fees":{"fee_tokens":[{"denom":"atestfet","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc-dorado.fetch.ai:443","provider":"fetch.ai"}]}},{"chain_id":"fiamma-testnet-1","fees":{"fee_tokens":[{"denom":"ufia"}]},"apis":{"rpc":[{"address":"https://testnet-rpc.fiammachain.io","provider":"Fiamma"}]}},{"chain_id":"ebony-2","fees":{"fee_tokens":[{"denom":"tcony","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.015,"high_gas_price":0.015}]},"apis":{"rpc":[{"address":"https://ebony-rpc.finschia.io"}]}},{"chain_id":"galactica_9302-1","fees":{"fee_tokens":[{"denom":"agnet","fixed_min_gas_price":10,"low_gas_price":10,"average_gas_price":10,"high_gas_price":20}]},"apis":{"rpc":[{"address":"https://rpc.galactica.test.pfc.zone/","provider":"PFC"},{"address":"https://galactica-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"gitopia-janus-testnet-2","fees":{"fee_tokens":[{"denom":"utlore","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://gitopia-testnet.nodejumper.io","provider":"NODEJUMPER"}]}},{"chain_id":"berberis-1","fees":{"fee_tokens":[{"denom":"uhedge","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-berberis.hedgeblock.io","provider":"Hedge"}]}},{"chain_id":"testnet-1","fees":{"fee_tokens":[{"denom":"uheart","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://humans-testnet.nodejumper.io","provider":"NODEJUMPER"},{"address":"https://humans-testnet-rpc.cosmonautstakes.com","provider":"Cosmonaut Stakes πŸ€–"}]}},{"chain_id":"prajna-1","fees":{"fee_tokens":[{"denom":"uhid","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.prajna.hypersign.id","provider":"Hypersign"}]}},{"chain_id":"pandora-8","fees":{"fee_tokens":[{"denom":"uixo","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.testnet.ixo.earth/","provider":"ixoworld"}]}},{"chain_id":"imversed-test-1","fees":{"fee_tokens":[{"denom":"nimv","fixed_min_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://tx-endpoint-test.imversed.com/","provider":"imversed"}]}},{"chain_id":"injective-888","fees":{"fee_tokens":[{"denom":"inj","fixed_min_gas_price":160000000,"low_gas_price":500000000,"average_gas_price":700000000,"high_gas_price":900000000}]},"apis":{"rpc":[{"address":"https://injective-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://testnet.sentry.tm.injective.network:443","provider":"injectiveLabs"},{"address":"https://testnet.tm.injective.network","provider":"injectiveLabs"},{"address":"https://injective-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"canine-1","fees":{"fee_tokens":[{"denom":"ujkl","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"http://jkl.rpc.t.stavr.tech:19127","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://testnet-rpc.jackalprotocol.com","provider":"Jackal Labs"}]}},{"chain_id":"mesomelas-1","fees":{"fee_tokens":[{"denom":"ujkl","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://jackal-testnet-v4-rpc.brocha.in","provider":"Brochain"}]}},{"chain_id":"uni-6","fees":{"fee_tokens":[{"denom":"ujunox","low_gas_price":0.003,"average_gas_price":0.0045,"high_gas_price":0.006}]},"apis":{"rpc":[{"address":"https://juno-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"kichain-t-4","fees":{"fee_tokens":[{"denom":"utki","fixed_min_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://rpc-challenge.blockchain.ki/","provider":"kifoundation"}]}},{"chain_id":"kima_testnet","fees":{"fee_tokens":[{"denom":"uKIMA","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc-testnet.kima.finance/","provider":"Kima Network"}]}},{"chain_id":"harpoon-4","fees":{"fee_tokens":[{"denom":"ukuji","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://kujira-testnet-rpc.polkachu.com","provider":"polkachu"}]}},{"chain_id":"kaon-1","fees":{"fee_tokens":[{"denom":"tkyve","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc.kaon.kyve.network","provider":"kyve"},{"address":"https://rpc-kyve-test.ecostake.com","provider":"ecostake"},{"address":"https://kyve-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"lava-testnet-2","fees":{"fee_tokens":[{"denom":"ulava","fixed_min_gas_price":0.000001,"low_gas_price":0.000001,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://lav1.tendermintrpc.lava.build:443","provider":"Lava"},{"address":"http://lava.rpc.t.stavr.tech:198","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://lava-testnet-rpc.itrocket.net:443","provider":"πŸš€ITRocketπŸš€"},{"address":"https://lava-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"likecoin-public-testnet-5","fees":{"fee_tokens":[{"denom":"nanoekil","fixed_min_gas_price":1000,"low_gas_price":1000,"average_gas_price":10000,"high_gas_price":1000000}]},"apis":{"rpc":[{"address":"https://node.testnet.like.co/rpc/","provider":"like.co"}]}},{"chain_id":"lumenx-test","fees":{"fee_tokens":[{"denom":"ulumen","fixed_min_gas_price":0.0025,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://testnet-rpc.lumenx.chaintools.tech/","provider":"ChainTools"},{"address":"https://testrpc-lumenx.cryptonet.pl/","provider":"CryptoNet"}]}},{"chain_id":"manifest-ledger-beta","fees":{"fee_tokens":[{"denom":"umfx","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.007,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://nodes.chandrastation.com/rpc/manifest/","provider":"Chandra Station"},{"address":"https://manifest-beta-rpc.liftedinit.tech/","provider":"Lifted Initiative"}]}},{"chain_id":"mantra-hongbai-1","fees":{"fee_tokens":[{"denom":"uom","fixed_min_gas_price":0,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.003}]},"apis":{"rpc":[{"address":"https://rpc.hongbai.mantrachain.io","provider":"MANTRACHAIN"},{"address":"https://mantra-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"mantra-dukong-1","fees":{"fee_tokens":[{"denom":"uom","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.dukong.mantrachain.io","provider":"MANTRACHAIN"},{"address":"https://mantra-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"ares-1","fees":{"fee_tokens":[{"denom":"umars","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://testnet-rpc.marsprotocol.io/","provider":"Mars Protocol"},{"address":"https://rpc-mars.nodeist.net/","provider":"Nodeist"}]}},{"chain_id":"mnova_10096-1","apis":{"rpc":[]}},{"chain_id":"narwhal-2","fees":{"fee_tokens":[{"denom":"uwhale","fixed_min_gas_price":0.25,"low_gas_price":0.25,"average_gas_price":0.5,"high_gas_price":0.75}]},"apis":{"rpc":[{"address":"https://migaloo-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"neura_267-1","fees":{"fee_tokens":[{"denom":"atankr"}]},"apis":{"rpc":[{"address":"https://rpc.ankr.com/neura_testnet","provider":"ankr"}]}},{"chain_id":"pion-1","fees":{"fee_tokens":[{"denom":"untrn","low_gas_price":0.0053,"average_gas_price":0.0053,"high_gas_price":0.0053}]},"apis":{"rpc":[{"address":"https://rpc-falcron.pion-1.ntrn.tech","provider":"Neutron"},{"address":"https://neutron-testnet-rpc.polkachu.com/","provider":"Polkachu"}]}},{"chain_id":"nibiru-testnet-1","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet-1.nibiru.fi","provider":"Nibiru Foundation"}]}},{"chain_id":"nibiru-testnet-2","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet-2.nibiru.fi","provider":"Nibiru Foundation"}]}},{"chain_id":"nibiru-testnet-3","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet-3.nibiru.fi","provider":"Nibiru Foundation"}]}},{"chain_id":"nillion-chain-testnet-1","fees":{"fee_tokens":[{"denom":"unil","low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.00025}]},"apis":{"rpc":[{"address":"https://nillion-testnet-rpc.polkachu.com/","provider":"polkachu"},{"address":"https://testnet-nillion-rpc.lavenderfive.com","provider":"lavenderfive"},{"address":"https://nillion-testnet.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://nillion-testnet.rpc.nodex.one","provider":"NodeX Emperor"}]}},{"chain_id":"grand-1","fees":{"fee_tokens":[{"denom":"uusdc","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://noble-testnet-rpc.polkachu.com","provider":"polkachu"},{"address":"https://rpc.testnet.noble.strange.love:443","provider":"strangelove"}]}},{"chain_id":"nois-testnet-005","fees":{"fee_tokens":[{"denom":"unois","fixed_min_gas_price":0,"low_gas_price":0.05,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://nois-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://nois-testnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://rpc.nois.mcbnode.online:443","provider":"mcbnode"},{"address":"https://nois-testnet.rpc.kjnodes.com:443","provider":"kjnodes"},{"address":"https://tnois-rpc.systemd.run:443","provider":"systemd"}]}},{"chain_id":"rila-1","fees":{"fee_tokens":[{"denom":"unls","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rila-cl.nolus.network:26657","provider":"NolusProtocol"}]}},{"chain_id":"nomic-testnet-6","fees":{"fee_tokens":[{"denom":"unom","low_gas_price":0,"average_gas_price":0,"high_gas_price":0},{"denom":"usat","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://testnet-rpc.nomic.io:2096","provider":"nomic"}]}},{"chain_id":"sandbox","fees":{"fee_tokens":[{"denom":"unym","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"unyx","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.sandbox.nymtech.net","provider":"Nym"}]}},{"chain_id":"okp4-nemeton-1","fees":{"fee_tokens":[{"denom":"uknow","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://api.testnet.okp4.network/rpc","provider":"OKP4"},{"address":"https://okptest-rpc.quickapi.com","provider":"Chainlayer"},{"address":"http://okp.rpc.t.stavr.tech:10097","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://okp4-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"osmo-test-5","fees":{"fee_tokens":[{"denom":"uosmo","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.osmotest5.osmosis.zone/","provider":"Osmosis"}]}},{"chain_id":"INVALID-ID-permtestnet-testnet-1","fees":{"fee_tokens":[{"denom":"uperm","low_gas_price":0.0025,"average_gas_price":0.0025,"high_gas_price":0.0024}]},"apis":{"rpc":[{"address":"https://rpc.3.finance/","provider":"Perm Network"}]}},{"chain_id":"test-core-1","fees":{"fee_tokens":[{"denom":"uxprt","fixed_min_gas_price":0,"low_gas_price":0.05,"average_gas_price":0.125,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://rpc-testnet-persistence.architectnodes.com/","provider":"Architect Nodes"},{"address":"https://persistence-testnet-rpc.baryon.dev/","provider":"Baryon"},{"address":"https://persistence-testnet-rpc.cosmonautstakes.com/","provider":"Cosmonaut Stakes"},{"address":"https://rpc.testnet.persistence.one/","provider":"Persistence"},{"address":"https://persistence-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://xprt-trpc.antrixy.org/","provider":"Antrix Validators"}]}},{"chain_id":"test-core-2","fees":{"fee_tokens":[{"denom":"uxprt","fixed_min_gas_price":0,"low_gas_price":0.05,"average_gas_price":0.125,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://rpc-persistence-testnet-01.stakeflow.io/","provider":"StakeFlow"},{"address":"https://persistence-testnet-rpc.baryon.dev/","provider":"Baryon"},{"address":"https://persistence-testnet-rpc.cosmonautstakes.com/","provider":"Cosmonaut Stakes"},{"address":"https://rpc.testnet2.persistence.one/","provider":"Persistence"},{"address":"https://persistence-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://persistencecoretest-rpc.ytwofund.pro/","provider":"YTWOFUND"},{"address":"http://persistence-testnet.paranorm.pro:24657/","provider":"Paranorm"}]}},{"chain_id":"planq_7077-1","fees":{"fee_tokens":[{"denom":"atplanq","fixed_min_gas_price":20000000000,"low_gas_price":30000000000,"average_gas_price":35000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc-atlas.planq.network","provider":"Planq Network"},{"address":"https://planq_testnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"pocket-beta","fees":{"fee_tokens":[{"denom":"upokt","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://shannon-testnet-grove-rpc.beta.poktroll.com","provider":"Grove"}]}},{"chain_id":"indigo-1","fees":{"fee_tokens":[{"denom":"upryzm","fixed_min_gas_price":0,"low_gas_price":0.015,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://testnet-rpc.pryzm.zone","provider":"PRYZM"},{"address":"https://pryzm-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"quasar-test-1","fees":{"fee_tokens":[{"denom":"uqsr","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://quasar-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://quasar-testnet-rpc.stakeandrelax.net/","provider":"Stake and Relax"},{"address":"https://quasar-testnet.rpc.kjnodes.com","provider":"KJNodes.com"}]}},{"chain_id":"rhye-2","fees":{"fee_tokens":[{"denom":"uqck","low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.00025}]},"apis":{"rpc":[{"address":"http://quick.rpc.t.stavr.tech:20027","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://quicksilver-testnet-rpc.polkachu.com/","provider":"polkachu"},{"address":"https://quicksilver-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"earendel-1","fees":{"fee_tokens":[{"denom":"uqwoyn"}]},"apis":{"rpc":[{"address":"https://testnet-rpc.qwoyn.studio","provider":"Qwoyn Studios"}]}},{"chain_id":"ssc-testnet-1","fees":{"fee_tokens":[{"denom":"utsaga","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://testnet-ssc.sagarpc.io/","provider":"Saga"}]}},{"chain_id":"pulsar-3","fees":{"fee_tokens":[{"denom":"uscrt","fixed_min_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet.secretsaturn.net","provider":"π•Šecret π•Šaturn"},{"address":"https://rpc.pulsar.scrttestnet.com","provider":"SCRT Testnet Committee"}]}},{"chain_id":"atlantic-1","fees":{"fee_tokens":[{"denom":"usei","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://sei-testnet-rpc.brocha.in","provider":"Brochain"}]}},{"chain_id":"atlantic-2","fees":{"fee_tokens":[{"denom":"usei","fixed_min_gas_price":0.08}]},"apis":{"rpc":[{"address":"https://sei-testnet-2-rpc.brocha.in","provider":"Brochain"},{"address":"https://rpc-testnet-sei.stingray.plus","provider":"StingRay"}]}},{"chain_id":"self-dev-1","fees":{"fee_tokens":[{"denom":"uself","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-devnet.selfchain.xyz","provider":"Selfchain"}]}},{"chain_id":"sge-network-3","fees":{"fee_tokens":[{"denom":"usge","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.testnet.sgenetwork.io","provider":"Sge Network"},{"address":"https://testnet-saage-rpc.lavenderfive.com/ ","provider":"Lavender.Five"},{"address":"https://saage-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-t.sge.nodestake.top/","provider":"Nodestake.top"},{"address":"https://sge.rpc.t.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"sge-network-4","fees":{"fee_tokens":[{"denom":"usge","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.testnet.sgenetwork.io","provider":"Sge Network"},{"address":"https://testnet-saage-rpc.lavenderfive.com/ ","provider":"Lavender.Five"},{"address":"https://saage-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-t.sge.nodestake.top/","provider":"Nodestake.top"}]}},{"chain_id":"yulei-2.1","fees":{"fee_tokens":[{"denom":"uctk","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://yulei-rpc.shentu.org:443","provider":"Shentu"}]}},{"chain_id":"fivenet","fees":{"fee_tokens":[{"denom":"usix","fixed_min_gas_price":1.25,"low_gas_price":1.25,"average_gas_price":1.5,"high_gas_price":1.75}]},"apis":{"rpc":[{"address":"https://rpc1.fivenet.sixprotocol.net:443"}]}},{"chain_id":"soarchaintestnet","fees":{"fee_tokens":[{"denom":"utsoar","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc1.testnet.soarchain.com","provider":"soarchain"},{"address":"https://rpc2.testnet.soarchain.com/","provider":"soarchain"},{"address":"https://soarchain-testnet-rpc.tienthuattoan.com","provider":"tienthuattoan"},{"address":"https://soarchain-testnet.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-t.soarchain.nodestake.org","provider":"nodeStake"},{"address":"https://soarchain-testnet-rpc.stakerhouse.com","provider":"stakerHouse"}]}},{"chain_id":"sourcetest-1","fees":{"fee_tokens":[{"denom":"usource","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.075,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://source-testnet-rpc.itrocket.net/","provider":"ITRocket"},{"address":"https://source-test.rpc.moonbridge.team/","provider":"MoonBridge"},{"address":"https://source-testnet-rpc.stake-town.com:443","provider":"StakeTown"},{"address":"https://rpc-testnet-source.sr20de.xyz","provider":"SR20DE"},{"address":"https://source-testnet.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://source_testnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"elgafar-1","fees":{"fee_tokens":[{"denom":"ustars","low_gas_price":0.03,"average_gas_price":0.04,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.elgafar-1.stargaze-apis.com","provider":"Stargaze Foundation"},{"address":"https://stargaze-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"stateset-1-testnet","fees":{"fee_tokens":[{"denom":"ustate","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.stateset.zone/","provider":"stateset"}]}},{"chain_id":"stride-internal-1","fees":{"fee_tokens":[{"denom":"ustrd","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://stride.testnet-1.stridenet.co","provider":"Stride"}]}},{"chain_id":"sunrise-test-0.1","fees":{"fee_tokens":[{"denom":"urise","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://a-node.sunrise-test-1.cauchye.net/","provider":"CauchyE"},{"address":"https://b-node.sunrise-test-1.cauchye.net/","provider":"CauchyE"}]}},{"chain_id":"swisstronik_1291-1","fees":{"fee_tokens":[{"denom":"aswtr","fixed_min_gas_price":7}]},"apis":{"rpc":[{"address":"https://rpc.testnet.swisstronik.com","provider":"Swisstronik"},{"address":"https://testnet-swisstronik-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://rpc.swisstronik.comunitynode.my.id","provider":"ComunityNode"}]}},{"chain_id":"symphony-testnet-3","fees":{"fee_tokens":[{"denom":"note","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://symphony.test.rpc.nodeshub.online/","provider":"Nodes Hub"},{"address":"https://symphony-testnet-rpc.cogwheel.zone/","provider":"Cogwheel βš™οΈ"}]}},{"chain_id":"amber-2","fees":{"fee_tokens":[{"denom":"uamber","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-testnet.synternet.com/","provider":"Synternet"}]}},{"chain_id":"90u-4","fees":{"fee_tokens":[{"denom":"uthiolx","fixed_min_gas_price":0.5,"low_gas_price":0.75,"average_gas_price":1,"high_gas_price":1.25}]},"apis":{"rpc":[{"address":"https://testnet-rpc.terp.network:443/","provider":"Terpnet Foundation"},{"address":"https://terp-testnet-rpc.itrocket.net:443/","provider":"itrocket"}]}},{"chain_id":"90u-2","fees":{"fee_tokens":[{"denom":"uthiolx","fixed_min_gas_price":0.5,"low_gas_price":0.75,"average_gas_price":1,"high_gas_price":1.25}]},"apis":{"rpc":[{"address":"https://terp-testnet-rpc.itrocket.net:443/","provider":"itrocket"}]}},{"chain_id":"pisco-1","fees":{"fee_tokens":[{"denom":"uluna","fixed_min_gas_price":0.0125,"low_gas_price":0.0125,"average_gas_price":0.015,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://pisco-rpc.terra.dev:443","provider":"Terraform Labs"},{"address":"https://terra-testnet-rpc.polkachu.com:443","provider":"Polkachu"}]}},{"chain_id":"titan_18889-1","fees":{"fee_tokens":[{"denom":"atkx","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":110000000000,"high_gas_price":200000000000}]},"apis":{"rpc":[{"address":"https://titan-testnet-rpc.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-1.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-2.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-3.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-4.titanlab.io:443","provider":"Titanlab.io"}]}},{"chain_id":"tucana_712-1","fees":{"fee_tokens":[{"denom":"atuc","fixed_min_gas_price":5000000000,"low_gas_price":10000000000,"average_gas_price":25000000000,"high_gas_price":30000000000}]},"apis":{"rpc":[{"address":"https://rpc.birdee-2.tucana.zone/","provider":"Tucana"}]}},{"chain_id":"ulas","apis":{"rpc":[{"address":"http://65.49.204.199:26657","provider":"UlasNetwork"}]}},{"chain_id":"FUND-TestNet-2","fees":{"fee_tokens":[{"denom":"nund","fixed_min_gas_price":25,"low_gas_price":100,"average_gas_price":200,"high_gas_price":300}]},"apis":{"rpc":[{"address":"https://rpc-testnet.unification.io:443","provider":"Unification"}]}},{"chain_id":"union-testnet-8","fees":{"fee_tokens":[{"denom":"muno","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.testnet-8.union.build","provider":"union"},{"address":"https://union-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-testnet-union.nodeist.net","provider":"Nodeist"},{"address":"https://union-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"uptick_7000-2","fees":{"fee_tokens":[{"denom":"auptick","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://uptick-7000-2-rpc.staketab.org:443","provider":"Staketab"}]}},{"chain_id":"buenavista-1","fees":{"fee_tokens":[{"denom":"uward","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.buenavista.wardenprotocol.org/","provider":"Warden Protocol"}]}},{"chain_id":"INVALID-ID-wavehashtestnet-testnet-1","fees":{"fee_tokens":[{"denom":"uwahax","low_gas_price":0.0025,"average_gas_price":0.0025,"high_gas_price":0.0024}]},"apis":{"rpc":[{"address":"https://rpc.wavehash.online/","provider":"WaveHash Network"}]}},{"chain_id":"xion-testnet-1","fees":{"fee_tokens":[{"denom":"uxion","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.001,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.xion-testnet-1.burnt.com","provider":"πŸ”₯BurntLabsπŸ”₯"},{"address":"https://testnet-burnt-rpc.lavenderfive.com","provider":"Lavender.Five Nodes 🐝"},{"address":"https://xion-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://burnt-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"cube_47-5","fees":{"fee_tokens":[{"denom":"axpla","fixed_min_gas_price":850000000000,"low_gas_price":850000000000,"average_gas_price":1147500000000,"high_gas_price":1487500000000}]},"apis":{"rpc":[{"address":"https://cube-rpc.xpla.dev","provider":"Holdings"}]}},{"chain_id":"gardia-2","fees":{"fee_tokens":[{"denom":"urock","fixed_min_gas_price":0.5,"low_gas_price":0.5,"average_gas_price":0.55,"high_gas_price":0.6}]},"apis":{"rpc":[{"address":"https://rpc.gardia.zenrocklabs.io/","provider":"zenrock"}]}},{"chain_id":"athens_7001-1","fees":{"fee_tokens":[{"denom":"azeta","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://zetachain-athens.blockpi.network/rpc/v1/public","provider":"BlockPI"},{"address":"https://zetachain-testnet-archive.allthatnode.com:26657","provider":"All That Node"}]}},{"chain_id":"landlord-2","fees":{"fee_tokens":[{"denom":"l2/1666ede2bf1985307a86de36a6b78411cbf1edeffc2ac569e6a7b2f8753db4bb","fixed_min_gas_price":0.15,"low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://maze-rpc-sequencer-53ecf1d6-4fa1-4103-827f-a9430df97cef.ane1-prod-nocsm.newmetric.xyz","provider":"Civitia"}]}},{"chain_id":"initiation-2","fees":{"fee_tokens":[{"denom":"uinit","fixed_min_gas_price":0.15,"low_gas_price":0.15,"average_gas_price":0.15,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc.testnet.initia.xyz/","provider":"Initia Labs"},{"address":"https://rpc-skip.testnet.initia.xyz/","provider":"Initia Labs","authorizedUser":"skip"}]}},{"chain_id":"glados-2.1","fees":{"fee_tokens":[{"denom":"umilk","fixed_min_gas_price":0.15,"low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4},{"denom":"ibc/37A3FB4FED4CA04ED6D9E5DA36C6D27248645F0E22F585576A1488B8A89C5A50","fixed_min_gas_price":0.15,"low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc.testnet.milkyway.zone","provider":"MilkyWay Labs"},{"address":"https://rpc-skip.testnet.milkyway.zone","provider":"MilkyWay Labs","authorizedUser":"skip","indexForSkip":0}]}},{"chain_id":"minievm-2","fees":{"fee_tokens":[{"denom":"GAS","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.minievm-2.initia.xyz","provider":"Initia Labs"},{"address":"https://rpc-skip.minievm-2.initia.xyz","provider":"Initia Labs","authorizedUser":"skip","indexForSkip":0}]}},{"chain_id":"minimove-2","fees":{"fee_tokens":[{"denom":"umin","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.minimove-2.initia.xyz","provider":"Initia Labs"},{"address":"https://rpc-skip.minimove-2.initia.xyz","provider":"Initia Labs","authorizedUser":"skip","indexForSkip":0}]}},{"chain_id":"miniwasm-2","fees":{"fee_tokens":[{"denom":"umin","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.miniwasm-2.initia.xyz","provider":"Initia Labs"},{"address":"https://rpc-skip.miniwasm-2.initia.xyz","provider":"Initia Labs","authorizedUser":"skip","indexForSkip":0}]}}] \ No newline at end of file +[{"chain_id":"aaronetwork","fees":{"fee_tokens":[{"denom":"uaaron","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://mainnet-rpc.aaronetwork.xyz","provider":"Aaron Network Foundation"},{"address":"https://aaronetwork_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"acre_9052-1","fees":{"fee_tokens":[{"denom":"aacre","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc-acre.synergynodes.com","provider":"Synergy Nodes"},{"address":"https://acrechain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.acre.tcnetwork.io","provider":"TC Network"},{"address":"https://mainnet-acre-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://acred-rpc.staketab.org:443","provider":"Staketab"}]}},{"chain_id":"agoric-3","fees":{"fee_tokens":[{"denom":"ubld","low_gas_price":0.03,"average_gas_price":0.05,"high_gas_price":0.07},{"denom":"uist","low_gas_price":0.0034,"average_gas_price":0.007,"high_gas_price":0.02}]},"apis":{"rpc":[{"address":"https://main.rpc.agoric.net:443"},{"address":"https://agoric-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.agoric.nodestake.org","provider":"NodeStake"},{"address":"https://agoric.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://agoric-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-agoric-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://agoric-rpc.0base.dev","provider":"0base.vc"},{"address":"https://agoric-rpc.stakeangle.com","provider":"StakeAngle"},{"address":"https://agoric-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc.agoric.stakewith.us","provider":"StakeWithUs"},{"address":"https://rpc-agoric-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://agoric-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.agoric.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"aioz_168-1","fees":{"fee_tokens":[{"denom":"attoaioz","fixed_min_gas_price":7000000000,"low_gas_price":7000000000,"average_gas_price":7000000000,"high_gas_price":10000000000}]},"apis":{"rpc":[{"address":"https://rpc-dataseed.aioz.network:443","provider":"AIOZ Network"}]}},{"chain_id":"akashnet-2","fees":{"fee_tokens":[{"denom":"uakt","fixed_min_gas_price":0.00025,"low_gas_price":0.00025,"average_gas_price":0.0025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://rpc.akash.forbole.com:443","provider":"forbole"},{"address":"https://rpc-akash.ecostake.com:443","provider":"ecostake"},{"address":"https://rpc.lavenderfive.com:443/akash","provider":"Lavender.Five Nodes"},{"address":"https://akash-rpc.polkachu.com","provider":"Polkachu"},{"address":"http://akash.c29r3.xyz:80/rpc","provider":"c29r3"},{"address":"https://akash-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://akash-mainnet-rpc.cosmonautstakes.com:443","provider":"Cosmonaut Stakes"},{"address":"https://akash-rpc.w3coins.io","provider":"w3coins"},{"address":"https://akash-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://akash.declab.pro:26601","provider":"Decloud Nodes Lab"},{"address":"https://rpc.akash.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"althea_258432-1","fees":{"fee_tokens":[{"denom":"aalthea","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":100000000000,"high_gas_price":300000000000}]},"apis":{"rpc":[{"address":"https://nodes.chandrastation.com/rpc/althea/","provider":"Chandra Station"},{"address":"https://althea.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/althea","provider":"Lavender.Five Nodes 🐝"}]}},{"chain_id":"andromeda-1","fees":{"fee_tokens":[{"denom":"uandr","low_gas_price":0.03,"average_gas_price":0.05,"high_gas_price":0.075}]},"apis":{"rpc":[{"address":"https://rpc.andromeda-1.andromeda.aviaone.com","provider":"AviaOne 🟒"},{"address":"https://andromeda.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://andromeda.rpc.nodex.one","provider":"nodex"},{"address":"https://andro.rpc.m.stavr.tech/","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/andromeda","provider":"Lavender.Five Nodes 🐝"},{"address":"https://andromeda-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://andromeda-rpc.stakerhouse.com:443","provider":"StakerHouse"},{"address":"https://andromeda-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://andromeda-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://andromeda.rpc.kjnodes.com","provider":"kjnodes.com πŸ¦„"},{"address":"andromeda-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"rpc-andromeda.blockval.io","provider":"Blockval"},{"address":"https://andromeda.rpc.liveraven.net","provider":"LiveRaveN"}]}},{"chain_id":"archway-1","fees":{"fee_tokens":[{"denom":"aarch","fixed_min_gas_price":140000000000,"low_gas_price":196000000000,"average_gas_price":225400000000,"high_gas_price":254800000000}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.archway.io","provider":"Archway Foundation"},{"address":"https://archway-mainnet-archive.allthatnode.com:26657","provider":"All That Node"},{"address":"https://m-archway.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc-1.archway.nodes.guru","provider":"Nodes.Guru"},{"address":"https://archway.rpc.silknodes.io/","provider":"Silk Nodes"},{"address":"https://archway.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-archway.cryptech.com.ua","provider":"cryptech"},{"address":"https://rpc-archway.theamsolutions.info","provider":"AM Solutions"},{"address":"https://archway-rpc.w3coins.io","provider":"w3coins"},{"address":"https://m-archway.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc.lavenderfive.com:443/archway","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-archway.mms.team","provider":"MMS"},{"address":"https://rpc-archway.mzonder.com","provider":"MZONDER"},{"address":"https://rpc.archway.lgns.net","provider":"Luganodes"},{"address":"https://archway-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://archway-rpc.0base.dev","provider":"0base.vc"},{"address":"https://archway-mainnet.rpc.l0vd.com","provider":"L0vd.com"},{"address":"https://archway-rpc.openbitlab.com","provider":"openbitlab"},{"address":"https://rpc-archway.mzonder.com","provider":"MZONDER"},{"address":"https://rpc-archway.mainnet.validatrium.club","provider":"Validatrium"},{"address":"https://rpc.archway.stakeup.tech","provider":"StakeUp"},{"address":"https://archway-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.archway.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc-archway.luckyfriday.io/","provider":"GlobalStake"},{"address":"https://archway-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://archway-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"arkh","fees":{"fee_tokens":[{"denom":"arkh","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://asc-dataseed.arkhadian.com/","provider":"arkhnetwork"},{"address":"https://arkh_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"mantle-1","fees":{"fee_tokens":[{"denom":"umntl","low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.assetmantle.one","provider":"AssetMantle"},{"address":"https://assetmantle-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.assetmantle.nodestake.org","provider":"NodeStake"},{"address":"https://rpc-assetmantle-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.mantle.paranorm.pro:443","provider":"paranorm"},{"address":"https://assetmantle-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://assetmantle-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"atomone-1","fees":{"fee_tokens":[{"denom":"uatone","fixed_min_gas_price":0.001,"low_gas_price":0.006,"average_gas_price":0.006,"high_gas_price":0.009}]},"apis":{"rpc":[{"address":"https://atomone-rpc.allinbits.com:443","provider":"AllInBits"},{"address":"https://atomone-rpc.cogwheel.zone","provider":"Cogwheel βš™οΈ"},{"address":"https://atomone.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://rpc-atomone.nodeist.net","provider":"Nodeist"},{"address":"https://rpc-atomone-1.cros-nest.com:443","provider":"crosnest"},{"address":"https://community.nuxian-node.ch:6797/atomone/trpc","provider":"PRO Delegators"},{"address":"https://atomone-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://atomone_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://atomone-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://atomone-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"aura_6322-2","fees":{"fee_tokens":[{"denom":"uaura","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://rpc.aura.network/","provider":"Aura Network Foundation"},{"address":"https://m-aura.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://aura.rpc.m.stavr.tech:11047","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://aura-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://aura.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://mainnet-aura-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.lavenderfive.com:443/aura","provider":"Lavender.Five Nodes 🐝"},{"address":"https://aura-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc.aura.safeblock.space","provider":"Safe Block"},{"address":"https://rpc.aura.silentvalidator.com","provider":"silent"},{"address":"https://rpc-aura.mms.team","provider":"MMS"},{"address":"https://aura-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://aura-rpc.palamar.io","provider":"Palamar"},{"address":"https://aura.rpc.srv.stakr.space","provider":"STAKR.space"},{"address":"https://aura-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://aura-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"axelar-dojo-1","fees":{"fee_tokens":[{"denom":"uaxl","fixed_min_gas_price":0.007,"low_gas_price":0.007,"average_gas_price":0.007,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc-axelar.imperator.co:443","provider":"Imperator.co"},{"address":"https://axelar-rpc.quickapi.com:443","provider":"chainlayer"},{"address":"https://rpc-axelar.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://axelar-rpc.pops.one:443","provider":"p-ops"},{"address":"https://axelar-rpc.qubelabs.io:443","provider":"Qubelabs"},{"address":"https://rpc-1.axelar.nodes.guru:443","provider":"nodes.guru"},{"address":"https://rpc-axelar-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://axelar-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://axelar.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://rpc.axelar.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://axelar-rpc.validatrium.club","provider":"Validatrium"},{"address":"https://rpc-axelar.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://axelar-rpc.quantnode.tech/","provider":"QuantNode"},{"address":"https://axelar-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://axelar-rpc.rockrpc.net/","provider":"RockawayX Infra"},{"address":"https://axelar-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc-axelar-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://axelar-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://axelar-rpc.w3coins.io","provider":"w3coins"},{"address":"https://axelar-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://axelar.drpc.org","provider":"dRPC"}]}},{"chain_id":"laozi-mainnet","fees":{"fee_tokens":[{"denom":"uband","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.005}]},"apis":{"rpc":[{"address":"http://rpc.laozi1.bandchain.org:80","provider":"bandprotocol"},{"address":"https://rpc-bandchain-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://band-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://bandchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://band.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-band-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-band.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://band-rpc.w3coins.io","provider":"w3coins"},{"address":"https://bandprotocol-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://public.stakewolle.com/cosmos/bandchain/rpc","provider":"Stakewolle"},{"address":"https://rpc.band.bronbro.io/","provider":"Bro_n_Bro"},{"address":"https://rpc.band.roomit.xyz/","provider":"Roomit"},{"address":"https://band-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"beezee-1","fees":{"fee_tokens":[{"denom":"ubze","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.getbze.com","provider":"AlphaTeam"},{"address":"https://rpc-1.getbze.com","provider":"AlphaTeam"},{"address":"https://rpc-2.getbze.com","provider":"AlphaTeam"},{"address":"https://beezee_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bitbadges-1","fees":{"fee_tokens":[{"denom":"ubadge","fixed_min_gas_price":0,"low_gas_price":0.00025,"average_gas_price":0.0025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"http://134.122.12.165:26657","provider":"bitbadges"},{"address":"https://bitbadges_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bitcanna-1","fees":{"fee_tokens":[{"denom":"ubcna","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.bitcanna.io/","provider":"bitcanna"},{"address":"https://bcna-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://bitcanna-rpc.panthea.eu/","provider":"Panthea EU"},{"address":"https://rpc.bitcanna.sgtstake.com/","provider":"SGTstake"},{"address":"https://bitcanna.rpc.m.anode.team/","provider":"AlxVoy ⚑ ANODE.TEAM"},{"address":"https://bitcanna.rpc.m.stavr.tech/","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-bcna.kjinc.io/","provider":"KJINC.io"},{"address":"https://mainnet-bitcanna-rpc.konsortech.xyz/","provider":"KonsorTech"},{"address":"https://bitcanna.rpc.kjnodes.com/","provider":"kjnodes"},{"address":"https://bitcanna-rpc.genznodes.dev/","provider":"genznodes"},{"address":"https://rpc.bitcanna-1.bitcanna.aviaone.com/","provider":"AVIAONE 🟒"},{"address":"https://rpc.bitcanna-mainnet.hexnodes.one/","provider":"Hexnodes"},{"address":"https://rpc.bitcanna.citizenweb3.com/","provider":"Citizen Web3"},{"address":"https://bitcanna-mainnet.rpc.l0vd.com/","provider":"L0vd.com"},{"address":"https://bitcanna-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.bitcanna.safeblock.space","provider":"Safe Block"},{"address":"https://bitcanna.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://rpc.bitcanna.indonode.net/","provider":"Indonode"},{"address":"https://rpc-bitcanna.mms.team:443","provider":"MMS"},{"address":"https://bitcanna-rpc.validatornode.com","provider":"ValidatorNode"},{"address":"https://bitcanna.rpc.nodex.one","provider":"NodeX Emperor ⚑ Bitcanna"},{"address":"https://bcna.rpc.arcturian.tech/","provider":"Arcturian Tech"},{"address":"https://rpc.bitcanna.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://bitcanna-rpc.bluestake.net","provider":"BlueStake"},{"address":"https://rpc-bitcanna.cryptech.com.ua","provider":"CrypTech"},{"address":"https://bitcanna-rpc.kalia.network/","provider":"Kalia Network"},{"address":"https://bitcanna.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://bitcanna_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bitsong-2b","fees":{"fee_tokens":[{"denom":"ubtsg","fixed_min_gas_price":0,"low_gas_price":3,"average_gas_price":10,"high_gas_price":20}]},"apis":{"rpc":[{"address":"https://rpc-bitsong-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.explorebitsong.com","provider":"stake.systems"},{"address":"https://bitsong-rpc.validatrium.club","provider":"Validatrium"},{"address":"https://rpc.bitsong.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.bitsong.quokkastake.io","provider":"🐹 Quokka Stake"},{"address":"https://rpc-bitsong.starsquid.io","provider":"Starsquid"},{"address":"https://rpc-bitsong.architectnodes.com","provider":"Architect Nodes"},{"address":"http://bitsong.statesync.nodersteam.com:11657","provider":"[NODERS]TEAM"},{"address":"https://rpc.bitsong.safeblock.space","provider":"Safe Block"},{"address":"https://bitsong.tdrsys.com:2053","provider":"TdrSys"},{"address":"https://bitsong-rpc.panthea.eu","provider":"Panthea EU"},{"address":"https://rpc.bitsong.mathnodes.com","provider":"MathNodes"},{"address":"https://bitsong-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://bitsong-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://bitsong.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"blockx_19191-1","apis":{"rpc":[{"address":"https://rpc-blockx.nodeist.net","provider":"Nodeist"},{"address":"https://blockx_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bluechip-2","fees":{"fee_tokens":[{"denom":"ubluechip","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[]}},{"chain_id":"bluzelle-9","fees":{"fee_tokens":[{"denom":"ubnt","fixed_min_gas_price":0.002,"low_gas_price":0.002,"average_gas_price":0.002,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://a.client.sentry.net.bluzelle.com:26657","provider":"Bluzelle"},{"address":"https://b.client.sentry.net.bluzelle.com:26657","provider":"Bluzelle"},{"address":"https://c.client.sentry.net.bluzelle.com:26657","provider":"Bluzelle"},{"address":"https://bluzelle_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bostrom","fees":{"fee_tokens":[{"denom":"boot","low_gas_price":0,"average_gas_price":0,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.bostrom.cybernode.ai","provider":"cybercongress"},{"address":"https://rpc-cyber-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.cyber.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"bouachain","fees":{"fee_tokens":[{"denom":"ubouacoin","fixed_min_gas_price":0,"low_gas_price":0.0006,"average_gas_price":0.012,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.bouachain.com","provider":"BouaValidator"}]}},{"chain_id":"canto_7700-1","fees":{"fee_tokens":[{"denom":"acanto","fixed_min_gas_price":1000000000000,"low_gas_price":1000000000000,"average_gas_price":2000000000000,"high_gas_price":3000000000000}]},"apis":{"rpc":[{"address":"https://rpc.canto.nodestake.top","provider":"NodeStake"},{"address":"https://canto-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.canto.silentvalidator.com/","provider":"silent"},{"address":"https://canto.gravitychain.io:26657","provider":"Althea"},{"address":"https://canto-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-canto.kewrnode.com","provider":"Kewr Node"}]}},{"chain_id":"carbon-1","fees":{"fee_tokens":[{"denom":"swth","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1,"high_gas_price":1,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"usc","fixed_min_gas_price":0,"low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.0001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"bnb.1.6.773edb","fixed_min_gas_price":0,"low_gas_price":1000000,"average_gas_price":1000000,"high_gas_price":1000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"bneo.1.14.e2e5f6","fixed_min_gas_price":0,"low_gas_price":0.0015,"average_gas_price":0.0015,"high_gas_price":0.0015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"busd.1.6.754a80","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"cglp.1.19.1698d3","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"cgt/1","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"eth.1.19.c3b805","fixed_min_gas_price":0,"low_gas_price":100000,"average_gas_price":100000,"high_gas_price":100000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"eth.1.2.942d87","fixed_min_gas_price":0,"low_gas_price":100000,"average_gas_price":100000,"high_gas_price":100000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C","fixed_min_gas_price":0,"low_gas_price":0.0035,"average_gas_price":0.0035,"high_gas_price":0.0035,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","fixed_min_gas_price":0,"low_gas_price":0.0000075,"average_gas_price":0.0000075,"high_gas_price":0.0000075,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5","fixed_min_gas_price":0,"low_gas_price":0.00005,"average_gas_price":0.00005,"high_gas_price":0.00005,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5","fixed_min_gas_price":0,"low_gas_price":0.00032,"average_gas_price":0.00032,"high_gas_price":0.00032,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364","fixed_min_gas_price":0,"low_gas_price":300000000,"average_gas_price":300000000,"high_gas_price":300000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118","fixed_min_gas_price":0,"low_gas_price":0.0006,"average_gas_price":0.0006,"high_gas_price":0.0006,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5","fixed_min_gas_price":0,"low_gas_price":0.00015,"average_gas_price":0.00015,"high_gas_price":0.00015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","fixed_min_gas_price":0,"low_gas_price":0.0000075,"average_gas_price":0.0000075,"high_gas_price":0.0000075,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93","fixed_min_gas_price":0,"low_gas_price":0.00015,"average_gas_price":0.00015,"high_gas_price":0.00015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861","fixed_min_gas_price":0,"low_gas_price":200000000,"average_gas_price":200000000,"high_gas_price":200000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701","fixed_min_gas_price":0,"low_gas_price":0.00001,"average_gas_price":0.00001,"high_gas_price":0.00001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C","fixed_min_gas_price":0,"low_gas_price":0.00001,"average_gas_price":0.00001,"high_gas_price":0.00001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","fixed_min_gas_price":0,"low_gas_price":0.00015,"average_gas_price":0.00015,"high_gas_price":0.00015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"usdc.1.2.343151","fixed_min_gas_price":0,"low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.0001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"usdc.1.6.53ff75","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"zil.1.18.1a4a06","fixed_min_gas_price":0,"low_gas_price":6000,"average_gas_price":6000,"high_gas_price":6000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}}]},"apis":{"rpc":[{"address":"https://tm-api.carbon.network","provider":"switcheo-labs"},{"address":"https://rpc.lavenderfive.com:443/carbon","provider":"Lavender.Five Nodes 🐝"},{"address":"https://carbon-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.carbon.blockhunters.org","provider":"BlockHunters"}]}},{"chain_id":"celestia","fees":{"fee_tokens":[{"denom":"utia","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://public-celestia-rpc.numia.xyz","provider":"Numia"},{"address":"https://celestia-rpc.mesa.newmetric.xyz","provider":"Newmetric"},{"address":"https://rpc.lunaroasis.net","provider":"Lunar Oasis"},{"address":"https://rpc.celestia.nodestake.org","provider":"NodeStake"},{"address":"https://rpc.lavenderfive.com:443/celestia","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-celestia-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-celestia.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"http://celestia.rpc.nodersteam.com:29657","provider":"[NODERS]TEAM"},{"address":"https://celestia.rpc.interchain.validao.xyz","provider":"ValiDAO"},{"address":"https://celestia-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://celestia.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://celestia.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://celestia-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-celestia.mzonder.com","provider":"MZONDER"},{"address":"https://celestia-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://rpc-celestia.theamsolutions.info","provider":"AM Solutions"},{"address":"https://celestia-mainnet-rpc.autostake.com:443","provider":"AutoStake | Delegate for StakeDrops"},{"address":"https://rpc.celestia.validatus.com","provider":"Validatus"},{"address":"https://celestia-rpc.sr20de.xyz","provider":"Sr20de"},{"address":"https://rpc-celestia-full.avril14th.org","provider":"Avril 14th"},{"address":"https://rpc.freshstaking.com/celestia","provider":"FreshSTAKING"},{"address":"https://celestia.cumulo.org.es/","provider":"Cumulo"},{"address":"https://celestia-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.celestia-app.bronbro.io","provider":"Bro_n_Bro"},{"address":"https://celestia-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc.celestia.citizenweb3.com","provider":"Citizen Web3"},{"address":"https://celestia-mainnet-rpc.itrocket.net","provider":"πŸš€ itrocket πŸš€"},{"address":"https://rpc.celestia.mainnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://celestia-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"}]}},{"chain_id":"perun-1","fees":{"fee_tokens":[{"denom":"uc4e","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.c4e.io/","provider":"C4E"},{"address":"https://rpc.c4e.mainnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://rpc.c4e.nodestake.top","provider":"NodeStake"},{"address":"https://c4e.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://chain4energy-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://c4e.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-c4e.takeshi.team","provider":"TAKESHI"},{"address":"https://rpc-c4e.mzonder.com","provider":"MZONDER"},{"address":"https://rpc.cros-nest.com/chain4energy","provider":"Crosnest"},{"address":"https://rpc.c4e.indonode.net","provider":"Indonode"},{"address":"https://c4e-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.c4e.silentvalidator.com","provider":"silent"},{"address":"http://rpc.c4e.stakeup.tech","provider":"StakeUp"},{"address":"https://chain4energy-rpc.stakeangle.com","provider":"StakeAngle"},{"address":"https://c4e-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://rpc-c4e.theamsolutions.info","provider":"AM Solutions"},{"address":"https://c4e.rpc.m.anode.team","provider":"AlxVoy ⚑ ANODE.TEAM"},{"address":"http://185.245.182.192:46657","provider":"Meerlabs"},{"address":"http://89.117.58.109:26657","provider":"medes"},{"address":"http://c4e.rpc.node75.org:26957","provider":"Pro-nodes75"},{"address":"http://164.68.125.243:26657","provider":"Smt Network"},{"address":"https://c4e-rpc.antrixy.org/","provider":"Antrix Validators"},{"address":"https://c4e.doubletop.tech/","provider":"DOUBLETOP"},{"address":"https://c4e-rpc.kalia.network:443","provider":"Kalia Network"},{"address":"http://38.242.220.64:16657","provider":"mahof"},{"address":"http://209.182.239.169:46657","provider":"SECARD"},{"address":"https://rpc.c4e.validatus.com:443","provider":"Validatus"},{"address":"https://rpc-m-c4e.apeironnodes.com:443","provider":"Apeiron Nodes"},{"address":"http://rpc-c4e.cryptech.com.ua:443","provider":"Cryptech"},{"address":"http://37.60.240.43:46657","provider":"NakoTurk"},{"address":"https://chain4energy_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"cheqd-mainnet-1","fees":{"fee_tokens":[{"denom":"ncheq","fixed_min_gas_price":25,"low_gas_price":50,"average_gas_price":75,"high_gas_price":100}]},"apis":{"rpc":[{"address":"https://rpc.cheqd.net","provider":"cheqd"},{"address":"https://rpc.lavenderfive.com:443/cheqd","provider":"Lavender.Five Nodes"},{"address":"https://cheqd.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-cheqd-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.cheqd.nodestake.org","provider":"NodeStake"},{"address":"https://rpc-cheqd.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://cheqd-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-cheqd.blockval.io","provider":"Blockval"},{"address":"https://public.stakewolle.com/cosmos/cheqd/rpc","provider":"Stakewolle"},{"address":"https://cheq-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://cheqd-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"chihuahua-1","fees":{"fee_tokens":[{"denom":"uhuahua","fixed_min_gas_price":0,"low_gas_price":500,"average_gas_price":1250,"high_gas_price":2000}]},"apis":{"rpc":[{"address":"https://rpc.chihuahua.wtf","provider":"Chihuahua"},{"address":"https://rpc-chihuahua.ecostake.com","provider":"ecostake"},{"address":"https://chihua.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://chihuahua-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-chihuahua-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/chihuahua","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.huahua.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://chihuahua-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://rpc-chihuahua.pupmos.network","provider":"PUPMØS"},{"address":"https://chihuahua-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://chihuahua-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.chihuahua.validatus.com","provider":"Validatus"},{"address":"https://chihuahua-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://chihuahua.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"}]}},{"chain_id":"chimba","fees":{"fee_tokens":[{"denom":"ucmba","fixed_min_gas_price":0.25,"low_gas_price":1,"average_gas_price":5,"high_gas_price":10}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.chimba.ooo","provider":"chimba"}]}},{"chain_id":"cifer-2","fees":{"fee_tokens":[{"denom":"ucif","fixed_min_gas_price":0.0025,"low_gas_price":1,"average_gas_price":5,"high_gas_price":10}]},"apis":{"rpc":[{"address":"http://34.128.114.243:26657","provider":"Cifer"}]}},{"chain_id":"cnho_stables-1","fees":{"fee_tokens":[{"denom":"ucnho","fixed_min_gas_price":0.000005,"low_gas_price":0.000001,"average_gas_price":0.00001,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://rpc.cnho.io","provider":"CNHO Stables"},{"address":"https://cnhostables_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"comdex-1","fees":{"fee_tokens":[{"denom":"ucmdx","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.comdex.one","provider":"comdex"},{"address":"https://comdex-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://comdex.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.comdex.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.lavenderfive.com:443/comdex","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-comdex.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://comdex-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://comdex-rpc.w3coins.io","provider":"w3coins"},{"address":"https://comdex-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://comdex-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-comdex-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://comdex-rpc.validatornode.com","provider":"ValidatorNode"},{"address":"https://rpc-comdex.blockval.io","provider":"Blockval"},{"address":"https://comdex-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://comdex-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"commercio-3","fees":{"fee_tokens":[{"denom":"ucommercio"}]},"apis":{"rpc":[{"address":"https://rpc-mainnet.commercio.network"}]}},{"chain_id":"centauri-1","fees":{"fee_tokens":[{"denom":"ppica","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-composable-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://composable-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://picasso-rpc.cogwheel.zone:443","provider":"Cogwheel βš™οΈ"},{"address":"https://rpc.lavenderfive.com:443/picasso","provider":"Lavender.Five Nodes 🐝"},{"address":"https://composable-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://picasso-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://composable.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://picasso-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.centauri.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://composable.rpc.moonbridge.team","provider":"Moonbridge"},{"address":"https://rpc.composable.citizenweb3.com:443","provider":"Citizen Web3"},{"address":"https://composable.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"cvn_2032-1","fees":{"fee_tokens":[{"denom":"acvnt","fixed_min_gas_price":100000000,"low_gas_price":100000000,"average_gas_price":200000000,"high_gas_price":300000000}]},"apis":{"rpc":[{"address":"https://rpc.cvn.io/","provider":"cvn.io"},{"address":"https://conscious_mainnet_rpc.chain.whenmoonwhenlambo.money/","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"coreum-mainnet-1","fees":{"fee_tokens":[{"denom":"ucore","fixed_min_gas_price":0.03125,"low_gas_price":0.0625,"average_gas_price":0.0625,"high_gas_price":62.5}]},"apis":{"rpc":[{"address":"https://full-node.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-californium.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-curium.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-uranium.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://rpc-coreum.ecostake.com","provider":"ecostake"},{"address":"https://coreum.rpc.silknodes.io","provider":"Silk Nodes"},{"address":"https://coreum-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.m.core.solonation.io","provider":"#SoloNation"},{"address":"https://coreum-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://coreum-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://public.stakewolle.com/cosmos/coreum/rpc","provider":"Stakewolle"},{"address":"https://coreum-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"cosmoshub-4","fees":{"fee_tokens":[{"denom":"uatom","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://cosmoshub.tendermintrpc.lava.build:443","provider":"Lava"},{"address":"https://cosmos-rpc.quickapi.com:443","provider":"Chainlayer"},{"address":"https://cosmos-rpc.onivalidator.com","provider":"Oni Validator ⛩️"},{"address":"https://rpc-cosmoshub.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc.lavenderfive.com:443/cosmoshub","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-cosmoshub.ecostake.com","provider":"ecostake"},{"address":"https://go.getblock.io/17515cb3ec0e43b7817f182e5de6066a","provider":"GetBlock RPC Nodes"},{"address":"https://rpc-cosmoshub.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-cosmoshub.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://cosmos-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://cosmos-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-cosmoshub-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-cosmoshub.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc.cosmos.dragonstake.io","provider":"DragonStake"},{"address":"https://cosmoshub.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://rpc.cosmos.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://cosmos-rpc.rockrpc.net","provider":"RockawayX Infra"},{"address":"http://rpc-cosmoshub.freshstaking.com:26657","provider":"FreshSTAKING"},{"address":"https://cosmos-rpc.easy2stake.com/","provider":"Easy 2 Stake"},{"address":"https://rpc.cosmos.nodestake.org","provider":"NodeStake"},{"address":"https://cosmos.rpc.silknodes.io","provider":"Silk Nodes"},{"address":"https://cosmos-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://cosmoshub.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.cosmoshub.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://rpc-cosmos-hub-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://cosmos-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-cosmoshub.mms.team","provider":"MMS"},{"address":"https://cosmos-rpc.tienthuattoan.com","provider":"TTT πŸ‡»πŸ‡³"},{"address":"https://community.nuxian-node.ch:6797/gaia/trpc","provider":"PRO Delegators"},{"address":"https://cosmos-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://cosmoshub-rpc.cosmosrescue.dev","provider":"cosmosrescue"},{"address":"https://cosmos.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"},{"address":"https://public.stakewolle.com/cosmos/cosmoshub/rpc","provider":"Stakewolle"},{"address":"https://rpc-cosmos.kewrnode.com","provider":"Kewr Node"},{"address":"https://rpc.cosmoshub-4.citizenweb3.com","provider":"Citizen Web3"},{"address":"https://cosmos-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://cosmos-hub.drpc.org","provider":"dRPC"},{"address":"https://cosmoshub-mainnet-rpc.itrocket.net","provider":"ITRocket"},{"address":"https://cosmoshub.rpc.quasarstaking.ai","provider":"Quasar"}]}},{"chain_id":"coss-1","fees":{"fee_tokens":[{"denom":"ucoss","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"ucgas","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"ucias","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://coss-rpc.coss.ink","provider":"StellarGuardian"},{"address":"https://coss-rpc.cias.network","provider":"CelestialPhoenix"}]}},{"chain_id":"crescent-1","fees":{"fee_tokens":[{"denom":"ucre","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://mainnet.crescent.network:26657","provider":"crescent"},{"address":"https://crescent-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-crescent.pupmos.network","provider":"PUPMØS"},{"address":"https://crescent.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://crescent-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-crescent.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://rpc-crescent-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://crescent-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc.crescent.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"cronosmainnet_25-1","fees":{"fee_tokens":[{"denom":"basecro"}]},"apis":{"rpc":[{"address":"https://rpc.cronos.org/","provider":"cronos.org"},{"address":"https://cronos-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://cronos.drpc.org","provider":"dRPC"}]}},{"chain_id":"crypto-org-chain-mainnet-1","fees":{"fee_tokens":[{"denom":"basecro","low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.crypto.org/","provider":"cronos.org"},{"address":"https://rpc-cryptoorgchain-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-cryptoorgchain.ecostake.com","provider":"ecostake"},{"address":"https://cryptocom-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://cryptocom-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-cryptoorg.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://cro-chain-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"mainnet-3","fees":{"fee_tokens":[{"denom":"udec","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://poseidon.mainnet.decentr.xyz","provider":"decentr"},{"address":"https://rpc.decentr.chaintools.tech/","provider":"ChainTools"},{"address":"https://decentr.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://decentr-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc-dcntr.nodine.id/","provider":"Nodine.ID"},{"address":"https://rpc-decentr.mms.team/","provider":"MMS"}]}},{"chain_id":"desmos-mainnet","fees":{"fee_tokens":[{"denom":"udsm","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.03,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.desmos.network","provider":"desmos"},{"address":"https://desmos-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://desmos-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc.desmos.tcnetwork.io","provider":"TC Network"},{"address":"https://rpc.desmos.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://desmos.declab.pro:26613","provider":"Decloud Nodes Lab"},{"address":"https://desmos-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"dhealth","fees":{"fee_tokens":[{"denom":"udhp","fixed_min_gas_price":0.01,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc.dhealth.com","provider":"dhealth"},{"address":"https://rpc.dhealth.nodestake.org","provider":"NodeStake"},{"address":"https://dhealth.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"}]}},{"chain_id":"vota-ash","fees":{"fee_tokens":[{"denom":"peaka","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":100000000000,"high_gas_price":100000000000}]},"apis":{"rpc":[{"address":"https://vota-rpc.dorafactory.org/","provider":"dorafactory"},{"address":"https://m-dora.rpc.utsa.tech","provider":"lesnik | UTSA"},{"address":"https://dora-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://doravota-mainnet-rpc.itrocket.net:443","provider":"ITRocket"}]}},{"chain_id":"dungeon-1","fees":{"fee_tokens":[{"denom":"udgn","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://dungeon.rpc.quasarstaking.ai","provider":"Quasar"},{"address":"https://rpc-dungeon-1.seraphim.zone","provider":"Seraphim"},{"address":"https://rpc-dungeonchain.apeironnodes.com","provider":"ApeironNodes"},{"address":"https://dungeon_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"dydx-mainnet-1","fees":{"fee_tokens":[{"denom":"adydx","fixed_min_gas_price":12500000000,"low_gas_price":12500000000,"average_gas_price":12500000000,"high_gas_price":20000000000},{"denom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://dydx-rpc.kingnodes.com:443","provider":"Kingnodes πŸ‘‘"},{"address":"https://dydx-dao-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://dydx-mainnet-full-rpc.public.blastapi.io","provider":"Bware Labs"},{"address":"https://rpc.lavenderfive.com:443/dydx","provider":"Lavender.Five Nodes 🐝"},{"address":"https://dydx-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-dydx.ecostake.com:443","provider":"ecostake"},{"address":"https://rpc.dydx.nodestake.top:443","provider":"NodeStake"},{"address":"https://rpc-dydx.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://dydx-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-dydx.cros-nest.com:443","provider":"Crosnest"},{"address":"https://dydx-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://community.nuxian-node.ch:6797/dydx/trpc","provider":"PRO Delegators"},{"address":"https://dydx-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://dydx.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"}]}},{"chain_id":"dymension_1100-1","fees":{"fee_tokens":[{"denom":"adym","fixed_min_gas_price":5000000000,"low_gas_price":5000000000,"average_gas_price":5000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://dym-m-rpc.agoranodes.com","provider":"AgoraNodes"},{"address":"https://rpc.dymension.nodestake.org","provider":"NodeStake"},{"address":"http://dymension.mainnet.rpc.noders.team:42657","provider":"[NODERS]TEAM"},{"address":"https://dymension-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.lavenderfive.com:443/dymension","provider":"Lavender.Five Nodes 🐝"},{"address":"https://dymension-rpc.kynraze.com","provider":"Kynraze"},{"address":"https://m-dymension.rpc.utsa.tech","provider":"lesnik | UTSA"},{"address":"https://rpc-dymension.nodeist.net","provider":"Nodeist"},{"address":"https://dym.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://dym.rpc-archive.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.dymension.hexnodes.co","provider":"Hexnodes"},{"address":"https://dymension.rpc.kjnodes.com:443","provider":"kjnodes.com πŸ¦„"},{"address":"https://dymension-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://dymension-rpc.takeshi.team","provider":"TAKESHI"},{"address":"https://dymension-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.dymension.silentvalidator.com:443","provider":"silent"},{"address":"https://rpc-dymension.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://community.nuxian-node.ch:6797/dymension/trpc","provider":"PRO Delegators"},{"address":"https://dymension-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://dymension-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://dymension.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://rpc-dymension.hoodrun.io:443","provider":"HoodRun"},{"address":"https://dymension.0xwave.com:2053","provider":"Wave"},{"address":"https://archive.rpc.dym.cumulo.com.es:443","provider":"Cumulo"},{"address":"https://rpc.dymension.posthuman.digital","provider":"posthuman"},{"address":"https://rpc.dymension.node75.org","provider":"Pro-Nodes75"},{"address":"https://rpc.dymension.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://dymension-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc.mainnet.dymension.aviaone.com","provider":"AVIAONE 🟒"},{"address":"https://rpc.archive.dymension.mainnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://dymension.drpc.org","provider":"dRPC"}]}},{"chain_id":"dyson-mainnet-01","fees":{"fee_tokens":[{"denom":"dys","low_gas_price":0.0001,"average_gas_price":0.0002,"high_gas_price":0.0003}]},"apis":{"rpc":[{"address":"https://dys-tm.dysonprotocol.com:443","provider":"dysonprotocol"},{"address":"https://dyson-rpc.cogwheel.zone:443","provider":"cogwheel"}]}},{"chain_id":"echelon_3000-3","fees":{"fee_tokens":[{"denom":"aechelon","low_gas_price":10000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://ech01trpc.mindheartsoul.org","provider":"Mind Heart Soul"},{"address":"https://rpc.echjoker.lol","provider":"⚑ Echelon Joker βš› πŸƒ"}]}},{"chain_id":"elys-1","fees":{"fee_tokens":[{"denom":"uelys","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.elys.network:443","provider":"Elys Network"},{"address":"https://elys-rpc.polkachu.com:443","provider":"Polkachu"},{"address":"https://elys-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://elys-mainnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://rpc.elys.nodestake.org:443","provider":"NodeStake"}]}},{"chain_id":"emoney-3","fees":{"fee_tokens":[{"denom":"ungm","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"eeur","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"echf","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"enok","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"esek","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"edkk","low_gas_price":1,"average_gas_price":1,"high_gas_price":1}]},"apis":{"rpc":[{"address":"https://emoney.validator.network","provider":"e-Money"},{"address":"https://rpc-emoney-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.emoney.bh.rocks","provider":"BlockHunters 🎯"}]}},{"chain_id":"empowerchain-1","fees":{"fee_tokens":[{"denom":"umpwr","fixed_min_gas_price":0,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-empowerchain.ecostake.com:443","provider":"ecostake"},{"address":"https://empowerchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://empower.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"http://empw.rpc.m.stavr.tech:22057","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-empowerchain.mzonder.com:443","provider":"MZONDER"},{"address":"https://empower-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-empower.vinjan.xyz:443","provider":"vinjan"},{"address":"https://rpc.empower.nodestake.top","provider":"NodeStake"},{"address":"https://mainnet-empower-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://empower.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://rpc.empowerchain.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://empower.declab.pro:26607","provider":"Decloud Nodes Lab"},{"address":"https://empower-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://empower-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"epix_4242-1","fees":{"fee_tokens":[{"denom":"aepix","fixed_min_gas_price":1000000000000,"low_gas_price":1000000000000,"average_gas_price":2000000000000,"high_gas_price":3000000000000}]},"apis":{"rpc":[{"address":"https://epix.rpc.silknodes.io/","provider":"Silk Nodes"}]}},{"chain_id":"1","fees":{"fee_tokens":[{"denom":"wei","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"ethos_7003-1","fees":{"fee_tokens":[{"denom":"aRYT"}]},"apis":{"rpc":[{"address":"https://ethos-rpc.provable.dev:443/","provider":"laurel.provable"}]}},{"chain_id":"evmos_9001-2","fees":{"fee_tokens":[{"denom":"aevmos","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/evmos","provider":"Lavender.Five Nodes 🐝"},{"address":"https://tendermint.bd.evmos.org:26657","provider":"Blockdaemon"},{"address":"https://rpc-evmos-ia.cosmosia.notional.ventures:443","provider":"Notional"},{"address":"https://rpc.evmos.testnet.run","provider":"TestNetRun"},{"address":"https://rpc.evmos.nodestake.top","provider":"NodeStake"},{"address":"https://rpc.evmos.chaintools.tech/","provider":"ChainTools"},{"address":"https://evmos-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.evmos.silentvalidator.com/","provider":"silent"},{"address":"https://rpc.evmos.tcnetwork.io","provider":"TC Network"},{"address":"https://evmos.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://rpc-evmos.architectnodes.com","provider":"Architect Nodes"},{"address":"https://evmos-rpc.validatrium.club","provider":"Validatrium"},{"address":"https://evmos-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-evmos-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://evmos-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://rpc-evmos.validavia.me","provider":"Validavia"},{"address":"https://evmos-rpc.w3coins.io","provider":"w3coins"},{"address":"https://evmos-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://evmos.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://evmos-rpc.antrixy.org/","provider":"Antrix Validators"},{"address":"https://evmos-mainnet.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://rpc.evmos.validatus.com","provider":"Validatus"},{"address":"https://rpc.evmos.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.evmos.citizenweb3.com:443","provider":"Citizen Web3"},{"address":"https://evmos.drpc.org","provider":"dRPC"}]}},{"chain_id":"fetchhub-4","fees":{"fee_tokens":[{"denom":"afet","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc-fetchhub.fetch.ai:443","provider":"fetch.ai"},{"address":"https://rpc-fetchhub-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://fetch-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://fetchai-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://fetch-rpc.antrixy.org","provider":"Antrix"},{"address":"https://rpc-fetch.architectnodes.com","provider":"Architect Nodes"},{"address":"https://fetchhub-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://fetch-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://fetch-rpc.cosmosrescue.com","provider":"cosmosrescue"},{"address":"https://fetch-rpc.w3coins.io","provider":"w3coins"},{"address":"https://fetch-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://fetch-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://public.stakewolle.com/cosmos/fetchhub/rpc","provider":"Stakewolle"},{"address":"https://fetch.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://rpc.fetchhub-4.fetch.aviaone.com","provider":"AVIAONE 🟒"},{"address":"https://fetchai-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"finschia-2","fees":{"fee_tokens":[{"denom":"cony","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.015,"high_gas_price":0.015}]},"apis":{"rpc":[{"address":"https://finschia-rpc.finschia.io"}]}},{"chain_id":"colosseum-1","fees":{"fee_tokens":[{"denom":"ufct","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.15,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://lcd-mainnet.firmachain.dev:26657","provider":"FirmaChain"},{"address":"https://firma.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.firmachain.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.lavenderfive.com:443/firmachain","provider":"Lavender.Five Nodes 🐝"},{"address":"https://firmachain-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://firmachain.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://firmachain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"furya-1","fees":{"fee_tokens":[{"denom":"ufury","low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.5}]},"apis":{"rpc":[{"address":"https://furya-rpc.synergynodes.com","provider":"synergynodes"},{"address":"https://furya.rpc.nodeshub.online:443","provider":"nodeshub"}]}},{"chain_id":"fxcore","fees":{"fee_tokens":[{"denom":"FX","fixed_min_gas_price":4000000000000,"low_gas_price":4000000000000,"average_gas_price":4200000000000,"high_gas_price":5000000000000}]},"apis":{"rpc":[{"address":"https://fx-json.functionx.io","provider":"Function X"},{"address":"https://functionx.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"}]}},{"chain_id":"galaxy-1","fees":{"fee_tokens":[{"denom":"uglx","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[]}},{"chain_id":"wormchain","fees":{"fee_tokens":[{"denom":"utest","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://tncnt-eu-wormchain-main-01.rpc.p2p.world/","provider":"P2P"},{"address":"https://wormchain-rpc.quickapi.com/","provider":"ChainLayer"}]}},{"chain_id":"genesis_29-2","fees":{"fee_tokens":[{"denom":"el1","low_gas_price":51000000000,"average_gas_price":52000000000,"high_gas_price":53000000000}]},"apis":{"rpc":[{"address":"https://26657.genesisl1.org","provider":"GenesisL1"},{"address":"https://genesisl1-rpc.zenode.app","provider":"anodeofzen"}]}},{"chain_id":"gitopia","fees":{"fee_tokens":[{"denom":"ulore","fixed_min_gas_price":0.001,"low_gas_price":0.0012,"average_gas_price":0.0016,"high_gas_price":0.0024}]},"apis":{"rpc":[{"address":"https://gitopia-rpc.polkachu.com:443","provider":"polkachu"},{"address":"https://rpc.lavenderfive.com:443/gitopia","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.gitopia.nodestake.org:443","provider":"nodestake"},{"address":"https://gitopia-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://gitopia-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://m-gitopia.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://gitopia.rpc.m.stavr.tech:51057","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://gitopia-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://gitopia.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://gitopia-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.gitopia.silentvalidator.com","provider":"silent"},{"address":"https://gitopia-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://rpc-gitopia.mzonder.com","provider":"MZONDER"},{"address":"https://gitopia.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.gitopia.sgtstake.com","provider":"SGTstake"},{"address":"https://mainnet-gitopia-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.gitopia.roomit.xyz","provider":"Roomit"},{"address":"https://gitopia.rpc.moonbridge.team","provider":"Moonbridge"},{"address":"https://gitopia-rpc.stakeangle.com","provider":"StakeAngle"},{"address":"https://gitopia.rpc.m.anode.team","provider":"AlxVoy ⚑ ANODE.TEAM"},{"address":"https://gitopia.rpc.stakevillage.net","provider":"Stake Village"},{"address":"https://gitopia-rpc.enigma-validator.com/","provider":"Enigma"},{"address":"https://rpc.gitopia.tcnetwork.io/","provider":"TC Network"},{"address":"https://gitopia.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://rpc.gitopia.stakeup.tech/","provider":"StakeUp"},{"address":"https://gitopia-mainnet.rpc.l0vd.com:443","provider":"L0vd.com ❀️"},{"address":"https://gitopia-rpc.tothemars.network:443","provider":"ToTheMars"},{"address":"https://gitopia.declab.pro:26625","provider":"Decloud Nodes Lab"},{"address":"https://gitopia-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"govgen-1","fees":{"fee_tokens":[{"denom":"ugovgen","fixed_min_gas_price":0.001,"low_gas_price":0.006,"average_gas_price":0.006,"high_gas_price":0.009}]},"apis":{"rpc":[{"address":"https://rpc.govgen.io:443","provider":"AllInBits"},{"address":"https://rpc-govgen.sg-1.online/","provider":"SG-1"},{"address":"https://govgen.rpc.nodeshub.online:443","provider":"Nodes Hub"},{"address":"https://govgen-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.govgen.posthuman.digital:443","provider":"posthuman"},{"address":"https://rpc-govgen.kewrnode.com/","provider":"Kewr Node"}]}},{"chain_id":"gravity-bridge-3","fees":{"fee_tokens":[{"denom":"ugraviton","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.035},{"denom":"gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","low_gas_price":0.0002,"average_gas_price":0.0005,"high_gas_price":0.0008},{"denom":"gravity0xdAC17F958D2ee523a2206206994597C13D831ec7","low_gas_price":0.0002,"average_gas_price":0.0005,"high_gas_price":0.0008}]},"apis":{"rpc":[{"address":"https://gravitychain.io:26657","provider":"althea"},{"address":"http://gravity-bridge-1-08.nodes.amhost.net:26657","provider":"amhost"},{"address":"https://gravity-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-gravitybridge-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/gravitybridge","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.gravity.bh.rocks/","provider":"BlockHunters 🎯"},{"address":"https://gravity-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://gravity-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://rpc-gravity-bridge-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://gravity-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://gravity-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc.g-bridge.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.gravity-bridge-3.gravity.aviaone.com:443","provider":"AviaOne 🟒"}]}},{"chain_id":"haqq_11235-1","fees":{"fee_tokens":[{"denom":"aISLM","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.tm.haqq.network","provider":"Haqq"},{"address":"https://rpc.haqq.sh","provider":"kioqq"},{"address":"https://rpc.haqq.nodestake.org","provider":"NodeStake"},{"address":"https://haqq-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.lavenderfive.com:443/haqq","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-haqq.sr20de.xyz:443","provider":"Sr20de"},{"address":"https://haqq-rpc.palamar.io","provider":"Palamar"},{"address":"https://haqq-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://haqq.drpc.org","provider":"dRPC"},{"address":"https://haqq.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"helichain","fees":{"fee_tokens":[{"denom":"uheli","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://rpc.helichain.com/","provider":"HeliChain"}]}},{"chain_id":"highbury_710-1","fees":{"fee_tokens":[{"denom":"ufury","low_gas_price":0.05,"average_gas_price":0.1,"high_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://gridiron.furya.io","provider":"fanfury"}]}},{"chain_id":"humans_1089-1","fees":{"fee_tokens":[{"denom":"aheart","fixed_min_gas_price":250000000,"low_gas_price":80000000000,"average_gas_price":100000000000,"high_gas_price":160000000000}]},"apis":{"rpc":[{"address":"https://rpc.humans.nodestake.org","provider":"NodeStake"},{"address":"https://humans.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://humans.rpc.nodeshub.online","provider":"NodesHub"},{"address":"https://humans-mainnet-rpc.itrocket.net","provider":"itrocket"},{"address":"https://humans-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-humansai.thenop.io:443","provider":"TheNOP.io"},{"address":"https://humans-rpc.stakeangle.com/","provider":"StakeAngle"},{"address":"https://humans-rpc.anyvalid.com:26627","provider":"AnyValid"},{"address":"https://mainnet-humans-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"http://65.21.46.90:5657","provider":"PPNV Service"},{"address":"https://rpc.humans-mainnet.stake-take.com/","provider":"Stake-Take"},{"address":"https://rpc.humans.posthuman.digital","provider":"posthuman"},{"address":"https://humans-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://humans-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://humans-mainnet-rpc.cosmonautstakes.com","provider":"Cosmonaut Stakes πŸ€–"}]}},{"chain_id":"Antora","fees":{"fee_tokens":[{"denom":"idep","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"ixo-5","fees":{"fee_tokens":[{"denom":"uixo","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://proxies.sifchain.finance/api/impacthub-3/rpc","provider":"sifchain"},{"address":"https://impacthub.ixo.world/rpc/","provider":"ixoworld"},{"address":"https://ixo.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-ixo-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/impacthub","provider":"Lavender.Five Nodes 🐝"},{"address":"https://ixo-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://ixo-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://impacthub_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"imversed_5555555-1","fees":{"fee_tokens":[{"denom":"aimv","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[]}},{"chain_id":"injective-1","fees":{"fee_tokens":[{"denom":"inj","fixed_min_gas_price":160000000,"low_gas_price":500000000,"average_gas_price":700000000,"high_gas_price":900000000}]},"apis":{"rpc":[{"address":"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rpc.newmetric.xyz","provider":"NewMetric"},{"address":"https://rpc.injective.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://injective-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.lavenderfive.com:443/injective","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-injective-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://injective-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-injective.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc-injective-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://injective-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://injective-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://public.stakewolle.com/cosmos/injective/rpc","provider":"Stakewolle"},{"address":"https://rpc.injective.bronbro.io/","provider":"Bro_n_Bro"},{"address":"https://injective-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc-injective.ecostake.com","provider":"ecostake"},{"address":"https://rpc-injective.kewrnode.com","provider":"Kewr Node"}]}},{"chain_id":"int3face-1","fees":{"fee_tokens":[{"denom":"uint3","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc","fixed_min_gas_price":1e-7,"low_gas_price":1e-7,"average_gas_price":0.0000025,"high_gas_price":0.000004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch","fixed_min_gas_price":0.000001,"low_gas_price":0.000001,"average_gas_price":0.000025,"high_gas_price":0.00004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc","fixed_min_gas_price":0.000001,"low_gas_price":0.000001,"average_gas_price":0.000025,"high_gas_price":0.00004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/ton-ton","fixed_min_gas_price":0.0001,"low_gas_price":0.0001,"average_gas_price":0.00025,"high_gas_price":0.0004}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.int3face.zone","provider":"Int3face.io"}]}},{"chain_id":"irishub-1","fees":{"fee_tokens":[{"denom":"uiris","low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc-irisnet-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-irisnet-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://irisnet-rpc.w3coins.io","provider":"w3coins"},{"address":"https://iris-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://iris-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://mainnet-iris-rpc.konsortech.xyz","provider":"KonsorTech"}]}},{"chain_id":"jackal-1","fees":{"fee_tokens":[{"denom":"ujkl","fixed_min_gas_price":0,"low_gas_price":0.002,"average_gas_price":0.002,"high_gas_price":0.02}]},"apis":{"rpc":[{"address":"https://rpc.jackalprotocol.com","provider":"Jackal Labs"},{"address":"https://rpc.lavenderfive.com:443/jackal","provider":"Lavender.Five Nodes 🐝"},{"address":"http://jkl.rpc.m.stavr.tech:11127","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://jackal.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://rpc.jackal.nodestake.org","provider":"NodeStake"},{"address":"https://rpc-jackal.nodeist.net","provider":"Nodeist"},{"address":"https://jackal-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://m-jackal.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc-jackal.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://jackal-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://jackal.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://jackal.rpc.silknodes.io","provider":"Silk Nodes"},{"address":"https://jackal.rpc.skynodejs.net","provider":"skynodejs"},{"address":"https://public.stakewolle.com/cosmos/jackal/rpc","provider":"Stakewolle"},{"address":"https://rpc.jackal.silentvalidator.com","provider":"silent"},{"address":"https://rpc.jackal.mathnodes.com","provider":"MathNodes"},{"address":"https://jackal-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://jackal-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"joltify_1729-1","fees":{"fee_tokens":[{"denom":"ujolt","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.joltify.io","provider":"joltify"},{"address":"https://joltify_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"juno-1","fees":{"fee_tokens":[{"denom":"ujuno","fixed_min_gas_price":0.075,"low_gas_price":0.075,"average_gas_price":0.1,"high_gas_price":0.125},{"denom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","fixed_min_gas_price":0.003,"low_gas_price":0.003,"average_gas_price":0.0035,"high_gas_price":0.004}]},"apis":{"rpc":[{"address":"https://rpc-juno.itastakers.com","provider":"itastakers"},{"address":"http://juno.rpc.m.stavr.tech:1067","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://juno-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.lavenderfive.com:443/juno","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-juno.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-juno.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://rpc-juno-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.juno.chaintools.tech/","provider":"ChainTools"},{"address":"https://juno-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://juno-rpc.icycro.org","provider":"IcyCRO 🧊"},{"address":"https://rpc.juno.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://juno-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://juno-rpc.reece.sh","provider":"Reecepbcups"},{"address":"https://juno-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"},{"address":"https://rpc-juno.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc-juno-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-juno.validavia.me","provider":"Validavia"},{"address":"https://juno-rpc.w3coins.io","provider":"w3coins"},{"address":"https://juno-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://juno-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc-juno.mainnet.validatrium.club:443","provider":"Validatrium"},{"address":"https://juno-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.juno.validatus.com","provider":"Validatus"},{"address":"https://rpc.juno.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://juno-rpc.cogwheel.zone","provider":"Cogwheel"},{"address":"https://juno.declab.pro:26610","provider":"Decloud Nodes Lab"},{"address":"https://juno.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://juno-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"kava_2222-10","fees":{"fee_tokens":[{"denom":"ukava","low_gas_price":0.05,"average_gas_price":0.1,"high_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://rpc.data.kava.io","provider":"kava"},{"address":"https://kava-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-kava-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://kava-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://kava-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc-kava-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://kava-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://kava.drpc.org","provider":"dRPC"}]}},{"chain_id":"kichain-2","fees":{"fee_tokens":[{"denom":"uxki","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc-mainnet.blockchain.ki","provider":"kifoundation"},{"address":"https://kichain-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-kichain-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://kichain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.kichain.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.lavenderfive.com:443/kichain","provider":"Lavender.Five Nodes 🐝"},{"address":"http://ki-chain.statesync.nodersteam.com:14657","provider":"[NODERS]TEAM"},{"address":"https://ki-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc.kichain-2.kichain.aviaone.com","provider":"AVIAONE 🟒"}]}},{"chain_id":"kima_network","fees":{"fee_tokens":[{"denom":"uKIMA","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.kima.network/","provider":"Kima Network"}]}},{"chain_id":"darchub","fees":{"fee_tokens":[{"denom":"udarc","fixed_min_gas_price":0,"low_gas_price":0.0001,"average_gas_price":0.001,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc-konstellation-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://konstellation-rpc.stakerhouse.com","provider":"StakerHouse"}]}},{"chain_id":"luwak-1","fees":{"fee_tokens":[{"denom":"ukopi","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.kopi.money","provider":"Kopi Foundation"},{"address":"https://rpc.kopi.chaintools.tech","provider":"Chaintools"},{"address":"https://kopi-rpc.cosmoscan.com","provider":"Cosmoscan"},{"address":"https://kopi-rpc.stakerhouse.com","provider":"Stakerhouse"},{"address":"https://kopi.rpc.moonbridge.team","provider":"Moonbridge"},{"address":"https://rpc-kopid.vinjan.xyz/","provider":"Vinjan"},{"address":"https://kopi-mainnet-rpc.bonynode.online","provider":"Bony"},{"address":"https://kopi-rpc.bluestake.net:443","provider":"Bluestake"},{"address":"https://rpc-kopi.sychonix.com","provider":"Sychonix"},{"address":"https://kopi-rpc.node9x.com/","provider":"Node9x"},{"address":"https://kopi.rpc.nodeshub.online/","provider":"NodesHub"},{"address":"https://kopi-rpc.polkachu.com/","provider":"Polkachu"}]}},{"chain_id":"kaiyo-1","fees":{"fee_tokens":[{"denom":"ukuji","fixed_min_gas_price":0.0034,"low_gas_price":0.0034,"average_gas_price":0.0051,"high_gas_price":0.00681},{"denom":"factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk","fixed_min_gas_price":0.01186,"low_gas_price":0.01186,"average_gas_price":0.01779,"high_gas_price":0.02372},{"denom":"ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F","fixed_min_gas_price":0.0119,"low_gas_price":0.0119,"average_gas_price":0.01785,"high_gas_price":0.02379},{"denom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","fixed_min_gas_price":0.00129,"low_gas_price":0.00129,"average_gas_price":0.00193,"high_gas_price":0.00258},{"denom":"ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23","fixed_min_gas_price":0.01795,"low_gas_price":0.01795,"average_gas_price":0.02692,"high_gas_price":0.0359},{"denom":"ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07","fixed_min_gas_price":0.65943,"low_gas_price":0.65943,"average_gas_price":0.98915,"high_gas_price":1.31887},{"denom":"ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10","fixed_min_gas_price":160416396197,"low_gas_price":160416396197,"average_gas_price":240624594296,"high_gas_price":320832792394},{"denom":"ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5","fixed_min_gas_price":0.02689,"low_gas_price":0.02689,"average_gas_price":0.04034,"high_gas_price":0.05379},{"denom":"ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986","fixed_min_gas_price":0.01495,"low_gas_price":0.01495,"average_gas_price":0.02243,"high_gas_price":0.02991},{"denom":"ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5","fixed_min_gas_price":0.03139,"low_gas_price":0.03139,"average_gas_price":0.04709,"high_gas_price":0.06278},{"denom":"ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602","fixed_min_gas_price":0.90403,"low_gas_price":0.90403,"average_gas_price":1.35605,"high_gas_price":1.80806},{"denom":"ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2","fixed_min_gas_price":559196837,"low_gas_price":559196837,"average_gas_price":838795256,"high_gas_price":1118393675},{"denom":"ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7","fixed_min_gas_price":5772801,"low_gas_price":5772801,"average_gas_price":8659201,"high_gas_price":11545602},{"denom":"factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta","fixed_min_gas_price":0.01807,"low_gas_price":0.01807,"average_gas_price":0.02711,"high_gas_price":0.03615},{"denom":"ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9","fixed_min_gas_price":0.01194,"low_gas_price":0.01194,"average_gas_price":0.01792,"high_gas_price":0.02389},{"denom":"ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3","fixed_min_gas_price":0.00019,"low_gas_price":0.00019,"average_gas_price":0.00029,"high_gas_price":0.00039}]},"apis":{"rpc":[{"address":"https://rpc.kaiyo.kujira.setten.io","provider":"setten.io"},{"address":"https://kujira-rpc.polkachu.com","provider":"polkachu"},{"address":"https://rpc.lavenderfive.com:443/kujira","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.kujira.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc-kujira-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://kujira-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc-kujira.starsquid.io","provider":"Starsquid"},{"address":"https://kujira.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://kuji-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://rpc-kujira.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://kujira-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.kujira.rektdao.club","provider":"rektDAO"},{"address":"https://kujira-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://kujira-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-kujira.mms.team","provider":"MMS"},{"address":"https://kujira-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://kujira.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"}]}},{"chain_id":"kyve-1","fees":{"fee_tokens":[{"denom":"ukyve","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc.kyve.network","provider":"kyve"},{"address":"https://rpc-kyve.ecostake.com","provider":"ecostake"},{"address":"https://rpc.lavenderfive.com:443/kyve","provider":"Lavender.Five Nodes 🐝"},{"address":"http://kyve.rpc.m.stavr.tech:12357","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-kyve.imperator.co","provider":"Imperator.co"},{"address":"https://kyve-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc.kyve.nodestake.top","provider":"NodeStake"},{"address":"https://kyve.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://rpc-kyve.mms.team","provider":"MMS"},{"address":"https://kyve.declab.pro:26616","provider":"Decloud Nodes Lab"},{"address":"https://kyve-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://kyve_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://kyve-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"lambda_92000-1","fees":{"fee_tokens":[{"denom":"ulamb","low_gas_price":10000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.lambda.im","provider":"Lambda"},{"address":"http://lambda.rpc.m.stavr.tech:31327","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lambda.nodestake.top","provider":"NodeStake"},{"address":"https://lambda-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://lambda_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"lava-mainnet-1","fees":{"fee_tokens":[{"denom":"ulava","fixed_min_gas_price":0.00002,"low_gas_price":0.00002,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://lava.tendermintrpc.lava.build","provider":"Lava Over Lava"},{"address":"https://lava-rpc.w3coins.io:443","provider":"w3coins"},{"address":"https://lava-rpc.finteh.org:26657","provider":"finteh"},{"address":"https://lava-rpc.y2.finance:443","provider":"YTWOFUND"},{"address":"https://lava-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://rpc.lava-mainnet-1.lava.aviaone.com:443","provider":"AVIAONE 🟒"},{"address":"https://rpc-lava.r93axnodes.cloud:443","provider":"r93AX Nodes"},{"address":"https://lava-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://lava.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://lava.rpc-archive.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://lava-rpc.stake-town.com:443","provider":"StakeTown"},{"address":"https://lava.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://lava-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://lava-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://lava.rpc.stakevillage.net:443","provider":"Stake Village"}]}},{"chain_id":"likecoin-mainnet-2","fees":{"fee_tokens":[{"denom":"nanolike","fixed_min_gas_price":1000,"low_gas_price":1000,"average_gas_price":10000,"high_gas_price":1000000}]},"apis":{"rpc":[{"address":"https://mainnet-node.like.co/rpc/","provider":"like.co"},{"address":"https://likecoin-node.oldcat.io:443/rpc/","provider":"Oldcat"},{"address":"https://like.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-likecoin-mainnet.pikaser.net","provider":"PikaSer"},{"address":"https://rpc.likecoin.citizenweb3.com:443","provider":"Citizen Web3"}]}},{"chain_id":"logos_7002-1","fees":{"fee_tokens":[{"denom":"aLYT"}]},"apis":{"rpc":[{"address":"https://logos-rpc.provable.dev:443/","provider":"laurel.provable"}]}},{"chain_id":"loop-1","fees":{"fee_tokens":[{"denom":"token","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.loop.pfc.zone/","provider":"PFC"}]}},{"chain_id":"lorenzo_8329-1","fees":{"fee_tokens":[{"denom":"stBTC","fixed_min_gas_price":2000000,"low_gas_price":2000000,"average_gas_price":2000000,"high_gas_price":8000000}]},"apis":{"rpc":[{"address":"https://rpc-cosmos.lorenzo-protocol.xyz/","provider":"Lorenzo Protocol"}]}},{"chain_id":"loyal-main-02","fees":{"fee_tokens":[{"denom":"ulyl","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-main.joinloyal.io/"},{"address":"https://loyal-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"lum-network-1","fees":{"fee_tokens":[{"denom":"ulum","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.node0.mainnet.lum.network","provider":"Lum Foundation"},{"address":"https://lum.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/lumnetwork","provider":"Lavender.Five Nodes 🐝"},{"address":"https://lum-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://lum-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://lumnetwork_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"mande_18071918-1","fees":{"fee_tokens":[{"denom":"amand","low_gas_price":20000000000,"average_gas_price":20000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://mande-mainnet-tendermint.public.blastapi.io","provider":"BlastAPI"}]}},{"chain_id":"mantra-1","fees":{"fee_tokens":[{"denom":"uom","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.mantrachain.io","provider":"MANTRACHAIN"},{"address":"https://rpc-mantra.r93axnodes.cloud:443","provider":"r93AX Nodes"},{"address":"https://mantrachain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://mantra-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://mantra-mainnet-rpc.itrocket.net:443","provider":"ITRocket"},{"address":"https://mantra.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"mars-1","fees":{"fee_tokens":[{"denom":"umars","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.marsprotocol.io:443","provider":"Delphi Labs"},{"address":"https://rpc.lavenderfive.com:443/mars","provider":"Lavender.Five Nodes 🐝"},{"address":"https://mars-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://mars-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.expedition-mars.com","provider":"Expedition Mars"},{"address":"https://mars-rpc.genznodes.dev:443","provider":"genznodes"},{"address":"https://mars-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"},{"address":"https://mars-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://mars-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"}]}},{"chain_id":"mayachain-mainnet-v1","apis":{"rpc":[{"address":"https://tendermint.mayachain.info","provider":"tendermint"}]}},{"chain_id":"medasdigital-2","fees":{"fee_tokens":[{"denom":"umedas","low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc.medas-digital.io:26657/","provider":"Neptun Validator"}]}},{"chain_id":"meme-1","fees":{"fee_tokens":[{"denom":"umeme","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.035,"high_gas_price":0.045}]},"apis":{"rpc":[{"address":"https://rpc-meme-1.meme.sx/","provider":"MEME Foundation"},{"address":"https://meme-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-meme.pupmos.network/","provider":"PUPMØS"},{"address":"https://meme.rpc.m.anode.team","provider":"ANODE TEAM"}]}},{"chain_id":"migaloo-1","fees":{"fee_tokens":[{"denom":"uwhale","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":2,"high_gas_price":3}]},"apis":{"rpc":[{"address":"https://migaloo-rpc.polkachu.com:443","provider":"Polkachu"},{"address":"https://rpc-migaloo.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://migaloo-rpc.kleomedes.network:443","provider":"Kleomedes"},{"address":"https://rpc.whitewhale.nodestake.top","provider":"NodeStake"},{"address":"https://migaloo-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://migaloo-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"milkyway","fees":{"fee_tokens":[{"denom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035},{"denom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035},{"denom":"ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035},{"denom":"ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.milkyway.zone/","provider":"MilkyWay Labs"}]}},{"chain_id":"mainnet","fees":{"fee_tokens":[{"denom":"umis","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.gw.mises.site:443","provider":"Mises-1"},{"address":"https://e2.mises.site:443","provider":"Mises-3"}]}},{"chain_id":"mtgbp-1","fees":{"fee_tokens":[{"denom":"mtgbp","low_gas_price":0.000001,"average_gas_price":0.000005,"high_gas_price":0.0001}]},"apis":{"rpc":[{"address":"https://rcp.mtgbp.com","provider":"mtgbp"}]}},{"chain_id":"mun-1","fees":{"fee_tokens":[{"denom":"umun","fixed_min_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://mainnet1rpc.mun.money","provider":"Mun"},{"address":"https://mainnet-mun-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.mun.tcnetwork.io","provider":"TC Network"},{"address":"https://mun_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"mythos_7001-1","fees":{"fee_tokens":[{"denom":"aMYT"}]},"apis":{"rpc":[{"address":"https://mythos-rpc.provable.dev:443/","provider":"laurel.provable"}]}},{"chain_id":"neura_266-1","fees":{"fee_tokens":[{"denom":"atankr"}]},"apis":{"rpc":[]}},{"chain_id":"Neutaro-1","fees":{"fee_tokens":[{"denom":"uneutaro","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc2.neutaro.io:443","provider":"Neutaro"},{"address":"https://rpc3.neutaro.io:443","provider":"Neutaro"}]}},{"chain_id":"neutron-1","fees":{"fee_tokens":[{"denom":"untrn","low_gas_price":0.0053,"average_gas_price":0.0053,"high_gas_price":0.0053},{"denom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","low_gas_price":0.0008,"average_gas_price":0.0008,"high_gas_price":0.0008},{"denom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","low_gas_price":0.008,"average_gas_price":0.008,"high_gas_price":0.008},{"denom":"factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH","low_gas_price":2903231.6597,"average_gas_price":2903231.6597,"high_gas_price":2903231.6597},{"denom":"ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130","low_gas_price":2564102564.1026,"average_gas_price":2564102564.1026,"high_gas_price":2564102564.1026},{"denom":"ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7","low_gas_price":0.0004,"average_gas_price":0.0004,"high_gas_price":0.0004}]},"apis":{"rpc":[{"address":"https://rpc-voidara.neutron-1.neutron.org","provider":"Neutron"},{"address":"https://rpc-pulsarix.neutron-1.neutron.org","provider":"Neutron"},{"address":"https://rpc.novel.remedy.tm.p2p.org","provider":"P2P"},{"address":"https://rpc.lavenderfive.com:443/neutron","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-neutron.whispernode.com","provider":"WhisperNode 🀐"},{"address":"https://rpc-neutron.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"http://rpc.neutron.nodestake.org","provider":"NodeStake"},{"address":"https://neutron-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://community.nuxian-node.ch:6797/neutron/trpc","provider":"PRO Delegators"},{"address":"https://rpc.neutron.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.neutron.quokkastake.io","provider":"🐹 Quokka Stake"},{"address":"https://neutron.drpc.org","provider":"dRPC"}]}},{"chain_id":"cataclysm-1","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.nibiru.fi","provider":"Nibiru Foundation"},{"address":"https://nibiru.rpc.kjnodes.com","provider":"kjnodes.com πŸ¦„"},{"address":"https://rpc.nibiru.nodestake.org","provider":"NodeStake"},{"address":"https://rpc.lavenderfive.com:443/nibiru","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.nibiru.silentvalidator.com","provider":"silent"},{"address":"https://nibiru.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://nibiru-rpc.cogwheel.zone","provider":"Cogwheel βš™οΈ"},{"address":"https://nibiru.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://nibiru.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://nibiru-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://nibiru-mainnet.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://nibiru-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.nibiru.roomit.xyz","provider":"Roomit"},{"address":"https://nibiru_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"nim_1122-1","fees":{"fee_tokens":[{"denom":"anim","low_gas_price":20000000000,"average_gas_price":20000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.nimnet.tech","provider":"NIM Foundation"}]}},{"chain_id":"noble-1","fees":{"fee_tokens":[{"denom":"uusdc","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.1,"high_gas_price":0.2},{"denom":"ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.01,"high_gas_price":0.02}]},"apis":{"rpc":[{"address":"https://noble-rpc.polkachu.com","provider":"polkachu"},{"address":"https://rpc.lavenderfive.com:443/noble","provider":"Lavender.Five Nodes 🐝"},{"address":"https://noble-rpc.owallet.io","provider":"OWALLET"}]}},{"chain_id":"pirin-1","fees":{"fee_tokens":[{"denom":"unls","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"rpc.nolus.network","provider":"NolusProtocol"},{"address":"https://nolus-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.lavenderfive.com:443/nolus","provider":"Lavender.Five Nodes 🐝"},{"address":"https://nolus.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://rpc-nolus.architectnodes.com","provider":"Architect Nodes"},{"address":"https://nolus.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://nolus-rpc.enigma-validator.com/","provider":"Enigma"},{"address":"https://nolus-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-nolus.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://nolus-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://nolus-rpc.ibs.team","provider":"Inter Blockchain Services"}]}},{"chain_id":"nomic-stakenet-3","fees":{"fee_tokens":[{"denom":"unom","low_gas_price":0,"average_gas_price":0,"high_gas_price":0},{"denom":"usat","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://stakenet-rpc.nomic.io:2096","provider":"nomic-io"},{"address":"https://nomic-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-nomic.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc.nomic.basementnodes.ca:443","provider":"Basement Nodes ⚑️"},{"address":"https://rpc.nomic.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"nyx","fees":{"fee_tokens":[{"denom":"unym","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"unyx","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.nymtech.net/","provider":"Nym"},{"address":"https://rpc.nyx.nodes.guru/","provider":"nodes guru"},{"address":"https://rpc.nym.forbole.com/","provider":"forbole"},{"address":"https://nym-mainnet-rpc.commodum.io/","provider":"commodum"},{"address":"https://nym-rpc.polkachu.com/","provider":"Polkachu"}]}},{"chain_id":"octa","fees":{"fee_tokens":[{"denom":"uocta","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"odin-mainnet-freya","fees":{"fee_tokens":[{"denom":"loki","fixed_min_gas_price":0.0125,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc.odinprotocol.io","provider":"Heimdall Gateway"},{"address":"https://odin.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/odin","provider":"Lavender.Five Nodes 🐝"},{"address":"https://odin-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"exchain-66","fees":{"fee_tokens":[{"denom":"wei","low_gas_price":200000000,"average_gas_price":250000000,"high_gas_price":400000000}]},"apis":{"rpc":[{"address":"https://exchaintmrpc.okex.org","provider":"okx chain"}]}},{"chain_id":"omniflixhub-1","fees":{"fee_tokens":[{"denom":"uflix","fixed_min_gas_price":0,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://omniflix-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://rpc.omniflix.nodestake.org","provider":"NodeStake"},{"address":"https://rpc.omniflix.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc-omniflixhub-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/omniflixhub","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.omniflix.silentvalidator.com/","provider":"silent"},{"address":"https://omniflixhub-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-omniflix.architectnodes.com","provider":"Architect Nodes"},{"address":"https://omniflix-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-omniflixhub.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://omniflix-rpc.dakshavalidator.in","provider":"Daksha Validator"},{"address":"https://rpc-omniflix.mzonder.com:443","provider":"MZONDER"},{"address":"https://rpc.omniflix.stakeup.tech:443","provider":"StakeUp"},{"address":"https://rpc.omniflix.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://omniflix-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://mainnet.omniflix.rpc.srv.stakr.space","provider":"STAKR.space"}]}},{"chain_id":"onex-mainnet-1","fees":{"fee_tokens":[{"denom":"aonex","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.onex.onomy.io","provider":"pendulum"}]}},{"chain_id":"onomy-mainnet-1","fees":{"fee_tokens":[{"denom":"anom","low_gas_price":0,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc-mainnet.onomy.io","provider":"onomy"},{"address":"https://onomy-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"Oraichain","fees":{"fee_tokens":[{"denom":"orai","fixed_min_gas_price":0,"low_gas_price":0.003,"average_gas_price":0.005,"high_gas_price":0.007}]},"apis":{"rpc":[{"address":"https://rpc.orai.io","provider":"oraichain-team"},{"address":"https://rpc.orai.pfc.zone/","provider":"PFC"},{"address":"https://rpc-orai.nodine.id/","provider":"Nodine.ID"},{"address":"https://oraichain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-oraichain.mms.team","provider":"MMS"},{"address":"https://rpc-orai.blockval.io/","provider":"Blockval"},{"address":"https://mainnet-orai-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.orai.mortysnode.nl","provider":"Morty's Nodes"},{"address":"https://orai.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://oraichain-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://orai-rpc.imdev.app","provider":"imORAI"},{"address":"https://orai-rpc.owallet.io","provider":"OWALLET"}]}},{"chain_id":"osmosis-1","fees":{"fee_tokens":[{"denom":"uosmo","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.osmosis.zone/","provider":"Osmosis Foundation"},{"address":"https://rpc-osmosis.blockapsis.com","provider":"chainapsis"},{"address":"https://osmosis-rpc.onivalidator.com","provider":"Oni Validator ⛩️"},{"address":"https://osmosis-rpc.quickapi.com:443","provider":"Chainlayer"},{"address":"https://rpc-osmosis.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc.lavenderfive.com:443/osmosis","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-osmosis.ecostake.com","provider":"ecostake"},{"address":"https://rpc-osmosis.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://osmosis-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-osmosis-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://osmosis.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://osmosis-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://osmosis.api.onfinality.io/public","provider":"OnFinality"},{"address":"https://rpc-osmosis-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://osmosis-rpc.w3coins.io","provider":"w3coins"},{"address":"https://osmosis-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://community.nuxian-node.ch:6797/osmosis/trpc","provider":"PRO Delegators"},{"address":"http://rpc-osmosis.freshstaking.com:31657","provider":"FreshSTAKING"},{"address":"https://osmosis-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://osmosis-mainnet.rpc.l0vd.com:443","provider":"L0vd.com ❀️"},{"address":"https://osmosis-rpc.reece.sh","provider":"Reecepbcups"},{"address":"https://rpc.osmosis.validatus.com","provider":"Validatus"},{"address":"https://rpc.osmosis.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://osmosis.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"},{"address":"https://public.stakewolle.com/cosmos/osmosis/rpc","provider":"Stakewolle"},{"address":"https://rpc.cros-nest.com/osmosis","provider":"Crosnest"},{"address":"https://rpc-osmo.kewrnode.com","provider":"Kewr Node"},{"address":"https://rpc.osmosis.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://osmosis-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://osmosis.drpc.org","provider":"dRPC"},{"address":"https://osmosis-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"tumbler","fees":{"fee_tokens":[{"denom":"ugrain","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-1.paloma.nodes.guru/","provider":"Nodes.Guru"}]}},{"chain_id":"panacea-3","fees":{"fee_tokens":[{"denom":"umed","fixed_min_gas_price":5,"low_gas_price":5,"average_gas_price":7,"high_gas_price":9}]},"apis":{"rpc":[{"address":"https://rpc.gopanacea.org","provider":"medibloc"},{"address":"https://panacea-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://panacea_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"passage-2","fees":{"fee_tokens":[{"denom":"upasg","fixed_min_gas_price":0,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.passage.vitwit.com","provider":"vitwit"},{"address":"https://passage-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-passage.ecostake.com","provider":"ecostake"},{"address":"https://rpc.lavenderfive.com:443/passage","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-passage-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-passage.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://rpc.passage.nodestake.top","provider":"NodeStake"},{"address":"https://passage-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://passage-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc-passage.d-stake.xyz","provider":"D-stake"},{"address":"https://passage-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://passage-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://passage-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://passage-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc-passage.mainnet.validatrium.club","provider":"Validatrium"},{"address":"https://rpc.passage.silentvalidator.com","provider":"silent"},{"address":"https://passage-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"core-1","fees":{"fee_tokens":[{"denom":"uxprt","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.core.persistence.one","provider":"Persistence"},{"address":"https://rpc-persistent-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://persistence.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://persistence-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://persistence-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://rpc-persistence.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc-persistence.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://persistence-mainnet-rpc.cosmonautstakes.com","provider":"Cosmonaut Stakes"},{"address":"https://persistence-rpc.quantnode.tech","provider":"QuantNode"},{"address":"https://persistence-rpc.zenscape.one","provider":"Zenscape"},{"address":"https://persistence-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://persistence-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"},{"address":"https://rpc.persistence.posthuman.digital:443","provider":"POSTHUMAN∞DVS"},{"address":"https://rpc-persistence-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://persistence-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://persistence-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://persistence-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.persistence.validatus.com","provider":"Validatus"},{"address":"https://public.stakewolle.com/cosmos/persistence/rpc","provider":"Stakewolle"},{"address":"https://xprt-rpc.antrixy.org/","provider":"Antrix Validators"},{"address":"https://persistence-rpc.stake-town.com","provider":"StakeTown"}]}},{"chain_id":"planq_7070-2","fees":{"fee_tokens":[{"denom":"aplanq","fixed_min_gas_price":20000000000,"low_gas_price":30000000000,"average_gas_price":35000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.planq.network","provider":"planq.network"},{"address":"https://planq.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://planq.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.planq.nodestake.org","provider":"NodeStake"},{"address":"https://planq-rpc.kynraze.com","provider":"Kynraze"},{"address":"https://rpc.planq.indonode.net","provider":"Indonode"},{"address":"https://rpc.planq.roomit.xyz","provider":"Roomit"},{"address":"https://planq-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://rpc.planq.safeblock.space","provider":"Safe Block"},{"address":"https://planq.rpc.skynodejs.net","provider":"skynodejs"},{"address":"https://planq-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://mainnet-planq-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://planq_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc-planq.blockval.io","provider":"Blockval"}]}},{"chain_id":"point_10687-1","fees":{"fee_tokens":[{"denom":"apoint","low_gas_price":5000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc-mainnet-1.point.space:26657","provider":"Point Network"},{"address":"https://rpc.point.nodestake.org","provider":"NodeStake"},{"address":"https://point.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.point.indonode.net","provider":"Indonode"}]}},{"chain_id":"pio-mainnet-1","fees":{"fee_tokens":[{"denom":"nhash","fixed_min_gas_price":1905,"low_gas_price":1905,"average_gas_price":2100,"high_gas_price":2500}]},"apis":{"rpc":[{"address":"https://rpc-provenance.takeshi.team/","provider":"TAKESHI"},{"address":"https://rpc.provenance.io/","provider":"Figure"},{"address":"https://rpc-provenance-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://provenance-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://provenance-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://provenance-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://rpc.provenance.blockval.io/","provider":"Blockval"},{"address":"https://provenance-rpc.panthea.eu","provider":"Panthea EU"},{"address":"https://provenance_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc.pio-mainnet-1.provenance.aviaone.com","provider":"AVIAONE 🟒"}]}},{"chain_id":"pryzm-1","fees":{"fee_tokens":[{"denom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.004},{"denom":"ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255","fixed_min_gas_price":500000000,"low_gas_price":500000000,"average_gas_price":600000000,"high_gas_price":700000000},{"denom":"ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"ibc/BF28D9C17E0306B194D50F51C3B2590BEAD15E04E03ADD34C3A26E62D85C9676","fixed_min_gas_price":0.002,"low_gas_price":0.002,"average_gas_price":0.003,"high_gas_price":0.004},{"denom":"ibc/B8AF5D92165F35AB31F3FC7C7B444B9D240760FA5D406C49D24862BD0284E395","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.02,"high_gas_price":0.03},{"denom":"ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.015,"high_gas_price":0.02},{"denom":"ibc/F8CA5236869F819BC006EEF088E67889A26E4140339757878F0F4E229CDDA858","fixed_min_gas_price":10000000000,"low_gas_price":10000000000,"average_gas_price":12000000000,"high_gas_price":14000000000},{"denom":"ibc/FA78980867B7E87F382CDA00275C55DDC248CABC7DEE27AC6868CCF97DD5E02F","fixed_min_gas_price":0.002,"low_gas_price":0.002,"average_gas_price":0.003,"high_gas_price":0.004},{"denom":"ibc/120DC39B61CC121E91525C1D51624E41BBE74C537D7B0BE50BBFF9A00E37B6EE","fixed_min_gas_price":10000000000,"low_gas_price":10000000000,"average_gas_price":12000000000,"high_gas_price":14000000000},{"denom":"ibc/EA6E1E8BA2EB9F681C4BD12C8C81A46530A62934F2BD561B120A00F46946CE87","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.004}]},"apis":{"rpc":[{"address":"https://rpc.pryzm.zone","provider":"PRYZM"},{"address":"https://rpc.lavenderfive.com:443/pryzm","provider":"Lavender.Five Nodes 🐝"},{"address":"https://pryzm-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://pryzm-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"PUNDIX","fees":{"fee_tokens":[{"denom":"ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78","fixed_min_gas_price":2000000000000,"low_gas_price":2000000000000,"average_gas_price":2500000000000,"high_gas_price":3000000000000}]},"apis":{"rpc":[{"address":"https://px-json.pundix.com","provider":"Pundi X"},{"address":"https://pundix.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"}]}},{"chain_id":"pylons-mainnet-1","fees":{"fee_tokens":[{"denom":"ubedrock","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.5,"high_gas_price":1}]},"apis":{"rpc":[{"address":"https://rpc.nodejumper.io:443/pylons","provider":"Nodejumper.io"},{"address":"https:/pylons-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"qfs-1","fees":{"fee_tokens":[{"denom":"qfs","low_gas_price":0.000001,"average_gas_price":0.000005,"high_gas_price":0.0001}]},"apis":{"rpc":[{"address":"https://rcp.qfsone.com","provider":"qfs"}]}},{"chain_id":"quasar-1","fees":{"fee_tokens":[{"denom":"uqsr","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.3},{"denom":"ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/quasar","provider":"Lavender.Five Nodes 🐝"},{"address":"https://quasar-rpc.polkachu.com","provider":"polkachu"},{"address":"https://quasar-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://rpc-quasar.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://quasar-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://quasar.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-quasar.validavia.me","provider":"Validavia"},{"address":"https://quasar-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://quasar-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://quasar-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://quasar-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://quasar-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://quasar-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"quicksilver-2","fees":{"fee_tokens":[{"denom":"uqck","fixed_min_gas_price":0.0001,"low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.00025}]},"apis":{"rpc":[{"address":"https://rpc-quicksilver.takeshi.team:443","provider":"TAKESHI"},{"address":"https://rpc.quicksilver.zone:443","provider":"Quicksilver"},{"address":"https://rpc-quicksilver-ia.cosmosia.notional.ventures:443","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/quicksilver","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-quicksilver.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://m-quicksilver.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://quick.rpc.m.stavr.tech:21027","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://quicksilver-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://quicksilver-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://quicksilver.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-quicksilver.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc.quicksilver.indonode.net","provider":"Indonode"},{"address":"https://quicksilver-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://quicksilver-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://quicksilver-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-quicksilver.mms.team/","provider":"MMS"},{"address":"https://quicksilver-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://quicksilver-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://mainnet-quicksilver-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://quicksilver.tdrsys.com:2053","provider":"TdrSys"},{"address":"https://rpc.quicksilver.validatus.com","provider":"Validatus"},{"address":"https://quicksilver-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"qwoyn-1","fees":{"fee_tokens":[{"denom":"uqwoyn","fixed_min_gas_price":0.03,"low_gas_price":0.03,"average_gas_price":0.05,"high_gas_price":0.075}]},"apis":{"rpc":[{"address":"https://rpc.qwoyn.studio:443","provider":"Qwoyn Studios"},{"address":"https://rpc-qwoyn.theamsolutions.info:443","provider":"AM Solutions"},{"address":"https://qwoyn.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://qwoyn-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://qwoyn-rpc-archive.staketab.org:443","provider":"Staketab archive"},{"address":"https://rpc.lavenderfive.com:443/qwoyn","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-qwoyn.mzonder.com:443","provider":"MZONDER"},{"address":"https://rpc.qwoyn.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"realionetwork_3301-1","fees":{"fee_tokens":[{"denom":"ario","fixed_min_gas_price":1000000000,"low_gas_price":4000000000,"average_gas_price":5000000000,"high_gas_price":8000000000}]},"apis":{"rpc":[{"address":"https://realio-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://realio.rpc.bccnodes.com/","provider":"BccNodes"},{"address":"https://rpc-realio-network.nodeist.net","provider":"Nodeist"},{"address":"http://realio.rpc.m.stavr.tech:21097","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.realio.indonode.net","provider":"Indonode"},{"address":"https://rpc-realio.vinjan.xyz","provider":"vinjan"},{"address":"https://api-realio.sr20de.xyz","provider":"Sr20de"},{"address":"https://rpc.realio.safeblock.space","provider":"Safe Block"},{"address":"https://realio.declab.pro:26622","provider":"Decloud Nodes Lab"},{"address":"https://realio-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc-realio.blockval.io","provider":"Blockval"},{"address":"https://realio_rio_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"reb_1111-1","fees":{"fee_tokens":[{"denom":"arebus","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://api.rebuschain.com:26657/","provider":"Rebuschain"},{"address":"https://rebus.rpc.bccnodes.com:443","provider":"BccNodes"},{"address":"https://rebus.rpc.manticore.team:443/","provider":"MantiCore"},{"address":"https://rpc.rebus.nodestake.top/","provider":"NodeStake"},{"address":"http://rebus.rpc.m.stavr.tech:40107","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-1.rebus.nodes.guru","provider":"Nodes.Guru"},{"address":"https://api.mainnet.rebus.money:26657","provider":"Rebuschain"},{"address":"https://rebus-rpc.brocha.in","provider":"Brochain"},{"address":"https://rebus-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rebus.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://rebus-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rebus-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"regen-1","fees":{"fee_tokens":[{"denom":"uregen","low_gas_price":0.015,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc-regen.ecostake.com","provider":"ecostake"},{"address":"http://public-rpc.regen.vitwit.com:26657","provider":"vitwit"},{"address":"https://regen.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://regen.stakesystems.io:2053","provider":"stakesystems"},{"address":"http://rpc.regen.forbole.com:80","provider":"forbole"},{"address":"https://rpc-regen-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://regen-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://regen-rpc.easy2stake.com","provider":"Easy 2 Stake"},{"address":"https://regen-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://regen-rpc.w3coins.io","provider":"w3coins"},{"address":"https://regen-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"titan-1","fees":{"fee_tokens":[{"denom":"uatolo","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpcapi.rizon.world/","provider":"HDAC Technology AG"},{"address":"https://rpc.rizon.chaintools.tech/","provider":"ChainTools"},{"address":"https://rizon-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rizon-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"30","fees":{"fee_tokens":[{"denom":"sat"}]},"apis":{"rpc":[]}},{"chain_id":"router_9600-1","fees":{"fee_tokens":[{"denom":"route","fixed_min_gas_price":7,"low_gas_price":7,"average_gas_price":7,"high_gas_price":10}]},"apis":{"rpc":[{"address":"https://sentry.tm.rpc.routerprotocol.com/","provider":"Router"},{"address":"https://router-rpc.genznodes.dev/","provider":"genznodes"},{"address":"https://router.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://router-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://routerchain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc.router.nodestake.org","provider":"NodeStake"}]}},{"chain_id":"ssc-1","fees":{"fee_tokens":[{"denom":"usaga","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc-saga.keplr.app","provider":"chainapsis"},{"address":"https://saga-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://saga-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.saga.nodestake.org","provider":"NodeStake"},{"address":"https://saga.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.saga.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://rpc.saga.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.lavenderfive.com:443/saga","provider":"Lavender.Five Nodes 🐝"},{"address":"https://saga-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://saga-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"scorum-1","fees":{"fee_tokens":[{"denom":"gas","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1,"high_gas_price":1}]},"apis":{"rpc":[{"address":"https://scorum-blockchain-mainnet-rpc.scorum.com","provider":"scorum"}]}},{"chain_id":"secret-4","fees":{"fee_tokens":[{"denom":"uscrt","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.1,"high_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://scrt.public-rpc.com","provider":"ANKR"},{"address":"https://rpc.lavenderfive.com:443/secretnetwork","provider":"Lavender.Five Nodes 🐝"},{"address":"https://1rpc.io/scrt-rpc","provider":"1RPC - Automata Network"},{"address":"https://secretnetwork-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://rpc.mainnet.secretsaturn.net","provider":"πŸͺ π•Šecret π•Šaturn"},{"address":"https://rpc-secret.01node.com","provider":"01node"},{"address":"https://public.stakewolle.com/cosmos/secretnetwork/rpc","provider":"Stakewolle"}]}},{"chain_id":"seda-1","fees":{"fee_tokens":[{"denom":"aseda","fixed_min_gas_price":10000000000,"low_gas_price":10000000000,"average_gas_price":10000000000,"high_gas_price":14000000000}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.seda.xyz/","provider":"SEDA"},{"address":"https://seda-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://seda.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://seda-rpc.synergynodes.com/","provider":"Synergy Nodes"},{"address":"https://rpc.lavenderfive.com:443/seda","provider":"Lavender.Five Nodes 🐝"},{"address":"https://seda-rpc.kleomedes.network/","provider":"Kleomedes"},{"address":"https://seda-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://seda-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.seda.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc-seda.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://seda-rpc.applejuice.256x25.tech:443","provider":"Apple juice πŸ§ƒ"},{"address":"https://seda-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://seda_mainnet_rpc.chain.whenmoonwhenlambo.money:443","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc-seda-mainnet.keepitstaked.com:443","provider":"KeepItStaked.com"}]}},{"chain_id":"pacific-1","fees":{"fee_tokens":[{"denom":"usei","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.02,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.sei-apis.com","provider":"Rhino Stake"},{"address":"https://rpc.lavenderfive.com:443/sei","provider":"Lavender.Five Nodes 🐝"},{"address":"https://sei-rpc.polkachu.com","provider":"polkachu.com"},{"address":"https://sei-rpc.brocha.in","provider":"Brochain"},{"address":"https://rpc-sei.stingray.plus","provider":"StingRay"},{"address":"https://rpc-sei.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://sei.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://sei-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://sei.drpc.org","provider":"dRPC - All chains in one place"}]}},{"chain_id":"self-1","fees":{"fee_tokens":[{"denom":"uslf","fixed_min_gas_price":0.005,"low_gas_price":0.005,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.selfchain.io:26657","provider":"Self Chain"},{"address":"https://rpc.selfchain.roomit.xyz","provider":"Roomit"},{"address":"https://selfchain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://selfchain.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://selfchain-mainnet.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://selfchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.selfchain.nodestake.org","provider":"NodeStake"},{"address":"https://selfchain.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"sentinelhub-2","fees":{"fee_tokens":[{"denom":"udvpn","low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc-sentinel.busurnode.com","provider":"Busurnode"},{"address":"https://rpc-sentinel-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.sentinel.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.sentinel.quokkastake.io","provider":"🐹 Quokka Stake"},{"address":"https://rpc.dvpn.roomit.xyz","provider":"Roomit"},{"address":"https://sentinel-rpc.badgerbite.io/","provider":"BadgerBite"},{"address":"https://sentinel-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://sentinel-rpc.validatornode.com/","provider":"ValidatorNode"},{"address":"https://rpc.trinitystake.io","provider":"Trinity Stake"},{"address":"https://rpc.sentineldao.com","provider":"Sentinel Growth DAO"},{"address":"https://public.stakewolle.com/cosmos/sentinel/rpc","provider":"Stakewolle"},{"address":"http://163.197.193.2:26657","provider":"Tesla Full Node"},{"address":"https://sentinel.declab.pro:26628","provider":"Decloud Nodes Lab"},{"address":"https://sentinel.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://rpc.dvpn.me:443","provider":"MathNodes China"},{"address":"https://rpc.ro.mathnodes.com:443","provider":"MathNodes Romania"},{"address":"https://rpc.noncompliant.network:443","provider":"Noncompliant Network"},{"address":"https://rpc-sentinel.chainvibes.com:443","provider":"chainvibes"},{"address":"https://sentinel-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"sgenet-1","fees":{"fee_tokens":[{"denom":"usge","fixed_min_gas_price":0.001,"low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.5}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/sge","provider":"Lavenderfive"},{"address":"https://sge-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc.sge.nodestake.org/","provider":"NodeStake"},{"address":"https://rpc.sge.roomit.xyz/","provider":"Roomit"},{"address":"https://sge.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-sge.nodeist.net/","provider":"Nodeist"},{"address":"https://sge-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://sge-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://rpc.sge.tcnetwork.io","provider":"TC Network"},{"address":"https://sge-rpc.sr20de.xyz","provider":"Sr20de"},{"address":"https://rpc.sge.safeblock.space","provider":"Safe Block"},{"address":"https://mainnet-sge-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://sge-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://sge_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"ShareRing-VoyagerNet","fees":{"fee_tokens":[{"denom":"nshr","fixed_min_gas_price":0,"low_gas_price":2000,"average_gas_price":3000,"high_gas_price":4000}]},"apis":{"rpc":[{"address":"https://rpc.explorer.shareri.ng","provider":"ShareRing"}]}},{"chain_id":"shentu-2.2","fees":{"fee_tokens":[{"denom":"uctk","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.shentu.org:443","provider":"Shentu"},{"address":"https://shentu-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://shentu.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://shentu-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://rpc-shentu-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://shentu-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://shentu-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://shentu-rpc.panthea.eu","provider":"Panthea EU"},{"address":"https://shentu-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://shentu-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"shido_9008-1","fees":{"fee_tokens":[{"denom":"shido","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://tendermint.shidoscan.com","provider":"Shido"},{"address":"https://shidochain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc.shido.256x25.tech:443","provider":"256x25"},{"address":"https://rpc.shido.indonode.net:443","provider":"Indonode"},{"address":"https://rpc-maverick.mavnode.io","provider":"MavNode"},{"address":"https://rpc.kenseishido.com","provider":"KENSEI"}]}},{"chain_id":"sifchain-1","fees":{"fee_tokens":[{"denom":"rowan","low_gas_price":1000000000000,"average_gas_price":1500000000000,"high_gas_price":2000000000000}]},"apis":{"rpc":[{"address":"https://sifchain-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://sifchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://sifchain-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://sifchain_mainnet_rpc.chain.whenmoonwhenlambo.money:443","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"sixnet","fees":{"fee_tokens":[{"denom":"usix","fixed_min_gas_price":1.25,"low_gas_price":1.25,"average_gas_price":1.5,"high_gas_price":1.75}]},"apis":{"rpc":[{"address":"https://sixnet-rpc.sixprotocol.net:443"}]}},{"fees":{"fee_tokens":[{"denom":"Lamport","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"sommelier-3","fees":{"fee_tokens":[{"denom":"usomm","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://sommelier-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-sommelier.pupmos.network","provider":"PUPMØS"},{"address":"https://somm.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/sommelier","provider":"Lavender.Five Nodes 🐝"},{"address":"https://sommelier-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://somm-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://sommelier-rpc.w3coins.io","provider":"w3coins"}]}},{"chain_id":"source-1","fees":{"fee_tokens":[{"denom":"usource","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.075,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.source.nodestake.org","provider":"NodeStake"},{"address":"https://source.rpc.bccnodes.com/","provider":"BccNodes"},{"address":"https://source.rpc.moonbridge.team/","provider":"MoonBridge"},{"address":"https://source.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-source.nodeist.net","provider":"Nodeist"},{"address":"https://source-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://source-mainnet-rpc.itrocket.net:443","provider":"ITRocket"},{"address":"https://rpc-source.sr20de.xyz:443","provider":"Sr20de"},{"address":"https://source-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.source.tcnetwork.io","provider":"TC Network"},{"address":"https://rpc.source.indonode.net","provider":"Indonode"},{"address":"https://source.rpc.skynodejs.net/","provider":"skynodejs"},{"address":"https://source.rpc.nodeshub.online/","provider":"Nodes Hub"},{"address":"https://rpc.source.roomit.xyz/","provider":"Roomit"},{"address":"https://rpc.source.posthuman.digital","provider":"posthuman"},{"address":"https://source.declab.pro:26604","provider":"Decloud Nodes Lab"},{"address":"https://rpc.source.stakeup.tech","provider":"StakeUp"},{"address":"https://source_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://source-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"stafihub-1","fees":{"fee_tokens":[{"denom":"ufis","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://public-rpc1.stafihub.io:443","provider":"StaFiHub"},{"address":"https://public-rpc2.stafihub.io:443","provider":"StaFiHub"},{"address":"https://rpc.stafihub.nodestake.org:443","provider":"NodeStake"}]}},{"chain_id":"stargaze-1","fees":{"fee_tokens":[{"denom":"ustars","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1.1,"high_gas_price":1.2}]},"apis":{"rpc":[{"address":"https://rpc.stargaze-apis.com/","provider":"Stargaze Foundation"},{"address":"https://rpc-stargaze.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-stargaze.ezstaking.dev","provider":"EZStaking.io"},{"address":"https://stargaze-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-stargaze-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://stargaze.c29r3.xyz:443/rpc/","provider":"c29r3"},{"address":"https://rpc-stargaze.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://stargaze-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc-stargaze.d-stake.xyz","provider":"D-stake"},{"address":"https://rpc.stargaze.silentvalidator.com/","provider":"silent"},{"address":"https://stargaze-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://stargaze-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://stargaze-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://stargaze-rpc.w3coins.io","provider":"w3coins"},{"address":"https://stargaze-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://stargaze-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://stargaze-rpc.reece.sh:443","provider":"Reecepbcups"},{"address":"https://rpc.stargaze.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://stargaze-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://stargaze-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"iov-mainnet-ibc","fees":{"fee_tokens":[{"denom":"uiov","low_gas_price":1,"average_gas_price":2,"high_gas_price":3}]},"apis":{"rpc":[{"address":"https://rpc-starname-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.starname.app","provider":"Chainmasters"}]}},{"chain_id":"stratos-1","fees":{"fee_tokens":[{"denom":"wei","low_gas_price":1000000000,"average_gas_price":1200000000,"high_gas_price":1600000000}]},"apis":{"rpc":[{"address":"https://rpc.thestratos.org","provider":"thestratos.org"},{"address":"http://stratos.rpc.nodersteam.com:26657/","provider":"[NODERS]TEAM"},{"address":"https://stratos-rpc.noders.services:443","provider":"[NODERS]TEAM"},{"address":"https://rpc.stratos.nodestake.org","provider":"NodeStake"}]}},{"chain_id":"stride-1","fees":{"fee_tokens":[{"denom":"ustrd","fixed_min_gas_price":0.0005,"low_gas_price":0.005,"average_gas_price":0.005,"high_gas_price":0.05},{"denom":"stuatom","fixed_min_gas_price":0.0001,"low_gas_price":0.0001,"average_gas_price":0.0002,"high_gas_price":0.0005},{"denom":"stuosmo","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.004},{"denom":"stustars","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1.1,"high_gas_price":1.2},{"denom":"stujuno","fixed_min_gas_price":0.075,"low_gas_price":0.075,"average_gas_price":0.1,"high_gas_price":0.125},{"denom":"stuluna","fixed_min_gas_price":0.0125,"low_gas_price":0.0125,"average_gas_price":0.015,"high_gas_price":0.04},{"denom":"staevmos","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000},{"denom":"stinj","fixed_min_gas_price":500000000,"low_gas_price":500000000,"average_gas_price":700000000,"high_gas_price":900000000},{"denom":"stucmdx","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"stuumee","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.12,"high_gas_price":0.2},{"denom":"stutia","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1},{"denom":"stadydx","fixed_min_gas_price":15000000000,"low_gas_price":15000000000,"average_gas_price":15000000000,"high_gas_price":20000000000},{"denom":"stadym","fixed_min_gas_price":15000000000,"low_gas_price":15000000000,"average_gas_price":15000000000,"high_gas_price":20000000000},{"denom":"stusaga","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.015,"high_gas_price":0.03},{"denom":"ibc/BF3B4F53F3694B66E13C23107C84B6485BD2B96296BB7EC680EA77BBA75B4801","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://stride-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://stride-rpc.onivalidator.com","provider":"Oni Validator ⛩️"},{"address":"https://rpc.lavenderfive.com:443/stride","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.stride.silentvalidator.com/","provider":"silent"},{"address":"https://rpc-stride.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://stride.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-stride.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-stride.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc-stride.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://stride-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-stride-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://stride-rpc.w3coins.io","provider":"w3coins"},{"address":"https://stride-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://community.nuxian-node.ch:6797/stride/trpc","provider":"PRO Delegators"},{"address":"https://stride-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.stride.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://public.stakewolle.com/cosmos/stride/rpc","provider":"Stakewolle"}]}},{"chain_id":"sunrise-1","fees":{"fee_tokens":[{"denom":"urise","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[]}},{"chain_id":"synternet-1","fees":{"fee_tokens":[{"denom":"usynt","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.synternet.com/","provider":"Synternet"},{"address":"https://synternet_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://synternet-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"taketitan-12","fees":{"fee_tokens":[{"denom":"ttnc","low_gas_price":0.000001,"average_gas_price":0.000005,"high_gas_price":0.0001}]},"apis":{"rpc":[{"address":"https://rcpttnc.taketitan.com","provider":"taketitan"}]}},{"chain_id":"tenet_1559-1","fees":{"fee_tokens":[{"denom":"atenet","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://tendermint-1.rpc.tenet.org","provider":"tenet"},{"address":"https://tenet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://tenet_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"teritori-1","fees":{"fee_tokens":[{"denom":"utori","low_gas_price":0,"average_gas_price":0.25,"high_gas_price":0.5}]},"apis":{"rpc":[{"address":"https://teritori-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://teritori.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.teritori.silentvalidator.com/","provider":"silent"},{"address":"https://teritori-rpc.brocha.in","provider":"Brochain"},{"address":"https://teritori-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://teritori.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.tori.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://teritori-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://m-teritori.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc-teritori.pupmos.network","provider":"PUPMØS"},{"address":"https://teritori-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-teritori.ecostake.com","provider":"ecostake"},{"address":"https://teritori-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://teritori-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://teritori_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://teritori-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"morocco-1","fees":{"fee_tokens":[{"denom":"uthiol","fixed_min_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc-terp.zenchainlabs.io/","provider":"ZenChainLabs"},{"address":"https://terp-mainnet-rpc.itrocket.net:443","provider":"itrocket.net"},{"address":"https://terp.rpc.nodex.one:443","provider":"nodex.one"}]}},{"chain_id":"columbus-5","fees":{"fee_tokens":[{"denom":"uluna","low_gas_price":28.325,"average_gas_price":28.325,"high_gas_price":50},{"denom":"usdr","low_gas_price":0.52469,"average_gas_price":0.52469,"high_gas_price":0.52469},{"denom":"uusd","low_gas_price":0.75,"average_gas_price":0.75,"high_gas_price":0.75},{"denom":"ukrw","low_gas_price":850,"average_gas_price":850,"high_gas_price":850},{"denom":"umnt","low_gas_price":2142.855,"average_gas_price":2142.855,"high_gas_price":2142.855},{"denom":"ueur","low_gas_price":0.625,"average_gas_price":0.625,"high_gas_price":0.625},{"denom":"ucny","low_gas_price":4.9,"average_gas_price":4.9,"high_gas_price":4.9},{"denom":"ujpy","low_gas_price":81.85,"average_gas_price":81.85,"high_gas_price":81.85},{"denom":"ugbp","low_gas_price":0.55,"average_gas_price":0.55,"high_gas_price":0.55},{"denom":"uinr","low_gas_price":54.4,"average_gas_price":54.4,"high_gas_price":54.4},{"denom":"ucad","low_gas_price":0.95,"average_gas_price":0.95,"high_gas_price":0.95},{"denom":"uchf","low_gas_price":0.7,"average_gas_price":0.7,"high_gas_price":0.7},{"denom":"uaud","low_gas_price":0.95,"average_gas_price":0.95,"high_gas_price":0.95},{"denom":"usgd","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"uthb","low_gas_price":23.1,"average_gas_price":23.1,"high_gas_price":23.1},{"denom":"usek","low_gas_price":6.25,"average_gas_price":6.25,"high_gas_price":6.25},{"denom":"unok","low_gas_price":6.25,"average_gas_price":6.25,"high_gas_price":6.25},{"denom":"udkk","low_gas_price":4.5,"average_gas_price":4.5,"high_gas_price":4.5},{"denom":"uidr","low_gas_price":10900,"average_gas_price":10900,"high_gas_price":10900},{"denom":"uphp","low_gas_price":38,"average_gas_price":38,"high_gas_price":38},{"denom":"uhkd","low_gas_price":5.85,"average_gas_price":5.85,"high_gas_price":5.85},{"denom":"umyr","low_gas_price":3,"average_gas_price":3,"high_gas_price":3},{"denom":"utwd","low_gas_price":20,"average_gas_price":20,"high_gas_price":20}]},"apis":{"rpc":[{"address":"https://terra-classic-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-terra-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://terraclassic-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://terraclassic-rpc-server-01.stakely.io","provider":"Stakely"}]}},{"chain_id":"phoenix-1","fees":{"fee_tokens":[{"denom":"uluna","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.015,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/terra2","provider":"Lavender.Five Nodes 🐝"},{"address":"https://terra-rpc.polkachu.com","provider":"polkachu"},{"address":"https://terra-rpc.stakely.io:443/","provider":"stakely"},{"address":"https://phoenix-rpc.terra.dev:443","provider":"Terraform Labs"},{"address":"https://terra-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-terra-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-archive-terra.r93axnodes.cloud:443","provider":"r93AX Nodes"},{"address":"https://rpc-terra.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://terra-phoenix-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://rpc-terra.wildsage.io","provider":"πŸ§™ WildSage Labs"},{"address":"https://terra.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"},{"address":"https://terra2.tdrsys.com:2053","provider":"TdrSys"},{"address":"https://terra-rpc.cosmosrescue.dev:8443","provider":"cosmosrescue"}]}},{"chain_id":"tgrade-mainnet-1","fees":{"fee_tokens":[{"denom":"utgd","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.075,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.mainnet-1.tgrade.confio.run","provider":"Confio"},{"address":"https://rpc.tgrade.posthuman.digital","provider":"POSTHUMAN ꝏ DVS"}]}},{"chain_id":"thorchain-1","apis":{"rpc":[]}},{"chain_id":"titan_18888-1","fees":{"fee_tokens":[{"denom":"atkx","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":110000000000,"high_gas_price":200000000000}]},"apis":{"rpc":[{"address":"https://titan-rpc.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc-tokyo.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc-seoul.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc-hongkong.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc.ibs.team","provider":"ibs.team"}]}},{"fees":{"fee_tokens":[{"denom":"nanoton","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"fees":{"fee_tokens":[{"denom":"sun","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"umee-1","fees":{"fee_tokens":[{"denom":"uumee","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.12,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://umee-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-umee-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://umee-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"http://umee.rpc.m.stavr.tech:10457","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"http://rpc-umee-0.node75.org:26657","provider":"Pro-Nodes75"},{"address":"https://umee-rpc.quantnode.tech","provider":"QuantNode"},{"address":"https://umee-rpc.tienthuattoan.com","provider":"TTT πŸ‡»πŸ‡³"},{"address":"https://rpc-umee-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://umee-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://umee-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://umee.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://umee-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-umee.mms.team","provider":"MMS"},{"address":"https://rpc-umee.mzonder.com","provider":"MZONDER"},{"address":"https://umee-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://umee-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://umee.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://umee-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://umee_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"unicorn-420","fees":{"fee_tokens":[{"denom":"uwunicorn","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[]}},{"chain_id":"FUND-MainNet-2","fees":{"fee_tokens":[{"denom":"nund","fixed_min_gas_price":25,"low_gas_price":100,"average_gas_price":200,"high_gas_price":300}]},"apis":{"rpc":[{"address":"https://rpc.unification.io:443","provider":"Unification"},{"address":"https://rpc.unification.chainmasters.ninja/","provider":"Chainmasters"}]}},{"chain_id":"ununifi-beta-v1","fees":{"fee_tokens":[{"denom":"uguu","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"http://a.lcd.ununifi.cauchye.net:26657","provider":"CauchyE"},{"address":"https://rpc.ununifi.nodestake.top","provider":"NodeStake"},{"address":"https://rpc.lavenderfive.com:443/ununifi","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.lavenderfive.com:443/ununifi","provider":"Lavender.Five Nodes 🐝"},{"address":"https://ununifi-rpc.genznodes.dev","provider":"genznodes"}]}},{"chain_id":"uptick_117-1","fees":{"fee_tokens":[{"denom":"auptick","fixed_min_gas_price":13000000000,"low_gas_price":13000000000,"average_gas_price":16000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://uptick-rpc.brocha.in:443","provider":"Brochain"},{"address":"https://uptick.rpc.bccnodes.com:443","provider":"BccNodes"},{"address":"https://rpc.uptick.nodestake.org","provider":"NodeStake"},{"address":"https://uptick.rpc.kjnodes.com","provider":"kjnodes"},{"address":"http://uptick.rpc.m.stavr.tech:3157","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://m-uptick.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://uptick-mainnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://uptick.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://uptick-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://uptick-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://rpc-uptick.cakralabs.site","provider":"Cakra Labs"},{"address":"https://rpc-uptick.sr20de.xyz","provider":"Sr20de"},{"address":"https://uptick-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"xion-mainnet-1","fees":{"fee_tokens":[{"denom":"uxion","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.001,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.xion-mainnet-1.burnt.com","provider":"πŸ”₯BurntLabsπŸ”₯"},{"address":"https://xion-rpc.lavenderfive.com","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-burnt.imperator.co/","provider":"Imperator.co"},{"address":"https://xion-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://xion-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://xion_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc.xion.nodestake.org","provider":"NodeStake"}]}},{"chain_id":"dimension_37-1","fees":{"fee_tokens":[{"denom":"axpla","fixed_min_gas_price":850000000000,"low_gas_price":850000000000,"average_gas_price":1147500000000,"high_gas_price":1487500000000}]},"apis":{"rpc":[{"address":"https://dimension-rpc.xpla.dev","provider":"Holdings"},{"address":"https://xpla.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/xpla","provider":"Lavender.Five Nodes 🐝"},{"address":"https://xpla-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://xpla.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"zetachain_7000-1","fees":{"fee_tokens":[{"denom":"azeta","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://zetachain.blockpi.network/rpc/v1/public","provider":"BlockPI"},{"address":"https://zetachain-mainnet-archive.allthatnode.com:26657","provider":"All That Node"},{"address":"https://rpc.lavenderfive.com:443/zetachain","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.zetachain.nodestake.org","provider":"NodeStake"},{"address":"https://zetachain-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://zetachain.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://zeta-chain.drpc.org","provider":"dRPC"},{"address":"https://zeta.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"junction","fees":{"fee_tokens":[{"denom":"amf","fixed_min_gas_price":0,"low_gas_price":0.00025,"average_gas_price":0.005,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://junction-rpc.validatorvn.com/","provider":"Validator VN"},{"address":"https://airchains-testnet-rpc.cosmonautstakes.com/","provider":"Cosmonaut Stakes"},{"address":"https://junction-testnet-rpc.synergynodes.com/","provider":"Synergy Nodes"},{"address":"https://airchains-rpc.anonid.top/","provider":"Anonid Top"},{"address":"https://airchains-test.rpc.moonbridge.team/","provider":"Moonbridge Team"},{"address":"https://airchains-rpc.chainad.org/","provider":"Coin Hunterstr"},{"address":"https://airchains.rpc.t.stavr.tech/","provider":"Stavr Tech"},{"address":"https://rpc.nodejumper.io/airchainstestnet","provider":"Nodejumper"},{"address":"https://t-airchains.rpc.utsa.tech/","provider":"UTSA"},{"address":"https://junction-rpc.kzvn.xyz/","provider":"KZVN"},{"address":"https://airchains-rpc.elessarnodes.xyz/","provider":"Elessar Nodes"},{"address":"https://junction-rpc.apollo-sync.com/","provider":"Apollo Sync"},{"address":"https://rpc-airchain.danggia.xyz/","provider":"DANGGIA"},{"address":"https://airchains-rpc.stakeme.pro/","provider":"Stakeme"},{"address":"https://airchains-testnet-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://airchains-testnet-rpc.crouton.digital/","provider":"Crouton Digital"},{"address":"https://airchains-testnet-rpc.itrocket.net/","provider":"IT Rocket"},{"address":"https://rpc1.airchains.t.cosmostaking.com/","provider":"Cosmostaking"}]}},{"chain_id":"sandbox-01","fees":{"fee_tokens":[{"denom":"uakt","fixed_min_gas_price":0,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.sandbox-01.aksh.pw:443","provider":"akash"}]}},{"chain_id":"constantine-3","fees":{"fee_tokens":[{"denom":"aconst","low_gas_price":1000000000000,"average_gas_price":1500000000000,"high_gas_price":2000000000000}]},"apis":{"rpc":[{"address":"https://rpc.constantine.archway.io","provider":"Archway"},{"address":"https://archway-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"arkeo","fees":{"fee_tokens":[{"denom":"uarkeo"}]},"apis":{"rpc":[{"address":"https://arkeonetwork-testnet.nodejumper.io:26657","provider":"NODEJUMPER"},{"address":"https://test-arkeo-rpc.kynraze.com","provider":"kynraze"},{"address":"https://testnet-arkeo-rpc.lavenderfive.com","provider":"lavenderfive"},{"address":"https://arkeo-rpc.siriusnodes.uk","provider":"siriusnodes"},{"address":"http://seed.arkeo.network:26657","provider":"arkeo"}]}},{"chain_id":"artela_11820-1","fees":{"fee_tokens":[{"denom":"uart","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://testnet-rpc1.artela.network","provider":"Artela Foundation"},{"address":"https://testnet-rpc2.artela.network","provider":"Artela Foundation"}]}},{"chain_id":"aura_6321-3","fees":{"fee_tokens":[{"denom":"ueaura","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://rpc.euphoria.aura.network/","provider":"Aura Network Foundation"}]}},{"chain_id":"axelar-testnet-lisbon-3","fees":{"fee_tokens":[{"denom":"uaxl","low_gas_price":0.007,"average_gas_price":0.007,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc-axelar-testnet.imperator.co:443","provider":"Imperator.co"},{"address":"https://axelartest-rpc.quickapi.com/","provider":"Quickapi"},{"address":"https://axelar-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"bbn-test3","fees":{"fee_tokens":[{"denom":"ubbn"}]},"apis":{"rpc":[{"address":"rpc.testnet3.babylonchain.io:443","provider":"Babylon foundation"}]}},{"chain_id":"bitcanna-dev-1","fees":{"fee_tokens":[{"denom":"ubcna","fixed_min_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://rpc-testnet.bitcanna.io","provider":"bitcanna"},{"address":"https://bitcanna-testnet.rpc.kjnodes.com/","provider":"kjnodes.com"},{"address":"https://testnet-bitcanna-rpc.konsortech.xyz/","provider":"konsortech.xyz"},{"address":"https://rpc.bitcanna-dev-1.bitcanna.aviaone.com/","provider":"aviaone.com"},{"address":"https://bitcanna-testnet.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://bcna-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"blockx_19077-1","apis":{"rpc":[]}},{"chain_id":"cascadia_6102-1","fees":{"fee_tokens":[{"denom":"aCC","fixed_min_gas_price":0,"low_gas_price":7,"average_gas_price":10,"high_gas_price":15}]},"apis":{"rpc":[{"address":"https://rpc.cascadia.foundation:443","provider":"cascadia"},{"address":"https://cscd-rpc.systemd.run:443","provider":"systemd"},{"address":"https://api.cascadia-t.indonode.net:443","provider":"Indonode"},{"address":"https://rpc-test.cascadia.hexnodes.co:443","provider":"Hexnodes"}]}},{"chain_id":"mocha-4","fees":{"fee_tokens":[{"denom":"utia","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc-mocha.pops.one","provider":"P-OPs"},{"address":"https://celestia-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-mocha-full.avril14th.org","provider":"Avril 14th"},{"address":"https://celestia-testnet-rpc.itrocket.net","provider":"πŸš€ITRocketπŸš€"},{"address":"https://rpc-celestia-testnet.cryptech.com.ua","provider":"CrypTech"},{"address":"https://rpc.celestia.testnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://celestia-testnet-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"}]}},{"chain_id":"babajaga-1","fees":{"fee_tokens":[{"denom":"uc4e","fixed_min_gas_price":0,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc-testnet.c4e.io","provider":"C4E"}]}},{"chain_id":"cheqd-testnet-6","fees":{"fee_tokens":[{"denom":"ncheq","fixed_min_gas_price":25,"low_gas_price":50,"average_gas_price":75,"high_gas_price":100}]},"apis":{"rpc":[{"address":"https://rpc.cheqd.network","provider":"cheqd"}]}},{"chain_id":"chimba-testnet","fees":{"fee_tokens":[{"denom":"ucmba","fixed_min_gas_price":0.25,"low_gas_price":1,"average_gas_price":5,"high_gas_price":10}]},"apis":{"rpc":[{"address":"https://rpc.testnet.chimba.ooo","provider":"chimba"}]}},{"chain_id":"banksy-testnet-3","fees":{"fee_tokens":[{"denom":"ppica","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.composable-t.indonode.net:443","provider":"Indonode"},{"address":"https://rpc-composable-testnet.sr20de.xyz:443","provider":"Sr20de"}]}},{"chain_id":"kitten-04","fees":{"fee_tokens":[{"denom":"uccat","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":1,"high_gas_price":2}]},"apis":{"rpc":[{"address":"https://rpc.coolcat.space","provider":"Digital Kitchen"}]}},{"chain_id":"coreum-testnet-1","fees":{"fee_tokens":[{"denom":"utestcore","fixed_min_gas_price":0.03125,"low_gas_price":0.0625,"average_gas_price":0.0625,"high_gas_price":62.5}]},"apis":{"rpc":[{"address":"https://full-node.testnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-eris.testnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://coreum-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"theta-testnet-001","fees":{"fee_tokens":[{"denom":"uatom","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://cosmoshubt.tendermintrpc.lava.build:443","provider":"Lava"},{"address":"https://rpc.sentry-01.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.sentry-02.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.state-sync-01.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.state-sync-02.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://public-cosmos-theta.w3node.com","provider":"Interchain.FM"},{"address":"https://rpc-theta.osmotest5.osmosis.zone/","provider":"Osmosis"}]}},{"chain_id":"provider","fees":{"fee_tokens":[{"denom":"uatom","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.provider-sentry-01.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.provider-sentry-02.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.provider-state-sync-01.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.provider-state-sync-02.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://cosmos-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"malaga-420","fees":{"fee_tokens":[{"denom":"umlg","low_gas_price":0.03,"average_gas_price":0.04,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.malaga-420.cosmwasm.com:443","provider":"Confio"}]}},{"chain_id":"coss-testnet-1","fees":{"fee_tokens":[{"denom":"ucgas","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://coss-testnet-rpc.coss.ink","provider":"COSS"}]}},{"chain_id":"cudos-testnet-public-3","apis":{"rpc":[{"address":"https://rpc.testnet.cudos.org:443/","provider":"cudo"},{"address":"http://sentry-01.hosts.testnet.cudos.org:26657","provider":"cudo"},{"address":"http://sentry-02.hosts.testnet.cudos.org:26657","provider":"cudo"},{"address":"http://sentry-03.hosts.testnet.cudos.org:26657","provider":"cudo"}]}},{"chain_id":"deardoge-testnet","fees":{"fee_tokens":[{"denom":"udear","fixed_min_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://testnet-rpc.deardoge.org","provider":"dorafactory"}]}},{"chain_id":"morpheus-apollo-3","fees":{"fee_tokens":[{"denom":"udaric","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.03,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.morpheus.desmos.network","provider":"desmos"}]}},{"chain_id":"dhealth-testnet-2","fees":{"fee_tokens":[{"denom":"utdhp","fixed_min_gas_price":0.01,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc-testnet.dhealth.dev","provider":"dHealth"}]}},{"chain_id":"vota-testnet","fees":{"fee_tokens":[{"denom":"peaka","fixed_min_gas_price":100000000000}]},"apis":{"rpc":[{"address":"https://vota-testnet-rpc.dorafactory.org/","provider":"dorafactory"}]}},{"chain_id":"dydx-testnet-4","fees":{"fee_tokens":[{"denom":"adv4tnt","fixed_min_gas_price":12500000000,"low_gas_price":12500000000,"average_gas_price":12500000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://dydx-rpc-testnet.enigma-validator.com","provider":"Enigma"},{"address":"https://testnet-dydx-rpc.lavenderfive.com","provider":"Lavender Five"},{"address":"https://test-dydx-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://dydx-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://dydx-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"dymension_1405-1","fees":{"fee_tokens":[{"denom":"adym","low_gas_price":5000000000,"average_gas_price":5500000000,"high_gas_price":6000000000}]},"apis":{"rpc":[{"address":"https://rpc-dym-migration-test-2.mzonder.com","provider":"mzonder"}]}},{"chain_id":"elysicstestnet-1","fees":{"fee_tokens":[{"denom":"uelys","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.testnet.elys.network","provider":"Elys Network"},{"address":"https://elys-testnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://elys-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"empe-testnet-2","fees":{"fee_tokens":[{"denom":"uempe","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-testnet.empe.io/","provider":"empe"},{"address":"https://rpc-archive-testnet.empe.io/","provider":"empe-archive"}]}},{"chain_id":"circulus-1","fees":{"fee_tokens":[{"denom":"umpwr","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://empower-testnet-rpc.polkachu.com:443","provider":"Polkachu"},{"address":"https://empower.rpc.cumulo.com.es:443","provider":"Cumulo"},{"address":"https://rpc-t.empower.nodestake.top:443","provider":"NodeStake"},{"address":"https://rpc-empower.nodeist.net:443","provider":"Nodeist"},{"address":"https://empower-testnet.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://empower-testnet-rpc.itrocket.net:443","provider":"ITRocket"},{"address":"https://rpc.circulus-1.empower.aviaone.com:443","provider":"AviaOne"}]}},{"chain_id":"epix_4243-1","fees":{"fee_tokens":[{"denom":"aepix","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.testnet.epix.zone","provider":"Epix Testnet"}]}},{"chain_id":"evmos_9000-4","fees":{"fee_tokens":[{"denom":"atevmos","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://evmos.test.rpc.coldyvalidator.net","provider":"coldy"},{"address":"https://evmos-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://evmos-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"dorado-1","fees":{"fee_tokens":[{"denom":"atestfet","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc-dorado.fetch.ai:443","provider":"fetch.ai"}]}},{"chain_id":"fiamma-testnet-1","fees":{"fee_tokens":[{"denom":"ufia"}]},"apis":{"rpc":[{"address":"https://testnet-rpc.fiammachain.io","provider":"Fiamma"}]}},{"chain_id":"ebony-2","fees":{"fee_tokens":[{"denom":"tcony","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.015,"high_gas_price":0.015}]},"apis":{"rpc":[{"address":"https://ebony-rpc.finschia.io"}]}},{"chain_id":"galactica_9302-1","fees":{"fee_tokens":[{"denom":"agnet","fixed_min_gas_price":10,"low_gas_price":10,"average_gas_price":10,"high_gas_price":20}]},"apis":{"rpc":[{"address":"https://rpc.galactica.test.pfc.zone/","provider":"PFC"},{"address":"https://galactica-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"gitopia-janus-testnet-2","fees":{"fee_tokens":[{"denom":"utlore","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://gitopia-testnet.nodejumper.io","provider":"NODEJUMPER"}]}},{"chain_id":"berberis-1","fees":{"fee_tokens":[{"denom":"uhedge","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-berberis.hedgeblock.io","provider":"Hedge"}]}},{"chain_id":"testnet-1","fees":{"fee_tokens":[{"denom":"uheart","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://humans-testnet.nodejumper.io","provider":"NODEJUMPER"},{"address":"https://humans-testnet-rpc.cosmonautstakes.com","provider":"Cosmonaut Stakes πŸ€–"}]}},{"chain_id":"prajna-1","fees":{"fee_tokens":[{"denom":"uhid","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.prajna.hypersign.id","provider":"Hypersign"}]}},{"chain_id":"pandora-8","fees":{"fee_tokens":[{"denom":"uixo","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.testnet.ixo.earth/","provider":"ixoworld"}]}},{"chain_id":"imversed-test-1","fees":{"fee_tokens":[{"denom":"nimv","fixed_min_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://tx-endpoint-test.imversed.com/","provider":"imversed"}]}},{"chain_id":"injective-888","fees":{"fee_tokens":[{"denom":"inj","fixed_min_gas_price":160000000,"low_gas_price":500000000,"average_gas_price":700000000,"high_gas_price":900000000}]},"apis":{"rpc":[{"address":"https://injective-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://testnet.sentry.tm.injective.network:443","provider":"injectiveLabs"},{"address":"https://testnet.tm.injective.network","provider":"injectiveLabs"},{"address":"https://injective-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"canine-1","fees":{"fee_tokens":[{"denom":"ujkl","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"http://jkl.rpc.t.stavr.tech:19127","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://testnet-rpc.jackalprotocol.com","provider":"Jackal Labs"}]}},{"chain_id":"mesomelas-1","fees":{"fee_tokens":[{"denom":"ujkl","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://jackal-testnet-v4-rpc.brocha.in","provider":"Brochain"}]}},{"chain_id":"uni-6","fees":{"fee_tokens":[{"denom":"ujunox","low_gas_price":0.003,"average_gas_price":0.0045,"high_gas_price":0.006}]},"apis":{"rpc":[{"address":"https://juno-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"kichain-t-4","fees":{"fee_tokens":[{"denom":"utki","fixed_min_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://rpc-challenge.blockchain.ki/","provider":"kifoundation"}]}},{"chain_id":"kima_testnet","fees":{"fee_tokens":[{"denom":"uKIMA","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc-testnet.kima.finance/","provider":"Kima Network"}]}},{"chain_id":"harpoon-4","fees":{"fee_tokens":[{"denom":"ukuji","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://kujira-testnet-rpc.polkachu.com","provider":"polkachu"}]}},{"chain_id":"kaon-1","fees":{"fee_tokens":[{"denom":"tkyve","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc.kaon.kyve.network","provider":"kyve"},{"address":"https://rpc-kyve-test.ecostake.com","provider":"ecostake"},{"address":"https://kyve-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"lava-testnet-2","fees":{"fee_tokens":[{"denom":"ulava","fixed_min_gas_price":0.000001,"low_gas_price":0.000001,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://lav1.tendermintrpc.lava.build:443","provider":"Lava"},{"address":"http://lava.rpc.t.stavr.tech:198","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://lava-testnet-rpc.itrocket.net:443","provider":"πŸš€ITRocketπŸš€"},{"address":"https://lava-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"likecoin-public-testnet-5","fees":{"fee_tokens":[{"denom":"nanoekil","fixed_min_gas_price":1000,"low_gas_price":1000,"average_gas_price":10000,"high_gas_price":1000000}]},"apis":{"rpc":[{"address":"https://node.testnet.like.co/rpc/","provider":"like.co"}]}},{"chain_id":"lumenx-test","fees":{"fee_tokens":[{"denom":"ulumen","fixed_min_gas_price":0.0025,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://testnet-rpc.lumenx.chaintools.tech/","provider":"ChainTools"},{"address":"https://testrpc-lumenx.cryptonet.pl/","provider":"CryptoNet"}]}},{"chain_id":"manifest-ledger-beta","fees":{"fee_tokens":[{"denom":"umfx","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.007,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://nodes.chandrastation.com/rpc/manifest/","provider":"Chandra Station"},{"address":"https://manifest-beta-rpc.liftedinit.tech/","provider":"Lifted Initiative"}]}},{"chain_id":"mantra-hongbai-1","fees":{"fee_tokens":[{"denom":"uom","fixed_min_gas_price":0,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.003}]},"apis":{"rpc":[{"address":"https://rpc.hongbai.mantrachain.io","provider":"MANTRACHAIN"},{"address":"https://mantra-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"mantra-dukong-1","fees":{"fee_tokens":[{"denom":"uom","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.dukong.mantrachain.io","provider":"MANTRACHAIN"},{"address":"https://mantra-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"ares-1","fees":{"fee_tokens":[{"denom":"umars","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://testnet-rpc.marsprotocol.io/","provider":"Mars Protocol"},{"address":"https://rpc-mars.nodeist.net/","provider":"Nodeist"}]}},{"chain_id":"mnova_10096-1","apis":{"rpc":[]}},{"chain_id":"narwhal-2","fees":{"fee_tokens":[{"denom":"uwhale","fixed_min_gas_price":0.25,"low_gas_price":0.25,"average_gas_price":0.5,"high_gas_price":0.75}]},"apis":{"rpc":[{"address":"https://migaloo-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"neura_267-1","fees":{"fee_tokens":[{"denom":"atankr"}]},"apis":{"rpc":[{"address":"https://rpc.ankr.com/neura_testnet","provider":"ankr"}]}},{"chain_id":"pion-1","fees":{"fee_tokens":[{"denom":"untrn","low_gas_price":0.0053,"average_gas_price":0.0053,"high_gas_price":0.0053}]},"apis":{"rpc":[{"address":"https://rpc-falcron.pion-1.ntrn.tech","provider":"Neutron"},{"address":"https://neutron-testnet-rpc.polkachu.com/","provider":"Polkachu"}]}},{"chain_id":"nibiru-testnet-1","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet-1.nibiru.fi","provider":"Nibiru Foundation"}]}},{"chain_id":"nibiru-testnet-2","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet-2.nibiru.fi","provider":"Nibiru Foundation"}]}},{"chain_id":"nibiru-testnet-3","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet-3.nibiru.fi","provider":"Nibiru Foundation"}]}},{"chain_id":"nillion-chain-testnet-1","fees":{"fee_tokens":[{"denom":"unil","low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.00025}]},"apis":{"rpc":[{"address":"https://nillion-testnet-rpc.polkachu.com/","provider":"polkachu"},{"address":"https://testnet-nillion-rpc.lavenderfive.com","provider":"lavenderfive"},{"address":"https://nillion-testnet.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://nillion-testnet.rpc.nodex.one","provider":"NodeX Emperor"}]}},{"chain_id":"grand-1","fees":{"fee_tokens":[{"denom":"uusdc","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://noble-testnet-rpc.polkachu.com","provider":"polkachu"},{"address":"https://rpc.testnet.noble.strange.love:443","provider":"strangelove"}]}},{"chain_id":"nois-testnet-005","fees":{"fee_tokens":[{"denom":"unois","fixed_min_gas_price":0,"low_gas_price":0.05,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://nois-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://nois-testnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://rpc.nois.mcbnode.online:443","provider":"mcbnode"},{"address":"https://nois-testnet.rpc.kjnodes.com:443","provider":"kjnodes"},{"address":"https://tnois-rpc.systemd.run:443","provider":"systemd"}]}},{"chain_id":"rila-1","fees":{"fee_tokens":[{"denom":"unls","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rila-cl.nolus.network:26657","provider":"NolusProtocol"}]}},{"chain_id":"nomic-testnet-6","fees":{"fee_tokens":[{"denom":"unom","low_gas_price":0,"average_gas_price":0,"high_gas_price":0},{"denom":"usat","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://testnet-rpc.nomic.io:2096","provider":"nomic"}]}},{"chain_id":"sandbox","fees":{"fee_tokens":[{"denom":"unym","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"unyx","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.sandbox.nymtech.net","provider":"Nym"}]}},{"chain_id":"okp4-nemeton-1","fees":{"fee_tokens":[{"denom":"uknow","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://api.testnet.okp4.network/rpc","provider":"OKP4"},{"address":"https://okptest-rpc.quickapi.com","provider":"Chainlayer"},{"address":"http://okp.rpc.t.stavr.tech:10097","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://okp4-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"osmo-test-5","fees":{"fee_tokens":[{"denom":"uosmo","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.osmotest5.osmosis.zone/","provider":"Osmosis"}]}},{"chain_id":"INVALID-ID-permtestnet-testnet-1","fees":{"fee_tokens":[{"denom":"uperm","low_gas_price":0.0025,"average_gas_price":0.0025,"high_gas_price":0.0024}]},"apis":{"rpc":[{"address":"https://rpc.3.finance/","provider":"Perm Network"}]}},{"chain_id":"test-core-1","fees":{"fee_tokens":[{"denom":"uxprt","fixed_min_gas_price":0,"low_gas_price":0.05,"average_gas_price":0.125,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://rpc-testnet-persistence.architectnodes.com/","provider":"Architect Nodes"},{"address":"https://persistence-testnet-rpc.baryon.dev/","provider":"Baryon"},{"address":"https://persistence-testnet-rpc.cosmonautstakes.com/","provider":"Cosmonaut Stakes"},{"address":"https://rpc.testnet.persistence.one/","provider":"Persistence"},{"address":"https://persistence-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://xprt-trpc.antrixy.org/","provider":"Antrix Validators"}]}},{"chain_id":"test-core-2","fees":{"fee_tokens":[{"denom":"uxprt","fixed_min_gas_price":0,"low_gas_price":0.05,"average_gas_price":0.125,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://rpc-persistence-testnet-01.stakeflow.io/","provider":"StakeFlow"},{"address":"https://persistence-testnet-rpc.baryon.dev/","provider":"Baryon"},{"address":"https://persistence-testnet-rpc.cosmonautstakes.com/","provider":"Cosmonaut Stakes"},{"address":"https://rpc.testnet2.persistence.one/","provider":"Persistence"},{"address":"https://persistence-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://persistencecoretest-rpc.ytwofund.pro/","provider":"YTWOFUND"},{"address":"http://persistence-testnet.paranorm.pro:24657/","provider":"Paranorm"}]}},{"chain_id":"planq_7077-1","fees":{"fee_tokens":[{"denom":"atplanq","fixed_min_gas_price":20000000000,"low_gas_price":30000000000,"average_gas_price":35000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc-atlas.planq.network","provider":"Planq Network"},{"address":"https://planq_testnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"pocket-beta","fees":{"fee_tokens":[{"denom":"upokt","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://shannon-testnet-grove-rpc.beta.poktroll.com","provider":"Grove"}]}},{"chain_id":"indigo-1","fees":{"fee_tokens":[{"denom":"upryzm","fixed_min_gas_price":0,"low_gas_price":0.015,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://testnet-rpc.pryzm.zone","provider":"PRYZM"},{"address":"https://pryzm-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"quasar-test-1","fees":{"fee_tokens":[{"denom":"uqsr","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://quasar-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://quasar-testnet-rpc.stakeandrelax.net/","provider":"Stake and Relax"},{"address":"https://quasar-testnet.rpc.kjnodes.com","provider":"KJNodes.com"}]}},{"chain_id":"rhye-2","fees":{"fee_tokens":[{"denom":"uqck","low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.00025}]},"apis":{"rpc":[{"address":"http://quick.rpc.t.stavr.tech:20027","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://quicksilver-testnet-rpc.polkachu.com/","provider":"polkachu"},{"address":"https://quicksilver-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"earendel-1","fees":{"fee_tokens":[{"denom":"uqwoyn"}]},"apis":{"rpc":[{"address":"https://testnet-rpc.qwoyn.studio","provider":"Qwoyn Studios"}]}},{"chain_id":"ssc-testnet-2","fees":{"fee_tokens":[{"denom":"utsaga","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://testnet-ssc.sagarpc.io/","provider":"Saga"}]}},{"chain_id":"pulsar-3","fees":{"fee_tokens":[{"denom":"uscrt","fixed_min_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet.secretsaturn.net","provider":"π•Šecret π•Šaturn"},{"address":"https://rpc.pulsar.scrttestnet.com","provider":"SCRT Testnet Committee"}]}},{"chain_id":"atlantic-1","fees":{"fee_tokens":[{"denom":"usei","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://sei-testnet-rpc.brocha.in","provider":"Brochain"}]}},{"chain_id":"atlantic-2","fees":{"fee_tokens":[{"denom":"usei","fixed_min_gas_price":0.08}]},"apis":{"rpc":[{"address":"https://sei-testnet-2-rpc.brocha.in","provider":"Brochain"},{"address":"https://rpc-testnet-sei.stingray.plus","provider":"StingRay"}]}},{"chain_id":"self-dev-1","fees":{"fee_tokens":[{"denom":"uself","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-devnet.selfchain.xyz","provider":"Selfchain"}]}},{"chain_id":"sge-network-3","fees":{"fee_tokens":[{"denom":"usge","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.testnet.sgenetwork.io","provider":"Sge Network"},{"address":"https://testnet-saage-rpc.lavenderfive.com/ ","provider":"Lavender.Five"},{"address":"https://saage-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-t.sge.nodestake.top/","provider":"Nodestake.top"},{"address":"https://sge.rpc.t.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"sge-network-4","fees":{"fee_tokens":[{"denom":"usge","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.testnet.sgenetwork.io","provider":"Sge Network"},{"address":"https://testnet-saage-rpc.lavenderfive.com/ ","provider":"Lavender.Five"},{"address":"https://saage-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-t.sge.nodestake.top/","provider":"Nodestake.top"}]}},{"chain_id":"yulei-2.1","fees":{"fee_tokens":[{"denom":"uctk","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://yulei-rpc.shentu.org:443","provider":"Shentu"}]}},{"chain_id":"fivenet","fees":{"fee_tokens":[{"denom":"usix","fixed_min_gas_price":1.25,"low_gas_price":1.25,"average_gas_price":1.5,"high_gas_price":1.75}]},"apis":{"rpc":[{"address":"https://rpc1.fivenet.sixprotocol.net:443"}]}},{"chain_id":"soarchaintestnet","fees":{"fee_tokens":[{"denom":"utsoar","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc1.testnet.soarchain.com","provider":"soarchain"},{"address":"https://rpc2.testnet.soarchain.com/","provider":"soarchain"},{"address":"https://soarchain-testnet-rpc.tienthuattoan.com","provider":"tienthuattoan"},{"address":"https://soarchain-testnet.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-t.soarchain.nodestake.org","provider":"nodeStake"},{"address":"https://soarchain-testnet-rpc.stakerhouse.com","provider":"stakerHouse"}]}},{"chain_id":"sourcetest-1","fees":{"fee_tokens":[{"denom":"usource","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.075,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://source-testnet-rpc.itrocket.net/","provider":"ITRocket"},{"address":"https://source-test.rpc.moonbridge.team/","provider":"MoonBridge"},{"address":"https://source-testnet-rpc.stake-town.com:443","provider":"StakeTown"},{"address":"https://rpc-testnet-source.sr20de.xyz","provider":"SR20DE"},{"address":"https://source-testnet.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://source_testnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"elgafar-1","fees":{"fee_tokens":[{"denom":"ustars","low_gas_price":0.03,"average_gas_price":0.04,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.elgafar-1.stargaze-apis.com","provider":"Stargaze Foundation"},{"address":"https://stargaze-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"stateset-1-testnet","fees":{"fee_tokens":[{"denom":"ustate","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.stateset.zone/","provider":"stateset"}]}},{"chain_id":"stride-internal-1","fees":{"fee_tokens":[{"denom":"ustrd","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://stride.testnet-1.stridenet.co","provider":"Stride"}]}},{"chain_id":"sunrise-test-0.1","fees":{"fee_tokens":[{"denom":"urise","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://a-node.sunrise-test-1.cauchye.net/","provider":"CauchyE"},{"address":"https://b-node.sunrise-test-1.cauchye.net/","provider":"CauchyE"}]}},{"chain_id":"swisstronik_1291-1","fees":{"fee_tokens":[{"denom":"aswtr","fixed_min_gas_price":7}]},"apis":{"rpc":[{"address":"https://rpc.testnet.swisstronik.com","provider":"Swisstronik"},{"address":"https://testnet-swisstronik-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://rpc.swisstronik.comunitynode.my.id","provider":"ComunityNode"}]}},{"chain_id":"symphony-testnet-3","fees":{"fee_tokens":[{"denom":"note","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://symphony.test.rpc.nodeshub.online/","provider":"Nodes Hub"},{"address":"https://symphony-testnet-rpc.cogwheel.zone/","provider":"Cogwheel βš™οΈ"}]}},{"chain_id":"amber-2","fees":{"fee_tokens":[{"denom":"uamber","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-testnet.synternet.com/","provider":"Synternet"}]}},{"chain_id":"90u-4","fees":{"fee_tokens":[{"denom":"uthiolx","fixed_min_gas_price":0.5,"low_gas_price":0.75,"average_gas_price":1,"high_gas_price":1.25}]},"apis":{"rpc":[{"address":"https://testnet-rpc.terp.network:443/","provider":"Terpnet Foundation"},{"address":"https://terp-testnet-rpc.itrocket.net:443/","provider":"itrocket"}]}},{"chain_id":"90u-2","fees":{"fee_tokens":[{"denom":"uthiolx","fixed_min_gas_price":0.5,"low_gas_price":0.75,"average_gas_price":1,"high_gas_price":1.25}]},"apis":{"rpc":[{"address":"https://terp-testnet-rpc.itrocket.net:443/","provider":"itrocket"}]}},{"chain_id":"pisco-1","fees":{"fee_tokens":[{"denom":"uluna","fixed_min_gas_price":0.0125,"low_gas_price":0.0125,"average_gas_price":0.015,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://pisco-rpc.terra.dev:443","provider":"Terraform Labs"},{"address":"https://terra-testnet-rpc.polkachu.com:443","provider":"Polkachu"}]}},{"chain_id":"titan_18889-1","fees":{"fee_tokens":[{"denom":"atkx","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":110000000000,"high_gas_price":200000000000}]},"apis":{"rpc":[{"address":"https://titan-testnet-rpc.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-1.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-2.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-3.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-4.titanlab.io:443","provider":"Titanlab.io"}]}},{"chain_id":"tucana_712-1","fees":{"fee_tokens":[{"denom":"atuc","fixed_min_gas_price":5000000000,"low_gas_price":10000000000,"average_gas_price":25000000000,"high_gas_price":30000000000}]},"apis":{"rpc":[{"address":"https://rpc.birdee-2.tucana.zone/","provider":"Tucana"}]}},{"chain_id":"ulas","apis":{"rpc":[{"address":"http://65.49.204.199:26657","provider":"UlasNetwork"}]}},{"chain_id":"FUND-TestNet-2","fees":{"fee_tokens":[{"denom":"nund","fixed_min_gas_price":25,"low_gas_price":100,"average_gas_price":200,"high_gas_price":300}]},"apis":{"rpc":[{"address":"https://rpc-testnet.unification.io:443","provider":"Unification"}]}},{"chain_id":"union-testnet-8","fees":{"fee_tokens":[{"denom":"muno","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.testnet-8.union.build","provider":"union"},{"address":"https://union-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-testnet-union.nodeist.net","provider":"Nodeist"},{"address":"https://union-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"uptick_7000-2","fees":{"fee_tokens":[{"denom":"auptick","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://uptick-7000-2-rpc.staketab.org:443","provider":"Staketab"}]}},{"chain_id":"buenavista-1","fees":{"fee_tokens":[{"denom":"uward","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.buenavista.wardenprotocol.org/","provider":"Warden Protocol"}]}},{"chain_id":"INVALID-ID-wavehashtestnet-testnet-1","fees":{"fee_tokens":[{"denom":"uwahax","low_gas_price":0.0025,"average_gas_price":0.0025,"high_gas_price":0.0024}]},"apis":{"rpc":[{"address":"https://rpc.wavehash.online/","provider":"WaveHash Network"}]}},{"chain_id":"xion-testnet-1","fees":{"fee_tokens":[{"denom":"uxion","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.001,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.xion-testnet-1.burnt.com","provider":"πŸ”₯BurntLabsπŸ”₯"},{"address":"https://testnet-burnt-rpc.lavenderfive.com","provider":"Lavender.Five Nodes 🐝"},{"address":"https://xion-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://burnt-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"cube_47-5","fees":{"fee_tokens":[{"denom":"axpla","fixed_min_gas_price":850000000000,"low_gas_price":850000000000,"average_gas_price":1147500000000,"high_gas_price":1487500000000}]},"apis":{"rpc":[{"address":"https://cube-rpc.xpla.dev","provider":"Holdings"}]}},{"chain_id":"gardia-2","fees":{"fee_tokens":[{"denom":"urock","fixed_min_gas_price":0.5,"low_gas_price":0.5,"average_gas_price":0.55,"high_gas_price":0.6}]},"apis":{"rpc":[{"address":"https://rpc.gardia.zenrocklabs.io/","provider":"zenrock"}]}},{"chain_id":"athens_7001-1","fees":{"fee_tokens":[{"denom":"azeta","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://zetachain-athens.blockpi.network/rpc/v1/public","provider":"BlockPI"},{"address":"https://zetachain-testnet-archive.allthatnode.com:26657","provider":"All That Node"}]}},{"chain_id":"landlord-2","fees":{"fee_tokens":[{"denom":"l2/1666ede2bf1985307a86de36a6b78411cbf1edeffc2ac569e6a7b2f8753db4bb","fixed_min_gas_price":0.15,"low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://maze-rpc-sequencer-53ecf1d6-4fa1-4103-827f-a9430df97cef.ane1-prod-nocsm.newmetric.xyz","provider":"Civitia"}]}},{"chain_id":"initiation-2","fees":{"fee_tokens":[{"denom":"uinit","fixed_min_gas_price":0.15,"low_gas_price":0.15,"average_gas_price":0.15,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc.testnet.initia.xyz/","provider":"Initia Labs"},{"address":"https://rpc-skip.testnet.initia.xyz/","provider":"Initia Labs","authorizedUser":"skip"}]}},{"chain_id":"glados-2.1","fees":{"fee_tokens":[{"denom":"umilk","fixed_min_gas_price":0.15,"low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4},{"denom":"ibc/37A3FB4FED4CA04ED6D9E5DA36C6D27248645F0E22F585576A1488B8A89C5A50","fixed_min_gas_price":0.15,"low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc.testnet.milkyway.zone","provider":"MilkyWay Labs"},{"address":"https://rpc-skip.testnet.milkyway.zone","provider":"MilkyWay Labs","authorizedUser":"skip","indexForSkip":0}]}},{"chain_id":"minievm-2","fees":{"fee_tokens":[{"denom":"GAS","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.minievm-2.initia.xyz","provider":"Initia Labs"},{"address":"https://rpc-skip.minievm-2.initia.xyz","provider":"Initia Labs","authorizedUser":"skip","indexForSkip":0}]}},{"chain_id":"minimove-2","fees":{"fee_tokens":[{"denom":"umin","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.minimove-2.initia.xyz","provider":"Initia Labs"},{"address":"https://rpc-skip.minimove-2.initia.xyz","provider":"Initia Labs","authorizedUser":"skip","indexForSkip":0}]}},{"chain_id":"miniwasm-2","fees":{"fee_tokens":[{"denom":"umin","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.miniwasm-2.initia.xyz","provider":"Initia Labs"},{"address":"https://rpc-skip.miniwasm-2.initia.xyz","provider":"Initia Labs","authorizedUser":"skip","indexForSkip":0}]}}] \ No newline at end of file diff --git a/packages/widget/CHANGELOG.md b/packages/widget/CHANGELOG.md index 18d07f900..a40b4ccc7 100644 --- a/packages/widget/CHANGELOG.md +++ b/packages/widget/CHANGELOG.md @@ -1,5 +1,13 @@ ## 0.0.15 +## 3.0.25 + +### Patch Changes + +- 6e9f9cc: bump chain registry versions +- Updated dependencies [6e9f9cc] + - @skip-go/client@0.15.6 + ## 3.0.24 ### Patch Changes diff --git a/packages/widget/package.json b/packages/widget/package.json index 9e1d74990..8a99eb486 100644 --- a/packages/widget/package.json +++ b/packages/widget/package.json @@ -1,7 +1,7 @@ { "name": "@skip-go/widget", "description": "Swap widget", - "version": "3.0.24", + "version": "3.0.25", "repository": { "url": "https://github.com/skip-mev/skip-go", "directory": "packages/widget" @@ -55,7 +55,7 @@ "@typescript-eslint/parser": "^7.15.0", "@vitejs/plugin-react": "^4.3.1", "buffer": "^6.0.3", - "chain-registry": "^1.69.58", + "chain-registry": "^1.69.65", "eslint": "^9.9.0", "eslint-plugin-react-hooks": "^4.6.2", "node-polyfill-webpack-plugin": "^4.0.0", diff --git a/packages/widget/src/constants/cosmosChains/explorers.json b/packages/widget/src/constants/cosmosChains/explorers.json index a1ab79658..e08c9aaa9 100644 --- a/packages/widget/src/constants/cosmosChains/explorers.json +++ b/packages/widget/src/constants/cosmosChains/explorers.json @@ -1 +1 @@ -[{"chainId":"aaronetwork","explorers":[{"kind":"Aaron Network","url":"https://explorer.aaronetwork.xyz","tx_page":"https://explorer.aaronetwork.xyz/hash/${txHash}","account_page":"https://explorer.aaronetwork.xyz/address/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/aaronetwork","tx_page":"https://explorer.whenmoonwhenlambo.money/aaronetwork/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/aaronetwork/account/${accountAddress}"}]},{"chainId":"acre_9052-1","explorers":[{"kind":"blockscout","url":"https://acrescout.mindheartsoul.org","tx_page":"https://acrescout.mindheartsoul.org/tx/${txHash}"},{"kind":"blockscout","url":"https://acrescan.com","tx_page":"https://acrescan.com/tx/${txHash}"},{"kind":"blockscout","url":"https://acreblockexplorer.jet-node.com","tx_page":"https://acreblockexplorer.jet-node.com/tx/${txHash}"},{"kind":"ping.pub","url":"https://explorer.nodestake.top/acre","tx_page":"https://explorer.nodestake.top/acre/tx/${txHash}"},{"kind":"ping.pub","url":"https://cosmosrun.info/acre-mainnet","tx_page":"https://cosmosrun.info/acre-mainnet/tx/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/acre","tx_page":"https://explorer.tcnetwork.io/acre/transaction/${txHash}"}]},{"chainId":"agoric-3","explorers":[{"kind":"explorers.guru","url":"https://agoric.explorers.guru","tx_page":"https://agoric.explorers.guru/transaction/${txHash}","account_page":"https://agoric.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/agoric","tx_page":"https://staking-explorer.com/transaction.php?chain=agoric&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=agoric&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/agoric/","tx_page":"https://atomscan.com/agoric/transactions/${txHash}","account_page":"https://atomscan.com/agoric/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/agoric","account_page":"https://stakeflow.io/agoric/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Agoric","tx_page":"https://explorer.stavr.tech/Agoric/tx/${txHash}","account_page":"https://explorer.stavr.tech/Agoric/account/${accountAddress}"}]},{"chainId":"aioz_168-1","explorers":[{"kind":"aioz","url":"https://explorer.aioz.network","tx_page":"https://explorer.aioz.network/tx/${txHash}"}]},{"chainId":"akashnet-2","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/akash","tx_page":"https://ezstaking.app/akash/txs/${txHash}","account_page":"https://ezstaking.app/akash/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/akash","tx_page":"https://www.mintscan.io/akash/transactions/${txHash}","account_page":"https://www.mintscan.io/akash/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/akash-network","tx_page":"https://ping.pub/akash-network/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/akash","tx_page":"https://staking-explorer.com/transaction.php?chain=akash&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=akash&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/akash","tx_page":"https://atomscan.com/akash/transactions/${txHash}","account_page":"https://atomscan.com/akash/accounts/${accountAddress}"},{"kind":"cloudmos","url":"https://cloudmos.io/blocks","tx_page":"https://cloudmos.io/transactions/${txHash}"},{"kind":"Stakeflow","url":"https://stakeflow.io/akash","account_page":"https://stakeflow.io/akash/accounts/${accountAddress}"},{"kind":"ValidatorNode","url":"https://explorer.validatornode.com/akash-network","tx_page":"https://explorer.validatornode.com/akash-network/tx/${txHash}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Akash","tx_page":"https://explorer.declab.pro/Akash/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/akash","tx_page":"https://mainnet.whispernode.com/akash/tx/${txHash}","account_page":"https://mainnet.whispernode.com/akash/account/${accountAddress}"}]},{"chainId":"althea_258432-1","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/althea","tx_page":"https://staking-explorer.com/transaction.php?chain=althea&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=althea&addr=${accountAddress}"}]},{"chainId":"andromeda-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/Andromeda-Mainnet","tx_page":"https://explorer.stavr.tech/Andromeda-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Andromeda-Mainnet/account/${accountAddress}"},{"kind":"exploreme.pro","url":"https://andromeda.exploreme.pro","tx_page":"https://andromeda.exploreme.pro/transaction/${txHash}","account_page":"https://andromeda.exploreme.pro/account/${accountAddress}"},{"kind":"Cosmotracker","url":"https://cosmotracker.com/andromeda","tx_page":"https://cosmotracker.com/andromeda/tx/${txHash}","account_page":"https://cosmotracker.com/andromeda/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/andromeda","tx_page":"https://ping.pub/andromeda/tx/${txHash}"},{"kind":"AviaOne Explorer 🟒","url":"https://mainnet.explorer.aviaone.com/andromeda","tx_page":"https://mainnet.explorer.aviaone.com/andromeda/tx/${txHash}"}]},{"chainId":"archway-1","explorers":[{"kind":"Nodes Guru","url":"https://archway.explorers.guru/","tx_page":"https://archway.explorers.guru/transaction/${txHash}","account_page":"https://archway.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/archway","tx_page":"https://staking-explorer.com/transaction.php?chain=archway&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=archway&addr=${accountAddress}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀","url":"https://exp.utsa.tech/archway","tx_page":"https://exp.utsa.tech/archway/tx/${txHash}","account_page":"https://exp.utsa.tech/archway/account/${accountAddress}"},{"kind":"Mintscan","url":"https://mintscan.io/archway/","tx_page":"https://mintscan.io/archway/transactions/${txHash}","account_page":"https://mintscan.io/archway/accounts/${accountAddress}"},{"kind":"Silk Nodes","url":"https://explorer.silknodes.io/archway","tx_page":"https://explorer.silknodes.io/archway/tx/${txHash}","account_page":"https://explorer.silknodes.io/archway/account/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/archway/","tx_page":"https://explorer.nodestake.top/archway/txs/${txHash}","account_page":"https://explorer.nodestake.top/archway/account/${accountAddress}"},{"kind":"Exploreme","url":"https://archway.exploreme.pro/","tx_page":"https://archway.exploreme.pro/transaction/${txHash}","account_page":"https://archway.exploreme.pro/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/archway","tx_page":"https://ping.pub/archway/tx/${txHash}"},{"kind":"ezstaking","url":"https://ezstaking.app/archway","tx_page":"https://ezstaking.app/archway/txs/${txHash}","account_page":"https://ezstaking.app/archway/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/archway","tx_page":"https://mainnet.whispernode.com/archway/tx/${txHash}","account_page":"https://mainnet.whispernode.com/archway/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/archway","tx_page":"https://explorer.chainroot.io/archway/transactions/${txHash}","account_page":"https://explorer.chainroot.io/archway/accounts/${accountAddress}"}]},{"chainId":"arkh","explorers":[{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/arkh","tx_page":"https://explorer.nodestake.top/arkh/tx/${txHash}"},{"kind":"Kynraze Explorer","url":"https://explorer.kynraze.com/arkhadian","tx_page":"https://explorer.kynraze.com/arkhadian/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/arkhadian","tx_page":"https://explorer.nodexcapital.com/arkhadian/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/arkhadian","tx_page":"https://explorer.whenmoonwhenlambo.money/arkhadian/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/arkhadian/account/${accountAddress}"}]},{"chainId":"mantle-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/assetmantle","tx_page":"https://ezstaking.app/assetmantle/txs/${txHash}","account_page":"https://ezstaking.app/assetmantle/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/asset-mantle","tx_page":"https://www.mintscan.io/asset-mantle/transactions/${txHash}","account_page":"https://www.mintscan.io/asset-mantle/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.postcapitalist.io/AssetMantle","tx_page":"https://explorer.postcapitalist.io/AssetMantle/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/assetmantle","tx_page":"https://staking-explorer.com/transaction.php?chain=assetmantle&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=assetmantle&addr=${accountAddress}"},{"kind":"other","url":"https://explorer.assetmantle.one","tx_page":"https://explorer.assetmantle.one/transactions/${txHash}"},{"kind":"explorers.guru","url":"https://assetmantle.explorers.guru","tx_page":"https://assetmantle.explorers.guru/transaction/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/assetmantle","tx_page":"https://atomscan.com/assetmantle/transactions/${txHash}","account_page":"https://atomscan.com/assetmantle/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/assetmantle","tx_page":"https://mainnet.whispernode.com/assetmantle/tx/${txHash}","account_page":"https://mainnet.whispernode.com/assetmantle/account/${accountAddress}"}]},{"chainId":"atomone-1","explorers":[{"kind":"ping.pub","url":"https://explorer.allinbits.com/atomone","tx_page":"https://explorer.allinbits.com/atomone/tx/${txHash}","account_page":"https://explorer.allinbits.com/atomone/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/atomone/","tx_page":"https://explorer.nodeshub.online/atomone/tx/${txHash}","account_page":"https://explorer.nodeshub.online/atomone/accounts/${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://explorer.ist/atomone","tx_page":"https://explorer.ist/atomone/tx/${txHash}","account_page":"https://explorer.ist/atomone/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/atomone","tx_page":"https://explorer.whenmoonwhenlambo.money/atomone/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/atomone/account/${accountAddress}"}]},{"chainId":"aura_6322-2","explorers":[{"kind":"aurascan","url":"https://aurascan.io","tx_page":"https://aurascan.io/tx/${txHash}","account_page":"https://aurascan.io/address/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/aura","tx_page":"https://staking-explorer.com/transaction.php?chain=aura&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=aura&addr=${accountAddress}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀 Explorer","url":"https://exp.utsa.tech/aura","tx_page":"https://exp.utsa.tech/aura/tx/${txHash}","account_page":"https://exp.utsa.tech/aura/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/Aura-Mainnet","tx_page":"https://explorer.stavr.tech/aura-mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/aura-mainnet/account/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/aura","tx_page":"https://explorer.nodestake.top/aura/tx/${txHash}","account_page":"https://explorer.nodestake.top/aura/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/aura","tx_page":"https://explorer.tcnetwork.io/aura/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/aura/account/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/aura","tx_page":"https://explorer.stake-take.com/aura/tx/${txHash}","account_page":"https://explorer.stake-take.com/aura/account/${accountAddress}"},{"kind":"Safe Block","url":"https://explorer.safeblock.space/aura","tx_page":"https://explorer.safeblock.space/aura/tx/${txHash}","account_page":"https://explorer.safeblock.space/aura/account/${accountAddress}"},{"kind":"STAKR.space explorer","url":"https://explorer.stakr.space/aura/","tx_page":"https://explorer.stakr.space/aura/tx/${txHash}","account_page":"https://explorer.stakr.space/aura/account/${accountAddress}"}]},{"chainId":"axelar-dojo-1","explorers":[{"kind":"axelarscan","url":"https://axelarscan.io","tx_page":"https://axelarscan.io/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/axelar","tx_page":"https://www.mintscan.io/axelar/transactions/${txHash}","account_page":"https://www.mintscan.io/axelar/accounts/${accountAddress}"},{"kind":"explorers.guru","url":"https://axelar.explorers.guru","tx_page":"https://axelar.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/axelar","tx_page":"https://staking-explorer.com/transaction.php?chain=axelar&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=axelar&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/axelar","tx_page":"https://atomscan.com/axelar/transactions/${txHash}","account_page":"https://atomscan.com/axelar/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/axelar","account_page":"https://stakeflow.io/axelar/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/axelar","tx_page":"https://ezstaking.app/axelar/txs/${txHash}","account_page":"https://ezstaking.app/axelar/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/axelar","tx_page":"https://mainnet.whispernode.com/axelar/tx/${txHash}","account_page":"https://mainnet.whispernode.com/axelar/account/${accountAddress}"}]},{"chainId":"laozi-mainnet","explorers":[{"kind":"cosmoscan","url":"https://cosmoscan.io","tx_page":"https://cosmoscan.io/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/band","tx_page":"https://www.mintscan.io/band/transactions/${txHash}","account_page":"https://www.mintscan.io/band/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/band-protocol","tx_page":"https://ping.pub/band-protocol/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/bandchain","tx_page":"https://staking-explorer.com/transaction.php?chain=bandchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=bandchain&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Band-Mainnet","tx_page":"https://explorer.stavr.tech/Band-Mainnet/tx/${txHash}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/band","tx_page":"https://exp.nodeist.net/band/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/band-protocol","tx_page":"https://atomscan.com/band-protocol/transactions/${txHash}","account_page":"https://atomscan.com/band-protocol/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/band-protocol","account_page":"https://stakeflow.io/band-protocol/accounts/${accountAddress}"},{"kind":"Roomit Explorer","url":"https://explorer.tendermint.roomit.xyz/band-mainnet","account_page":"https://explorer.tendermint.roomit.xyz/band-mainnet/accounts/${accountAddress}"},{"kind":"kjnodes Explorer","url":"https://explorer.kjnodes.com/band","tx_page":"https://explorer.kjnodes.com/band/tx/${txHash}"}]},{"chainId":"beezee-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/beezee","tx_page":"https://ping.pub/beezee/tx/${txHash}","account_page":"https://ping.pub/beezee/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/beezee","tx_page":"https://staking-explorer.com/transaction.php?chain=beezee&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=beezee&addr=${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.getbze.com/beezee","tx_page":"https://explorer.getbze.com/beezee/tx/${txHash}","account_page":"https://explorer.getbze.com/beezee/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/beezee","tx_page":"https://atomscan.com/beezee/transactions/${txHash}","account_page":"https://atomscan.com/beezee/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/beezee","tx_page":"https://explorer.whenmoonwhenlambo.money/beezee/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/beezee/account/${accountAddress}"}]},{"chainId":"bitbadges-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/bitbadges","tx_page":"https://www.mintscan.io/bitbadges/transactions/${txHash}","account_page":"https://www.mintscan.io/bitbadges/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.bitbadges.io/BitBadges%20Mainnet","tx_page":"https://explorer.bitbadges.io/BitBadges%20Mainnet/txs/${txHash}","account_page":"https://explorer.bitbadges.io/BitBadBitBadges%20Mainnetges/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/bitbadges","tx_page":"https://explorer.whenmoonwhenlambo.money/bitbadges/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/bitbadges/account/${accountAddress}"}]},{"chainId":"bitcanna-1","explorers":[{"kind":"EZStaking Tools","url":"https://app.ezstaking.io/bitcanna","tx_page":"https://ezstaking.tools/bitcanna/txs/${txHash}","account_page":"https://ezstaking.tools/bitcanna/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/bitcanna","tx_page":"https://staking-explorer.com/transaction.php?chain=bitcanna&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=bitcanna&addr=${accountAddress}"},{"kind":"forbole","url":"https://explorer.bitcanna.io","tx_page":"https://explorer.bitcanna.io/transactions/${txHash}","account_page":"https://explorer.bitcanna.io/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/bitcanna","tx_page":"https://ping.pub/bitcanna/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/bitcanna/","tx_page":"https://www.mintscan.io/bitcanna/txs/${txHash}","account_page":"https://www.mintscan.io/bitcanna/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/Bitcanna","tx_page":"https://explorer.stavr.tech/Bitcanna/txs/${txHash}","account_page":"https://explorer.stavr.tech/Bitcanna/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/bitcanna","tx_page":"https://atomscan.com/bitcanna/transactions/${txHash}"},{"kind":"ValidatorNode Explorer","url":"https://explorer.validatornode.com/bitcanna","tx_page":"https://explorer.validatornode.com/bitcanna/tx/${txHash}"},{"kind":"Safe Block Explorer Pruned","url":"https://explorer.safeblock.space/bitcanna","tx_page":"https://explorer.safeblock.space/bitcanna/tx/${txHash}"},{"kind":"AlxVoy ⚑ ANODE.TEAM","url":"https://main.anode.team/bitcanna","tx_page":"https://main.anode.team/bitcanna/tx/${txHash}"},{"kind":"kjnodes","url":"https://explorer.kjnodes.com/bitcanna","tx_page":"https://explorer.kjnodes.com/bitcanna/tx/${txHash}"},{"kind":"L0vd.com ❀️","url":"https://explorers.l0vd.com/bitcanna-mainnet","tx_page":"https://explorers.l0vd.com/bitcanna-mainnet/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodex.one/bitcanna","tx_page":"https://explorer.nodex.one/bitcanna/tx/${txHash}"},{"kind":"Moonbys Dashboard","url":"https://explorer.moonbys.com","tx_page":"https://explorer.moonbys.com/${txHash}"},{"kind":"BlockHunters 🎯","url":"https://scan.bh.rocks/bitcanna","tx_page":"https://scan.bh.rocks/bitcanna/tx/${txHash}"},{"kind":"Indonode","url":"https://explorer.indonode.net/bitcanna","tx_page":"https://explorer.indonode.net/bitcanna/tx/${txHash}"},{"kind":"CrypTech Explorer","url":"https://explorers.cryptech.com.ua/bitcanna","tx_page":"https://explorers.cryptech.com.ua/bitcanna/txs/${txHash}"},{"kind":"Kalia Network","url":"https://explorer.kalia.network/bitcanna","tx_page":"https://explorer.kalia.network/bitcanna/tx/${txHash}","account_page":"https://explorer.kalia.network/bitcanna/account/${accountAddress}"},{"kind":"AviaOne Explorer 🟒","url":"https://mainnet.explorer.aviaone.com/bitcanna","tx_page":"https://mainnet.explorer.aviaone.com/bitcanna/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/bitcanna/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/bitcanna/","tx_page":"https://explorer.nodeshub.online/bitcanna/tx/${txHash}","account_page":"https://explorer.nodeshub.online/bitcanna/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/bitcanna","tx_page":"https://explorer.whenmoonwhenlambo.money/bitcanna/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/bitcanna/account/${accountAddress}"},{"kind":"AviaOne Explorer 🟒","url":"https://mainnet.explorer.aviaone.com/bitcanna","tx_page":"https://mainnet.explorer.aviaone.com/bitcanna/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/bitcanna/account/${accountAddress}"}]},{"chainId":"bitsong-2b","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/bitsong","tx_page":"https://ezstaking.app/bitsong/txs/${txHash}","account_page":"https://ezstaking.app/bitsong/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/bitsong","tx_page":"https://ping.pub/bitsong/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/bitsong","tx_page":"https://www.mintscan.io/bitsong/transactions/${txHash}","account_page":"https://www.mintscan.io/bitsong/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/bitsong","tx_page":"https://staking-explorer.com/transaction.php?chain=bitsong&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=bitsong&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/bitsong","tx_page":"https://atomscan.com/bitsong/transactions/${txHash}","account_page":"https://atomscan.com/bitsong/accounts/${accountAddress}"},{"kind":"Safe Block","url":"https://explorer.safeblok.space/bitsong","tx_page":"https://explorer.safeblock.space/bitsong/tx/${txHash}","account_page":"https://explorer.safeblock.space/bitsong/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Bitsong","tx_page":"https://explorer.stavr.tech/Bitsong/tx/${txHash}","account_page":"https://explorer.stavr.tech/Bitsong/account/${accountAddress}"}]},{"chainId":"blockx_19191-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/blockx","tx_page":"https://ping.pub/blockx/tx/${txHash}"},{"kind":"Nodeist Explorer","url":"https://explorer.ist/blockx/","tx_page":"https://explorer.ist/blockx/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/blockx","tx_page":"https://explorer.whenmoonwhenlambo.money/blockx/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/blockx/account/${accountAddress}"}]},{"chainId":"bluechip-2"},{"chainId":"bluzelle-9","explorers":[{"kind":"ping.pub","url":"https://ping.explorer.net.bluzelle.com/bluzelle","tx_page":"https://ping.explorer.net.bluzelle.com/bluzelle/tx/${txHash}","account_page":"https://ping.explorer.net.bluzelle.com/bluzelle/account/${accountAddress}"},{"kind":"big dipper","url":"https://bd.explorer.net.bluzelle.com","tx_page":"https://bd.explorer.net.bluzelle.com/transactions/${txHash}","account_page":"https://bd.explorer.net.bluzelle.com/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/bluzelle","tx_page":"https://explorer.tcnetwork.io/bluzelle/transaction/${txHash}"},{"kind":"Nodine.ID","url":"https://explorer.co.id/bluzelle","tx_page":"https://explorer.co.id/bluzelle/transaction/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/bluzelle","tx_page":"https://explorer.whenmoonwhenlambo.money/bluzelle/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/bluzelle/account/${accountAddress}"}]},{"chainId":"bostrom","explorers":[{"kind":"cyb","url":"https://cyb.ai/","tx_page":"https://cyb.ai/network/bostrom/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/bostrom","tx_page":"https://ping.pub/bostrom/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/bostrom","tx_page":"https://staking-explorer.com/transaction.php?chain=bostrom&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=bostrom&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/bostrom","tx_page":"https://atomscan.com/bostrom/transactions/${txHash}","account_page":"https://atomscan.com/bostrom/accounts/${accountAddress}"}]},{"chainId":"bouachain","explorers":[{"kind":"bouachain","url":"https://bouascan.com","tx_page":"https://bouascan.com/bouachain/tx/${txHash}","account_page":"https://bouascan.com/bouachain/${accountAddress}"}]},{"chainId":"canto_7700-1","explorers":[{"kind":"ping.pub","url":"https://cosmos-explorers.neobase.one/canto","tx_page":"https://cosmos-explorers.neobase.one/canto/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/canto","tx_page":"https://staking-explorer.com/transaction.php?chain=canto&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=canto&addr=${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/canto","tx_page":"https://explorer.tcnetwork.io/canto/transaction/${txHash}"},{"kind":"ezstaking","url":"https://ezstaking.app/canto","tx_page":"https://ezstaking.app/canto/txs/${txHash}","account_page":"https://ezstaking.app/canto/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Canto-Mainnet","tx_page":"https://explorer.stavr.tech/Canto-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Canto-Mainnet/account/${accountAddress}"}]},{"chainId":"carbon-1","explorers":[{"kind":"carbonscan","url":"https://scan.carbon.network","tx_page":"https://scan.carbon.network/transaction/${txHash}?net=main"},{"kind":"ping.pub","url":"https://ping.pub/carbon","tx_page":"https://ping.pub/carbon/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/carbon","tx_page":"https://staking-explorer.com/transaction.php?chain=carbon&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=carbon&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/carbon","tx_page":"https://atomscan.com/carbon/transactions/${txHash}","account_page":"https://atomscan.com/carbon/accounts/${accountAddress}"}]},{"chainId":"celestia","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/celestia","tx_page":"https://mintscan.io/celestia/txs/${txHash}","account_page":"https://mintscan.io/celestia/address/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/celestia","tx_page":"https://staking-explorer.com/transaction.php?chain=celestia&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=celestia&addr=${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.top/celestia/","tx_page":"https://explorer.nodestake.top/celestia/txs/${txHash}","account_page":"https://explorer.nodestake.top/celestia/account/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/celestia","tx_page":"https://stakeflow.io/celestia/transactions/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/celestia","tx_page":"https://explorer.tcnetwork.io/celestia/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/celestia/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Celestia-Mainnet","tx_page":"https://explorer.stavr.tech/Celestia-Mainnet/transaction/${txHash}","account_page":"https://explorer.stavr.tech/Celestia-Mainnet/account/${accountAddress}"},{"kind":"AM Solutions","url":"https://explorer.theamsolutions.info/celestia-main","tx_page":"https://explorer.theamsolutions.info/celestia-main/transaction/${txHash}","account_page":"https://explorer.theamsolutions.info/celestia-main/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/celestia","tx_page":"https://ezstaking.app/celestia/txs/${txHash}","account_page":"https://ezstaking.app/celestia/account/${accountAddress}"},{"kind":"πŸš€ itrocket πŸš€","url":"https://mainnet.itrocket.net/celestia","tx_page":"https://mainnet.itrocket.net/celestia/transaction/${txHash}","account_page":"https://mainnet.itrocket.net/celestia/account/${accountAddress}"},{"kind":"DTEAM | Explorer","url":"https://explorer.mainnet.dteam.tech/celestia","tx_page":"https://explorer.mainnet.dteam.tech/celestia/transaction/${txHash}","account_page":"https://explorer.mainnet.dteam.tech/celestia/account/${accountAddress}"},{"kind":"Relaxed Explorer πŸ¦₯","url":"https://explorer.stakeandrelax.net/celestia","tx_page":"https://explorer.stakeandrelax.net/celestia/transaction/${txHash}","account_page":"https://explorer.stakeandrelax.net/celestia/account/${accountAddress}"}]},{"chainId":"perun-1","explorers":[{"kind":"explorer","url":"https://explorer.apeironnodes.com/chain4energy","tx_page":"https://explorer.apeironnodes.com/chain4energy/transactions/${txHash}"},{"kind":"DTEAM | Explorer","url":"https://explorer.mainnet.dteam.tech/chain4energy","tx_page":"https://explorer.mainnet.dteam.tech/chain4energytransactions/${txHash}"},{"kind":"explorer","url":"https://explorer.ppnv.space/c4e","tx_page":"https://explorer.ppnv.space/c4e/transactions/${txHash}"},{"kind":"explorer","url":"https://explorer.c4e.io/","tx_page":"https://explorer.c4e.io/transactions/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/chain4energy","tx_page":"https://explorer.nodestake.top/chain4energy/transactions/${txHash}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀 Explorer","url":"https://exp.utsa.tech/c4e","tx_page":"https://exp.utsa.tech/c4e/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/c4e","tx_page":"https://explorer.stavr.tech/c4e/tx/${txHash}"},{"kind":"BccNodes Explorer","url":"https://explorer.bccnodes.com/chain4energy","tx_page":"https://explorer.bccnodes.com/chain4energy/transactions/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/c4e","tx_page":"https://explorer.nodexcapital.com/c4e/transactions/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/chain4energy","tx_page":"https://atomscan.com/chain4energy/transactions/${txHash}","account_page":"https://atomscan.com/chain4energy/accounts/${accountAddress}"},{"kind":"AM Solutions Explorer","url":"https://explorer.theamsolutions.info/c4e-main/staking","tx_page":"https://explorer.theamsolutions.info/c4e-main/transactions/${txHash}"},{"kind":"AlxVoy ⚑ ANODE.TEAM Explorer","url":"https://main.anode.team/c4e","tx_page":"https://main.anode.team/c4e/tx/${txHash}"},{"kind":"ScanRun","url":"https://scanrun.io/c4e","tx_page":"https://scanrun.io/c4e/transactions/${txHash}"},{"kind":"Cryptech","url":"https://explorers.cryptech.com.ua/chain4energy","tx_page":"https://explorers.cryptech.com.ua/chain4energy/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/chain4energy","tx_page":"https://explorer.whenmoonwhenlambo.money/chain4energy/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/chain4energy/account/${accountAddress}"}]},{"chainId":"cheqd-mainnet-1","explorers":[{"kind":"bigdipper","url":"https://explorer.cheqd.io","tx_page":"https://explorer.cheqd.io/transactions/${txHash}","account_page":"https://explorer.cheqd.io/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/cheqd","tx_page":"https://ping.pub/cheqd/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/cheqd","tx_page":"https://staking-explorer.com/transaction.php?chain=cheqd&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=cheqd&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Cheqd-Mainnet","tx_page":"https://explorer.stavr.tech/Cheqd-Mainnet/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/cheqd","tx_page":"https://atomscan.com/cheqd/transactions/${txHash}","account_page":"https://atomscan.com/cheqd/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/cheqd","tx_page":"https://ezstaking.app/cheqd/txs/${txHash}","account_page":"https://ezstaking.app/cheqd/account/${accountAddress}"},{"kind":"ping.pub","url":"https://look.chillvalidation.com/cheqd","tx_page":"https://look.chillvalidation.com/cheqd/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.wildsage.io/cheqd","tx_page":"https://ping.wildsage.io/cheqd/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/cheqd","tx_page":"https://mainnet.whispernode.com/cheqd/tx/${txHash}","account_page":"https://mainnet.whispernode.com/cheqd/account/${accountAddress}"}]},{"chainId":"chihuahua-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/chihuahua","tx_page":"https://ping.pub/chihuahua/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Chihua-Mainnet","tx_page":"https://explorer.stavr.tech/Chihua-Mainnet/tx/${txHash}"},{"kind":"mintscan","url":"https://mintscan.io/chihuahua","tx_page":"https://mintscan.io/chihuahua/transactions/${txHash}","account_page":"https://www.mintscan.io/chihuahua/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/chihuahua","tx_page":"https://staking-explorer.com/transaction.php?chain=chihuahua&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=chihuahua&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/chihuahua","tx_page":"https://atomscan.com/chihuahua/transactions/${txHash}","account_page":"https://atomscan.com/chihuahua/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/chihuahua","tx_page":"https://ezstaking.app/chihuahua/txs/${txHash}","account_page":"https://ezstaking.app/chihuahua/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/chihuahua/","tx_page":"https://explorer.nodeshub.online/chihuahua/tx/${txHash}","account_page":"https://explorer.nodeshub.online/chihuahua/accounts/${accountAddress}"}]},{"chainId":"chimba","explorers":[{"kind":"bigdipper","url":"https://explorer.chimba.ooo/","tx_page":"https://explorer.chimba.ooo/transactions/${txHash}"}]},{"chainId":"cifer-2","explorers":[{"kind":"bigdipper","url":"https://explorer.cifer.ai/","tx_page":"https://explorer.cifer.ai/transactions/${txHash}"}]},{"chainId":"cnho_stables-1","explorers":[{"url":"https://explorer.cnho.io","tx_page":"https://explorer.cnho.io/transaction/${txHash}","account_page":"https://explorer.cnho.io/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/cnhostables","tx_page":"https://explorer.whenmoonwhenlambo.money/cnhostables/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/cnhostables/account/${accountAddress}"}]},{"chainId":"comdex-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/comdex","tx_page":"https://ezstaking.app/comdex/txs/${txHash}","account_page":"https://ezstaking.app/comdex/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/comdex","tx_page":"https://www.mintscan.io/comdex/transactions/${txHash}","account_page":"https://www.mintscan.io/comdex/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/comdex","tx_page":"https://staking-explorer.com/transaction.php?chain=comdex&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=comdex&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Comdex-Mainnet","tx_page":"https://explorer.stavr.tech/Comdex-Mainnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/Comdex-Mainnet/accounts/${accountAddress}"},{"kind":"aneka","url":"https://comdex.aneka.io/","tx_page":"https://comdex.aneka.io/txs/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/comdex","tx_page":"https://ping.pub/comdex/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/comdex","tx_page":"https://atomscan.com/comdex/transactions/${txHash}","account_page":"https://atomscan.com/comdex/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/comdex","account_page":"https://stakeflow.io/comdex/accounts/${accountAddress}"},{"kind":"ValidatorNode","url":"https://explorer.validatornode.com/comdex","tx_page":"https://explorer.validatornode.com/comdex/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/comdex","tx_page":"https://mainnet.whispernode.com/comdex/tx/${txHash}","account_page":"https://mainnet.whispernode.com/comdex/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/comdex","tx_page":"https://explorer.chainroot.io/comdex/transactions/${txHash}","account_page":"https://explorer.chainroot.io/comdex/accounts/${accountAddress}"}]},{"chainId":"commercio-3","explorers":[{"kind":"almerico","url":"https://mainnet.commercio.network","tx_page":"https://mainnet.commercio.network/transactions/detail/${txHash}"}]},{"chainId":"centauri-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/composable","tx_page":"https://ping.pub/composable/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/composable","tx_page":"https://staking-explorer.com/transaction.php?chain=composable&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=composable&addr=${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/composable","tx_page":"https://explorer.nodestake.top/composable/tx/${txHash}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/composable","tx_page":"https://exp.stakevillage.net/composable/tx/${txHash}","account_page":"https://exp.stakevillage.net/composable/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Composable-Mainnet","tx_page":"https://explorer.stavr.tech/Composable-Mainnet/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/picasso","tx_page":"https://mainnet.whispernode.com/picasso/tx/${txHash}","account_page":"https://mainnet.whispernode.com/picasso/account/${accountAddress}"}]},{"chainId":"cvn_2032-1","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/conscious","tx_page":"https://staking-explorer.com/transaction.php?chain=conscious&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=conscious&addr=${accountAddress}"},{"kind":"blockscout","url":"https://explore.consciousdao.com/","tx_page":"https://explore.consciousdao.com/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/conscious","tx_page":"https://explorer.whenmoonwhenlambo.money/conscious/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/conscious/account/${accountAddress}"}]},{"chainId":"coreum-mainnet-1","explorers":[{"kind":"Coreum","url":"https://explorer.coreum.com/coreum","tx_page":"https://explorer.coreum.com/coreum/transactions/${txHash}","account_page":"https://explorer.coreum.com/coreum/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/coreum","tx_page":"https://www.mintscan.io/coreum/transactions/${txHash}","account_page":"https://www.mintscan.io/coreum/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/coreum","tx_page":"https://staking-explorer.com/transaction.php?chain=coreum&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=coreum&addr=${accountAddress}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/coreum","tx_page":"https://explorer.nodexcapital.com/coreum/txs/${txHash}","account_page":"https://explorer.nodexcapital.com/coreum/account/${accountAddress}"},{"kind":"Silk Nodes","url":"https://explorer.silknodes.io/coreum","tx_page":"https://explorer.silknodes.io/coreum/tx/${txHash}","account_page":"https://explorer.silknodes.io/coreum/account/${accountAddress}"},{"kind":"#SoloNation","url":"https://explorer.solonation.io/core-main","tx_page":"https://explorer.solonation.io/core-main/tx/${txHash}","account_page":"https://explorer.solonation.io/core-main/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/coreum","tx_page":"https://explorer.tcnetwork.io/coreum/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/coreum/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/coreum","tx_page":"https://ezstaking.app/coreum/txs/${txHash}","account_page":"https://ezstaking.app/coreum/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/coreum","tx_page":"https://explorer.chainroot.io/coreum/transactions/${txHash}","account_page":"https://explorer.chainroot.io/coreum/accounts/${accountAddress}"}]},{"chainId":"cosmoshub-4","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/cosmos","tx_page":"https://www.mintscan.io/cosmos/transactions/${txHash}","account_page":"https://www.mintscan.io/cosmos/accounts/${accountAddress}","validator_page":"https://www.mintscan.io/cosmos/validators/${validatorAddress}","proposal_page":"https://www.mintscan.io/cosmos/proposals/${proposalId}","block_page":"https://www.mintscan.io/cosmos/blocks/${blockHeight}"},{"kind":"ezstaking","url":"https://ezstaking.app/cosmoshub","tx_page":"https://ezstaking.app/cosmoshub/txs/${txHash}","account_page":"https://ezstaking.app/cosmoshub/account/${accountAddress}","validator_page":"https://ezstaking.app/cosmoshub/validators/${validatorAddress}","proposal_page":"https://ezstaking.app/cosmoshub/proposals/${proposalId}","block_page":"https://ezstaking.app/cosmoshub/blocks/${blockHeight}"},{"kind":"ping.pub","url":"https://ping.pub/cosmos","tx_page":"https://ping.pub/cosmos/tx/${txHash}","account_page":"https://ping.pub/cosmos/account/${accountAddress}","validator_page":"https://ping.pub/cosmos/staking/${validatorAddress}","proposal_page":"https://ping.pub/cosmos/gov/${proposalId}","block_page":"https://ping.pub/cosmos/block/${blockHeight}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/cosmoshub","tx_page":"https://staking-explorer.com/transaction.php?chain=cosmoshub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=cosmoshub&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com","tx_page":"https://atomscan.com/transactions/${txHash}","account_page":"https://atomscan.com/accounts/${accountAddress}","validator_page":"https://atomscan.com/validators/${validatorAddress}","proposal_page":"https://atomscan.com/votes/${proposalId}","block_page":"https://atomscan.com/blocks/${blockHeight}"},{"kind":"unichain","url":"https://unicha.in/cosmos","tx_page":"https://unicha.in/cosmos/transaction/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/cosmoshub","tx_page":"https://explorer.tcnetwork.io/cosmoshub/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/cosmoshub/account/${accountAddress}","validator_page":"https://explorer.tcnetwork.io/cosmoshub/validator/${validatorAddress}","proposal_page":"https://explorer.tcnetwork.io/cosmoshub/proposal/${proposalId}","block_page":"https://explorer.tcnetwork.io/cosmoshub/block/${blockHeight}"},{"kind":"Stakeflow","url":"https://stakeflow.io/cosmos","account_page":"https://stakeflow.io/cosmos/accounts/${accountAddress}","validator_page":"https://stakeflow.io/cosmos/validators/${validatorAddress}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/cosmos"},{"kind":"Inbloc","url":"https://inbloc.org","tx_page":"https://inbloc.org/transactions/${txHash}","account_page":"https://inbloc.org/account/${accountAddress}","validator_page":"https://inbloc.org/cosmos/validator/${validatorAddress}","proposal_page":"https://inbloc.org/cosmos/proposal/${proposalId}","block_page":"https://inbloc.org/cosmos/blocks/${blockHeight}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/cosmos","tx_page":"https://mainnet.whispernode.com/cosmos/tx/${txHash}","account_page":"https://mainnet.whispernode.com/cosmos/account/${accountAddress}","validator_page":"https://mainnet.whispernode.com/cosmos/staking/${validatorAddress}","proposal_page":"https://mainnet.whispernode.com/cosmos/gov/${proposalId}","block_page":"https://mainnet.whispernode.com/cosmos/block/${blockHeight}"},{"kind":"ITRocket","url":"https://mainnet.itrocket.net/cosmoshub","tx_page":"https://mainnet.itrocket.net/cosmoshub/tx/${txHash}","account_page":"https://mainnet.itrocket.net/cosmoshub/account/${accountAddress}","validator_page":"https://mainnet.itrocket.net/cosmoshub/staking/${validatorAddress}","proposal_page":"https://mainnet.itrocket.net/cosmoshub/gov/${proposalId}","block_page":"https://mainnet.itrocket.net/cosmoshub/block/${blockHeight}"}]},{"chainId":"coss-1"},{"chainId":"crescent-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/crescent","tx_page":"https://ezstaking.app/crescent/txs/${txHash}","account_page":"https://ezstaking.app/crescent/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/crescent","tx_page":"https://ping.pub/crescent/tx/${txHash}"},{"kind":"explorers.guru","url":"https://crescent.explorers.guru","tx_page":"https://crescent.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/crescent","tx_page":"https://staking-explorer.com/transaction.php?chain=crescent&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=crescent&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/crescent","tx_page":"https://atomscan.com/crescent/transactions/${txHash}","account_page":"https://atomscan.com/crescent/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/crescent","account_page":"https://stakeflow.io/crescent/accounts/${accountAddress}"}]},{"chainId":"cronosmainnet_25-1","explorers":[{"kind":"cronoscan","url":"https://cronoscan.com","tx_page":"https://cronoscan.com/tx/${txHash}"},{"kind":"crypto.org","url":"https://cronos.org/explorer","tx_page":"https://cronos.org/explorer/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/cronos","tx_page":"https://ping.pub/cronos/tx/${txHash}"}]},{"chainId":"crypto-org-chain-mainnet-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/crypto-org","tx_page":"https://www.mintscan.io/crypto-org/transactions/${txHash}","account_page":"https://www.mintscan.io/crypto-org/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/cryptoorgchain","tx_page":"https://staking-explorer.com/transaction.php?chain=cryptoorgchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=cryptoorgchain&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/crypto-org","tx_page":"https://ezstaking.app/crypto-org/txs/${txHash}","account_page":"https://ezstaking.app/crypto-org/account/${accountAddress}"},{"kind":"cronos.org","url":"https://cronos-pos.org/explorer","tx_page":"https://cronos-pos.org/explorer/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/crypto-com-chain","tx_page":"https://ping.pub/crypto-com-chain/tx/${txHash}"}]},{"chainId":"mainnet-3","explorers":[{"kind":"decentr.net","url":"https://explorer.decentr.net","tx_page":"https://explorer.decentr.net/transactions/${txHash}?networkId=mainnet"},{"kind":"ping.pub","url":"https://ping.pub/decentr/","tx_page":"https://ping.pub/decentr/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/decentr","tx_page":"https://staking-explorer.com/transaction.php?chain=decentr&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=decentr&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Decentr-Mainnet","tx_page":"https://explorer.stavr.tech/Decentr-Mainnet/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/decentr","tx_page":"https://atomscan.com/decentr/transactions/${txHash}","account_page":"https://atomscan.com/decentr/accounts/${accountAddress}"},{"kind":"Nodine.ID","url":"https://explorer.co.id/decentr","tx_page":"https://explorer.co.id/decentr/tx/${txHash}"},{"kind":"THE EXPLORER","url":"https://explorer.sxlzptprjkt.xyz/decentr","tx_page":"https://explorer.sxlzptprjkt.xyz/decentr/tx/${txHash}"},{"kind":"hexskrt EXPLORER","url":"https://explorer.hexskrt.net/decentr","tx_page":"https://explorer.hexskrt.net/decentr/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/decentr","tx_page":"https://explorer.nodexcapital.com/decentr/tx/${txHash}"},{"kind":"Explorer ComunityNode","url":"https://explorer.comunitynode.my.id/decentr","tx_page":"https://explorer.comunitynode.my.id/decentr/tx/${txHash}"}]},{"chainId":"desmos-mainnet","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/desmos","tx_page":"https://ezstaking.app/desmos/txs/${txHash}","account_page":"https://ezstaking.app/desmos/account/${accountAddress}"},{"kind":"bigdipper","url":"https://bigdipper.live/desmos","tx_page":"https://bigdipper.live/desmos/transactions/${txHash}","account_page":"https://bigdipper.live/desmos/accounts/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/desmos","tx_page":"https://www.mintscan.io/desmos/transactions/${txHash}","account_page":"https://www.mintscan.io/desmos/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/desmos","tx_page":"https://ping.pub/desmos/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/desmos","tx_page":"https://atomscan.com/desmos/transactions/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/desmos","tx_page":"https://explorer.tcnetwork.io/desmos/transaction/${txHash}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Desmos","tx_page":"https://explorer.declab.pro/Desmos/tx/${txHash}"}]},{"chainId":"dhealth","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/dhealth","tx_page":"https://staking-explorer.com/transaction.php?chain=dhealth&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=dhealth&addr=${accountAddress}"},{"kind":"nodestake","url":"https://explorer.nodestake.org/dhealth","tx_page":"https://explorer.nodestake.org/dhealth/tx/${txHash}","account_page":"https://explorer.nodestake.org/dhealth/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/dhealth/","tx_page":"https://explorer.nodeshub.online/dhealth/tx/${txHash}","account_page":"https://explorer.nodeshub.online/dhealth/accounts/${accountAddress}"}]},{"chainId":"vota-ash","explorers":[{"kind":"Dora Vota Ping Pub","url":"https://vota-explorer.dorafactory.org","tx_page":"https://vota-explorer.dorafactory.org/doravota/tx/${txHash}"},{"kind":"lesnik | UTSA Ping Pub","url":"https://exp.utsa.tech/dora/staking","tx_page":"https://exp.utsa.tech/dora/tx/${txHash}"},{"kind":"ITRocket Ping Pub","url":"https://mainnet.itrocket.net/doravota/staking","tx_page":"https://mainnet.itrocket.net/doravota/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/doravota","tx_page":"https://staking-explorer.com/transaction.php?chain=doravota&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=doravota&addr=${accountAddress}"},{"kind":"Explorers","url":"https://dora.explorers.guru","tx_page":"https://dora.explorers.guru/transaction/${txHash}"}]},{"chainId":"dungeon-1","explorers":[{"kind":"Ping.Pub","url":"https://ping.pub/Dungeonchain","tx_page":"https://ping.pub/Dungeonchain/tx/${txHash}","account_page":"https://ping.pub/Dungeonchain/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/dungeon","tx_page":"https://explorer.whenmoonwhenlambo.money/dungeon/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/dungeon/account/${accountAddress}"}]},{"chainId":"dydx-mainnet-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/dydx","tx_page":"https://www.mintscan.io/dydx/txs/${txHash}","account_page":"https://www.mintscan.io/dydx/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/dydx","tx_page":"https://staking-explorer.com/transaction.php?chain=dydx&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=dydx&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/dydx","tx_page":"https://ezstaking.app/dydx/txs/${txHash}","account_page":"https://ezstaking.app/dydx/account/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.top/dydx/","tx_page":"https://explorer.nodestake.top/dydx/txs/${txHash}","account_page":"https://explorer.nodestake.top/dydx/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/dydx","tx_page":"https://explorer.tcnetwork.io/dydx/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/dydx/account/${accountAddress}"}]},{"chainId":"dymension_1100-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/dymension","tx_page":"https://www.mintscan.io/dymension/tx/${txHash}","account_page":"https://www.mintscan.io/dymension/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/dymension","tx_page":"https://staking-explorer.com/transaction.php?chain=dymension&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=dymension&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/dymension","tx_page":"https://ezstaking.app/dymension/txs/${txHash}","account_page":"https://ezstaking.app/dymension/account/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/dymension","tx_page":"https://explorer.nodestake.org/dymension/tx/${txHash}","account_page":"https://explorer.nodestake.org/dymension/account/${accountAddress}"},{"kind":"Kynraze","url":"https://explorer.kynraze.com/dymension","tx_page":"https://explorer.kynraze.com/dymension/tx/${txHash}","account_page":"https://explorer.kynraze.com/dymension/account/${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://explorer.ist/dymension","tx_page":"https://explorer.ist/dymension/tx/${txHash}","account_page":"https://explorer.ist/dymension/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Dymension-Mainnet","tx_page":"https://explorer.stavr.tech/Dymension-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Dymension-Mainnet/account/${accountAddress}"},{"kind":"HoodScan","url":"https://hoodscan.io/dymension","tx_page":"https://hoodscan.io/dymension/transactions/${txHash}","account_page":"https://hoodscan.io/dymension/accounts/${accountAddress}"},{"kind":"posthuman","url":"https://explorer.posthuman.digital/dymension","tx_page":"https://explorer.posthuman.digital/dymension/tx/${txHash}","account_page":"https://explorer.posthuman.digital/dymension/account/${accountAddress}"},{"kind":"AVIAONE 🟒","url":"https://mainnet.explorer.aviaone.com/dymension","tx_page":"https://mainnet.explorer.aviaone.com/dymension/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/dymension/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/dymension","tx_page":"https://mainnet.whispernode.com/dymension/tx/${txHash}","account_page":"https://mainnet.whispernode.com/dymension/account/${accountAddress}"},{"kind":"DTEAM | Explorer","url":"https://explorer.mainnet.dteam.tech/dymension","tx_page":"https://explorer.mainnet.dteam.tech/dymension/tx/${txHash}","account_page":"https://explorer.mainnet.dteam.tech/dymension/account/${accountAddress}"}]},{"chainId":"dyson-mainnet-01","explorers":[{"kind":"dysonprotocol","url":"https://explorer.dys.dysonprotocol.com/dyson/","tx_page":"https://explorer.dys.dysonprotocol.com/dyson/tx/${txHash}","account_page":"https://explorer.dys.dysonprotocol.com/dyson/account/${accountAddress}"}]},{"chainId":"echelon_3000-3","explorers":[{"kind":"echelon","url":"https://app.ech.network/explorer","tx_page":"https://app.ech.network/explorer/tx/${txHash}"},{"kind":"blockscout","url":"https://scout.ech.network","tx_page":"https://scout.ech.network/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/echelon","tx_page":"https://ping.pub/echelon/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/echelon","tx_page":"https://atomscan.com/echelon/transactions/${txHash}","account_page":"https://atomscan.com/echelon/accounts/${accountAddress}"}]},{"chainId":"emoney-3","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/emoney","tx_page":"https://ezstaking.app/emoney/txs/${txHash}","account_page":"https://ezstaking.app/emoney/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/e-money","tx_page":"https://ping.pub/e-money/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/emoney","tx_page":"https://atomscan.com/emoney/transactions/${txHash}","account_page":"https://atomscan.com/emoney/accounts/${accountAddress}"}]},{"chainId":"empowerchain-1","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/empowerchain","tx_page":"https://staking-explorer.com/transaction.php?chain=empowerchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=empowerchain&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Empower-Mainnet","tx_page":"https://explorer.stavr.tech/Empower-Mainnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/Empower-Mainnet/account/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/empower","tx_page":"https://explorer.nodestake.top/empower/tx/${txHash}","account_page":"https://explorer.nodestake.top/empower/account/{$accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/empower","tx_page":"https://exp.stakevillage.net/empower/tx/${txHash}","account_page":"https://exp.stakevillage.net/empower/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Empower","tx_page":"https://explorer.declab.pro/Empower/tx/${txHash}","account_page":"https://explorer.declab.pro/Empower/account/{$accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/empowerchain","tx_page":"https://mainnet.whispernode.com/empowerchain/tx/${txHash}","account_page":"https://mainnet.whispernode.com/empowerchain/account/${accountAddress}"}]},{"chainId":"epix_4242-1","explorers":[{"kind":"Silk Nodes Explorer","url":"https://explorer.silknodes.io/epix","tx_page":"https://explorer.silknodes.io/osmosis/tx/${txHash}"}]},{"chainId":"1","explorers":[{"kind":"Etherscan","url":"https://etherscan.io/","tx_page":"https://etherscan.io/tx/${txHash}"}]},{"chainId":"ethos_7003-1","explorers":[]},{"chainId":"evmos_9001-2","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/evmos","tx_page":"https://ezstaking.app/evmos/txs/${txHash}","account_page":"https://ezstaking.app/evmos/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/evmos","tx_page":"https://www.mintscan.io/evmos/transactions/${txHash}","account_page":"https://www.mintscan.io/evmos/accounts/${accountAddress}"},{"kind":"blockscout","url":"https://evm.evmos.org","tx_page":"https://evm.evmos.org/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/evmos","tx_page":"https://ping.pub/evmos/tx/${txHash}"},{"kind":"explorers.guru","url":"https://evmos.explorers.guru","tx_page":"https://evmos.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/evmos","tx_page":"https://staking-explorer.com/transaction.php?chain=evmos&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=evmos&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/evmos","tx_page":"https://atomscan.com/evmos/transactions/${txHash}","account_page":"https://atomscan.com/evmos/accounts/${accountAddress}"},{"kind":"tcnetwork","url":"https://evmos.tcnetwork.io","tx_page":"https://evmos.tcnetwork.io/transaction/${txHash}"},{"kind":"Stakeflow","url":"https://stakeflow.io/evmos","account_page":"https://stakeflow.io/evmos/accounts/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/evmos","tx_page":"https://exp.stakevillage.net/evmos/tx/${txHash}","account_page":"https://exp.stakevillage.net/evmos/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/evmos","tx_page":"https://explorer.stavr.tech/evmos/tx/${txHash}","account_page":"https://explorer.stavr.tech/evmos/accounts/${accountAddress}"}]},{"chainId":"fetchhub-4","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/fetchai","tx_page":"https://www.mintscan.io/fetchai/transactions/${txHash}","account_page":"https://www.mintscan.io/fetchai/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/fetchhub","tx_page":"https://ezstaking.app/fetchhub/txs/${txHash}","account_page":"https://ezstaking.app/fetchhub/account/${accountAddress}"},{"kind":"bigdipper","url":"https://explore-fetchhub.fetch.ai","tx_page":"https://explore-fetchhub.fetch.ai/transactions/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/fetchhub","tx_page":"https://ping.pub/fetchhub/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/fetchai","tx_page":"https://atomscan.com/fetchai/transactions/${txHash}","account_page":"https://atomscan.com/fetchai/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/fetchhub","tx_page":"https://staking-explorer.com/transaction.php?chain=fetchhub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=fetchhub&addr=${accountAddress}"},{"kind":"bigdipper","url":"https://fetch-explorer.teasel.org","tx_page":"https://fetch-explorer.teasel.org/transactions/${txHash}"},{"kind":"azoyalabs","url":"https://fetchstation.azoyalabs.com/mainnet","tx_page":"https://fetchstation.azoyalabs.com/mainnet/explorer/transactions/${txHash}","account_page":"https://fetchstation.azoyalabs.com/mainnet/explorer/address/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/fetchhub/","tx_page":"https://explorer.nodeshub.online/fetchhub/tx/${txHash}","account_page":"https://explorer.nodeshub.online/fetchhub/accounts/${accountAddress}"},{"kind":"Blockchain Explorer by AVIAONE 🟒","url":"https://mainnet.explorer.aviaone.com/fetchhub","tx_page":"https://mainnet.explorer.aviaone.com/fetchhub/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/fetchhub/accounts/${accountAddress}"}]},{"chainId":"finschia-2","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/finschia","tx_page":"https://www.mintscan.io/finschia/tx/${txHash}","account_page":"https://www.mintscan.io/finschia/address/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/finschia","tx_page":"https://ezstaking.app/finschia/txs/${txHash}","account_page":"https://ezstaking.app/finschia/account/${accountAddress}"}]},{"chainId":"colosseum-1","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/firmachain","tx_page":"https://staking-explorer.com/transaction.php?chain=firmachain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=firmachain&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/firmachain","tx_page":"https://ezstaking.app/firmachain/txs/${txHash}","account_page":"https://ezstaking.app/firmachain/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Firmachain-M","tx_page":"https://explorer.stavr.tech/Firmachain-M/txs/${txHash}","account_page":"https://explorer.stavr.tech/Firmachain-M/account/${accountAddress}"},{"kind":"bigdipper","url":"https://explorer.firmachain.dev","tx_page":"https://explorer.firmachain.dev/transactions/${txHash}"},{"kind":"explorer.ChainTools","url":"https://explorer.chaintools.tech/firmachain","tx_page":"https://explorer.chaintools.tech/firmachain/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/firmachain","tx_page":"https://atomscan.com/firmachain/transactions/${txHash}","account_page":"https://atomscan.com/firmachain/accounts/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/firmachain/","tx_page":"https://explorer.nodeshub.online/firmachain/tx/${txHash}","account_page":"https://explorer.nodeshub.online/firmachain/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/firmachain","tx_page":"https://explorer.whenmoonwhenlambo.money/firmachain/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/firmachain/account/${accountAddress}"}]},{"chainId":"furya-1","explorers":[{"kind":"Furya Explorer","url":"https://explorer.furya.network/furya-1/","tx_page":"https://explorer.furya.network/furya-1/tx/${txHash}","account_page":"https://explorer.furya.network/furya-1/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/furya","tx_page":"https://staking-explorer.com/transaction.php?chain=furya&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=furya&addr=${accountAddress}"},{"kind":"Nodeshub Explorer","url":"https://explorer.nodeshub.online/furya","tx_page":"https://explorer.nodeshub.online/furya/txs/${txHash}","account_page":"https://explorer.nodeshub.online/furya/account/${accountAddress}"}]},{"chainId":"fxcore","explorers":[{"kind":"starscan","url":"https://starscan.io","tx_page":"https://starscan.io/fxcore/tx/${txHash}","account_page":"https://starscan.io/fxcore/address/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/fx","tx_page":"https://explorer.tcnetwork.io/fx/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/fx/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/fxcore","tx_page":"https://ping.pub/fxcore/tx/${txHash}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/fxcore/","tx_page":"https://explorer.nodeshub.online/fxcore/tx/${txHash}","account_page":"https://explorer.nodeshub.online/fxcore/accounts/${accountAddress}"}]},{"chainId":"galaxy-1","explorers":[{"kind":"ping.pub","url":"https://explorer.postcapitalist.io/Galaxy","tx_page":"https://explorer.postcapitalist.io/Galaxy/tx/${txHash}"}]},{"chainId":"wormchain","explorers":[{"kind":"bigdipper","url":"https://bigdipper.live/wormhole","tx_page":"https://bigdipper.live/wormhole/transactions/${txHash}","account_page":"https://bigdipper.live/wormhole/accounts/${accountAddress}"}]},{"chainId":"genesis_29-2","explorers":[{"kind":"ping.pub","url":"https://ping.pub/genesisL1","tx_page":"https://ping.pub/genesisL1/tx/${txHash}"},{"kind":"ping.pub","url":"https://exp.utsa.tech/genesis","tx_page":"https://exp.utsa.tech/genesis/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Genesisl1","tx_page":"https://explorer.stavr.tech/Genesisl1/tx/${txHash}","account_page":"https://explorer.stavr.tech/Genesisl1/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/genesisl1","tx_page":"https://atomscan.com/genesisl1/transactions/${txHash}","account_page":"https://atomscan.com/genesisl1/accounts/${accountAddress}"}]},{"chainId":"gitopia","explorers":[{"kind":"ping.pub","url":"https://ping.pub/gitopia","tx_page":"https://ping.pub/gitopia/tx/${txHash}","account_page":"https://ping.pub/gitopia/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/gitopia","tx_page":"https://staking-explorer.com/transaction.php?chain=gitopia&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=gitopia&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Gitopia-M","tx_page":"https://explorer.stavr.tech/Gitopia-M/tx/${txHash}","account_page":"https://explorer.stavr.tech/Gitopia-M/account/${accountAddress}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀","url":"https://exp.utsa.tech/gitopia","tx_page":"https://exp.utsa.tech/gitopia/tx/${txHash}","account_page":"https://exp.utsa.tech/gitopia/account/${accountAddress}"},{"kind":"Nodeist","url":"https://exp.nodeist.net/gitopia","tx_page":"https://exp.nodeist.net/gitopia/tx/${txHash}","account_page":"https://exp.nodeist.net/gitopia/account/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/gitopia","tx_page":"https://explorer.stake-take.com/gitopia/tx/${txHash}","account_page":"https://explorer.stake-take.com/gitopia/account/${accountAddress}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/gitopia","tx_page":"https://explorer.nodexcapital.com/gitopia/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/gitopia/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/gitopia","tx_page":"https://explorer.tcnetwork.io/gitopia/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/gitopia/account/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.top/gitopia","tx_page":"https://explorer.nodestake.top/gitopia/tx/${txHash}","account_page":"https://explorer.nodestake.top/gitopia/account/${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/gitopia-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/gitopia-mainnet/transaction/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/gitopia-mainnet/account/${accountAddress}"},{"kind":"Moonbridge","url":"https://explorer.moonbridge.team/gitopia","tx_page":"https://explorer.moonbridge.team/gitopia/tx/${txHash}","account_page":"https://explorer.moonbridge.team/gitopia/account/${accountAddress}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/gitopia","tx_page":"https://explorer.konsortech.xyz/gitopia/tx/${txHash}","account_page":"https://explorer.konsortech.xyz/gitopia/account/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/gitopia","tx_page":"https://exp.stakevillage.net/gitopia/tx/${txHash}","account_page":"https://exp.stakevillage.net/gitopia/account/${accountAddress}"},{"kind":"AlxVoy ⚑ ANODE.TEAM","url":"https://main.anode.team/gitopia","tx_page":"https://main.anode.team/gitopia/tx/${txHash}","account_page":"https://main.anode.team/gitopia/account/${accountAddress}"},{"kind":"L0vd.com ❀️","url":"https://chain-services.l0vd.com/mainnets/gitopia","tx_page":"https://chain-services.l0vd.com/mainnets/gitopia/tx/${txHash}","account_page":"https://chain-services.l0vd.com/mainnets/gitopia/account/${accountAddress}"},{"kind":"ToTheMars","url":"https://explorer.tothemars.network/gitopia","tx_page":"https://explorer.tothemars.network/gitopia/tx/${txHash}","account_page":"https://explorer.tothemars.network/gitopia/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Gitopia","tx_page":"https://explorer.declab.pro/Gitopia/tx/${txHash}","account_page":"https://explorer.declab.pro/Gitopia/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/gitopia","tx_page":"https://mainnet.whispernode.com/gitopia/tx/${txHash}","account_page":"https://mainnet.whispernode.com/gitopia/account/${accountAddress}"}]},{"chainId":"govgen-1","explorers":[{"kind":"ping.pub","url":"https://explorer.govgen.io/","tx_page":"https://explorer.govgen.io/govgen/tx/${txHash}","account_page":"https://explorer.govgen.io/govgen/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/govgen","tx_page":"https://staking-explorer.com/transaction.php?chain=govgen&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=govgen&addr=${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.nodeshub.online/govgen","tx_page":"https://explorer.nodeshub.online/govgen/tx/${txHash}","account_page":"https://explorer.nodeshub.online/govgen/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.equinoxdao.xyz/govgen","tx_page":"https://explorer.equinoxdao.xyz/govgen/tx/${txHash}","account_page":"https://explorer.equinoxdao.xyz/govgen/account/${accountAddress}"},{"kind":"ping.pub","url":"https://test.explorer.ist/govgen","tx_page":"https://test.explorer.ist/govgen/tx/${txHash}","account_page":"https://test.explorer.ist/govgen/account/${accountAddress}"},{"kind":"posthuman","url":"https://explorer.posthuman.digital/govgen","tx_page":"https://explorer.posthuman.digital/govgen/tx/${txHash}","account_page":"https://explorer.posthuman.digital/govgen/account/${accountAddress}"}]},{"chainId":"gravity-bridge-3","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/gravitybridge","tx_page":"https://ezstaking.app/gravitybridge/txs/${txHash}","account_page":"https://ezstaking.app/gravitybridge/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/gravity-bridge","tx_page":"https://www.mintscan.io/gravity-bridge/transactions/${txHash}","account_page":"https://www.mintscan.io/gravity-bridge/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/gravity-bridge","tx_page":"https://ping.pub/gravity-bridge/tx/${txHash}"},{"kind":"explorers.guru","url":"https://gravity.explorers.guru","tx_page":"https://gravity.explorers.guru/transaction/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/gravity-bridge","tx_page":"https://atomscan.com/gravity-bridge/transactions/${txHash}","account_page":"https://atomscan.com/gravity-bridge/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/gravitybridge","tx_page":"https://explorer.tcnetwork.io/gravitybridge/transaction/${txHash}"},{"kind":"Stakeflow","url":"https://stakeflow.io/gravity-bridge","account_page":"https://stakeflow.io/gravity-bridge/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/GravityBridge","tx_page":"https://explorer.stavr.tech/GravityBridge/tx/${txHash}","account_page":"https://explorer.stavr.tech/GravityBridge/accounts/${accountAddress}"},{"kind":"AviaOne 🟒","url":"https://mainnet.explorer.aviaone.com/gravity-bridge","tx_page":"https://mainnet.explorer.aviaone.com/gravity-bridge/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/gravity-bridge/accounts/${accountAddress}"}]},{"chainId":"haqq_11235-1","explorers":[{"kind":"blockscout","url":"https://explorer.haqq.network","tx_page":"https://explorer.haqq.network/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/haqq","tx_page":"https://ping.pub/haqq/tx/${txHash}"},{"kind":"explorers.guru","url":"https://haqq.explorers.guru","tx_page":"https://haqq.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/haqq","tx_page":"https://staking-explorer.com/transaction.php?chain=haqq&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=haqq&addr=${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/haqq","tx_page":"https://explorer.nodestake.top/haqq/tx/${txHash}"},{"kind":"KonsorTech Explorer","url":"https://explorer.konsortech.xyz/haqq","tx_page":"https://explorer.konsortech.xyz/haqq/tx/${txHash}"},{"kind":"Palamar Explorer","url":"https://explorer.palamar.io/haqq","tx_page":"https://explorer.palamar.io/haqq/tx/${txHash}"}]},{"chainId":"helichain","explorers":[{"kind":"ping.pub","url":"https://explorer.helichain.com/Helichain","tx_page":"https://explorer.helichain.com/Helichain/tx/${txHash}","account_page":"https://explorer.helichain.com/Helichain/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/heli","tx_page":"https://staking-explorer.com/transaction.php?chain=heli&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=heli&addr=${accountAddress}"}]},{"chainId":"highbury_710-1","explorers":[{"kind":"pingpub","url":"https://explorer.furya.wtf/","tx_page":"https://www.explorer.furya.wtf//txs/${txHash}","account_page":"https://explorer.furya.wtf//account/${accountAddress}"}]},{"chainId":"humans_1089-1","explorers":[{"kind":"mintscan","url":"https://mintscan.io/humans","tx_page":"https://www.mintscan.io/humans/tx/${txHash}"},{"kind":"ezstaking","url":"https://ezstaking.app/humans","tx_page":"https://ezstaking.app/humans/txs/${txHash}","account_page":"https://ezstaking.app/humans/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/humans","tx_page":"https://ping.pub/humans/tx/${txHash}"},{"kind":"explorers.guru","url":"https://humans.explorers.guru","tx_page":"https://humans.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/humans","tx_page":"https://staking-explorer.com/transaction.php?chain=humans&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=humans&addr=${accountAddress}"},{"kind":"exploreme","url":"https://humansai.exploreme.pro/","tx_page":"https://humans.exploreme.pro/transaction/${txHash}"},{"kind":"itrocket","url":"https://mainnet.itrocket.net/humans/staking","tx_page":"https://mainnet.itrocket.net/humans/tx/${txHash}","account_page":"https://mainnet.itrocket.net/humans/account/${accountAddress}"},{"kind":"posthuman","url":"https://explorer.posthuman.digital/humans","tx_page":"https://explorer.posthuman.digital/humans/tx/${txHash}","account_page":"https://explorer.posthuman.digital/humans/account/${accountAddress}"}]},{"chainId":"Antora","explorers":[{"kind":"chadscan","url":"https://chadscan.com","tx_page":"https://chadscan.com/transactions/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/idep","tx_page":"https://atomscan.com/idep/transactions/${txHash}","account_page":"https://atomscan.com/idep/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/idep","tx_page":"https://explorer.tcnetwork.io/idep/transaction/${txHash}"}]},{"chainId":"ixo-5","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/impacthub","tx_page":"https://staking-explorer.com/transaction.php?chain=impacthub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=impacthub&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/ixo","tx_page":"https://ezstaking.app/ixo/txs/${txHash}","account_page":"https://ezstaking.app/ixo/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/IXO-Mainnet","tx_page":"https://explorer.stavr.tech/IXO-Mainnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/IXO-Mainnet/account/${accountAddress}"},{"kind":"bigdipper","url":"https://blockscan.ixo.world","tx_page":"https://blockscan.ixo.world/transactions/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/ixo","tx_page":"https://ping.pub/ixo/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/ixo","tx_page":"https://atomscan.com/ixo/transactions/${txHash}","account_page":"https://atomscan.com/ixo/accounts/${accountAddress}"},{"kind":"Mintscan","url":"https://www.mintscan.io/ixo","tx_page":"https://www.mintscan.io/ixo/transactions/${txHash}","account_page":"https://www.mintscan.io/ixo/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/ixo","tx_page":"https://explorer.whenmoonwhenlambo.money/ixo/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/ixo/account/${accountAddress}"}]},{"chainId":"imversed_5555555-1","explorers":[{"kind":"blockscout","url":"https://txe.imversed.network/","tx_page":"https://txe.imversed.network/tx/${txHash}"}]},{"chainId":"injective-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/injective","tx_page":"https://ezstaking.app/injective/txs/${txHash}","account_page":"https://ezstaking.app/injective/account/${accountAddress}"},{"kind":"injectiveprotocol","url":"https://explorer.injective.network/","tx_page":"https://explorer.injective.network/transaction/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/injective","tx_page":"https://ping.pub/injective/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/injective","tx_page":"https://atomscan.com/injective/transactions/${txHash}","account_page":"https://atomscan.com/injective/accounts/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/injective","tx_page":"https://www.mintscan.io/injective/transactions/${txHash}","account_page":"https://www.mintscan.io/injective/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/injective","tx_page":"https://staking-explorer.com/transaction.php?chain=injective&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=injective&addr=${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/injective","account_page":"https://stakeflow.io/injective/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/injective","tx_page":"https://mainnet.whispernode.com/injective/tx/${txHash}","account_page":"https://mainnet.whispernode.com/injective/account/${accountAddress}"}]},{"chainId":"int3face-1","explorers":[{"kind":"ping.pub","url":"https://explorer.int3face.zone","tx_page":"https://explorer.int3face.zone/int3face-1/tx/${txHash}"}]},{"chainId":"irishub-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/irisnet","tx_page":"https://ezstaking.app/irisnet/txs/${txHash}","account_page":"https://ezstaking.app/irisnet/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/iris","tx_page":"https://www.mintscan.io/iris/transactions/${txHash}","account_page":"https://www.mintscan.io/iris/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/iris-network","tx_page":"https://ping.pub/iris-network/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/irisnet","tx_page":"https://staking-explorer.com/transaction.php?chain=irisnet&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=irisnet&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/iris-network","tx_page":"https://atomscan.com/iris-network/transactions/${txHash}","account_page":"https://atomscan.com/iris-network/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/irisnet","account_page":"https://stakeflow.io/irisnet/accounts/${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/iris","tx_page":"https://exp.nodeist.net/iris/tx/${txHash}"},{"kind":"L0vd.com ❀️","url":"https://explorers.l0vd.com/iris-mainnet","tx_page":"https://explorers.l0vd.com/iris-mainnet/tx/${txHash}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/iris","tx_page":"https://explorer.konsortech.xyz/iris/tx/${txHash}"}]},{"chainId":"jackal-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/jackal","tx_page":"https://ping.pub/jackal/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/jackal","tx_page":"https://staking-explorer.com/transaction.php?chain=jackal&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=jackal&addr=${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.top/jackal","tx_page":"https://explorer.nodestake.top/jackal/tx/${txHash}"},{"kind":"BccNodes","url":"https://explorer.bccnodes.com/jackal","tx_page":"https://explorer.bccnodes.com/jackal/tx/${txHash}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀","url":"https://exp.utsa.tech/jackal","tx_page":"https://exp.utsa.tech/jackal/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/jackal","tx_page":"https://explorer.stavr.tech/jackal/tx/${txHash}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/jackal","tx_page":"https://exp.nodeist.net/jackal/tx/${txHash}"},{"kind":"Big Dipper","url":"https://bigdipper.live/jackal","tx_page":"https://bigdipper.live/jackal/transactions/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/jackal","tx_page":"https://mainnet.whispernode.com/jackal/tx/${txHash}","account_page":"https://mainnet.whispernode.com/jackal/account/${accountAddress}"}]},{"chainId":"joltify_1729-1","explorers":[{"kind":"big dipper","url":"https://explorer.joltify.io/joltify","tx_page":"https://explorer.joltify.io/joltify/transactions/${txHash}","account_page":"https://explorer.joltify.io/joltify/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/joltify","tx_page":"https://staking-explorer.com/transaction.php?chain=joltify&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=joltify&addr=${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/joltify","tx_page":"https://explorer.whenmoonwhenlambo.money/joltify/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/joltify/account/${accountAddress}"}]},{"chainId":"juno-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/juno","tx_page":"https://ezstaking.app/juno/txs/${txHash}","account_page":"https://ezstaking.app/juno/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/juno","tx_page":"https://ping.pub/juno/tx/${txHash}"},{"kind":"explorers.guru","url":"https://juno.explorers.guru","tx_page":"https://juno.explorers.guru/transaction/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/juno","tx_page":"https://www.mintscan.io/juno/transactions/${txHash}","account_page":"https://www.mintscan.io/juno/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/juno","tx_page":"https://staking-explorer.com/transaction.php?chain=juno&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=juno&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/juno","tx_page":"https://atomscan.com/juno/transactions/${txHash}","account_page":"https://atomscan.com/juno/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/juno","tx_page":"https://explorer.stavr.tech/juno/transactions/${txHash}","account_page":"https://explorer.stavr.tech/juno/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/juno","tx_page":"https://explorer.tcnetwork.io/juno/transaction/${txHash}"},{"kind":"Stakeflow","url":"https://stakeflow.io/juno","account_page":"https://stakeflow.io/juno/accounts/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Juno","tx_page":"https://explorer.declab.pro/Juno/tx/${txHash}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/juno/","tx_page":"https://explorer.nodeshub.online/juno/tx/${txHash}","account_page":"https://explorer.nodeshub.online/juno/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/juno","tx_page":"https://mainnet.whispernode.com/juno/tx/${txHash}","account_page":"https://mainnet.whispernode.com/juno/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/juno","tx_page":"https://explorer.chainroot.io/juno/transactions/${txHash}","account_page":"https://explorer.chainroot.io/juno/accounts/${accountAddress}"}]},{"chainId":"kava_2222-10","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/kava","tx_page":"https://www.mintscan.io/kava/transactions/${txHash}","account_page":"https://www.mintscan.io/kava/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/kava","tx_page":"https://staking-explorer.com/transaction.php?chain=kava&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=kava&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/kava","tx_page":"https://ezstaking.app/kava/txs/${txHash}","account_page":"https://ezstaking.app/kava/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/kava","tx_page":"https://ping.pub/kava/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/kava","tx_page":"https://atomscan.com/kava/transactions/${txHash}","account_page":"https://atomscan.com/kava/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/kava","account_page":"https://stakeflow.io/kava/accounts/${accountAddress}"}]},{"chainId":"kichain-2","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/kichain","tx_page":"https://ezstaking.app/kichain/txs/${txHash}","account_page":"https://ezstaking.app/kichain/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/ki-chain","tx_page":"https://www.mintscan.io/ki-chain/txs/${txHash}","account_page":"https://www.mintscan.io/ki-chain/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Kichain-Mainnet","tx_page":"https://explorer.stavr.tech/Kichain-Mainnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/kichain","tx_page":"https://ping.pub/kichain/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/kichain","tx_page":"https://staking-explorer.com/transaction.php?chain=kichain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=kichain&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/ki-chain","tx_page":"https://atomscan.com/ki-chain/transactions/${txHash}","account_page":"https://atomscan.com/ki-chain/accounts/${accountAddress}"},{"kind":"AVIAONE Explorer 🟒","url":"https://mainnet.explorer.aviaone.com/kichain","tx_page":"https://mainnet.explorer.aviaone.com/kichain/transactions/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/kichain/accounts/${accountAddress}"}]},{"chainId":"kima_network","explorers":[{"kind":"Kima Network Explorer","url":"https://explorer.kima.network/","tx_page":"https://explorer.kima.network/transactions/${txHash}"}]},{"chainId":"darchub","explorers":[{"kind":"konstellation","url":"https://explorer.konstellation.tech/","tx_page":"https://explorer.konstellation.tech/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/konstellation","tx_page":"https://staking-explorer.com/transaction.php?chain=konstellation&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=konstellation&addr=${accountAddress}"},{"kind":"cosmotracker","url":"https://cosmotracker.com/konstellation","tx_page":"https://cosmotracker.com/konstellation/tx/${txHash}"}]},{"chainId":"luwak-1","explorers":[{"kind":"Kopi Foundation Explorer","url":"https://explorer.kopi.money/","tx_page":"https://explorer.kopi.money/luwak-1/tx/${txHash}","account_page":"https://explorer.kopi.money/luwak-1/account/${accountAddress}"},{"kind":"CzCryptoman Explorer","url":"https://explorer.czcryptoman.com/kopi-mainnet","tx_page":"https://explorer.czcryptoman.com/kopi-mainnet/tx/${txHash}","account_page":"https://explorer.czcryptoman.com/kopi-mainnet/account/${accountAddress}"},{"kind":"Sychonix Explorer","url":"https://explorer.sychonix.com/kopi-mainnet","tx_page":"https://explorer.sychonix.com/kopi-mainnet/tx/${txHash}","account_page":"https://explorer.sychonix.com/kopi-mainnet/account/${accountAddress}"},{"kind":"Nodeshub Explorer","url":"https://explorer.nodeshub.online/Kopi","tx_page":"https://explorer.nodeshub.online/Kopi/txs/${txHash}","account_page":"https://explorer.nodeshub.online/Kopi/account/${accountAddress}"},{"kind":"Bony Explorer","url":"https://explorer.bonynode.online/kopi/","tx_page":"https://explorer.bonynode.online/kopi/txs/${txHash}","account_page":"https://explorer.bonynode.online/kopi/account/${accountAddress}"},{"kind":"Moonbridge Explorer","url":"https://explorer.moonbridge.team/kopi/","tx_page":"https://explorer.moonbridge.team/kopi/txs/${txHash}","account_page":"https://explorer.moonbridge.team/kopi/account/${accountAddress}"},{"kind":"Cosmoscan Explorer","url":"https://cosmoscan.com/kopi","tx_page":"https://cosmoscan.com/kopi/txs/${txHash}","account_page":"https://cosmoscan.com/kopi/account/${accountAddress}"}]},{"chainId":"kaiyo-1","explorers":[{"kind":"kujira","url":"https://finder.kujira.app","tx_page":"https://finder.kujira.app/kaiyo-1/tx/${txHash}"},{"kind":"explorers.guru","url":"https://kujira.explorers.guru","tx_page":"https://kujira.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/kujira","tx_page":"https://staking-explorer.com/transaction.php?chain=kujira&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=kujira&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/kujira","tx_page":"https://ezstaking.app/kujira/txs/${txHash}","account_page":"https://ezstaking.app/kujira/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/kujira","tx_page":"https://atomscan.com/kujira/transactions/${txHash}","account_page":"https://atomscan.com/kujira/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/kujira","tx_page":"https://mainnet.whispernode.com/kujira/tx/${txHash}","account_page":"https://mainnet.whispernode.com/kujira/account/${accountAddress}"}]},{"chainId":"kyve-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/kyve","tx_page":"https://ezstaking.app/kyve/txs/${txHash}","account_page":"https://ezstaking.app/kyve/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/kyve","tx_page":"https://www.mintscan.io/kyve/txs/${txHash}","account_page":"https://www.mintscan.io/kyve/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/kyve","tx_page":"https://staking-explorer.com/transaction.php?chain=kyve&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=kyve&addr=${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/kyve","tx_page":"https://explorer.nodestake.top/kyve/txs/${txHash}","account_page":"https://explorer.nodestake.top/kyve/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Kyve","tx_page":"https://explorer.stavr.tech/Kyve/txs/${txHash}","account_page":"https://explorer.stavr.tech/Kyve/account/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/kyve","tx_page":"https://explorer.stake-take.com/kyve/txs/${txHash}","account_page":"https://explorer.stake-take.com/kyve/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Kyve","tx_page":"https://explorer.declab.pro/Kyve/txs/${txHash}","account_page":"https://explorer.declab.pro/Kyve/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/kyve","tx_page":"https://explorer.whenmoonwhenlambo.money/kyve/txs/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/kyve/account/${accountAddress}"},{"kind":"KYVE Explorer","url":"https://explorer.kyve.network/kyve","tx_page":"https://explorer.kyve.network/kyve/tx/${txHash}","account_page":"https://explorer.kyve.network/kyve/account/${accountAddress}"},{"kind":"Viewblock","url":"https://viewblock.io/kyve","tx_page":"https://viewblock.io/kyve/tx/${txHash}","account_page":"https://viewblock.io/kyve/address/${accountAddress}"}]},{"chainId":"lambda_92000-1","explorers":[{"kind":"blockscout","url":"https://explorer.lambda.im/","tx_page":"https://explorer.lambda.im/tx/${txHash}"},{"kind":"NodeStake","url":"https://explorer.nodestake.top/lambda","tx_page":"https://explorer.nodestake.top/lambda/txs/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/lambda","tx_page":"https://explorer.stavr.tech/lambda/txs/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/lambda","tx_page":"https://atomscan.com/lambda/transactions/${txHash}","account_page":"https://atomscan.com/lambda/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/lambda","tx_page":"https://explorer.whenmoonwhenlambo.money/lambda/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/lambda/account/${accountAddress}"}]},{"chainId":"lava-mainnet-1","explorers":[{"kind":"finteh","url":"https://explorer.finteh.org/lava","tx_page":"https://explorer.finteh.org/lava/tx/${txHash}","account_page":"https://explorer.finteh.org/lava/account/${accountAddress}"},{"kind":"guru","url":"https://lava.explorers.guru/","tx_page":"https://lava.explorers.guru/transaction/${txHash}","account_page":"https://lava.explorers.guru/account/${accountAddress}"},{"kind":"w3coins","url":"https://lava-explorer.w3coins.io/Lava","tx_page":"https://lava-explorer.w3coins.io/Lava/tx/${txHash}","account_page":"https://lava-explorer.w3coins.io/Lava/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/lava","tx_page":"https://staking-explorer.com/transaction.php?chain=lava&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=lava&addr=${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/lava-mainnet","tx_page":"https://exp.stakevillage.net/lava-mainnet/tx/${txHash}","account_page":"https://exp.stakevillage.net/lava-mainnet/account/${accountAddress}"},{"kind":"AVIAONE 🟒","url":"https://mainnet.explorer.aviaone.com/lava/","tx_page":"https://mainnet.explorer.aviaone.com/lava/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/lava/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Lava-Mainnet","tx_page":"https://explorer.stavr.tech/Lava-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Lava-Mainnet/account/${accountAddress}"}]},{"chainId":"likecoin-mainnet-2","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/likecoin","tx_page":"https://staking-explorer.com/transaction.php?chain=likecoin&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=likecoin&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/likecoin","tx_page":"https://ezstaking.app/likecoin/txs/${txHash}","account_page":"https://ezstaking.app/likecoin/account/${accountAddress}"},{"kind":"lunie-ng","url":"https://stake.like.co/"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Likecoin-M","tx_page":"https://explorer.stavr.tech/Likecoin-M/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/likecoin","tx_page":"https://ping.pub/likecoin/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/likecoin","tx_page":"https://atomscan.com/likecoin/transactions/${txHash}","account_page":"https://atomscan.com/likecoin/accounts/${accountAddress}"}]},{"chainId":"logos_7002-1","explorers":[]},{"chainId":"loop-1","explorers":[{"kind":"ping.pub","url":"https://ping.pfc.zone/loop","tx_page":"https://ping.pfc.zone/loop/tx/${txHash}"}]},{"chainId":"lorenzo_8329-1","explorers":[{"kind":"blockscout","url":"https://scan.lorenzo-protocol.xyz/","tx_page":"https://scan.lorenzo-protocol.xyz/tx/${txHash}"}]},{"chainId":"loyal-main-02","explorers":[{"kind":"Loyal explorer","url":"https://pingpub.joinloyal.io/loyal","tx_page":"https://pingpub.joinloyal.io/loyal/tx/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/loyal","tx_page":"https://explorer.tcnetwork.io/loyal/transaction/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/loyal","tx_page":"https://explorer.nodestake.top/loyal/tx/${txHash}"}]},{"chainId":"lum-network-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/lumnetwork","tx_page":"https://ezstaking.app/lumnetwork/txs/${txHash}","account_page":"https://ezstaking.app/lumnetwork/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/lum","tx_page":"https://www.mintscan.io/lum/transactions/${txHash}","account_page":"https://www.mintscan.io/lum/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/lumnetwork","tx_page":"https://staking-explorer.com/transaction.php?chain=lumnetwork&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=lumnetwork&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/LumNetwork-Mainnet","tx_page":"https://explorer.stavr.tech/LumNetwork-Mainnet/tx/${txHash}"},{"kind":"lum-network","url":"https://explorer.lum.network","tx_page":"https://explorer.lum.network/txs/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/lum-network","tx_page":"https://ping.pub/lum-network/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/lum-network","tx_page":"https://atomscan.com/lum-network/transactions/${txHash}","account_page":"https://atomscan.com/lum-network/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/lum-network","tx_page":"https://explorer.whenmoonwhenlambo.money/lum-network/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/lum-network/account/${accountAddress}"}]},{"chainId":"mande_18071918-1","explorers":[{"kind":"FYI","url":"https://dym.fyi/r/mande","tx_page":"https://dym.fyi/r/mande/tx/${txHash}","account_page":"https://dym.fyi/r/mande/address/${accountAddress}"}]},{"chainId":"mantra-1","explorers":[{"kind":"ITRocket","url":"https://mainnet.itrocket.net/mantra","tx_page":"https://mainnet.itrocket.net/mantra/transaction/${txHash}","account_page":"https://mainnet.itrocket.net/mantra/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Mantra-Mainnet","tx_page":"https://explorer.stavr.tech/Mantra-Mainnet/transaction/${txHash}","account_page":"https://explorer.stavr.tech/Mantra-Mainnet/account/${accountAddress}"}]},{"chainId":"mars-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/mars-protocol","tx_page":"https://ezstaking.app/mars-protocol/txs/${txHash}","account_page":"https://ezstaking.app/mars-protocol/account/${accountAddress}"},{"kind":"BigDipper","url":"https://explorer.marsprotocol.io","tx_page":"https://explorer.marsprotocol.io/transactions/${txHash}","account_page":"https://explorer.marsprotocol.io/accounts/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/mars","tx_page":"https://explorer.nodestake.top/mars/transactions/${txHash}","account_page":"https://explorer.nodestake.top/mars/account/${accountAddress}"},{"kind":"Nodes.Guru","url":"https://mars.explorers.guru/","tx_page":"https://mars.explorers.guru/transaction/${txHash}","account_page":"https://mars.explorers.guru/account/${accountAddress}"},{"kind":"MintScan","url":"https://www.mintscan.io/mars-protocol","tx_page":"https://www.mintscan.io/mars-protocol/transactions/${txHash}","account_page":"https://www.mintscan.io/mars-protocol/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/mars","tx_page":"https://ping.pub/mars/tx/${txHash}","account_page":"https://ping.pub/mars/account/${accountAddress}"}]},{"chainId":"mayachain-mainnet-v1","explorers":[{"kind":"Maya Protocol explorer","url":"https://www.explorer.mayachain.info","tx_page":"https://www.explorer.mayachain.info/#/txs/${txHash}"}]},{"chainId":"medasdigital-2","explorers":[{"kind":"BigDipper","url":"https://explorer.medas-digital.io:3100/medasdigital","tx_page":"https://explorer.medas-digital.io:3100/medasdigital/transactions/${txHash}","account_page":"explorer.medas-digital.io:3100/medasdigital/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/frontier/medasdigital","tx_page":"https://atomscan.com/frontier/medasdigital/transactions/${txHash}","account_page":"https://atomscan.com/frontier/medasdigital/accounts/${accountAddress}"}]},{"chainId":"meme-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/meme","tx_page":"https://ping.pub/meme/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/meme","tx_page":"https://atomscan.com/meme/transactions/${txHash}","account_page":"https://atomscan.com/meme/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/meme","tx_page":"https://staking-explorer.com/transaction.php?chain=meme&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=meme&addr=${accountAddress}"},{"kind":"MEME Explorer","url":"https://explorer.meme.sx/meme","tx_page":"https://explorer.meme.sx/meme/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/meme","tx_page":"https://atomscan.com/meme/transactions/${txHash}","account_page":"https://atomscan.com/meme/accounts/${accountAddress}"},{"kind":"Brochain","url":"https://explorer.brocha.in/meme","tx_page":"https://explorer.brocha.in/meme/tx/${txHash}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/meme","tx_page":"https://explorer.stake-take.com/meme/tx/${txHash}","account_page":"https://explorer.stake-take.com/meme/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Meme","tx_page":"https://explorer.stavr.tech/Meme/tx/${txHash}","account_page":"https://explorer.stavr.tech/Meme/account/${accountAddress}"}]},{"chainId":"migaloo-1","explorers":[{"kind":"Migaloo Explorers Guru","url":"https://migaloo.explorers.guru","tx_page":"https://migaloo.explorers.guru/transaction/${txHash}","account_page":"https://migaloo.explorers.guru/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/migaloo","tx_page":"https://ping.pub/migaloo/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/migaloo","tx_page":"https://staking-explorer.com/transaction.php?chain=migaloo&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=migaloo&addr=${accountAddress}"},{"kind":"Silk Nodes","url":"https://explorer.silknodes.io/migaloo","tx_page":"https://explorer.silknodes.io/migaloo/tx/${txHash}","account_page":"https://explorer.silknodes.io/migaloo/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/migaloo","tx_page":"https://atomscan.com/migaloo/transactions/${txHash}","account_page":"https://atomscan.com/migaloo/accounts/${accountAddress}"}]},{"chainId":"milkyway","explorers":[]},{"chainId":"mainnet","explorers":[{"kind":"Mises-GW Explorer","url":"https://gw.mises.site","tx_page":"https://gw.mises.site/tx/${txHash}"},{"kind":"Jambulmerah ping.pub based","url":"https://explorer.jambulmerah.dev/mises","tx_page":"https://explorer.jambulmerah.dev/mises/tx/${txHash}"}]},{"chainId":"mtgbp-1","explorers":[{"kind":"ping.pub","url":"https://blockexplorer.mtgbp.com/mtgbp","tx_page":"https://blockexplorer.mtgbp.com/mtgbp/tx/${txHash}","account_page":"https://blockexplorer.mtgbp.com/mtgbp/accounts/${accountAddress}"}]},{"chainId":"mun-1","explorers":[{"url":"https://explorer.mun.money/mun","tx_page":"https://explorer.mun.money/mun/${txHash}"},{"url":"https://explorer.indonode.net/mun/staking","tx_page":"https://explorer.indonode.net/mun/${txHash}"},{"url":"https://explorer.konsortech.xyz/mun/staking","tx_page":"https://explorer.konsortech.xyz/mun/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/mun","tx_page":"https://ping.pub/mun/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/mun","tx_page":"https://explorer.tcnetwork.io/mun/transaction/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/mun","tx_page":"https://explorer.whenmoonwhenlambo.money/mun/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/mun/account/${accountAddress}"}]},{"chainId":"mythos_7001-1","explorers":[]},{"chainId":"neura_266-1"},{"chainId":"Neutaro-1","explorers":[{"kind":"ping.pub","url":"https://explorer.neutaro.io/Neutaro","tx_page":"https://explorer.neutaro.io/Neutaro/tx/${txHash}","account_page":"https://explorer.neutaro.io/Neutaro/account/${accountAddress}"}]},{"chainId":"neutron-1","explorers":[{"kind":"Mintscan","url":"https://www.mintscan.io/neutron","tx_page":"https://www.mintscan.io/neutron/transactions/${txHash}","account_page":"https://www.mintscan.io/neutron/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/neutron","tx_page":"https://ezstaking.app/neutron/txs/${txHash}","account_page":"https://ezstaking.app/neutron/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/neutron","tx_page":"https://mainnet.whispernode.com/neutron/tx/${txHash}","account_page":"https://mainnet.whispernode.com/neutron/account/${accountAddress}"}]},{"chainId":"cataclysm-1","explorers":[{"kind":"Nodes Guru","url":"https://nibiru.explorers.guru/","tx_page":"https://nibiru.explorers.guru/transaction/${txHash}","account_page":"https://nibiru.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/nibiru","tx_page":"https://staking-explorer.com/transaction.php?chain=nibiru&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=nibiru&addr=${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/nibiru","tx_page":"https://explorer.nodestake.org/nibiru/tx/${txHash}","account_page":"https://explorer.nodestake.org/nibiru/account/${accountAddress}"},{"kind":"LiveRaveN","url":"https://mainnet.explorer.liveraven.net/nibiru","tx_page":"https://mainnet.explorer.liveraven.net/nibiru/tx/${txHash}","account_page":"https://mainnet.explorer.liveraven.net/nibiru/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Nibiru-Mainnet","tx_page":"https://explorer.stavr.tech/Nibiru-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Nibiru-Mainnet/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/nibiru/","tx_page":"https://explorer.nodeshub.online/nibiru/tx/${txHash}","account_page":"https://explorer.nodeshub.online/nibiru/accounts/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/nibiru-mainnet","tx_page":"https://exp.stakevillage.net/nibiru-mainnet/tx/${txHash}","account_page":"https://exp.stakevillage.net/nibiru-mainnet/accounts/${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/nibiru-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/nibiru-mainnet/tx/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/nibiru-mainnet/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/nibiru","tx_page":"https://explorer.whenmoonwhenlambo.money/nibiru/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/nibiru/account/${accountAddress}"}]},{"chainId":"nim_1122-1","explorers":[{"kind":"Orbit Codes","url":"https://explorer.nim.network","tx_page":"https://explorer.nim.network/tx/${txHash}","account_page":"https://explorer.nim.network/account/${accountAddress}"}]},{"chainId":"noble-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/noble","tx_page":"https://www.mintscan.io/noble/txs/${txHash}","account_page":"https://www.mintscan.io/noble/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/noble","tx_page":"https://ezstaking.app/noble/txs/${txHash}","account_page":"https://ezstaking.app/noble/account/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/noble","account_page":"https://stakeflow.io/noble/accounts/${accountAddress}"}]},{"chainId":"nois-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/nois","tx_page":"https://ezstaking.app/nois/txs/${txHash}","account_page":"https://ezstaking.app/nois/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/nois","tx_page":"https://staking-explorer.com/transaction.php?chain=nois&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=nois&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/nois-mainnet","tx_page":"https://explorer.stavr.tech/nois-mainnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/nois-mainnet/account/${accountAddress}"},{"kind":"BccNodes","url":"https://explorer.stavr.tech/nois-mainnet","tx_page":"https://explorer.bccnodes.com/nois-M/txs/${txHash}","account_page":"https://explorer.bccnodes.com/nois-M/account/${accountAddress}"},{"kind":"explorers.guru","url":"https://nois.explorers.guru","tx_page":"https://nois.explorers.guru/transaction/${txHash}","account_page":"https://nois.explorers.guru/account/${accountAddress}"}]},{"chainId":"pirin-1","explorers":[{"kind":"Nolus Explorer","url":"https://explorer.nolus.io/pirin-1","tx_page":"https://explorer.nolus.io/pirin-1/tx/${txHash}","account_page":"https://explorer.nolus.io/pirin-1/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/nolus","tx_page":"https://ping.pub/nolus/tx/${txHash}","account_page":"https://ping.pub/nolus/account/${accountAddress}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/nolus","tx_page":"https://explorer.nodexcapital.com/nolus/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/nolus/account/${accountAddress}"},{"kind":"Nodes Guru Explorer","url":"https://nolus.explorers.guru","tx_page":"https://nolus.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/nolus","tx_page":"https://staking-explorer.com/transaction.php?chain=nolus&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=nolus&addr=${accountAddress}"},{"kind":"KJ Nodes Explorer","url":"https://explorer.kjnodes.com/nolus","tx_page":"https://explorer.kjnodes.com/nolus/tx/${txHash}","account_page":"https://explorer.kjnodes.com/nolus/account/${accountAddress}"}]},{"chainId":"nomic-stakenet-3","explorers":[{"kind":"bigdipper","url":"https://bigdipper.live/nomic","account_page":"https://bigdipper.live/nomic/accounts/${accountAddress}","tx_page":"https://bigdipper.live/nomic/transactions/${txHash}"},{"kind":"Zenscan.io","url":"https://nomic.zenscan.io/index.php","account_page":"https://nomic.zenscan.io/address.php?address=${accountAddress}","tx_page":"https://nomic.zenscan.io/transaction.php?hash=${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/nomic","tx_page":"https://mainnet.whispernode.com/nomic/tx/${txHash}","account_page":"https://mainnet.whispernode.com/nomic/account/${accountAddress}"}]},{"chainId":"nyx","explorers":[{"kind":"Nodes Guru explorer","url":"https://nym.explorers.guru/","tx_page":"https://nym.explorers.guru/transaction/${txHash}","account_page":"https://nym.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/nyx","tx_page":"https://staking-explorer.com/transaction.php?chain=nyx&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=nyx&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/nyx","tx_page":"https://ezstaking.app/nyx/txs/${txHash}","account_page":"https://ezstaking.app/nyx/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/nyx","tx_page":"https://www.mintscan.io/nyx/transactions/${txHash}","account_page":"https://www.mintscan.io/nyx/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/nyx","tx_page":"https://ping.pub/nyx/tx/${txHash}"}]},{"chainId":"octa","explorers":[{"kind":"Octa explorer","url":"http://explorer.octa-coin.com/","tx_page":"http://explorer.octa-coin.com/txs/${txHash}"}]},{"chainId":"odin-mainnet-freya","explorers":[{"kind":"Runa","url":"https://runa.odinprotocol.io/","tx_page":"https://runa.odinprotocol.io/transactions/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Odin-Mainnet","tx_page":"https://explorer.stavr.tech/Odin-Mainnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/odin","tx_page":"https://ping.pub/odin/tx/${txHash}"}]},{"chainId":"exchain-66","explorers":[{"kind":"OKLink","url":"https://www.oklink.com/en/okc","tx_page":"https://www.oklink.com/en/okc/tx/${txHash}","account_page":"https://www.oklink.com/en/okc/address/${accountAddress}"}]},{"chainId":"omniflixhub-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/omniflix","tx_page":"https://www.mintscan.io/omniflix/transactions/${txHash}","account_page":"https://www.mintscan.io/omniflix/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/omniflixhub","tx_page":"https://atomscan.com/omniflixhub/transactions/${txHash}","account_page":"https://atomscan.com/omniflixhub/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/omniflixhub","tx_page":"https://staking-explorer.com/transaction.php?chain=omniflixhub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=omniflixhub&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/omniflixhub","tx_page":"https://ezstaking.app/omniflixhub/txs/${txHash}","account_page":"https://ezstaking.app/omniflixhub/account/${accountAddress}"},{"kind":"STAKR.space explorer","url":"https://explorer.stakr.space/omniflix/","tx_page":"https://explorer.stakr.space/omniflix/tx/${txHash}","account_page":"https://explorer.stakr.space/omniflix/account/${accountAddress}"}]},{"chainId":"onex-mainnet-1","explorers":[{"kind":"Dexplorer - must enter rpc link provided above","url":"https://dexplorer.cakralabs.site","tx_page":"https://dexplorer.cakralabs.site/txs/${txHash}","account_page":"https://dexplorer.cakralabs.site/${accountAddress}"}]},{"chainId":"onomy-mainnet-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/onomy-protocol","tx_page":"https://www.mintscan.io/onomy-protocol/transactions/${txHash}","account_page":"https://www.mintscan.io/onomy-protocol/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/onomy","tx_page":"https://staking-explorer.com/transaction.php?chain=onomy&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=onomy&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/onomy","tx_page":"https://ezstaking.app/onomy/txs/${txHash}","account_page":"https://ezstaking.app/onomy/account/${accountAddress}"}]},{"chainId":"Oraichain","explorers":[{"kind":"oraiscan","url":"https://scan.orai.io","tx_page":"https://scan.orai.io/txs/${txHash}"},{"kind":"Nodine Explorer","url":"https://explorer.co.id/orai","tx_page":"https://explorer.co.id/orai/tx/${txHash}"},{"kind":"Blockval Explorer","url":"https://explorer.blockval.io/oraichain","tx_page":"https://explorer.blockval.io/oraichain/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/orai","tx_page":"https://atomscan.com/orai/transactions/${txHash}","account_page":"https://atomscan.com/orai/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/oraichain","tx_page":"https://staking-explorer.com/transaction.php?chain=oraichain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=oraichain&addr=${accountAddress}"},{"kind":"KonsorTech Explorer","url":"https://explorer.konsortech.xyz/oraichain","tx_page":"https://explorer.konsortech.xyz/oraichain/transactions/${txHash}","account_page":"https://explorer.konsortech.xyz/oraichain/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/Orai-Mainnet","tx_page":"https://explorer.stavr.tech/Orai-Mainnet/transactions/${txHash}","account_page":"https://explorer.stavr.tech/Orai-Mainnet/accounts/${accountAddress}"},{"kind":"imORAI ORAIchain Explorer","url":"https://explorer.imdev.app/oraichain","tx_page":"https://explorer.imdev.app/oraichain/tx/${txHash}","account_page":"https://explorer.imdev.app/oraichain/account/${accountAddress}"}]},{"chainId":"osmosis-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/osmosis","tx_page":"https://ezstaking.app/osmosis/txs/${txHash}","account_page":"https://ezstaking.app/osmosis/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/osmosis","tx_page":"https://www.mintscan.io/osmosis/transactions/${txHash}","account_page":"https://www.mintscan.io/osmosis/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/osmosis","tx_page":"https://ping.pub/osmosis/tx/${txHash}"},{"kind":"explorers.guru","url":"https://osmosis.explorers.guru","tx_page":"https://osmosis.explorers.guru/transaction/${txHash}","account_page":"https://osmosis.explorers.guru/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/osmosis","tx_page":"https://atomscan.com/osmosis/transactions/${txHash}","account_page":"https://atomscan.com/osmosis/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/osmosis","tx_page":"https://explorer.tcnetwork.io/osmosis/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/osmosis/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/osmosis","tx_page":"https://staking-explorer.com/transaction.php?chain=osmosis&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=osmosis&addr=${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/osmosis","account_page":"https://stakeflow.io/osmosis/accounts/${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/osmosis","tx_page":"https://exp.nodeist.net/osmosis/tx/${txHash}"},{"kind":"L0vd.com ❀️","url":"https://explorers.l0vd.com/osmosis-mainnet","tx_page":"https://explorers.l0vd.com/osmosis-mainnet/tx/${txHash}"},{"kind":"Chainscope","url":"https://chainsco.pe/osmosis","tx_page":"https://chainsco.pe/osmosis/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/osmosis","tx_page":"https://mainnet.whispernode.com/osmosis/tx/${txHash}","account_page":"https://mainnet.whispernode.com/osmosis/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/osmosis","tx_page":"https://explorer.chainroot.io/osmosis/transactions/${txHash}","account_page":"https://explorer.chainroot.io/osmosis/accounts/${accountAddress}"}]},{"chainId":"tumbler","explorers":[{"kind":"explorers.guru","url":"https://paloma.explorers.guru/","tx_page":"https://paloma.explorers.guru/transaction/${txHash}"}]},{"chainId":"panacea-3","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/medibloc","tx_page":"https://www.mintscan.io/medibloc/transactions/${txHash}","account_page":"https://www.mintscan.io/medibloc/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/panacea","tx_page":"https://staking-explorer.com/transaction.php?chain=panacea&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=panacea&addr=${accountAddress}"},{"kind":"bigdipper","url":"https://explorer.gopanacea.org","tx_page":"https://explorer.gopanacea.org/transactions/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/panacea","tx_page":"https://explorer.whenmoonwhenlambo.money/panacea/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/panacea/account/${accountAddress}"}]},{"chainId":"passage-2","explorers":[{"kind":"aneka","url":"https://passage.aneka.io","tx_page":"https://passage.aneka.io/txs/${txHash}","account_page":"https://passage.aneka.io/accounts/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/passage","tx_page":"https://www.mintscan.io/passage/transactions/${txHash}","account_page":"https://www.mintscan.io/passage/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/passage","tx_page":"https://ezstaking.app/passage/txs/${txHash}","account_page":"https://ezstaking.app/passage/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/passage","tx_page":"https://staking-explorer.com/transaction.php?chain=passage&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=passage&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/passage","tx_page":"https://atomscan.com/passage/transactions/${txHash}","account_page":"https://atomscan.com/passage/accounts/${accountAddress}"},{"kind":"cosmotracker","url":"https://cosmotracker.com/passage","tx_page":"https://cosmotracker.com/passage/tx/${txHash}","account_page":"https://cosmotracker.com/passage/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/passage","tx_page":"https://mainnet.whispernode.com/passage/tx/${txHash}","account_page":"https://mainnet.whispernode.com/passage/account/${accountAddress}"}]},{"chainId":"core-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/persistence","tx_page":"https://www.mintscan.io/persistence/transactions/${txHash}","account_page":"https://www.mintscan.io/persistence/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/persistence","tx_page":"https://ezstaking.app/persistence/txs/${txHash}","account_page":"https://ezstaking.app/persistence/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/persistence","tx_page":"https://ping.pub/persistence/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Persistence-Mainnet","tx_page":"https://explorer.stavr.tech/Persistence-Mainnet/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/persistence","tx_page":"https://staking-explorer.com/transaction.php?chain=persistence&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=persistence&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/persistence","tx_page":"https://atomscan.com/persistence/transactions/${txHash}","account_page":"https://atomscan.com/persistence/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/persistence","account_page":"https://stakeflow.io/persistence/accounts/${accountAddress}"}]},{"chainId":"planq_7070-2","explorers":[{"kind":"bigdipper","url":"https://explorer.planq.network","tx_page":"https://explorer.planq.network/transactions/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Planq-Mainnet","tx_page":"https://explorer.stavr.tech/Planq-Mainnet/tx/${txHash}"},{"kind":"blockscout","url":"https://evm.planq.network","tx_page":"https://evm.planq.network/tx/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/planq","tx_page":"https://explorer.nodestake.top/planq/tx/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/planq","tx_page":"https://explorer.tcnetwork.io/planq/transaction/${txHash}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/planq-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/planq-mainnet/transaction/${txHash}"},{"kind":"Kynraze","url":"https://explorer.kynraze.com/planq","tx_page":"https://explorer.kynraze.com/planq/tx/${txHash}"},{"kind":"THE EXPLORER","url":"https://explorer.sxlzptprjkt.xyz/planq","tx_page":"https://explorer.sxlzptprjkt.xyz/planq/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/planq","tx_page":"https://explorer.nodexcapital.com/planq/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/planq","tx_page":"https://atomscan.com/planq/transactions/${txHash}","account_page":"https://atomscan.com/planq/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/planq","tx_page":"https://staking-explorer.com/transaction.php?chain=planq&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=planq&addr=${accountAddress}"},{"kind":"Indonode","url":"https://explorer.indonode.net/planq","tx_page":"https://explorer.indonode.net/planq/tx/${txHash}"},{"kind":"Safe Block","url":"https://explorer.safeblock.space/planq","tx_page":"https://explorer.safeblock.space/planq/tx/${txHash}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/planq","tx_page":"https://explorer.konsortech.xyz/planq/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/planq","tx_page":"https://explorer.whenmoonwhenlambo.money/tx/${txHash}"}]},{"chainId":"point_10687-1","explorers":[{"kind":"blockscout","url":"https://explorer.pointnetwork.io/","tx_page":"https://explorer.pointnetwork.io/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Point-Mainnet","tx_page":"https://explorer.stavr.tech/Point-Mainnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://cosmos.pointnetwork.io/","tx_page":"https://cosmos.pointnetwork.io/point/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/point","tx_page":"https://explorer.nodexcapital.com/point/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/point","tx_page":"https://atomscan.com/point/transactions/${txHash}","account_page":"https://atomscan.com/point/accounts/${accountAddress}"}]},{"chainId":"pio-mainnet-1","explorers":[{"kind":"Provenance","url":"https://explorer.provenance.io","tx_page":"https://explorer.provenance.io/tx/${txHash}"},{"kind":"hubble","url":"https://hubble.figment.io/provenance/chains/pio-mainnet-1","tx_page":"https://hubble.figment.io/provenance/chains/pio-mainnet-1/${block}/transactions/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/provenance","tx_page":"https://ping.pub/provenance/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/provenance","tx_page":"https://www.mintscan.io/provenance/transactions/${txHash}","account_page":"https://www.mintscan.io/provenance/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Provenance","tx_page":"https://explorer.stavr.tech/Provenance/txs/${txHash}","account_page":"https://explorer.stavr.tech/Provenance/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/provenance","tx_page":"https://ezstaking.app/provenance/txs/${txHash}","account_page":"https://ezstaking.app/provenance/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/provenance","tx_page":"https://atomscan.com/provenance/transactions/${txHash}","account_page":"https://atomscan.com/provenance/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/provenance","tx_page":"https://staking-explorer.com/transaction.php?chain=provenance&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=provenance&addr=${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/provenance","tx_page":"https://explorer.whenmoonwhenlambo.money/provenance/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/provenance/account/${accountAddress}"},{"kind":"AVIAONE 🟒","url":"https://mainnet.explorer.aviaone.com/provenance","tx_page":"https://mainnet.explorer.aviaone.com/provenance/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/provenance/account/${accountAddress}"}]},{"chainId":"pryzm-1","explorers":[{"kind":"Chainscope","url":"https://chainsco.pe/pryzm","tx_page":"https://chainsco.pe/pryzm/tx/${txHash}","account_page":"https://chainsco.pe/pryzm/address/${accountAddress}","block_page":"https://chainsco.pe/pryzm/block/${blockHeight}","proposal_page":"https://chainsco.pe/pryzm/governance/proposal/${proposalId}","validator_page":"https://chainsco.pe/pryzm/validator/${validatorAddress}"},{"kind":"PingPub","url":"https://cosmosrun.info/pryzm","tx_page":"https://cosmosrun.info/pryzm/tx/${txHash}","account_page":"https://cosmosrun.info/pryzm/account/${accountAddress}","block_page":"https://cosmosrun.info/pryzm/blocks/${blockHeight}","proposal_page":"https://cosmosrun.info/pryzm/gov/${proposalId}","validator_page":"https://cosmosrun.info/pryzm/staking/${validatorAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/pryzm","tx_page":"https://staking-explorer.com/transaction.php?chain=pryzm&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=pryzm&addr=${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/pryzm","tx_page":"https://explorer.chainroot.io/pryzm/transactions/${txHash}","account_page":"https://explorer.chainroot.io/pryzm/accounts/${accountAddress}"}]},{"chainId":"PUNDIX","explorers":[{"kind":"starscan","url":"https://starscan.io","tx_page":"https://starscan.io/pundix/tx/${txHash}","account_page":"https://starscan.io/pundix/address/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/pundix/","tx_page":"https://explorer.nodeshub.online/pundix/tx/${txHash}","account_page":"https://explorer.nodeshub.online/pundix/accounts/${accountAddress}"}]},{"chainId":"pylons-mainnet-1","explorers":[{"kind":"Nodes.guru","url":"https://pylons.explorers.guru/","tx_page":"https://pylons.explorers.guru/transaction/${txHash}"}]},{"chainId":"qfs-1","explorers":[{"kind":"ping.pub","url":"https://blockexplorer.qfsone.com/qfs","tx_page":"https://blockexplorer.qfsone.com/qfs/tx/${txHash}","account_page":"https://blockexplorer.qfsone.com/qfs/accounts/${accountAddress}"}]},{"chainId":"quasar-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/quasar","tx_page":"https://www.mintscan.io/quasar/transactions/${txHash}","account_page":"https://www.mintscan.io/quasar/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/quasar","tx_page":"https://ezstaking.app/quasar/txs/${txHash}","account_page":"https://ezstaking.app/quasar/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/quasar","tx_page":"https://staking-explorer.com/transaction.php?chain=quasar&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=quasar&addr=${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/quasar","tx_page":"https://mainnet.whispernode.com/quasar/tx/${txHash}","account_page":"https://mainnet.whispernode.com/quasar/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/quasar","tx_page":"https://explorer.chainroot.io/quasar/transactions/${txHash}","account_page":"https://explorer.chainroot.io/quasar/accounts/${accountAddress}"}]},{"chainId":"quicksilver-2","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/quicksilver","tx_page":"https://www.mintscan.io/quicksilver/transactions/${txHash}","account_page":"https://www.mintscan.io/quicksilver/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/quicksilver","tx_page":"https://ezstaking.app/quicksilver/txs/${txHash}","account_page":"https://ezstaking.app/quicksilver/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/quicksilver","tx_page":"https://staking-explorer.com/transaction.php?chain=quicksilver&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=quicksilver&addr=${accountAddress}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀 explorer","url":"https://exp.utsa.tech/quicksilver","tx_page":"https://exp.utsa.tech/quicksilver/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ explorer","url":"https://explorer.stavr.tech/quicksilver-mainnet","tx_page":"https://explorer.stavr.tech/quicksilver-mainnet/tx/${txHash}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/quicksilver","tx_page":"https://explorer.stake-take.com/quicksilver/tx/${txHash}"},{"kind":"AM Solutions Explorers","url":"https://explorer.theamsolutions.info/quicksilver-main/staking","tx_page":"https://explorer.theamsolutions.info/quicksilver-main/tx/${txHash}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/quicksilver/staking","tx_page":"https://explorer.konsortech.xyz/quicksilver/tx/${txHash}"}]},{"chainId":"qwoyn-1","explorers":[{"kind":"ping","url":"https://explorer.theamsolutions.info/qwoyn-main/","tx_page":"https://explorer.theamsolutions.info/qwoyn-main/blocks","account_page":"https://explorer.theamsolutions.info/qwoyn-main/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/qwoyn","tx_page":"https://staking-explorer.com/transaction.php?chain=qwoyn&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=qwoyn&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Qwoyn-Mainnet","tx_page":"https://explorer.stavr.tech/Qwoyn-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Qwoyn-Mainnet/account/${accountAddress}"},{"kind":"ping","url":"https://explorer.theamsolutions.info/QWOYN-MAIN","tx_page":"https://explorer.theamsolutions.info/QWOYN-MAIN/tx/${txHash}","account_page":"https://explorer.theamsolutions.info/QWOYN-MAIN/account/${accountAddress}"}]},{"chainId":"realionetwork_3301-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/realio-mainnet","tx_page":"https://explorer.stavr.tech/realio-mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/realio-mainnet/account/{$accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/realio","tx_page":"https://explorer.nodestake.top/realio/tx/${txHash}","account_page":"https://explorer.nodestake.top/realio/account/{$accountAddress}"},{"kind":"Sr20de Explorer","url":"https://explorer.sr20de.xyz/Realio","tx_page":"https://explorer.sr20de.xyz/Realio/tx/${txHash}","account_page":"https://explorer.sr20de.xyz/Realio/account/{$accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/realio","tx_page":"https://explorer.tcnetwork.io/realio/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/realio/account/${accountAddress}"},{"kind":"Safe Block","url":"https://explorer.safeblock.space/realio","tx_page":"https://explorer.safeblock.space/realio/tx/${txHash}","account_page":"https://explorer.safeblock.space/realio/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/realio","tx_page":"https://explorer.declab.pro/realio/tx/${txHash}","account_page":"https://explorer.declab.pro/realio/account/{$accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/realio","tx_page":"https://explorer.whenmoonwhenlambo.money/realio/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/realio/account/${accountAddress}"}]},{"chainId":"reb_1111-1","explorers":[{"kind":"explorers.guru","url":"https://rebus.explorers.guru","tx_page":"https://rebus.explorers.guru/transaction/${txHash}"},{"kind":"NodeStake","url":"https://explorer.nodestake.top/rebus","tx_page":"https://explorer.nodestake.top/rebus/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/rebus","tx_page":"https://staking-explorer.com/transaction.php?chain=rebus&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=rebus&addr=${accountAddress}"},{"kind":"BccNodes","url":"https://explorer.bccnodes.com/rebus-M","tx_page":"https://explorer.bccnodes.com/rebus-M/tx/${txHash}"},{"kind":"Brochain","url":"https://explorer.brocha.in/rebus","tx_page":"https://explorer.brocha.in/rebus/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/rebus","tx_page":"https://explorer.stavr.tech/rebus/tx/${txHash}"},{"kind":"tcnetwork","url":"https://rebus.tcnetwork.io","tx_page":"https://rebus.tcnetwork.io/transaction/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/rebus","tx_page":"https://atomscan.com/rebus/transactions/${txHash}","account_page":"https://atomscan.com/rebus/accounts/${accountAddress}"}]},{"chainId":"regen-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/regen","tx_page":"https://ezstaking.app/regen/txs/${txHash}","account_page":"https://ezstaking.app/regen/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/regen","tx_page":"https://staking-explorer.com/transaction.php?chain=regen&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=regen&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Regen-Mainnet","tx_page":"https://explorer.stavr.tech/Regen-Mainnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/regen","tx_page":"https://ping.pub/regen/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/regen-network","tx_page":"https://atomscan.com/regen-network/transactions/${txHash}","account_page":"https://atomscan.com/regen-network/accounts/${accountAddress}"}]},{"chainId":"titan-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/rizon","tx_page":"https://ezstaking.app/rizon/txs/${txHash}","account_page":"https://ezstaking.app/rizon/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/rizon","tx_page":"https://www.mintscan.io/rizon/transactions/${txHash}","account_page":"https://www.mintscan.io/rizon/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/rizon","tx_page":"https://ping.pub/rizon/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/rizon","tx_page":"https://staking-explorer.com/transaction.php?chain=rizon&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=rizon&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/rizon","tx_page":"https://atomscan.com/rizon/transactions/${txHash}","account_page":"https://atomscan.com/rizon/accounts/${accountAddress}"},{"kind":"bigdipper","url":"https://bigdipper.live/rizon","tx_page":"https://bigdipper.live/rizon/transactions/${txHash}","account_page":"https://bigdipper.live/rizon/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Rizon","tx_page":"https://explorer.stavr.tech/Rizon/tx/${txHash}","account_page":"https://explorer.stavr.tech/Rizon/accounts/${accountAddress}"}]},{"chainId":"30","explorers":[{"kind":"Rootstock Explorer","url":"https://explorer.rootstock.io/","tx_page":"https://explorer.rootstock.io/tx/${txHash}"}]},{"chainId":"router_9600-1","explorers":[{"kind":"Routerscan","url":"https://routerscan.io/","tx_page":"https://routerscan.io/transactions/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/router","tx_page":"https://explorer.nodestake.org/router/tx/${txHash}"},{"kind":"Router Explorer","url":"https://router.explorers.guru/","tx_page":"https://router.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/routerchain","tx_page":"https://staking-explorer.com/transaction.php?chain=routerchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=routerchain&addr=${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/router/","tx_page":"https://explorer.nodeshub.online/router/tx/${txHash}","account_page":"https://explorer.nodeshub.online/router/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/routerchain","tx_page":"https://explorer.whenmoonwhenlambo.money/routerchain/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/routerchain/account/${accountAddress}"}]},{"chainId":"ssc-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/saga","tx_page":"https://www.mintscan.io/saga/transactions/${txHash}","account_page":"https://www.mintscan.io/saga/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/saga","tx_page":"https://staking-explorer.com/transaction.php?chain=saga&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=saga&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/saga","tx_page":"https://ezstaking.app/saga/txs/${txHash}","account_page":"https://ezstaking.app/saga/account/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/saga","tx_page":"https://explorer.nodestake.org/saga/tx/${txHash}","account_page":"https://explorer.nodestake.org/saga/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/saga","tx_page":"https://explorer.chainroot.io/saga/transactions/${txHash}","account_page":"https://explorer.chainroot.io/saga/accounts/${accountAddress}"}]},{"chainId":"scorum-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/scorum","tx_page":"https://ezstaking.app/scorum/txs/${txHash}","account_page":"https://ezstaking.app/scorum/account/${accountAddress}"},{"kind":"bigdipper","url":"https://cosmos.scorum.com/scorum","tx_page":"https://cosmos.scorum.com/scorum/transactions/${txHash}","account_page":"https://cosmos.scorum.com/scorum/accounts/${accountAddress}"}]},{"chainId":"secret-4","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/secretnetwork","tx_page":"https://ezstaking.app/secretnetwork/txs/${txHash}","account_page":"https://ezstaking.app/secretnetwork/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/secret","tx_page":"https://ping.pub/secret/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/secret","tx_page":"https://www.mintscan.io/secret/transactions/${txHash}","account_page":"https://www.mintscan.io/secret/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/secret-network","tx_page":"https://atomscan.com/secret-network/transactions/${txHash}","account_page":"https://atomscan.com/secret-network/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/secretnetwork","tx_page":"https://staking-explorer.com/transaction.php?chain=secretnetwork&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=secretnetwork&addr=${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/secret","tx_page":"https://mainnet.whispernode.com/secret/tx/${txHash}","account_page":"https://mainnet.whispernode.com/secret/account/${accountAddress}"}]},{"chainId":"seda-1","explorers":[{"kind":"sedaexplorer","url":"https://explorer.seda.xyz/","tx_page":"https://explorer.seda.xyz/txs/${txHash}","account_page":"https://explorer.seda.xyz/account/${accountAddress}"},{"kind":"explorers.guru","url":"https://seda.explorers.guru","tx_page":"https://seda.explorers.guru/transaction/${txHash}","account_page":"https://seda.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/seda","tx_page":"https://staking-explorer.com/transaction.php?chain=seda&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=seda&addr=${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/seda","tx_page":"https://mainnet.whispernode.com/seda/tx/${txHash}","account_page":"https://mainnet.whispernode.com/seda/account/${accountAddress}"},{"kind":"Apple juice πŸ§ƒ","url":"https://explorer.256x25.tech/seda-mainnet","tx_page":"https://explorer.256x25.tech/seda-mainnet/tx/${txHash}","account_page":"https://explorer.256x25.tech/seda-mainnet/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/seda","tx_page":"https://explorer.whenmoonwhenlambo.money/seda/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/seda/account/${accountAddress}"}]},{"chainId":"pacific-1","explorers":[{"kind":"blockscout","url":"https://seitrace.com","tx_page":"https://seitrace.com/tx/${txHash}?chain=pacific-1","account_page":"https://seitrace.com/address/${accountAddress}?chain=pacific-1"},{"kind":"mintscan","url":"https://www.mintscan.io/sei","tx_page":"https://www.mintscan.io/sei/transactions/${txHash}","account_page":"https://www.mintscan.io/sei/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/sei","tx_page":"https://ezstaking.app/sei/txs/${txHash}","account_page":"https://ezstaking.app/sei/account/${accountAddress}"},{"kind":"celatone","url":"https://www.seiscan.app/pacific-1","tx_page":"https://www.seiscan.app/pacific-1/txs/${txHash}","account_page":"https://www.seiscan.app/pacific-1/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sei","tx_page":"https://staking-explorer.com/transaction.php?chain=sei&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sei&addr=${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/sei","tx_page":"https://mainnet.whispernode.com/sei/tx/${txHash}","account_page":"https://mainnet.whispernode.com/sei/account/${accountAddress}"}]},{"chainId":"self-1","explorers":[{"kind":"Self Chain","url":"https://explorer.selfchain.xyz/selfchain","tx_page":"https://explorer.selfchain.xyz/selfchain/tx/${txHash}","account_page":"https://explorer.selfchain.xyz/selfchain/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/self","tx_page":"https://staking-explorer.com/transaction.php?chain=self&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=self&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Selfchain-Mainnet","tx_page":"https://explorer.stavr.tech/Selfchain-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Selfchain-Mainnet/account/${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/selfchain-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/selfchain-mainnet/tx/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/selfchain-mainnet/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/self","tx_page":"https://explorer.whenmoonwhenlambo.money/self/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/self/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/selfchain/","tx_page":"https://explorer.nodeshub.online/selfchain/tx/${txHash}","account_page":"https://explorer.nodeshub.online/selfchain/accounts/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/selfchain-mainnet","tx_page":"https://exp.stakevillage.net/selfchain-mainnet/tx/${txHash}","account_page":"https://exp.stakevillage.net/selfchain-mainnet/accounts/${accountAddress}"}]},{"chainId":"sentinelhub-2","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/sentinel","tx_page":"https://www.mintscan.io/sentinel/transactions/${txHash}","account_page":"https://www.mintscan.io/sentinel/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/sentinel","tx_page":"https://ezstaking.app/sentinel/txs/${txHash}","account_page":"https://ezstaking.app/sentinel/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/sentinel","tx_page":"https://atomscan.com/sentinel/transactions/${txHash}","account_page":"https://atomscan.com/sentinel/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sentinel","tx_page":"https://staking-explorer.com/transaction.php?chain=sentinel&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sentinel&addr=${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/sentinel-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/sentinel-mainnet/transactions/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/sentinel-mainnet/accounts/${accountAddress}"},{"kind":"ValidatorNode","url":"https://explorer.validatornode.com/sentinel","tx_page":"https://explorer.validatornode.com/sentinel/tx/${txHash}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Sentinel","tx_page":"https://explorer.declab.pro/Sentinel/tx/${txHash}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/sentinel/","tx_page":"https://explorer.nodeshub.online/sentinel/tx/${txHash}","account_page":"https://explorer.nodeshub.online/sentinel/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/sentinel","tx_page":"https://mainnet.whispernode.com/sentinel/tx/${txHash}","account_page":"https://mainnet.whispernode.com/sentinel/account/${accountAddress}"}]},{"chainId":"sgenet-1","explorers":[{"kind":"ping.pub","url":"https://blockexplorer.sgenetwork.io/sge","tx_page":"https://blockexplorer.sgenetwork.io/sge/tx/${txHash}"},{"kind":"nodestake.top","url":"https://explorer.nodestake.top/sge","tx_page":"https://explorer.nodestake.top/sge/tx/${txHash}"},{"kind":"stakerhouse","url":"https://cosmotracker.com/sge","tx_page":"https://cosmotracker.com/sge/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Sge-Mainnet","tx_page":"https://explorer.stavr.tech/Sge-Mainnet/transaction/${txHash}","account_page":"https://explorer.stavr.tech/Sge-Mainnet/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/sge","tx_page":"https://explorer.tcnetwork.io/sge/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/sge/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sge","tx_page":"https://staking-explorer.com/transaction.php?chain=sge&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sge&addr=${accountAddress}"},{"kind":"Safe Block","url":"https://explorer.safeblock.space/sge","tx_page":"https://explorer.safeblock.space/sge/tx/${txHash}","account_page":"https://explorer.safeblock.space/sge/account/${accountAddress}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/sge","tx_page":"https://explorer.konsortech.xyz/sge/tx/${txHash}","account_page":"https://explorer.konsortech.xyz/sge/account/${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/sge-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/sge-mainnet/tx/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/sge-mainnet/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/sge","tx_page":"https://explorer.whenmoonwhenlambo.money/sge/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/sge/account/${accountAddress}"}]},{"chainId":"ShareRing-VoyagerNet","explorers":[{"kind":"big dipper","url":"https://explorer.shareri.ng","tx_page":"https://explorer.shareri.ng/transactions/${txHash}","account_page":"https://explorer.shareri.ng/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/shareledger","tx_page":"https://staking-explorer.com/transaction.php?chain=shareledger&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=shareledger&addr=${accountAddress}"}]},{"chainId":"shentu-2.2","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/shentu","tx_page":"https://ezstaking.app/shentu/txs/${txHash}","account_page":"https://ezstaking.app/shentu/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Shentu-Mainnet","tx_page":"https://explorer.stavr.tech/Shentu-Mainnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/Shentu-Mainnet/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/shentu","tx_page":"https://www.mintscan.io/shentu/transactions/${txHash}","account_page":"https://www.mintscan.io/shentu/accounts/${accountAddress}"},{"kind":"Shentu Explorer","url":"https://explorer.shentu.org/?chain=shentu-2.2","tx_page":"https://explorer.shentu.org/transactions/${txHash}?chain=shentu-2.2"},{"kind":"ping.pub","url":"https://ping.pub/shentu","tx_page":"https://ping.pub/shentu/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/shentu","tx_page":"https://atomscan.com/shentu/transactions/${txHash}","account_page":"https://atomscan.com/shentu/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/shentu","tx_page":"https://staking-explorer.com/transaction.php?chain=shentu&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=shentu&addr=${accountAddress}"},{"kind":"bigdipper","url":"https://bigdipper.live/shentu","tx_page":"https://bigdipper.live/shentu/transactions/${txHash}","account_page":"https://bigdipper.live/shentu/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/shentu","account_page":"https://stakeflow.io/shentu/accounts/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/shentu","tx_page":"https://explorer.chainroot.io/shentu/transactions/${txHash}","account_page":"https://explorer.chainroot.io/shentu/accounts/${accountAddress}"}]},{"chainId":"shido_9008-1","explorers":[{"kind":"shido","url":"https://shidoscan.com","tx_page":"https://shidoscan.com/tx/${txHash}","account_page":"https://shidoscan.com/address/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/shido","tx_page":"https://explorer.whenmoonwhenlambo.money/shido/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/shido/account/${accountAddress}"},{"kind":"256x25","url":"https://explorer.256x25.tech/shido","tx_page":"https://explorer.256x25.tech/shido/tx/${txHash}","account_page":"https://explorer.256x25.tech//shido/account/${accountAddress}"},{"kind":"MavNode","url":"https://explorer.mavnode.io/shido","tx_page":"https://explorer.mavnode.io/shido/tx/${txHash}","account_page":"https://explorer.mavnode.io/shido/account/${accountAddress}"},{"kind":"Indonode","url":"https://explorer.indonode.net/shido","tx_page":"https://explorer.indonode.net/shido/tx/${txHash}","account_page":"https://explorer.indonode.net/shido/account/${accountAddress}"}]},{"chainId":"sifchain-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/sifchain","tx_page":"https://ping.pub/sifchain/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/sifchain","tx_page":"https://atomscan.com/sifchain/transactions/${txHash}","account_page":"https://atomscan.com/sifchain/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sifchain","tx_page":"https://staking-explorer.com/transaction.php?chain=sifchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sifchain&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Sifchain","tx_page":"https://explorer.stavr.tech/Sifchain/tx/${txHash}","account_page":"https://explorer.stavr.tech/Sifchain/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/sifchain","tx_page":"https://explorer.whenmoonwhenlambo.money/sifchain/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/sifchain/account/${accountAddress}"}]},{"chainId":"sixnet","explorers":[{"kind":"sixscan","url":"https://sixscan.io/sixnet","tx_page":"https://sixscan.io/sixnet/tx/${txHash}"}]},{"explorers":[{"kind":"Solana Explorer","url":"https://explorer.solana.com/","tx_page":"https://explorer.solana.com/tx/${txHash}"}]},{"chainId":"sommelier-3","explorers":[{"kind":"sommscan","url":"https://sommscan.io","tx_page":"https://sommscan.io"},{"kind":"mintscan","url":"https://www.mintscan.io/sommelier","tx_page":"https://www.mintscan.io/sommelier/transactions/${txHash}","account_page":"https://www.mintscan.io/sommelier/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/sommelier","tx_page":"https://ezstaking.app/sommelier/txs/${txHash}","account_page":"https://ezstaking.app/sommelier/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sommelier","tx_page":"https://staking-explorer.com/transaction.php?chain=sommelier&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sommelier&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Sommelier-Mainnet","tx_page":"https://explorer.stavr.tech/Sommelier-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Sommelier-Mainnet/account/${accountAddress}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/sommelier","tx_page":"https://explorer.nodexcapital.com/sommelier/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/sommelier/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/sommelier","tx_page":"https://atomscan.com/sommelier/transactions/${txHash}","account_page":"https://atomscan.com/sommelier/accounts/${accountAddress}"}]},{"chainId":"source-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Source-Mainnet/","tx_page":"https://explorer.stavr.tech/Source-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Source-Mainnet/accounts/${accountAddress}"},{"kind":"Nodeist","url":"https://exp.nodeist.net/source/","tx_page":"https://exp.nodeist.net/source/tx/${txHash}","account_page":"https://exp.nodeist.net/source/accounts/${accountAddress}"},{"kind":"MoonBridge","url":"https://explorer.moonbridge.team/source","tx_page":"https://explorer.moonbridge.team/source/tx/${txHash}","account_page":"https://explorer.moonbridge.team/source/accounts/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.top/source","tx_page":"https://explorer.nodestake.top/source/tx/${txHash}","account_page":"https://explorer.nodestake.top/source/accounts/${accountAddress}"},{"kind":"Sr20de","url":"https://explorer.sr20de.xyz/Source-mainnet","tx_page":"https://explorer.sr20de.xyz/Source-mainnet/tx/${txHash}","account_page":"https://explorer.sr20de.xyz/Source-mainnet/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/source","tx_page":"https://explorer.tcnetwork.io/source/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/source","tx_page":"https://staking-explorer.com/transaction.php?chain=source&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=source&addr=${accountAddress}"},{"kind":"Indonode","url":"https://explorer.indonode.net/source","tx_page":"https://explorer.indonode.net/source/tx/${txHash}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/source-mainnet/","tx_page":"https://explorer.tendermint.roomit.xyz/source-mainnet/tx/${txHash}"},{"kind":"posthuman","url":"https://explorer.posthuman.digital/source","tx_page":"https://explorer.posthuman.digital/source/tx/${txHash}","account_page":"https://explorer.posthuman.digital/source/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Source","tx_page":"https://explorer.declab.pro/Source/tx/${txHash}","account_page":"https://explorer.declab.pro/Source/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/source","tx_page":"https://explorer.whenmoonwhenlambo.money/source/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/source/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/source/","tx_page":"https://explorer.nodeshub.online/source/tx/${txHash}","account_page":"https://explorer.nodeshub.online/source/accounts/${accountAddress}"}]},{"chainId":"stafihub-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/stafi","tx_page":"https://www.mintscan.io/stafi/transactions/${txHash}","account_page":"https://www.mintscan.io/stafi/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/stafihub","tx_page":"https://ezstaking.app/stafihub/txs/${txHash}","account_page":"https://ezstaking.app/stafihub/account/${accountAddress}"},{"kind":"ping-pub","url":"https://ping.pub/stafihub","tx_page":"https://ping.pub/stafihub/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/stafihub","tx_page":"https://staking-explorer.com/transaction.php?chain=stafihub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=stafihub&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/stafihub","tx_page":"https://atomscan.com/stafihub/transactions/${txHash}","account_page":"https://atomscan.com/stafihub/accounts/${accountAddress}"}]},{"chainId":"stargaze-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/stargaze","tx_page":"https://ezstaking.app/stargaze/txs/${txHash}","account_page":"https://ezstaking.app/stargaze/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/stargaze/","tx_page":"https://www.mintscan.io/stargaze/transactions/${txHash}","account_page":"https://www.mintscan.io/stargaze/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/stargaze","tx_page":"https://ping.pub/stargaze/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/stargaze","tx_page":"https://staking-explorer.com/transaction.php?chain=stargaze&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=stargaze&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/stargaze","tx_page":"https://atomscan.com/stargaze/transactions/${txHash}","account_page":"https://atomscan.com/stargaze/accounts/${accountAddress}"},{"kind":"Starscan","url":"https://starscan.net/","tx_page":"https://starscan.net/stargaze-1/tx/${txHash}","account_page":"https://starscan.net/stargaze-1/address/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/stargaze","tx_page":"https://mainnet.whispernode.com/stargaze/tx/${txHash}","account_page":"https://mainnet.whispernode.com/stargaze/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/stargaze","tx_page":"https://explorer.chainroot.io/stargaze/transactions/${txHash}","account_page":"https://explorer.chainroot.io/stargaze/accounts/${accountAddress}"}]},{"chainId":"iov-mainnet-ibc","explorers":[{"kind":"ping.pub","url":"https://ping.pub/starname","tx_page":"https://ping.pub/starname/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/starname","tx_page":"https://atomscan.com/starname/transactions/${txHash}","account_page":"https://atomscan.com/starname/accounts/${accountAddress}"}]},{"chainId":"stratos-1","explorers":[{"kind":"bigdipper","url":"https://explorer.thestratos.org","tx_page":"https://explorer.thestratos.org/transactions/${txHash}","account_page":"https://explorer.thestratos.org/accounts/${accountAddress}"},{"kind":"blockscout","url":"https://web3-explorer.thestratos.org","tx_page":"https://web3-explorer.thestratos.org/tx/${txHash}","account_page":"https://web3-explorer.thestratos.org/address/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.top/stratos","tx_page":"https://explorer.nodestake.top/stratos/tx/${txHash}","account_page":"https://explorer.nodestake.top/stratos/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/stratos","tx_page":"https://staking-explorer.com/transaction.php?chain=stratos&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=stratos&addr=${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/stratos","tx_page":"https://explorer.tcnetwork.io/stratos/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/stratos/account/${accountAddress}"}]},{"chainId":"stride-1","explorers":[{"kind":"BccNodes","url":"https://explorer.bccnodes.com/stride-M","tx_page":"https://explorer.bccnodes.com/stride-M/tx/${txHash}","account_page":"https://explorer.bccnodes.com/stride-M/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/stride","tx_page":"https://ezstaking.app/stride/txs/${txHash}","account_page":"https://ezstaking.app/stride/account/${accountAddress}"},{"kind":"Apollo","url":"https://apollo.chandrastation.com/stride","tx_page":"https://apollo.chandrastation.com/stride/tx/${txHash}","account_page":"https://apollo.chandrastation.com/stride/account/${accountAddress}"},{"kind":"Stride Ping Pub","url":"https://explorer.stride.zone/stride","tx_page":"https://explorer.stride.zone/stride/tx/${txHash}","account_page":"https://explorer.stride.zone/stride/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/stride","tx_page":"https://explorer.stavr.tech/stride/tx/${txHash}","account_page":"https://explorer.stavr.tech/stride/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/stride","tx_page":"https://www.mintscan.io/stride/transactions/${txHash}","account_page":"https://www.mintscan.io/stride/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/stride","tx_page":"https://atomscan.com/stride/transactions/${txHash}","account_page":"https://atomscan.com/stride/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/stride","tx_page":"https://staking-explorer.com/transaction.php?chain=stride&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=stride&addr=${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/stride","account_page":"https://stakeflow.io/stride/accounts/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/stride","tx_page":"https://explorer.stake-take.com/stride/tx/${txHash}","account_page":"https://explorer.stake-take.com/stride/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/stride","tx_page":"https://mainnet.whispernode.com/stride/tx/${txHash}","account_page":"https://mainnet.whispernode.com/stride/account/${accountAddress}"}]},{"chainId":"sunrise-1","explorers":[]},{"chainId":"synternet-1","explorers":[{"kind":"Big Dipper","url":"https://explorer.synternet.com/","tx_page":"https://explorer.synternet.com/transactions/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/synternet","tx_page":"https://staking-explorer.com/transaction.php?chain=synternet&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=synternet&addr=${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/synternet","tx_page":"https://explorer.whenmoonwhenlambo.money/synternet/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/synternet/account/${accountAddress}"}]},{"chainId":"taketitan-12","explorers":[{"kind":"ping.pub","url":"https://scan.taketitan.com/taketitan","tx_page":"https://scan.taketitan.com/taketitan/tx/${txHash}","account_page":"https://scan.taketitan.com/taketitan/accounts/${accountAddress}"}]},{"chainId":"tenet_1559-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/tenet","tx_page":"https://ping.pub/tenet/tx/${txHash}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/Tenet","tx_page":"https://exp.nodeist.net/Tenet/tx/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/tenet","tx_page":"https://explorer.tcnetwork.io/tenet/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/tenet/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/tenet","tx_page":"https://staking-explorer.com/transaction.php?chain=tenet&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=tenet&addr=${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/tenet","tx_page":"https://explorer.whenmoonwhenlambo.money/tenet/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/tenet/account/${accountAddress}"}]},{"chainId":"teritori-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/teritori","tx_page":"https://ezstaking.app/teritori/txs/${txHash}","account_page":"https://ezstaking.app/teritori/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.teritori.com/teritori","tx_page":"https://explorer.teritori.com/teritori/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/teritori-main","tx_page":"https://explorer.stavr.tech/teritori-main/tx/${txHash}"},{"kind":"guru","url":"https://teritori.explorers.guru/","tx_page":"https://teritori.explorers.guru/transaction/${txHash}"},{"kind":"Brochain","url":"https://explorer.brocha.in/teritori","tx_page":"https://explorer.brocha.in/teritori/tx/${txHash}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀","url":"https://exp.utsa.tech/teritori","tx_page":"https://exp.utsa.tech/teritori/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/teritori","tx_page":"https://www.mintscan.io/teritori/transactions/${txHash}","account_page":"https://www.mintscan.io/teritori/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/teritori","tx_page":"https://explorer.tcnetwork.io/teritori/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/teritori","tx_page":"https://staking-explorer.com/transaction.php?chain=teritori&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=teritori&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/teritori","tx_page":"https://atomscan.com/teritori/transactions/${txHash}","account_page":"https://atomscan.com/teritori/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/teritori","tx_page":"https://explorer.whenmoonwhenlambo.money/teritori/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/teritori/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/teritori","tx_page":"https://explorer.chainroot.io/teritori/transactions/${txHash}","account_page":"https://explorer.chainroot.io/teritori/accounts/${accountAddress}"}]},{"chainId":"morocco-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/terp","tx_page":"https://ping.pub/terp/tx/${txHash}","account_page":"https://ping.pub/terp/account/{$accountAddress}"},{"kind":"ping.pub","url":"https://explorer.nodestake.top","tx_page":"https://explorer.nodestake.top/terp/tx/${txHash}","account_page":"https://explorer.nodestake.top/terp/account/{$accountAddress}"},{"kind":"ZenChainLabs","url":"https://terp.zenscan.io/","tx_page":"https://terp.zenscan.io/transaction.php?hash=${txHash}","account_page":"https://terp.zenscan.io/address.php?address=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Terp-Mainnet","tx_page":"https://explorer.stavr.tech/Terp-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Terp-Mainnet/account/{$accountAddress}"}]},{"chainId":"columbus-5","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/terra","tx_page":"https://ezstaking.app/terra/txs/${txHash}","account_page":"https://ezstaking.app/terra/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/terra-luna","tx_page":"https://ping.pub/terra-luna/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/terra","tx_page":"https://atomscan.com/terra/transactions/${txHash}","account_page":"https://atomscan.com/terra/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/terra","tx_page":"https://staking-explorer.com/transaction.php?chain=terra&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=terra&addr=${accountAddress}"},{"kind":"finder","url":"https://finder.terra.money/classic","tx_page":"https://finder.terra.money/classic/tx/${txHash}","account_page":"https://finder.terra.money/classic/address/${accountAddress}"},{"kind":"finder","url":"https://finder.terrarebels.net/classic","tx_page":"https://finder.terrarebels.net/classic/tx/${txHash}","account_page":"https://finder.terrarebels.net/classic/address/${accountAddress}"}]},{"chainId":"phoenix-1","explorers":[{"kind":"atomscan","url":"https://atomscan.com/terra2","tx_page":"https://atomscan.com/terra2/transactions/${txHash}","account_page":"https://atomscan.com/terra2/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/terra2","tx_page":"https://staking-explorer.com/transaction.php?chain=terra2&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=terra2&addr=${accountAddress}"},{"kind":"finder","url":"http://finder.terra.money/","tx_page":"https://finder.terra.money/mainnet/tx/${txHash}","account_page":"https://finder.terra.money/mainnet/address/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/terra","account_page":"https://stakeflow.io/terra/accounts/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/terra","tx_page":"https://www.mintscan.io/terra/transactions/${txHash}","account_page":"https://www.mintscan.io/terra/accounts/${accountAddress}"}]},{"chainId":"tgrade-mainnet-1","explorers":[{"kind":"aneka","url":"https://tgrade.aneka.io","tx_page":"https://tgrade.aneka.io/txs/${txHash}","account_page":"https://tgrade.aneka.io/accounts/${accountAddress}"}]},{"chainId":"thorchain-1","explorers":[{"kind":"THORChain explorer","url":"https://thorchain.net","tx_page":"https://thorchain.net/#/txs/${txHash}"},{"kind":"viewblock","url":"https://viewblock.io/thorchain","tx_page":"https://viewblock.io/thorchain/tx/${txHash}"}]},{"chainId":"titan_18888-1","explorers":[{"kind":"ping.pub","url":"https://tkxscan.io","tx_page":"https://tkxscan.io/Titan/tx/${txHash}","account_page":"https://tkxscan.io/Titan/account/${accountAddress}"}]},{"explorers":[{"kind":"Tonscan","url":"https://tonscan.org/","tx_page":"https://tonscan.org/tx/${txHash}"}]},{"explorers":[{"kind":"TRONSCAN","url":"https://tronscan.org/","tx_page":"https://tronscan.org/#/transaction//${txHash}"}]},{"chainId":"umee-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/umee/","tx_page":"https://www.mintscan.io/umee/transactions/${txHash}","account_page":"https://www.mintscan.io/umee/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/umee","tx_page":"https://ping.pub/umee/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/umee","tx_page":"https://explorer.stavr.tech/umee/tx/${txHash}"},{"kind":"explorers.guru","url":"https://umee.explorers.guru","tx_page":"https://umee.explorers.guru/transaction/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/umee","tx_page":"https://atomscan.com/umee/transactions/${txHash}","account_page":"https://atomscan.com/umee/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/umee","tx_page":"https://staking-explorer.com/transaction.php?chain=umee&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=umee&addr=${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/umee","account_page":"https://stakeflow.io/umee/accounts/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/umee","tx_page":"https://explorer.stake-take.com/umee/transactions/${txHash}","account_page":"https://explorer.stake-take.com/umee/account/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/umee","tx_page":"https://exp.stakevillage.net/umee/tx/${txHash}","account_page":"https://exp.stakevillage.net/umee/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/umee","tx_page":"https://ezstaking.app/umee/txs/${txHash}","account_page":"https://ezstaking.app/umee/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/umee","tx_page":"https://explorer.whenmoonwhenlambo.money/umee/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/umee/account/${accountAddress}"}]},{"chainId":"unicorn-420"},{"chainId":"FUND-MainNet-2","explorers":[{"kind":"ping.pub","url":"https://explorer.unification.io/u","tx_page":"https://explorer.unification.io/u/tx/${txHash}","account_page":"https://explorer.unification.io/u/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.unification.chainmasters.ninja/unification","tx_page":"https://explorer.unification.chainmasters.ninja/unification/tx/${txHash}","account_page":"https://explorer.unification.chainmasters.ninja/Unification/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/unification","tx_page":"https://staking-explorer.com/transaction.php?chain=unification&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=unification&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/unification","tx_page":"https://atomscan.com/unification/transactions/${txHash}","account_page":"https://atomscan.com/unification/accounts/${accountAddress}"}]},{"chainId":"ununifi-beta-v1","explorers":[{"kind":"UnUniFi Explorer","url":"https://ununifi.io/explorer","tx_page":"https://ununifi.io/explorer/txs/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/ununifi","tx_page":"https://explorer.nodestake.top/ununifi/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/ununifi","tx_page":"https://staking-explorer.com/transaction.php?chain=ununifi&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=ununifi&addr=${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/Ununifi","tx_page":"https://exp.nodeist.net/Ununifi/tx/${txHash}"}]},{"chainId":"uptick_117-1","explorers":[{"kind":"ping.pub","url":"https://explorers.brocha.in/uptick","tx_page":"https://explorers.brocha.in/uptick/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/uptick","tx_page":"https://staking-explorer.com/transaction.php?chain=uptick&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=uptick&addr=${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/uptick","tx_page":"https://explorer.nodestake.top/uptick/tx/${txHash}"},{"kind":"BccNodes Explorer","url":"https://explorer.bccnodes.com/uptick-M","tx_page":"https://explorer.bccnodes.com/uptick-M/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/uptick-mainnet","tx_page":"https://explorer.stavr.tech/uptick-mainnet/tx/${txHash}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀 Explorer","url":"https://exp.utsa.tech/uptick","tx_page":"https://exp.utsa.tech/uptick/tx/${txHash}"},{"kind":"cosmotracker","url":"https://cosmotracker.com/uptick","tx_page":"https://cosmotracker.com/uptick/tx/${txHash}"},{"kind":"Upscan","url":"https://upscan.xyz/","tx_page":"https://upscan.xyz/uptick_117-1/tx/${txHash}"},{"kind":"Sr20de","url":"https://explorer.sr20de.xyz/uptick","tx_page":"https://explorer.sr20de.xyz/uptick/tx/${txHash}"}]},{"chainId":"xion-mainnet-1","explorers":[{"url":"https://explorer.burnt.com/xion-mainnet-1","tx_page":"https://explorer.burnt.com/xion-mainnet-1/tx/${txHash}","account_page":"https://explorer.burnt.com/xion-mainnet-1/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/xion","tx_page":"https://explorer.whenmoonwhenlambo.money/xion/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/xion/account/${accountAddress}"}]},{"chainId":"dimension_37-1","explorers":[{"kind":"explorer.xpla","url":"https://explorer.xpla.io","tx_page":"https://explorer.xpla.io/mainnet/tx/${txHash}"},{"kind":"finder","url":"https://finder.xpla.io","tx_page":"https://finder.xpla.io/mainnet/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Xpla-Mainnet","tx_page":"https://explorer.stavr.tech/Xpla-Mainnet/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/xpla","tx_page":"https://www.mintscan.io/xpla/transactions/${txHash}","account_page":"https://www.mintscan.io/xpla/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/xpla","tx_page":"https://staking-explorer.com/transaction.php?chain=xpla&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=xpla&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/xpla","tx_page":"https://ezstaking.app/xpla/txs/${txHash}","account_page":"https://ezstaking.app/xpla/account/${accountAddress}"}]},{"chainId":"zetachain_7000-1","explorers":[{"kind":"ZetaScan","url":"https://explorer.zetachain.com/","tx_page":"https://explorer.zetachain.com/cc/tx/${txHash}"},{"kind":"BlockScout","url":"https://zetachain.blockscout.com/","tx_page":"https://zetachain.blockscout.com/tx/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/zetachain","tx_page":"https://explorer.nodestake.org/zetachain/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/zetachain","tx_page":"https://staking-explorer.com/transaction.php?chain=zetachain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=zetachain&addr=${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/zetachain/","tx_page":"https://explorer.nodeshub.online/zetachain/tx/${txHash}","account_page":"https://explorer.nodeshub.online/zetachain/accounts/${accountAddress}"}]},{"chainId":"junction","explorers":[{"kind":"Airchains","url":"https://testnet.airchains.io","tx_page":"https://testnet.airchains.io/transaction/${txHash}","account_page":"https://testnet.airchains.io/address/${accountAddress}"},{"kind":"NodesGuru","url":"https://testnet.junction.explorers.guru/","tx_page":"https://testnet.junction.explorers.guru/transaction/${txHash}","account_page":"https://testnet.junction.explorers.guru/account/${accountAddress}"},{"kind":"Nodejumper","url":"https://app.nodejumper.io/airchains-testnet/"},{"kind":"UTSA","url":"https://exp.utsa.tech/airchains-test/","tx_page":"https://exp.utsa.tech/airchains-test/tx/${txHash}","account_page":"https://exp.utsa.tech/airchains-test/account/${accountAddress}"},{"kind":"Stavr Tech","url":"https://explorer.stavr.tech/Airchains-Testnet","tx_page":"https://explorer.stavr.tech/Airchains-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Airchains-Testnet/${accountAddress}"},{"kind":"CoinHunters","url":"https://explorer.coinhunterstr.com/Airchains","tx_page":"https://explorer.coinhunterstr.com/Airchains/tx/${txHash}","account_page":"https://explorer.coinhunterstr.com/Airchains/account/${accountAddress}"},{"kind":"KZVN","url":"https://explorer.kzvn.xyz/airchains","tx_page":"https://explorer.kzvn.xyz/airchains/tx/${txHash}","account_page":"https://explorer.kzvn.xyz/airchains/account/${accountAddress}"},{"kind":"Elessar Nodes","url":"https://explorer.elessarnodes.xyz/Airchains","tx_page":"https://explorer.elessarnodes.xyz/Airchains/tx/${txHash}","account_page":"https://explorer.elessarnodes.xyz/Airchains/account/${accountAddress}"},{"kind":"Apollo Sync","url":"https://explorer.apollo-sync.com/","tx_page":"https://explorer.apollo-sync.com/tx/${txHash}","account_page":"https://explorer.apollo-sync.com/account/${accountAddress}"},{"kind":"Stakeme","url":"https://airchains.exploreme.pro/","tx_page":"https://airchains.exploreme.pro/transaction/${txHash}"},{"kind":"StakerHouse","url":"https://cosmotracker.com/airchains","tx_page":"https://cosmotracker.com/airchains/tx/${txHash}","account_page":"https://cosmotracker.com/airchains/account/${accountAddress}"},{"kind":"IT Rocket","url":"https://testnet.itrocket.net/airchains/","tx_page":"https://testnet.itrocket.net/airchains//tx/${txHash}","account_page":"https://testnet.itrocket.net/airchains/account/${accountAddress}"},{"kind":"Validator VN ","url":"https://explorer.validatorvn.com/Airchains-Testnet","tx_page":"https://explorer.validatorvn.com/Airchains-Testnet/tx/${txHash}","account_page":"https://explorer.validatorvn.com/Airchains-Testnet/account/${accountAddress}"}]},{"chainId":"sandbox-01","explorers":[{"kind":"ping.pub","url":"https://explorer.sandbox-01.aksh.pw/akash","tx_page":"https://explorer.sandbox-01.aksh.pw/akash/tx/${txHash}"}]},{"chainId":"constantine-3","explorers":[{"kind":"archwayscan","url":"https://testnet.archway.explorers.guru","tx_page":"https://testnet.archway.explorers.guru/transaction/${txHash}"}]},{"chainId":"arkeo","explorers":[{"url":"https://explorer.nodexcapital.com/arkeo","tx_page":"https://explorer.nodexcapital.com/arkeo/tx/${txHash}"}]},{"chainId":"artela_11820-1","explorers":[{"kind":"Artela Network","url":"https://testnet-scan.artela.network","tx_page":"https://testnet-scan.artela.network/tx/${txHash}"}]},{"chainId":"aura_6321-3","explorers":[{"kind":"aurascan","url":"https://euphoria.aurascan.io","tx_page":"https://euphoria.aurascan.io/tx/${txHash}","account_page":"https://euphoria.aurascan.io/address/${accountAddress}"}]},{"chainId":"axelar-testnet-lisbon-3","explorers":[{"kind":"axelarscan","url":"https://testnet.axelarscan.io","tx_page":"https://testnet.axelarscan.io/tx/${txHash}"},{"kind":"mintscan","url":"https://mintscan.io/axelar-testnet","tx_page":"https://mintscan.io/axelar-testnet/txs/${txHash}","account_page":"https://mintscan.io/axelar-testnet/account/${accountAddress}"}]},{"chainId":"bbn-test3","explorers":[{"kind":"babylonscan","url":"https://babylonscan.io"},{"kind":"explorers.guru","url":"https://testnet.babylon.explorers.guru","tx_page":"https://testnet.babylon.explorers.guru/transaction/${txHash}"}]},{"chainId":"bitcanna-dev-1","explorers":[{"url":"https://explorer.thesilverfox.pro/bitcanna","tx_page":"https://explorer.thesilverfox.pro/bitcanna/tx/${txHash}"},{"url":"https://testnets-cosmos.mintthemoon.xyz/bitcanna","tx_page":"https://testnets-cosmos.mintthemoon.xyz/bitcanna/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Bitcanna-DEV","tx_page":"https://explorer.stavr.tech/Bitcanna-DEV/tx/${txHash}","account_page":"https://explorer.stavr.tech/Bitcanna-DEV/account/${accountAddress}"},{"url":"https://explorer.kjnodes.com/bitcanna-testnet","tx_page":"https://explorer.kjnodes.com/bitcanna-testnet/tx/${txHash}"},{"url":"https://explorer.stavr.tech/bitcanna-dev","tx_page":"https://explorer.stavr.tech/bitcanna-dev/tx/${txHash}"}]},{"chainId":"blockx_19077-1"},{"chainId":"cascadia_6102-1","explorers":[{"kind":"validator_explorer","url":"https://validator.cascadia.foundation/","tx_page":"https://validator.cascadia.foundation/transactions/${txHash}","account_page":"https://validator.cascadia.foundation/accounts/${accountAddress}"},{"kind":"block_explorer","url":"https://explorer.cascadia.foundation/","tx_page":"https://explorer.cascadia.foundation/tx/${txHash}","account_page":"https://explorer.cascadia.foundation/address/${accountAddress}"}]},{"chainId":"mocha-4","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/celestia-testnet","tx_page":"https://mintscan.io/celestia-testnet/txs/${txHash}"},{"kind":"πŸš€ITRocketπŸš€","url":"https://testnet.itrocket.net/celestia","tx_page":"https://testnet.itrocket.net/celestia/tx/${txHash}","account_page":"https://testnet.itrocket.net/celestia/account/${accountAddress}"},{"kind":"CrypTech","url":"https://explorers.cryptech.com.ua/Celestia-Testnet","tx_page":"https://explorers.cryptech.com.ua/Celestia-Testnet/tx/${txHash}","account_page":"https://explorers.cryptech.com.ua/Celestia-Testnet/account/${accountAddress}"},{"kind":"DTEAM | Explorer","url":"https://explorer.testnet.dteam.tech/celestia","tx_page":"https://explorer.testnet.dteam.tech/celestia/tx/${txHash}","account_page":"https://explorer.testnet.dteam.tech/celestia/account/${accountAddress}"},{"kind":"Relaxed Explorer πŸ¦₯","url":"https://testnet.explorer.stakeandrelax.net/celestia","tx_page":"https://testnet.explorer.stakeandrelax.net/celestia/transaction/${txHash}","account_page":"https://testnet.explorer.stakeandrelax.net/celestia/account/${accountAddress}"}]},{"chainId":"babajaga-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/C4E-Testnet","tx_page":"https://explorer.stavr.tech/C4E-Testnet/transactions/${txHash}"},{"kind":"explorer","url":"https://explorer-testnet.c4e.io/","tx_page":"https://explorer-testnet.c4e.io/transactions/${txHash}"}]},{"chainId":"cheqd-testnet-6","explorers":[{"kind":"bigdipper","url":"https://testnet-explorer.cheqd.io/","tx_page":"https://testnet-explorer.cheqd.io/transactions/${txHash}"}]},{"chainId":"chimba-testnet","explorers":[{"kind":"bigdipper","url":"https://explorer.testnet.chimba.ooo/","tx_page":"https://explorer.testnet.chimba.ooo/transactions/${txHash}"}]},{"chainId":"banksy-testnet-3","explorers":[{"url":"https://explorer.nodexcapital.com/composable-3","tx_page":"https://explorer.nodexcapital.com/composable-3/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Composable-Testnet4","tx_page":"https://explorer.stavr.tech/Composable-Testnet4/tx/${txHash}"},{"url":"https://explorer.indonode.net/composable-testnet-3","tx_page":"https://explorer.indonode.net/composable-testnet-3/tx/${txHash}"},{"url":"https://explorer.sr20de.xyz/Composible-3","tx_page":"https://explorer.sr20de.xyz/Composible-3/tx/${txHash}"}]},{"chainId":"kitten-04","explorers":[]},{"chainId":"coreum-testnet-1","explorers":[{"kind":"Coreum","url":"https://explorer.testnet-1.coreum.dev/coreum","tx_page":"https://explorer.testnet-1.coreum.dev/coreum/transactions/${txHash}","account_page":"https://explorer.testnet-1.coreum.dev/coreum/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/coreum-testnet","tx_page":"https://www.mintscan.io/coreum-testnet/transactions/${txHash}","account_page":"https://www.mintscan.io/coreum-testnet/accounts/${accountAddress}"}]},{"chainId":"theta-testnet-001","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/cosmoshub-testnet","tx_page":"https://mintscan.io/cosmoshub-testnet/txs/${txHash}"},{"kind":"Big Dipper","url":"https://explorer.theta-testnet.polypore.xyz/","tx_page":"https://explorer.theta-testnet.polypore.xyz/transactions/${txHash}"}]},{"chainId":"provider","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/ics-testnet-provider","tx_page":"https://mintscan.io/ics-testnet-provider/tx/${txHash}"},{"kind":"Ping.pub","url":"https://explorer.polypore.xyz/provider","tx_page":"https://explorer.polypore.xyz/provider/tx/${txHash}"},{"kind":"ITRocket","url":"https://testnet.itrocket.net/cosmos","tx_page":"https://testnet.itrocket.net/cosmos/tx/${txHash}","account_page":"https://testnet.itrocket.net/cosmos/account/${accountAddress}","validator_page":"https://testnet.itrocket.net/cosmos/staking/${validatorAddress}","proposal_page":"https://testnet.itrocket.net/cosmos/gov/${proposalId}","block_page":"https://testnet.itrocket.net/cosmos/block/${blockHeight}"}]},{"chainId":"malaga-420","explorers":[{"kind":"BIG DIPPER","url":"https://block-explorer.malaga-420.cosmwasm.com/","tx_page":"https://block-explorer.malaga-420.cosmwasm.com/transactions/${txHash}"}]},{"chainId":"coss-testnet-1"},{"chainId":"cudos-testnet-public-3","explorers":[{"kind":"bigdipper-testnet","url":"https://explorer.testnet.cudos.org/","tx_page":"https://explorer.testnet.cudos.org/transactions/${txHash}","account_page":"https://explorer.testnet.cudos.org/accounts/${accountAddress}"}]},{"chainId":"deardoge-testnet","explorers":[{"kind":"Dear Doge Ping Pub","url":"https://testnet-explorer.deardoge.org/deardoge","tx_page":"https://testnet-explorer.deardoge.org/deardoge/tx/${txHash}"}]},{"chainId":"morpheus-apollo-3","explorers":[{"kind":"bigdipper","url":"https://testnet.bigdipper.live/desmos","tx_page":"https://testnet.live/desmos/transactions/${txHash}","account_page":"https://testnet.bigdipper.live/desmos/accounts/${accountAddress}"}]},{"chainId":"dhealth-testnet-2","explorers":[]},{"chainId":"vota-testnet","explorers":[{"kind":"Dora Vota Ping Pub","url":"https://maci-explorer-test.dorafactory.org","tx_page":"https://maci-explorer-test.dorafactory.org/dora/tx/${txHash}"}]},{"chainId":"dydx-testnet-4","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/dydx-testnet","tx_page":"https://www.mintscan.io/dydx-testnet/txs/${txHash}","account_page":"https://www.mintscan.io/dydx-testnet/account/${accountAddress}"}]},{"chainId":"dymension_1405-1","explorers":[{"kind":"dymscan","url":"https://pg.dym.fyi/","tx_page":"https://pg.dym.fyi//tx/${txHash}"}]},{"chainId":"elystestnet-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Elys-Testnet","tx_page":"https://explorer.stavr.tech/Elys-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Elys-Testnet/account/${accountAddress}"},{"kind":"ping.pub","url":"https://testnet.elys.network/elys","tx_page":"https://testnet.elys.network/elys/tx/${txHash}"},{"kind":"itrocket","url":"https://testnet.itrocket.net/elys","tx_page":"https://testnet.itrocket.net/elys/staking/tx/${txHash}","account_page":"https://testnet.itrocket.net/elys/account/${accountAddress}"}]},{"chainId":"empe-testnet-2","explorers":[{"kind":"empe","url":"https://explorer-testnet.empe.io","tx_page":"https://explorer-testnet.empe.io/transactions/${txHash}"}]},{"chainId":"circulus-1","explorers":[{"kind":"exploreme","url":"https://empowerchain.exploreme.pro","tx_page":"https://empowerchain.exploreme.pro/transaction/${txHash}"},{"kind":"ping.pub","url":"https://exp.nodeist.net/Empower","tx_page":"https://exp.nodeist.net/Empower/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Empower","tx_page":"https://explorer.stavr.tech/Empower/tx/${txHash}"},{"kind":"ping.pub","url":"https://explorer.nodestake.top/empower-testnet","tx_page":"https://explorer.nodestake.top/empower-testnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://testnet.itrocket.net/empower/staking","tx_page":"https://testnet.itrocket.net/empower/staking/tx/${txHash}"},{"kind":"ping.pub","url":"https://explorer.stavr.tech/empower","tx_page":"https://explorer.stavr.tech/empower/tx/${txHash}"}]},{"chainId":"epix_4243-1","explorers":[{"kind":"Epix Explorer","url":"https://testnet.epix.zone/epix","tx_page":"https://testnet.epix.zone/epix/tx/${txHash}"}]},{"chainId":"evmos_9000-4","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/evmos-testnet","tx_page":"https://mintscan.io/evmos-testnet/txs/${txHash}"},{"kind":"NodesGuru","url":"https://testnet.evmos.explorers.guru/","tx_page":"https://testnet.evmos.explorers.guru/transaction/${txHash}"}]},{"chainId":"dorado-1","explorers":[{"kind":"bigdipper","url":"https://explore-dorado.fetch.ai","tx_page":"https://explore-dorado.fetch.ai/transactions/${txHash}"},{"kind":"azoyalabs","url":"https://fetchstation.azoyalabs.com/testnet","tx_page":"https://fetchstation.azoyalabs.com/testnet/explorer/transactions/${txHash}","account_page":"https://fetchstation.azoyalabs.com/testnet/explorer/address/${accountAddress}"}]},{"chainId":"fiamma-testnet-1","explorers":[{"kind":"ping.pub","url":"https://testnet-explorer.fiammachain.io/"}]},{"chainId":"ebony-2","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/finschia-testnet","tx_page":"https://www.mintscan.io/finschia-testnet/tx/${txHash}","account_page":"https://www.mintscan.io/finschia-testnet/address/${accountAddress}"}]},{"chainId":"galactica_9302-1","explorers":[{"kind":"ping.pub","url":"https://ping.pfc.zone/galactica-testnet","tx_page":"https://ping.pfc.zone/galactica-testnet/tx/${txHash}","account_page":"https://ping.pfc.zone/galactica-testnet/account/${accountAddress}"}]},{"chainId":"gitopia-janus-testnet-2","explorers":[{"kind":"explorer.humans.zone","url":"https://gitopia.explorers.guru/","tx_page":"https://gitopia.explorers.guru/transaction/${txHash}"}]},{"chainId":"berberis-1","explorers":[{"kind":"hedgescan","url":"https://berberis.hedgescan.io","tx_page":"https://berberis.hedgescan.io/txs/${txHash}"}]},{"chainId":"testnet-1","explorers":[{"kind":"explorer.humans.zone","url":"https://explorer.humans.zone/","tx_page":"https://explorer.humans.zone/humans-testnet/tx/${txHash}"}]},{"chainId":"prajna-1","explorers":[{"kind":"Hypersign","url":"https://explorer.hypersign.id/hypersign-prajna-testnet","tx_page":"https://explorer.hypersign.id/hypersign-prajna-testnet/tx/${txHash}"}]},{"chainId":"pandora-8","explorers":[{"kind":"ixoworld","url":"https://blockscan.testnet.ixo.earth/ixo","tx_page":"https://blockscan.testnet.ixo.earth/ixo/transactions/${txHash}","account_page":"https://blockscan.testnet.ixo.earth/ixo/accounts/${accountAddress}"}]},{"chainId":"imversed-test-1","explorers":[{"kind":"Big Dipper","url":"https://tex-s.imversed.com","tx_page":"https://tex-s.imversed.com/transactions/${txHash}"}]},{"chainId":"injective-888","explorers":[{"kind":"injectiveprotocol","url":"https://testnet.explorer.injective.network/","tx_page":"https://testnet.explorer.injective.network/transaction/${txHash}"}]},{"chainId":"canine-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Jackal-Testnet","tx_page":"https://explorer.stavr.tech/Jackal-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Jackal-Testnet/account/${accountAddress}"},{"kind":"ping.pub","url":"https://testnet.ping.pub/jackal","tx_page":"https://testnet.ping.pub/jackal/tx/${txHash}"}]},{"chainId":"mesomelas-1","explorers":[{"kind":"PingPub","url":"https://testnet-explorer.brocha.in/Jackal%20v4","tx_page":"https://testnet-explorer.brocha.in/Jackal%20v4/tx/${txHash}","account_page":"https://testnet-explorer.brocha.in/Jackal%20v4/account/${accountAddress}"}]},{"chainId":"uni-6","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Juno-Testnet","tx_page":"https://explorer.stavr.tech/Juno-Testnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/Juno-Testnet/account/${accountAddress}"}]},{"chainId":"kichain-t-4","explorers":[{"kind":"kifoundation","url":"https://kichain-t-4.blockchain.ki/","tx_page":"https://kichain-t-4.blockchain.ki/transactions/${txHash}"}]},{"chainId":"kima_testnet","explorers":[{"kind":"Kima Network","url":"https://explorer-testnet.kima.finance/","tx_page":"https://explorer-testnet.kima.finance/transactions/${txHash}"}]},{"chainId":"harpoon-4","explorers":[{"kind":"explorers.guru","url":"https://kujira.explorers.guru","tx_page":"https://kujira.explorers.guru/transaction/${txHash}"}]},{"chainId":"kaon-1","explorers":[{"kind":"mintscan","url":"https://mintscan.io/kyve-testnet","tx_page":"https://mintscan.io/kyve-testnet/txs/${txHash}","account_page":"https://mintscan.io/kyve-testnet/account/${accountAddress}"},{"kind":"KYVE Explorer","url":"https://explorer.kyve.network/kaon","tx_page":"https://explorer.kyve.network/kaon/tx/${txHash}","account_page":"https://explorer.kyve.network/kaon/account/${accountAddress}"}]},{"chainId":"lava-testnet-2","explorers":[{"kind":"explorers.guru","url":"https://lava.explorers.guru/","tx_page":"https://lava.explorers.guru//transaction/${txHash}","account_page":"https://lava.explorers.guru//account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Lava-Testnet","tx_page":"https://explorer.stavr.tech/Lava-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Lava-Testnet/account/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/lava-testnet","tx_page":"https://explorer.nodestake.org/lava-testnet/tx/${txHash}","account_page":"https://explorer.nodestake.org/lava-testnet/account/${accountAddress}"},{"kind":"πŸš€ITRocketπŸš€","url":"https://testnet.itrocket.net/lava","tx_page":"https://testnet.itrocket.net/lava/tx/${txHash}","account_page":"https://testnet.itrocket.net/lava/account/${accountAddress}"}]},{"chainId":"likecoin-public-testnet-5","explorers":[{"kind":"bigdipper","url":"https://testnet.bigdipper.live/likecoin","tx_page":"https://testnet.bigdipper.live/likecoin/transactions/${txHash}","account_page":"https://testnet.bigdipper.live/likecoin/accounts/${accountAddress}"},{"kind":"lunie-ng","url":"https://likecoin-public-testnet-5.netlify.app/"}]},{"chainId":"lumenx-test","explorers":[{"kind":"ping.pub","url":"https://testnet.explorer.chaintools.tech/lumenx","tx_page":"https://testnet.explorer.chaintools.tech/lumenx/tx/${txHash}"}]},{"chainId":"manifest-ledger-beta","explorers":[{"kind":"Default Explorer","url":"https://manifest-explorer.vercel.app/","tx_page":"https://manifest-explorer.vercel.app/manifest/tx"}]},{"chainId":"mantra-hongbai-1"},{"chainId":"mantra-dukong-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/mantra-testnet","tx_page":"https://mintscan.io/mantra-testnet/txs/${txHash}","account_page":"https://mintscan.io/mantra-testnet/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.mantrachain.io","tx_page":"https://explorer.mantrachain.io/MANTRA-Dukong/tx/${txHash}","account_page":"https://explorer.mantrachain.io/MANTRA-Dukong/account/${accountAddress}"}]},{"chainId":"ares-1","explorers":[{"kind":"Mars Protocol","url":"https://testnet-explorer.marsprotocol.io","tx_page":"https://testnet-explorer.marsprotocol.io/transactions/${txHash}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/t-mars/","tx_page":"https://exp.nodeist.net/t-mars/transactions/${txHash}"}]},{"chainId":"mnova_10096-1"},{"chainId":"narwhal-2","explorers":[{"kind":"ping.pub","url":"https://ping.pfc.zone/narwhal-testnet","tx_page":"https://ping.pfc.zone/narwhal-testnet/tx/${txHash}"}]},{"chainId":"neura_267-1","explorers":[{"kind":"ankrscan-neura","url":"https://testnet.explorer.neuraprotocol.io","tx_page":"https://testnet.explorer.neuraprotocol.io/tx/${txHash}"},{"kind":"blockscout","url":"https://explorer.neura-testnet.ankr.com","tx_page":"https://explorer.neura-testnet.ankr.com/tx/${txHash}"}]},{"chainId":"pion-1","explorers":[{"kind":"Ping.pub Explorer from Hypha","url":"https://explorer.rs-testnet.polypore.xyz/pion-1","tx_page":"https://explorer.rs-testnet.polypore.xyz/pion-1/tx/${txHash}","account_page":"https://explorer.rs-testnet.polypore.xyz/baryon-1/account/${accountAddress}"},{"kind":"Mintscan","url":"https://mintscan.io/neutron-testnet","tx_page":"https://mintscan.io/neutron-testnet/txs/${txHash}","account_page":"https://mintscan.io/neutron-testnet/account/${accountAddress}"}]},{"chainId":"nibiru-testnet-1","explorers":[{"kind":"Nibiru Foundation","url":"https://explorer.nibiru.fi/nibiru-testnet-1","tx_page":"https://explorer.nibiru.fi/nibiru-tesnet-1/tx/${txHash}","account_page":"https://explorer.nibiru.fi/nibiru-testnet-1/account/${accountAddress}"}]},{"chainId":"nibiru-testnet-2","explorers":[{"kind":"Nibiru Foundation","url":"https://explorer.nibiru.fi/nibiru-testnet-2","tx_page":"https://explorer.nibiru.fi/nibiru-tesnet-2/tx/${txHash}","account_page":"https://explorer.nibiru.fi/nibiru-testnet-2/account/${accountAddress}"}]},{"chainId":"nibiru-testnet-3","explorers":[{"kind":"Nibiru Foundation","url":"https://explorer.nibiru.fi/nibiru-testnet-3","tx_page":"https://explorer.nibiru.fi/nibiru-tesnet-3/tx/${txHash}","account_page":"https://explorer.nibiru.fi/nibiru-testnet-3/account/${accountAddress}"}]},{"chainId":"nillion-chain-testnet-1","explorers":[{"url":"https://testnet.nillion.explorers.guru","tx_page":"https://testnet.nillion.explorers.guru/transaction/${txHash}","account_page":"https://testnet.nillion.explorers.guru/account/${accountAddress}"},{"url":"https://testnet.ping.pub/nillion","tx_page":"https://testnet.ping.pub/nillion/tx/${txHash}","account_page":"https://testnet.ping.pub/nillion/account/${accountAddress}"}]},{"chainId":"grand-1","explorers":[{"kind":"mintscan","url":"https://mintscan.io/noble-testnet","tx_page":"https://mintscan.io/noble-testnet/txs/${txHash}"},{"kind":"ping.pub","url":"https://explore.strange.love/grand-1","tx_page":"https://explore.strange.love/grand-1/tx/${txHash}"}]},{"chainId":"nois-testnet-005","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Nois-Testnet","tx_page":"https://explorer.stavr.tech/Nois-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Nois-Testnet/account/${accountAddress}"},{"kind":"explorers.guru","url":"https://testnet.nois.explorers.guru","tx_page":"https://testnet.nois.explorers.guru/transaction/${txHash}","account_page":"https://testnet.nois.explorers.guru/account/${accountAddress}"}]},{"chainId":"rila-1","explorers":[{"kind":"Nolus Explorer","url":"https://explorer-rila.nolus.io/rila-1/","tx_page":"https://explorer-rila.nolus.io/rila-1/tx/${txHash}","account_page":"https://explorer-rila.nolus.io/rila-1/account/${accountAddress}"}]},{"chainId":"nomic-testnet-6","explorers":[]},{"chainId":"sandbox","explorers":[{"kind":"ping.pub","url":"https://sandbox-blocks.nymtech.net/sandbox","tx_page":"https://sandbox-blocks.nymtech.net/sandbox/tx/${txHash}"}]},{"chainId":"okp4-nemeton-1","explorers":[{"kind":"ping.pub","url":"https://testnet.ping.pub/OKP4%20testnet","tx_page":"https://testnet.ping.pub/OKP4%20testnet/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/OKP4-Testnet","tx_page":"https://explorer.stavr.tech/OKP4-Testnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://explore.okp4.network/OKP4%20testnet","tx_page":"https://explore.okp4.network/OKP4%20testnet/tx/${txHash}"}]},{"chainId":"osmo-test-5","explorers":[{"kind":"mintscan","url":"https://mintscan.io/osmosis-testnet","tx_page":"https://mintscan.io/osmosis-testnet/txs/${txHash}","account_page":"https://mintscan.io/osmosis-testnet/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.osmotest5.osmosis.zone","tx_page":"https://explorer.osmotest5.osmosis.zone/osmo-test-5/tx/${txHash}","account_page":"https://explorer.osmotest5.osmosis.zone/osmo-test-5/account/${accountAddress}"}]},{"chainId":"INVALID-ID-permtestnet-testnet-1","explorers":[{"kind":"bigdipper","url":"https://explorer.testnet.perm.ooo/","tx_page":"https://explorer.testnet.perm.ooo/transactions/${txHash}"}]},{"chainId":"test-core-1","explorers":[{"kind":"ping.pub","url":"https://testnet.ping.pub/test-core-1/","tx_page":"https://testnet.ping.pub/test-core-1/tx/${txHash}"},{"kind":"mintscan","url":"https://mintscan.io/persistence-testnet","tx_page":"https://mintscan.io/persistence-testnet/txs/${txHash}","account_page":"https://mintscan.io/persistence-testnet/account/${accountAddress}"}]},{"chainId":"test-core-2","explorers":[{"kind":"mintscan","url":"https://mintscan.io/persistence-testnet","tx_page":"https://mintscan.io/persistence-testnet/txs/${txHash}","account_page":"https://mintscan.io/persistence-testnet/account/${accountAddress}"},{"kind":"StakeFlow","url":"https://stakeflow.io/persistence-testnet","tx_page":"https://stakeflow.io/persistence-testnet/transactions/${txHash}","account_page":"https://stakeflow.io/persistence-testnet/accounts/${accountAddress}"},{"kind":"baryon","url":"https://testnet-explorer.baryon.dev/test-core-2","tx_page":"https://testnet-explorer.baryon.dev/test-core-2/tx/{txHash}","account_page":"https://testnet-explorer.baryon.dev/test-core-2/account/${accountAddress}"}]},{"chainId":"planq_7077-1","explorers":[{"kind":"EVM","url":"https://evm-atlas.planq.network","tx_page":"https://evm-atlas.planq.network/tx/${txHash}"},{"kind":"Konsortech","url":"https://testnet-explorer.konsortech.xyz/planq","tx_page":"https://testnet-explorer.konsortech.xyz/planq/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/planq-testnet","tx_page":"https://explorer.whenmoonwhenlambo.money/planq-testnet/tx/${txHash}"}]},{"chainId":"pocket-beta","explorers":[{"kind":"πŸ” POKTScan Explorer πŸ”Ž","url":"https://shannon-beta.poktscan.com/","tx_page":"https://shannon-beta.poktscan.com/tx/${txHash}","account_page":"https://shannon-beta.poktscan.com/accounts/${accountAddress}"},{"kind":"πŸ—Ί Shannon Explorer (stakenodes.org) πŸ—Ί","url":"https://shannon.beta.testnet.pokt.network/","tx_page":"https://shannon.beta.testnet.pokt.network/poktroll/tx/${txHash}","account_page":"https://shannon.beta.testnet.pokt.network/poktroll/account/${accountAddress}"}]},{"chainId":"indigo-1","explorers":[{"kind":"PingPub","url":"https://testnets.cosmosrun.info/pryzm-indigo-1","tx_page":"https://testnets.cosmosrun.info/pryzm-indigo-1/tx/${txHash}","account_page":"https://testnets.cosmosrun.info/pryzm-indigo-1/account/${accountAddress}"},{"kind":"ITRocket","url":"https://testnet.itrocket.net/pryzm","tx_page":"https://testnet.itrocket.net/pryzm/tx/${txHash}","account_page":"https://testnet.itrocket.net/pryzm/account/${accountAddress}"}]},{"chainId":"quasar-test-1"},{"chainId":"rhye-2","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Quicksilver","tx_page":"https://explorer.stavr.tech/Quicksilver/tx/${txHash}","account_page":"https://explorer.stavr.tech/Quicksilver/account/${accountAddress}"},{"url":"https://testnet.quicksilver.explorers.guru","tx_page":"https://testnet.quicksilver.explorers.guru/transaction/${txHash}","account_page":"https://testnet.quicksilver.explorers.guru/account/${accountAddress}"}]},{"chainId":"earendel-1","explorers":[{"kind":"pingfork","url":"https://explorer.theamsolutions.info/qwoyn-testnet/","tx_page":"https://explorer.theamsolutions.info/qwoyn-testnet/tx/${txHash}","account_page":"https://explorer.theamsolutions.info/qwoyn-testnet/account/${accountAddress}"}]},{"chainId":"ssc-testnet-1","explorers":[{"kind":"mintscan","url":"https://mintscan.io/saga-testnet","tx_page":"https://www.mintscan.io/saga-testnet/tx/${txHash}","account_page":"https://mintscan.io/saga-testnet/address/${accountAddress}"}]},{"chainId":"pulsar-3","explorers":[{"kind":"ping.pub","url":"https://testnet.ping.pub/secret","tx_page":"https://testnet.ping.pub/secret/tx/${txHash}"}]},{"chainId":"atlantic-1","explorers":[{"kind":"explorers.guru","url":"https://sei.explorers.guru","tx_page":"https://sei.explorers.guru/transaction/${txHash}"},{"kind":"Brochain","url":"https://testnet-explorer.brocha.in/sei","tx_page":"https://testnet-explorer.brocha.in/sei/tx/${txHash}"}]},{"chainId":"atlantic-2","explorers":[{"kind":"blockscout","url":"https://seitrace.com/?chain=atlantic-2","tx_page":"https://seitrace.com/tx/${txHash}?chain=atlantic-2"},{"kind":"celatone","url":"https://www.seiscan.app/atlantic-2","tx_page":"https://www.seiscan.app/atlantic-2/txs/${txHash}"},{"kind":"explorers.guru","url":"https://testnet.sei.explorers.guru","tx_page":"https://testnet.sei.explorers.guru/transaction/${txHash}"},{"kind":"Brochain","url":"https://testnet-explorer.brocha.in/sei%20atlantic%202","tx_page":"https://testnet-explorer.brocha.in/sei%20atlantic%202/tx/${txHash}"}]},{"chainId":"self-dev-1","explorers":[{"kind":"Selfchain","url":"https://explorer-devnet.selfchain.xyz","tx_page":"https://explorer-devnet.selfchain.xyz/self/transactions/${txHash}"}]},{"chainId":"sge-network-3","explorers":[{"kind":"Sge BlockExplorer","url":"https://blockexplorer.testnet.sgenetwork.io/","tx_page":"https://blockexplorer.testnet.sgenetwork.io/sge-network/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Sge-Testnet","tx_page":"https://explorer.stavr.tech/Sge-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Sge-Testnet/account/${accountAddress}"}]},{"chainId":"sge-network-4","explorers":[{"kind":"Sge BlockExplorer","url":"https://blockexplorer.testnet.sgenetwork.io/","tx_page":"https://blockexplorer.testnet.sgenetwork.io/sge-network/tx/${txHash}"}]},{"chainId":"yulei-2.1","explorers":[{"kind":"Shentu Explorer","url":"https://explorer.shentu.org/?chain=yulei-2.1","tx_page":"https://explorer.shentu.org/transactions/${txHash}?chain=yulei-2.1"}]},{"chainId":"fivenet","explorers":[{"kind":"sixscan","url":"https://sixscan.io/fivenet","tx_page":"https://sixscan.io/fivenet/tx/${txHash}"}]},{"chainId":"soarchaintestnet","explorers":[{"kind":"Soarchain Explorer","url":"https://explorer.soarchain.com/soarchain","tx_page":"https://explorer.soarchain.com/soarchain/tx/${txHash}"},{"kind":"Kjnodes Explorer","url":"https://explorer.kjnodes.com/soarchain-testnet","tx_page":"https://explorer.kjnodes.com/soarchain-testnet/tx/${txHash}"}]},{"chainId":"sourcetest-1","explorers":[{"kind":"Nodestake","url":"https://explorer.nodestake.top/source-testnet","tx_page":"https://explorer.nodestake.top/source-testnet/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Source","tx_page":"https://explorer.stavr.tech/Source/tx/${txHash}"},{"kind":"SR20DE","url":"https://explorer.sr20de.xyz/Source-testnet","tx_page":"https://explorer.sr20de.xyz/Source-testnet/txs/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/source-testnet","tx_page":"https://explorer.whenmoonwhenlambo.money/source-testnet/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/source-testnet/account/${accountAddress}"}]},{"chainId":"elgafar-1","explorers":[{"kind":"ping.pub","url":"https://testnet-explorer.publicawesome.dev/stargaze","tx_page":"https://testnet-explorer.publicawesome.dev/stargaze/tx/${txHash}"}]},{"chainId":"stateset-1-testnet","explorers":[{"kind":"bigdipper","url":"https://explore.stateset.zone","tx_page":"https://explore.stateset.zone/transactions/${txHash}"}]},{"chainId":"stride-internal-1","explorers":[{"kind":"PingPub","url":"https://testnet.ping.pub/stride","tx_page":"https://testnet.ping.pub/stride/tx/${txHash}"}]},{"chainId":"sunrise-test-0.1","explorers":[]},{"chainId":"swisstronik_1291-1","explorers":[{"kind":"ping.pub","url":"https://explorer-cosmos.testnet.swisstronik.com/swisstronik","tx_page":"https://explorer-cosmos.testnet.swisstronik.com/swisstronik/tx/${txHash}"}]},{"chainId":"symphony-testnet-3"},{"chainId":"amber-2","explorers":[{"kind":"Big Dipper","url":"https://explorer-testnet.synternet.com/","tx_page":"https://explorer-testnet.synternet.com/transactions/${txHash}"}]},{"chainId":"90u-4","explorers":[{"kind":"Ping Pub","url":"https://explorer.nodestake.top/terp-testnet","tx_page":"https://explorer.nodestake.top/terp-testnet/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com","tx_page":"https://explorer.nodexcapital.com/terp/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/terp/account/{$accountAddress}"}]},{"chainId":"90u-2","explorers":[{"kind":"Ping Pub","url":"https://explorer.nodestake.top/terp-testnet","tx_page":"https://explorer.nodestake.top/terp-testnet/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com","tx_page":"https://explorer.nodexcapital.com/terp/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/terp/account/{$accountAddress}"}]},{"chainId":"pisco-1","explorers":[{"kind":"finder","url":"http://finder.terra.money/testnet/","tx_page":"https://finder.terra.money/testnet/tx/${txHash}"}]},{"chainId":"titan_18889-1","explorers":[{"kind":"ping.pub","url":"https://titan-testnet-explorer-light.titanlab.io","tx_page":"https://titan-testnet-explorer-light.titanlab.io/Titan%20Testnet/tx/${txHash}","account_page":"https://titan-testnet-explorer-light.titanlab.io/Titan%20Testnet/account/${accountAddress}"}]},{"chainId":"tucana_712-1","explorers":[{"kind":"Blockscout","url":"https://explorer.birdee-2.tucana.zone/","tx_page":"https://explorer.birdee-2.tucana.zone/tx/${txHash}"}]},{"chainId":"ulas","explorers":[{"kind":"ulas-scan","url":"https://testnet-explorer.ulas.network","tx_page":"https://testnet-explorer.ulas.network/ulas/tx/${txHash}"}]},{"chainId":"FUND-TestNet-2","explorers":[{"kind":"ping.pub","url":"https://explorer-testnet.unification.io/u","tx_page":"https://explorer-testnet.unification.io/u/tx/${txHash}","account_page":"https://explorer-testnet.unification.io/u/account/${accountAddress}"}]},{"chainId":"union-testnet-8","explorers":[{"kind":"ping.pub","url":"https://explorer.testnet-8.union.build/union","tx_page":"https://explorer.testnet-8.union.build/union/tx/${txHash}","account_page":"https://explorer.testnet-8.union.build/union/account/${accountAddress}"},{"kind":"explorers.guru","url":"https://testnet.union.explorers.guru","tx_page":"https://testnet.union.explorers.guru/transaction/${txHash}","account_page":"https://testnet.union.explorers.guru/account/${accountAddress}"}]},{"chainId":"uptick_7000-2","explorers":[{"kind":"ping.pub","url":"https://explorer.testnet.uptick.network/uptick-network-testnet","tx_page":"https://explorer.testnet.uptick.network/uptick-network-testnet/tx/${txHash}"},{"kind":"Nodes.Guru","url":"https://uptick.explorers.guru/","tx_page":"https://uptick.explorers.guru/transaction/${txHash}"}]},{"chainId":"buenavista-1","explorers":[]},{"chainId":"INVALID-ID-wavehashtestnet-testnet-1","explorers":[{"kind":"atomscan","url":"https://atomscan.com/directory/testnet/wavehashtestnet","tx_page":"https://atomscan.com/directory/testnet/wavehashtestnet/transactions/${txHash}"}]},{"chainId":"xion-testnet-1","explorers":[{"url":"https://explorer.burnt.com/xion-testnet-1","tx_page":"https://explorer.burnt.com/xion-testnet-1/tx/${txHash}","account_page":"https://explorer.burnt.com/xion-testnet-1/account/${accountAddress}"},{"kind":"ITRocket","url":"https://testnet.itrocket.net/burnt","tx_page":"https://testnet.itrocket.net/burnt/tx/${txHash}","account_page":"https://testnet.itrocket.net/burnt/account/${accountAddress}"}]},{"chainId":"cube_47-5","explorers":[{"kind":"explorer.xpla","url":"https://explorer.xpla.io/testnet","tx_page":"https://explorer.xpla.io/testnet/mainnet/tx/${txHash}"},{"kind":"finder","url":"https://finder.xpla.io/testnet","tx_page":"https://finder.xpla.io/testnet/tx/${txHash}"}]},{"chainId":"gardia-2","explorers":[{"kind":"Big Dipper","url":"https://explorer.gardia.zenrocklabs.io/","tx_page":"https://explorer.gardia.zenrocklabs.io/tx/${txHash}","account_page":"https://explorer.gardia.zenrocklabs.io/account/${accountAddress}"}]},{"chainId":"athens_7001-1","explorers":[{"kind":"ZetaScan","url":"https://athens.explorer.zetachain.com/","tx_page":"https://athens.explorer.zetachain.com/cc/tx/${txHash}"},{"kind":"BlockScout","url":"https://zetachain-athens-3.blockscout.com/","tx_page":"https://zetachain-athens-3.blockscout.com/tx/${txHash}"}]},{"chainId":"landlord-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/landlord-2","tx_page":"https://scan.testnet.initia.xyz/landlord-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/landlord-2/accounts/${accountAddress}"}]},{"chainId":"initiation-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/initiation-2","tx_page":"https://scan.testnet.initia.xyz/initiation-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/initiation-2/accounts/${accountAddress}"}]},{"chainId":"glados-2.1","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/glados-2.1","tx_page":"https://scan.testnet.initia.xyz/glados-2.1/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/glados-2.1/accounts/${accountAddress}"}]},{"chainId":"minievm-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/minievm-2","tx_page":"https://scan.testnet.initia.xyz/minievm-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/minievm-2/accounts/${accountAddress}"}]},{"chainId":"minimove-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/minimove-2","tx_page":"https://scan.testnet.initia.xyz/minimove-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/minimove-2/accounts/${accountAddress}"}]},{"chainId":"miniwasm-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/miniwasm-2","tx_page":"https://scan.testnet.initia.xyz/miniwasm-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/miniwasm-2/accounts/${accountAddress}"}]}] \ No newline at end of file +[{"chainId":"aaronetwork","explorers":[{"kind":"Aaron Network","url":"https://explorer.aaronetwork.xyz","tx_page":"https://explorer.aaronetwork.xyz/hash/${txHash}","account_page":"https://explorer.aaronetwork.xyz/address/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/aaronetwork","tx_page":"https://explorer.whenmoonwhenlambo.money/aaronetwork/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/aaronetwork/account/${accountAddress}"}]},{"chainId":"acre_9052-1","explorers":[{"kind":"blockscout","url":"https://acrescout.mindheartsoul.org","tx_page":"https://acrescout.mindheartsoul.org/tx/${txHash}"},{"kind":"blockscout","url":"https://acrescan.com","tx_page":"https://acrescan.com/tx/${txHash}"},{"kind":"blockscout","url":"https://acreblockexplorer.jet-node.com","tx_page":"https://acreblockexplorer.jet-node.com/tx/${txHash}"},{"kind":"ping.pub","url":"https://explorer.nodestake.top/acre","tx_page":"https://explorer.nodestake.top/acre/tx/${txHash}"},{"kind":"ping.pub","url":"https://cosmosrun.info/acre-mainnet","tx_page":"https://cosmosrun.info/acre-mainnet/tx/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/acre","tx_page":"https://explorer.tcnetwork.io/acre/transaction/${txHash}"}]},{"chainId":"agoric-3","explorers":[{"kind":"explorers.guru","url":"https://agoric.explorers.guru","tx_page":"https://agoric.explorers.guru/transaction/${txHash}","account_page":"https://agoric.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/agoric","tx_page":"https://staking-explorer.com/transaction.php?chain=agoric&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=agoric&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/agoric/","tx_page":"https://atomscan.com/agoric/transactions/${txHash}","account_page":"https://atomscan.com/agoric/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/agoric","account_page":"https://stakeflow.io/agoric/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Agoric","tx_page":"https://explorer.stavr.tech/Agoric/tx/${txHash}","account_page":"https://explorer.stavr.tech/Agoric/account/${accountAddress}"}]},{"chainId":"aioz_168-1","explorers":[{"kind":"aioz","url":"https://explorer.aioz.network","tx_page":"https://explorer.aioz.network/tx/${txHash}"}]},{"chainId":"akashnet-2","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/akash","tx_page":"https://ezstaking.app/akash/txs/${txHash}","account_page":"https://ezstaking.app/akash/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/akash","tx_page":"https://www.mintscan.io/akash/transactions/${txHash}","account_page":"https://www.mintscan.io/akash/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/akash-network","tx_page":"https://ping.pub/akash-network/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/akash","tx_page":"https://staking-explorer.com/transaction.php?chain=akash&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=akash&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/akash","tx_page":"https://atomscan.com/akash/transactions/${txHash}","account_page":"https://atomscan.com/akash/accounts/${accountAddress}"},{"kind":"cloudmos","url":"https://cloudmos.io/blocks","tx_page":"https://cloudmos.io/transactions/${txHash}"},{"kind":"Stakeflow","url":"https://stakeflow.io/akash","account_page":"https://stakeflow.io/akash/accounts/${accountAddress}"},{"kind":"ValidatorNode","url":"https://explorer.validatornode.com/akash-network","tx_page":"https://explorer.validatornode.com/akash-network/tx/${txHash}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Akash","tx_page":"https://explorer.declab.pro/Akash/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/akash","tx_page":"https://mainnet.whispernode.com/akash/tx/${txHash}","account_page":"https://mainnet.whispernode.com/akash/account/${accountAddress}"}]},{"chainId":"althea_258432-1","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/althea","tx_page":"https://staking-explorer.com/transaction.php?chain=althea&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=althea&addr=${accountAddress}"}]},{"chainId":"andromeda-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/Andromeda-Mainnet","tx_page":"https://explorer.stavr.tech/Andromeda-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Andromeda-Mainnet/account/${accountAddress}"},{"kind":"exploreme.pro","url":"https://andromeda.exploreme.pro","tx_page":"https://andromeda.exploreme.pro/transaction/${txHash}","account_page":"https://andromeda.exploreme.pro/account/${accountAddress}"},{"kind":"Cosmotracker","url":"https://cosmotracker.com/andromeda","tx_page":"https://cosmotracker.com/andromeda/tx/${txHash}","account_page":"https://cosmotracker.com/andromeda/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/andromeda","tx_page":"https://ping.pub/andromeda/tx/${txHash}"},{"kind":"AviaOne Explorer 🟒","url":"https://mainnet.explorer.aviaone.com/andromeda","tx_page":"https://mainnet.explorer.aviaone.com/andromeda/tx/${txHash}"}]},{"chainId":"archway-1","explorers":[{"kind":"Nodes Guru","url":"https://archway.explorers.guru/","tx_page":"https://archway.explorers.guru/transaction/${txHash}","account_page":"https://archway.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/archway","tx_page":"https://staking-explorer.com/transaction.php?chain=archway&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=archway&addr=${accountAddress}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀","url":"https://exp.utsa.tech/archway","tx_page":"https://exp.utsa.tech/archway/tx/${txHash}","account_page":"https://exp.utsa.tech/archway/account/${accountAddress}"},{"kind":"Mintscan","url":"https://mintscan.io/archway/","tx_page":"https://mintscan.io/archway/transactions/${txHash}","account_page":"https://mintscan.io/archway/accounts/${accountAddress}"},{"kind":"Silk Nodes","url":"https://explorer.silknodes.io/archway","tx_page":"https://explorer.silknodes.io/archway/tx/${txHash}","account_page":"https://explorer.silknodes.io/archway/account/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/archway/","tx_page":"https://explorer.nodestake.org/archway/txs/${txHash}","account_page":"https://explorer.nodestake.org/archway/account/${accountAddress}"},{"kind":"Exploreme","url":"https://archway.exploreme.pro/","tx_page":"https://archway.exploreme.pro/transaction/${txHash}","account_page":"https://archway.exploreme.pro/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/archway","tx_page":"https://ping.pub/archway/tx/${txHash}"},{"kind":"ezstaking","url":"https://ezstaking.app/archway","tx_page":"https://ezstaking.app/archway/txs/${txHash}","account_page":"https://ezstaking.app/archway/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/archway","tx_page":"https://mainnet.whispernode.com/archway/tx/${txHash}","account_page":"https://mainnet.whispernode.com/archway/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/archway","tx_page":"https://explorer.chainroot.io/archway/transactions/${txHash}","account_page":"https://explorer.chainroot.io/archway/accounts/${accountAddress}"}]},{"chainId":"arkh","explorers":[{"kind":"Kynraze Explorer","url":"https://explorer.kynraze.com/arkhadian","tx_page":"https://explorer.kynraze.com/arkhadian/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/arkhadian","tx_page":"https://explorer.nodexcapital.com/arkhadian/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/arkhadian","tx_page":"https://explorer.whenmoonwhenlambo.money/arkhadian/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/arkhadian/account/${accountAddress}"}]},{"chainId":"mantle-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/assetmantle","tx_page":"https://ezstaking.app/assetmantle/txs/${txHash}","account_page":"https://ezstaking.app/assetmantle/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/asset-mantle","tx_page":"https://www.mintscan.io/asset-mantle/transactions/${txHash}","account_page":"https://www.mintscan.io/asset-mantle/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.postcapitalist.io/AssetMantle","tx_page":"https://explorer.postcapitalist.io/AssetMantle/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/assetmantle","tx_page":"https://staking-explorer.com/transaction.php?chain=assetmantle&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=assetmantle&addr=${accountAddress}"},{"kind":"other","url":"https://explorer.assetmantle.one","tx_page":"https://explorer.assetmantle.one/transactions/${txHash}"},{"kind":"explorers.guru","url":"https://assetmantle.explorers.guru","tx_page":"https://assetmantle.explorers.guru/transaction/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/assetmantle","tx_page":"https://atomscan.com/assetmantle/transactions/${txHash}","account_page":"https://atomscan.com/assetmantle/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/assetmantle","tx_page":"https://mainnet.whispernode.com/assetmantle/tx/${txHash}","account_page":"https://mainnet.whispernode.com/assetmantle/account/${accountAddress}"}]},{"chainId":"atomone-1","explorers":[{"kind":"ping.pub","url":"https://explorer.allinbits.com/atomone","tx_page":"https://explorer.allinbits.com/atomone/tx/${txHash}","account_page":"https://explorer.allinbits.com/atomone/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/atomone/","tx_page":"https://explorer.nodeshub.online/atomone/tx/${txHash}","account_page":"https://explorer.nodeshub.online/atomone/accounts/${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://explorer.ist/atomone","tx_page":"https://explorer.ist/atomone/tx/${txHash}","account_page":"https://explorer.ist/atomone/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/atomone","tx_page":"https://explorer.whenmoonwhenlambo.money/atomone/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/atomone/account/${accountAddress}"}]},{"chainId":"aura_6322-2","explorers":[{"kind":"aurascan","url":"https://aurascan.io","tx_page":"https://aurascan.io/tx/${txHash}","account_page":"https://aurascan.io/address/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/aura","tx_page":"https://staking-explorer.com/transaction.php?chain=aura&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=aura&addr=${accountAddress}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀 Explorer","url":"https://exp.utsa.tech/aura","tx_page":"https://exp.utsa.tech/aura/tx/${txHash}","account_page":"https://exp.utsa.tech/aura/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/Aura-Mainnet","tx_page":"https://explorer.stavr.tech/aura-mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/aura-mainnet/account/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/aura","tx_page":"https://explorer.nodestake.org/aura/tx/${txHash}","account_page":"https://explorer.nodestake.org/aura/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/aura","tx_page":"https://explorer.tcnetwork.io/aura/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/aura/account/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/aura","tx_page":"https://explorer.stake-take.com/aura/tx/${txHash}","account_page":"https://explorer.stake-take.com/aura/account/${accountAddress}"},{"kind":"Safe Block","url":"https://explorer.safeblock.space/aura","tx_page":"https://explorer.safeblock.space/aura/tx/${txHash}","account_page":"https://explorer.safeblock.space/aura/account/${accountAddress}"},{"kind":"STAKR.space explorer","url":"https://explorer.stakr.space/aura/","tx_page":"https://explorer.stakr.space/aura/tx/${txHash}","account_page":"https://explorer.stakr.space/aura/account/${accountAddress}"}]},{"chainId":"axelar-dojo-1","explorers":[{"kind":"axelarscan","url":"https://axelarscan.io","tx_page":"https://axelarscan.io/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/axelar","tx_page":"https://www.mintscan.io/axelar/transactions/${txHash}","account_page":"https://www.mintscan.io/axelar/accounts/${accountAddress}"},{"kind":"explorers.guru","url":"https://axelar.explorers.guru","tx_page":"https://axelar.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/axelar","tx_page":"https://staking-explorer.com/transaction.php?chain=axelar&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=axelar&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/axelar","tx_page":"https://atomscan.com/axelar/transactions/${txHash}","account_page":"https://atomscan.com/axelar/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/axelar","account_page":"https://stakeflow.io/axelar/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/axelar","tx_page":"https://ezstaking.app/axelar/txs/${txHash}","account_page":"https://ezstaking.app/axelar/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/axelar","tx_page":"https://mainnet.whispernode.com/axelar/tx/${txHash}","account_page":"https://mainnet.whispernode.com/axelar/account/${accountAddress}"}]},{"chainId":"laozi-mainnet","explorers":[{"kind":"cosmoscan","url":"https://cosmoscan.io","tx_page":"https://cosmoscan.io/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/band","tx_page":"https://www.mintscan.io/band/transactions/${txHash}","account_page":"https://www.mintscan.io/band/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/band-protocol","tx_page":"https://ping.pub/band-protocol/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/bandchain","tx_page":"https://staking-explorer.com/transaction.php?chain=bandchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=bandchain&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Band-Mainnet","tx_page":"https://explorer.stavr.tech/Band-Mainnet/tx/${txHash}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/band","tx_page":"https://exp.nodeist.net/band/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/band-protocol","tx_page":"https://atomscan.com/band-protocol/transactions/${txHash}","account_page":"https://atomscan.com/band-protocol/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/band-protocol","account_page":"https://stakeflow.io/band-protocol/accounts/${accountAddress}"},{"kind":"Roomit Explorer","url":"https://explorer.tendermint.roomit.xyz/band-mainnet","account_page":"https://explorer.tendermint.roomit.xyz/band-mainnet/accounts/${accountAddress}"},{"kind":"kjnodes Explorer","url":"https://explorer.kjnodes.com/band","tx_page":"https://explorer.kjnodes.com/band/tx/${txHash}"}]},{"chainId":"beezee-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/beezee","tx_page":"https://ping.pub/beezee/tx/${txHash}","account_page":"https://ping.pub/beezee/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/beezee","tx_page":"https://staking-explorer.com/transaction.php?chain=beezee&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=beezee&addr=${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.getbze.com/beezee","tx_page":"https://explorer.getbze.com/beezee/tx/${txHash}","account_page":"https://explorer.getbze.com/beezee/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/beezee","tx_page":"https://atomscan.com/beezee/transactions/${txHash}","account_page":"https://atomscan.com/beezee/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/beezee","tx_page":"https://explorer.whenmoonwhenlambo.money/beezee/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/beezee/account/${accountAddress}"}]},{"chainId":"bitbadges-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/bitbadges","tx_page":"https://www.mintscan.io/bitbadges/transactions/${txHash}","account_page":"https://www.mintscan.io/bitbadges/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.bitbadges.io/BitBadges%20Mainnet","tx_page":"https://explorer.bitbadges.io/BitBadges%20Mainnet/txs/${txHash}","account_page":"https://explorer.bitbadges.io/BitBadBitBadges%20Mainnetges/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/bitbadges","tx_page":"https://explorer.whenmoonwhenlambo.money/bitbadges/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/bitbadges/account/${accountAddress}"}]},{"chainId":"bitcanna-1","explorers":[{"kind":"EZStaking Tools","url":"https://app.ezstaking.io/bitcanna","tx_page":"https://ezstaking.tools/bitcanna/txs/${txHash}","account_page":"https://ezstaking.tools/bitcanna/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/bitcanna","tx_page":"https://staking-explorer.com/transaction.php?chain=bitcanna&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=bitcanna&addr=${accountAddress}"},{"kind":"forbole","url":"https://explorer.bitcanna.io","tx_page":"https://explorer.bitcanna.io/transactions/${txHash}","account_page":"https://explorer.bitcanna.io/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/bitcanna","tx_page":"https://ping.pub/bitcanna/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/bitcanna/","tx_page":"https://www.mintscan.io/bitcanna/txs/${txHash}","account_page":"https://www.mintscan.io/bitcanna/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/Bitcanna","tx_page":"https://explorer.stavr.tech/Bitcanna/txs/${txHash}","account_page":"https://explorer.stavr.tech/Bitcanna/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/bitcanna","tx_page":"https://atomscan.com/bitcanna/transactions/${txHash}"},{"kind":"ValidatorNode Explorer","url":"https://explorer.validatornode.com/bitcanna","tx_page":"https://explorer.validatornode.com/bitcanna/tx/${txHash}"},{"kind":"Safe Block Explorer Pruned","url":"https://explorer.safeblock.space/bitcanna","tx_page":"https://explorer.safeblock.space/bitcanna/tx/${txHash}"},{"kind":"AlxVoy ⚑ ANODE.TEAM","url":"https://main.anode.team/bitcanna","tx_page":"https://main.anode.team/bitcanna/tx/${txHash}"},{"kind":"kjnodes","url":"https://explorer.kjnodes.com/bitcanna","tx_page":"https://explorer.kjnodes.com/bitcanna/tx/${txHash}"},{"kind":"L0vd.com ❀️","url":"https://explorers.l0vd.com/bitcanna-mainnet","tx_page":"https://explorers.l0vd.com/bitcanna-mainnet/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodex.one/bitcanna","tx_page":"https://explorer.nodex.one/bitcanna/tx/${txHash}"},{"kind":"Moonbys Dashboard","url":"https://explorer.moonbys.com","tx_page":"https://explorer.moonbys.com/${txHash}"},{"kind":"BlockHunters 🎯","url":"https://scan.bh.rocks/bitcanna","tx_page":"https://scan.bh.rocks/bitcanna/tx/${txHash}"},{"kind":"Indonode","url":"https://explorer.indonode.net/bitcanna","tx_page":"https://explorer.indonode.net/bitcanna/tx/${txHash}"},{"kind":"CrypTech Explorer","url":"https://explorers.cryptech.com.ua/bitcanna","tx_page":"https://explorers.cryptech.com.ua/bitcanna/txs/${txHash}"},{"kind":"Kalia Network","url":"https://explorer.kalia.network/bitcanna","tx_page":"https://explorer.kalia.network/bitcanna/tx/${txHash}","account_page":"https://explorer.kalia.network/bitcanna/account/${accountAddress}"},{"kind":"AviaOne Explorer 🟒","url":"https://mainnet.explorer.aviaone.com/bitcanna","tx_page":"https://mainnet.explorer.aviaone.com/bitcanna/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/bitcanna/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/bitcanna/","tx_page":"https://explorer.nodeshub.online/bitcanna/tx/${txHash}","account_page":"https://explorer.nodeshub.online/bitcanna/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/bitcanna","tx_page":"https://explorer.whenmoonwhenlambo.money/bitcanna/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/bitcanna/account/${accountAddress}"},{"kind":"AviaOne Explorer 🟒","url":"https://mainnet.explorer.aviaone.com/bitcanna","tx_page":"https://mainnet.explorer.aviaone.com/bitcanna/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/bitcanna/account/${accountAddress}"}]},{"chainId":"bitsong-2b","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/bitsong","tx_page":"https://ezstaking.app/bitsong/txs/${txHash}","account_page":"https://ezstaking.app/bitsong/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/bitsong","tx_page":"https://ping.pub/bitsong/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/bitsong","tx_page":"https://www.mintscan.io/bitsong/transactions/${txHash}","account_page":"https://www.mintscan.io/bitsong/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/bitsong","tx_page":"https://staking-explorer.com/transaction.php?chain=bitsong&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=bitsong&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/bitsong","tx_page":"https://atomscan.com/bitsong/transactions/${txHash}","account_page":"https://atomscan.com/bitsong/accounts/${accountAddress}"},{"kind":"Safe Block","url":"https://explorer.safeblok.space/bitsong","tx_page":"https://explorer.safeblock.space/bitsong/tx/${txHash}","account_page":"https://explorer.safeblock.space/bitsong/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Bitsong","tx_page":"https://explorer.stavr.tech/Bitsong/tx/${txHash}","account_page":"https://explorer.stavr.tech/Bitsong/account/${accountAddress}"}]},{"chainId":"blockx_19191-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/blockx","tx_page":"https://ping.pub/blockx/tx/${txHash}"},{"kind":"Nodeist Explorer","url":"https://explorer.ist/blockx/","tx_page":"https://explorer.ist/blockx/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/blockx","tx_page":"https://explorer.whenmoonwhenlambo.money/blockx/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/blockx/account/${accountAddress}"}]},{"chainId":"bluechip-2"},{"chainId":"bluzelle-9","explorers":[{"kind":"ping.pub","url":"https://ping.explorer.net.bluzelle.com/bluzelle","tx_page":"https://ping.explorer.net.bluzelle.com/bluzelle/tx/${txHash}","account_page":"https://ping.explorer.net.bluzelle.com/bluzelle/account/${accountAddress}"},{"kind":"big dipper","url":"https://bd.explorer.net.bluzelle.com","tx_page":"https://bd.explorer.net.bluzelle.com/transactions/${txHash}","account_page":"https://bd.explorer.net.bluzelle.com/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/bluzelle","tx_page":"https://explorer.tcnetwork.io/bluzelle/transaction/${txHash}"},{"kind":"Nodine.ID","url":"https://explorer.co.id/bluzelle","tx_page":"https://explorer.co.id/bluzelle/transaction/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/bluzelle","tx_page":"https://explorer.whenmoonwhenlambo.money/bluzelle/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/bluzelle/account/${accountAddress}"}]},{"chainId":"bostrom","explorers":[{"kind":"cyb","url":"https://cyb.ai/","tx_page":"https://cyb.ai/network/bostrom/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/bostrom","tx_page":"https://ping.pub/bostrom/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/bostrom","tx_page":"https://staking-explorer.com/transaction.php?chain=bostrom&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=bostrom&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/bostrom","tx_page":"https://atomscan.com/bostrom/transactions/${txHash}","account_page":"https://atomscan.com/bostrom/accounts/${accountAddress}"}]},{"chainId":"bouachain","explorers":[{"kind":"bouachain","url":"https://bouascan.com","tx_page":"https://bouascan.com/bouachain/tx/${txHash}","account_page":"https://bouascan.com/bouachain/${accountAddress}"}]},{"chainId":"canto_7700-1","explorers":[{"kind":"ping.pub","url":"https://cosmos-explorers.neobase.one/canto","tx_page":"https://cosmos-explorers.neobase.one/canto/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/canto","tx_page":"https://staking-explorer.com/transaction.php?chain=canto&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=canto&addr=${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/canto","tx_page":"https://explorer.tcnetwork.io/canto/transaction/${txHash}"},{"kind":"ezstaking","url":"https://ezstaking.app/canto","tx_page":"https://ezstaking.app/canto/txs/${txHash}","account_page":"https://ezstaking.app/canto/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Canto-Mainnet","tx_page":"https://explorer.stavr.tech/Canto-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Canto-Mainnet/account/${accountAddress}"}]},{"chainId":"carbon-1","explorers":[{"kind":"carbonscan","url":"https://scan.carbon.network","tx_page":"https://scan.carbon.network/transaction/${txHash}?net=main"},{"kind":"ping.pub","url":"https://ping.pub/carbon","tx_page":"https://ping.pub/carbon/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/carbon","tx_page":"https://staking-explorer.com/transaction.php?chain=carbon&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=carbon&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/carbon","tx_page":"https://atomscan.com/carbon/transactions/${txHash}","account_page":"https://atomscan.com/carbon/accounts/${accountAddress}"}]},{"chainId":"celestia","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/celestia","tx_page":"https://mintscan.io/celestia/txs/${txHash}","account_page":"https://mintscan.io/celestia/address/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/celestia","tx_page":"https://staking-explorer.com/transaction.php?chain=celestia&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=celestia&addr=${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/celestia/","tx_page":"https://explorer.nodestake.org/celestia/txs/${txHash}","account_page":"https://explorer.nodestake.org/celestia/account/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/celestia","tx_page":"https://stakeflow.io/celestia/transactions/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/celestia","tx_page":"https://explorer.tcnetwork.io/celestia/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/celestia/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Celestia-Mainnet","tx_page":"https://explorer.stavr.tech/Celestia-Mainnet/transaction/${txHash}","account_page":"https://explorer.stavr.tech/Celestia-Mainnet/account/${accountAddress}"},{"kind":"AM Solutions","url":"https://explorer.theamsolutions.info/celestia-main","tx_page":"https://explorer.theamsolutions.info/celestia-main/transaction/${txHash}","account_page":"https://explorer.theamsolutions.info/celestia-main/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/celestia","tx_page":"https://ezstaking.app/celestia/txs/${txHash}","account_page":"https://ezstaking.app/celestia/account/${accountAddress}"},{"kind":"πŸš€ itrocket πŸš€","url":"https://mainnet.itrocket.net/celestia","tx_page":"https://mainnet.itrocket.net/celestia/transaction/${txHash}","account_page":"https://mainnet.itrocket.net/celestia/account/${accountAddress}"},{"kind":"DTEAM | Explorer","url":"https://explorer.mainnet.dteam.tech/celestia","tx_page":"https://explorer.mainnet.dteam.tech/celestia/transaction/${txHash}","account_page":"https://explorer.mainnet.dteam.tech/celestia/account/${accountAddress}"},{"kind":"Relaxed Explorer πŸ¦₯","url":"https://explorer.stakeandrelax.net/celestia","tx_page":"https://explorer.stakeandrelax.net/celestia/transaction/${txHash}","account_page":"https://explorer.stakeandrelax.net/celestia/account/${accountAddress}"}]},{"chainId":"perun-1","explorers":[{"kind":"explorer","url":"https://explorer.apeironnodes.com/chain4energy","tx_page":"https://explorer.apeironnodes.com/chain4energy/transactions/${txHash}"},{"kind":"DTEAM | Explorer","url":"https://explorer.mainnet.dteam.tech/chain4energy","tx_page":"https://explorer.mainnet.dteam.tech/chain4energytransactions/${txHash}"},{"kind":"explorer","url":"https://explorer.ppnv.space/c4e","tx_page":"https://explorer.ppnv.space/c4e/transactions/${txHash}"},{"kind":"explorer","url":"https://explorer.c4e.io/","tx_page":"https://explorer.c4e.io/transactions/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/chain4energy","tx_page":"https://explorer.nodestake.top/chain4energy/transactions/${txHash}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀 Explorer","url":"https://exp.utsa.tech/c4e","tx_page":"https://exp.utsa.tech/c4e/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/c4e","tx_page":"https://explorer.stavr.tech/c4e/tx/${txHash}"},{"kind":"BccNodes Explorer","url":"https://explorer.bccnodes.com/chain4energy","tx_page":"https://explorer.bccnodes.com/chain4energy/transactions/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/c4e","tx_page":"https://explorer.nodexcapital.com/c4e/transactions/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/chain4energy","tx_page":"https://atomscan.com/chain4energy/transactions/${txHash}","account_page":"https://atomscan.com/chain4energy/accounts/${accountAddress}"},{"kind":"AM Solutions Explorer","url":"https://explorer.theamsolutions.info/c4e-main/staking","tx_page":"https://explorer.theamsolutions.info/c4e-main/transactions/${txHash}"},{"kind":"AlxVoy ⚑ ANODE.TEAM Explorer","url":"https://main.anode.team/c4e","tx_page":"https://main.anode.team/c4e/tx/${txHash}"},{"kind":"ScanRun","url":"https://scanrun.io/c4e","tx_page":"https://scanrun.io/c4e/transactions/${txHash}"},{"kind":"Cryptech","url":"https://explorers.cryptech.com.ua/chain4energy","tx_page":"https://explorers.cryptech.com.ua/chain4energy/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/chain4energy","tx_page":"https://explorer.whenmoonwhenlambo.money/chain4energy/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/chain4energy/account/${accountAddress}"}]},{"chainId":"cheqd-mainnet-1","explorers":[{"kind":"bigdipper","url":"https://explorer.cheqd.io","tx_page":"https://explorer.cheqd.io/transactions/${txHash}","account_page":"https://explorer.cheqd.io/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/cheqd","tx_page":"https://ping.pub/cheqd/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/cheqd","tx_page":"https://staking-explorer.com/transaction.php?chain=cheqd&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=cheqd&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Cheqd-Mainnet","tx_page":"https://explorer.stavr.tech/Cheqd-Mainnet/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/cheqd","tx_page":"https://atomscan.com/cheqd/transactions/${txHash}","account_page":"https://atomscan.com/cheqd/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/cheqd","tx_page":"https://ezstaking.app/cheqd/txs/${txHash}","account_page":"https://ezstaking.app/cheqd/account/${accountAddress}"},{"kind":"ping.pub","url":"https://look.chillvalidation.com/cheqd","tx_page":"https://look.chillvalidation.com/cheqd/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.wildsage.io/cheqd","tx_page":"https://ping.wildsage.io/cheqd/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/cheqd","tx_page":"https://mainnet.whispernode.com/cheqd/tx/${txHash}","account_page":"https://mainnet.whispernode.com/cheqd/account/${accountAddress}"}]},{"chainId":"chihuahua-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/chihuahua","tx_page":"https://ping.pub/chihuahua/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Chihua-Mainnet","tx_page":"https://explorer.stavr.tech/Chihua-Mainnet/tx/${txHash}"},{"kind":"mintscan","url":"https://mintscan.io/chihuahua","tx_page":"https://mintscan.io/chihuahua/transactions/${txHash}","account_page":"https://www.mintscan.io/chihuahua/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/chihuahua","tx_page":"https://staking-explorer.com/transaction.php?chain=chihuahua&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=chihuahua&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/chihuahua","tx_page":"https://atomscan.com/chihuahua/transactions/${txHash}","account_page":"https://atomscan.com/chihuahua/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/chihuahua","tx_page":"https://ezstaking.app/chihuahua/txs/${txHash}","account_page":"https://ezstaking.app/chihuahua/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/chihuahua/","tx_page":"https://explorer.nodeshub.online/chihuahua/tx/${txHash}","account_page":"https://explorer.nodeshub.online/chihuahua/accounts/${accountAddress}"}]},{"chainId":"chimba","explorers":[{"kind":"bigdipper","url":"https://explorer.chimba.ooo/","tx_page":"https://explorer.chimba.ooo/transactions/${txHash}"}]},{"chainId":"cifer-2","explorers":[{"kind":"bigdipper","url":"https://explorer.cifer.ai/","tx_page":"https://explorer.cifer.ai/transactions/${txHash}"}]},{"chainId":"cnho_stables-1","explorers":[{"url":"https://explorer.cnho.io","tx_page":"https://explorer.cnho.io/transaction/${txHash}","account_page":"https://explorer.cnho.io/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/cnhostables","tx_page":"https://explorer.whenmoonwhenlambo.money/cnhostables/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/cnhostables/account/${accountAddress}"}]},{"chainId":"comdex-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/comdex","tx_page":"https://ezstaking.app/comdex/txs/${txHash}","account_page":"https://ezstaking.app/comdex/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/comdex","tx_page":"https://www.mintscan.io/comdex/transactions/${txHash}","account_page":"https://www.mintscan.io/comdex/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/comdex","tx_page":"https://staking-explorer.com/transaction.php?chain=comdex&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=comdex&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Comdex-Mainnet","tx_page":"https://explorer.stavr.tech/Comdex-Mainnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/Comdex-Mainnet/accounts/${accountAddress}"},{"kind":"aneka","url":"https://comdex.aneka.io/","tx_page":"https://comdex.aneka.io/txs/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/comdex","tx_page":"https://ping.pub/comdex/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/comdex","tx_page":"https://atomscan.com/comdex/transactions/${txHash}","account_page":"https://atomscan.com/comdex/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/comdex","account_page":"https://stakeflow.io/comdex/accounts/${accountAddress}"},{"kind":"ValidatorNode","url":"https://explorer.validatornode.com/comdex","tx_page":"https://explorer.validatornode.com/comdex/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/comdex","tx_page":"https://mainnet.whispernode.com/comdex/tx/${txHash}","account_page":"https://mainnet.whispernode.com/comdex/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/comdex","tx_page":"https://explorer.chainroot.io/comdex/transactions/${txHash}","account_page":"https://explorer.chainroot.io/comdex/accounts/${accountAddress}"}]},{"chainId":"commercio-3","explorers":[{"kind":"almerico","url":"https://mainnet.commercio.network","tx_page":"https://mainnet.commercio.network/transactions/detail/${txHash}"}]},{"chainId":"centauri-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/composable","tx_page":"https://ping.pub/composable/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/composable","tx_page":"https://staking-explorer.com/transaction.php?chain=composable&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=composable&addr=${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/composable","tx_page":"https://explorer.nodestake.top/composable/tx/${txHash}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/composable","tx_page":"https://exp.stakevillage.net/composable/tx/${txHash}","account_page":"https://exp.stakevillage.net/composable/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Composable-Mainnet","tx_page":"https://explorer.stavr.tech/Composable-Mainnet/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/picasso","tx_page":"https://mainnet.whispernode.com/picasso/tx/${txHash}","account_page":"https://mainnet.whispernode.com/picasso/account/${accountAddress}"}]},{"chainId":"cvn_2032-1","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/conscious","tx_page":"https://staking-explorer.com/transaction.php?chain=conscious&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=conscious&addr=${accountAddress}"},{"kind":"blockscout","url":"https://explore.consciousdao.com/","tx_page":"https://explore.consciousdao.com/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/conscious","tx_page":"https://explorer.whenmoonwhenlambo.money/conscious/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/conscious/account/${accountAddress}"}]},{"chainId":"coreum-mainnet-1","explorers":[{"kind":"Coreum","url":"https://explorer.coreum.com/coreum","tx_page":"https://explorer.coreum.com/coreum/transactions/${txHash}","account_page":"https://explorer.coreum.com/coreum/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/coreum","tx_page":"https://www.mintscan.io/coreum/transactions/${txHash}","account_page":"https://www.mintscan.io/coreum/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/coreum","tx_page":"https://staking-explorer.com/transaction.php?chain=coreum&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=coreum&addr=${accountAddress}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/coreum","tx_page":"https://explorer.nodexcapital.com/coreum/txs/${txHash}","account_page":"https://explorer.nodexcapital.com/coreum/account/${accountAddress}"},{"kind":"Silk Nodes","url":"https://explorer.silknodes.io/coreum","tx_page":"https://explorer.silknodes.io/coreum/tx/${txHash}","account_page":"https://explorer.silknodes.io/coreum/account/${accountAddress}"},{"kind":"#SoloNation","url":"https://explorer.solonation.io/core-main","tx_page":"https://explorer.solonation.io/core-main/tx/${txHash}","account_page":"https://explorer.solonation.io/core-main/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/coreum","tx_page":"https://explorer.tcnetwork.io/coreum/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/coreum/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/coreum","tx_page":"https://ezstaking.app/coreum/txs/${txHash}","account_page":"https://ezstaking.app/coreum/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/coreum","tx_page":"https://explorer.chainroot.io/coreum/transactions/${txHash}","account_page":"https://explorer.chainroot.io/coreum/accounts/${accountAddress}"}]},{"chainId":"cosmoshub-4","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/cosmos","tx_page":"https://www.mintscan.io/cosmos/transactions/${txHash}","account_page":"https://www.mintscan.io/cosmos/accounts/${accountAddress}","validator_page":"https://www.mintscan.io/cosmos/validators/${validatorAddress}","proposal_page":"https://www.mintscan.io/cosmos/proposals/${proposalId}","block_page":"https://www.mintscan.io/cosmos/blocks/${blockHeight}"},{"kind":"ezstaking","url":"https://ezstaking.app/cosmoshub","tx_page":"https://ezstaking.app/cosmoshub/txs/${txHash}","account_page":"https://ezstaking.app/cosmoshub/account/${accountAddress}","validator_page":"https://ezstaking.app/cosmoshub/validators/${validatorAddress}","proposal_page":"https://ezstaking.app/cosmoshub/proposals/${proposalId}","block_page":"https://ezstaking.app/cosmoshub/blocks/${blockHeight}"},{"kind":"ping.pub","url":"https://ping.pub/cosmos","tx_page":"https://ping.pub/cosmos/tx/${txHash}","account_page":"https://ping.pub/cosmos/account/${accountAddress}","validator_page":"https://ping.pub/cosmos/staking/${validatorAddress}","proposal_page":"https://ping.pub/cosmos/gov/${proposalId}","block_page":"https://ping.pub/cosmos/block/${blockHeight}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/cosmoshub","tx_page":"https://staking-explorer.com/transaction.php?chain=cosmoshub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=cosmoshub&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com","tx_page":"https://atomscan.com/transactions/${txHash}","account_page":"https://atomscan.com/accounts/${accountAddress}","validator_page":"https://atomscan.com/validators/${validatorAddress}","proposal_page":"https://atomscan.com/votes/${proposalId}","block_page":"https://atomscan.com/blocks/${blockHeight}"},{"kind":"unichain","url":"https://unicha.in/cosmos","tx_page":"https://unicha.in/cosmos/transaction/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/cosmoshub","tx_page":"https://explorer.tcnetwork.io/cosmoshub/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/cosmoshub/account/${accountAddress}","validator_page":"https://explorer.tcnetwork.io/cosmoshub/validator/${validatorAddress}","proposal_page":"https://explorer.tcnetwork.io/cosmoshub/proposal/${proposalId}","block_page":"https://explorer.tcnetwork.io/cosmoshub/block/${blockHeight}"},{"kind":"Stakeflow","url":"https://stakeflow.io/cosmos","account_page":"https://stakeflow.io/cosmos/accounts/${accountAddress}","validator_page":"https://stakeflow.io/cosmos/validators/${validatorAddress}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/cosmos"},{"kind":"Inbloc","url":"https://inbloc.org","tx_page":"https://inbloc.org/transactions/${txHash}","account_page":"https://inbloc.org/account/${accountAddress}","validator_page":"https://inbloc.org/cosmos/validator/${validatorAddress}","proposal_page":"https://inbloc.org/cosmos/proposal/${proposalId}","block_page":"https://inbloc.org/cosmos/blocks/${blockHeight}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/cosmos","tx_page":"https://mainnet.whispernode.com/cosmos/tx/${txHash}","account_page":"https://mainnet.whispernode.com/cosmos/account/${accountAddress}","validator_page":"https://mainnet.whispernode.com/cosmos/staking/${validatorAddress}","proposal_page":"https://mainnet.whispernode.com/cosmos/gov/${proposalId}","block_page":"https://mainnet.whispernode.com/cosmos/block/${blockHeight}"},{"kind":"ITRocket","url":"https://mainnet.itrocket.net/cosmoshub","tx_page":"https://mainnet.itrocket.net/cosmoshub/tx/${txHash}","account_page":"https://mainnet.itrocket.net/cosmoshub/account/${accountAddress}","validator_page":"https://mainnet.itrocket.net/cosmoshub/staking/${validatorAddress}","proposal_page":"https://mainnet.itrocket.net/cosmoshub/gov/${proposalId}","block_page":"https://mainnet.itrocket.net/cosmoshub/block/${blockHeight}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/cosmos","tx_page":"https://explorer.nodestake.org/cosmos/tx/${txHash}","account_page":"https://explorer.nodestake.org/cosmos/account/${accountAddress}","validator_page":"https://explorer.nodestake.org/cosmos/staking/${validatorAddress}","proposal_page":"https://explorer.nodestake.org/cosmos/gov/${proposalId}","block_page":"https://explorer.nodestake.org/cosmos/block/${blockHeight}"}]},{"chainId":"coss-1"},{"chainId":"crescent-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/crescent","tx_page":"https://ezstaking.app/crescent/txs/${txHash}","account_page":"https://ezstaking.app/crescent/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/crescent","tx_page":"https://ping.pub/crescent/tx/${txHash}"},{"kind":"explorers.guru","url":"https://crescent.explorers.guru","tx_page":"https://crescent.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/crescent","tx_page":"https://staking-explorer.com/transaction.php?chain=crescent&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=crescent&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/crescent","tx_page":"https://atomscan.com/crescent/transactions/${txHash}","account_page":"https://atomscan.com/crescent/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/crescent","account_page":"https://stakeflow.io/crescent/accounts/${accountAddress}"}]},{"chainId":"cronosmainnet_25-1","explorers":[{"kind":"cronoscan","url":"https://cronoscan.com","tx_page":"https://cronoscan.com/tx/${txHash}"},{"kind":"crypto.org","url":"https://cronos.org/explorer","tx_page":"https://cronos.org/explorer/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/cronos","tx_page":"https://ping.pub/cronos/tx/${txHash}"}]},{"chainId":"crypto-org-chain-mainnet-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/crypto-org","tx_page":"https://www.mintscan.io/crypto-org/transactions/${txHash}","account_page":"https://www.mintscan.io/crypto-org/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/cryptoorgchain","tx_page":"https://staking-explorer.com/transaction.php?chain=cryptoorgchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=cryptoorgchain&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/crypto-org","tx_page":"https://ezstaking.app/crypto-org/txs/${txHash}","account_page":"https://ezstaking.app/crypto-org/account/${accountAddress}"},{"kind":"cronos.org","url":"https://cronos-pos.org/explorer","tx_page":"https://cronos-pos.org/explorer/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/crypto-com-chain","tx_page":"https://ping.pub/crypto-com-chain/tx/${txHash}"}]},{"chainId":"mainnet-3","explorers":[{"kind":"decentr.net","url":"https://explorer.decentr.net","tx_page":"https://explorer.decentr.net/transactions/${txHash}?networkId=mainnet"},{"kind":"ping.pub","url":"https://ping.pub/decentr/","tx_page":"https://ping.pub/decentr/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/decentr","tx_page":"https://staking-explorer.com/transaction.php?chain=decentr&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=decentr&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Decentr-Mainnet","tx_page":"https://explorer.stavr.tech/Decentr-Mainnet/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/decentr","tx_page":"https://atomscan.com/decentr/transactions/${txHash}","account_page":"https://atomscan.com/decentr/accounts/${accountAddress}"},{"kind":"Nodine.ID","url":"https://explorer.co.id/decentr","tx_page":"https://explorer.co.id/decentr/tx/${txHash}"},{"kind":"THE EXPLORER","url":"https://explorer.sxlzptprjkt.xyz/decentr","tx_page":"https://explorer.sxlzptprjkt.xyz/decentr/tx/${txHash}"},{"kind":"hexskrt EXPLORER","url":"https://explorer.hexskrt.net/decentr","tx_page":"https://explorer.hexskrt.net/decentr/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/decentr","tx_page":"https://explorer.nodexcapital.com/decentr/tx/${txHash}"},{"kind":"Explorer ComunityNode","url":"https://explorer.comunitynode.my.id/decentr","tx_page":"https://explorer.comunitynode.my.id/decentr/tx/${txHash}"}]},{"chainId":"desmos-mainnet","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/desmos","tx_page":"https://ezstaking.app/desmos/txs/${txHash}","account_page":"https://ezstaking.app/desmos/account/${accountAddress}"},{"kind":"bigdipper","url":"https://bigdipper.live/desmos","tx_page":"https://bigdipper.live/desmos/transactions/${txHash}","account_page":"https://bigdipper.live/desmos/accounts/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/desmos","tx_page":"https://www.mintscan.io/desmos/transactions/${txHash}","account_page":"https://www.mintscan.io/desmos/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/desmos","tx_page":"https://ping.pub/desmos/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/desmos","tx_page":"https://atomscan.com/desmos/transactions/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/desmos","tx_page":"https://explorer.tcnetwork.io/desmos/transaction/${txHash}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Desmos","tx_page":"https://explorer.declab.pro/Desmos/tx/${txHash}"}]},{"chainId":"dhealth","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/dhealth","tx_page":"https://staking-explorer.com/transaction.php?chain=dhealth&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=dhealth&addr=${accountAddress}"},{"kind":"nodestake","url":"https://explorer.nodestake.org/dhealth","tx_page":"https://explorer.nodestake.org/dhealth/tx/${txHash}","account_page":"https://explorer.nodestake.org/dhealth/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/dhealth/","tx_page":"https://explorer.nodeshub.online/dhealth/tx/${txHash}","account_page":"https://explorer.nodeshub.online/dhealth/accounts/${accountAddress}"}]},{"chainId":"vota-ash","explorers":[{"kind":"Dora Vota Ping Pub","url":"https://vota-explorer.dorafactory.org","tx_page":"https://vota-explorer.dorafactory.org/doravota/tx/${txHash}"},{"kind":"lesnik | UTSA Ping Pub","url":"https://exp.utsa.tech/dora/staking","tx_page":"https://exp.utsa.tech/dora/tx/${txHash}"},{"kind":"ITRocket Ping Pub","url":"https://mainnet.itrocket.net/doravota/staking","tx_page":"https://mainnet.itrocket.net/doravota/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/doravota","tx_page":"https://staking-explorer.com/transaction.php?chain=doravota&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=doravota&addr=${accountAddress}"},{"kind":"Explorers","url":"https://dora.explorers.guru","tx_page":"https://dora.explorers.guru/transaction/${txHash}"}]},{"chainId":"dungeon-1","explorers":[{"kind":"Ping.Pub","url":"https://ping.pub/Dungeonchain","tx_page":"https://ping.pub/Dungeonchain/tx/${txHash}","account_page":"https://ping.pub/Dungeonchain/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/dungeon","tx_page":"https://explorer.whenmoonwhenlambo.money/dungeon/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/dungeon/account/${accountAddress}"}]},{"chainId":"dydx-mainnet-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/dydx","tx_page":"https://www.mintscan.io/dydx/txs/${txHash}","account_page":"https://www.mintscan.io/dydx/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/dydx","tx_page":"https://staking-explorer.com/transaction.php?chain=dydx&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=dydx&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/dydx","tx_page":"https://ezstaking.app/dydx/txs/${txHash}","account_page":"https://ezstaking.app/dydx/account/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.top/dydx/","tx_page":"https://explorer.nodestake.top/dydx/txs/${txHash}","account_page":"https://explorer.nodestake.top/dydx/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/dydx","tx_page":"https://explorer.tcnetwork.io/dydx/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/dydx/account/${accountAddress}"}]},{"chainId":"dymension_1100-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/dymension","tx_page":"https://www.mintscan.io/dymension/tx/${txHash}","account_page":"https://www.mintscan.io/dymension/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/dymension","tx_page":"https://staking-explorer.com/transaction.php?chain=dymension&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=dymension&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/dymension","tx_page":"https://ezstaking.app/dymension/txs/${txHash}","account_page":"https://ezstaking.app/dymension/account/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/dymension","tx_page":"https://explorer.nodestake.org/dymension/tx/${txHash}","account_page":"https://explorer.nodestake.org/dymension/account/${accountAddress}"},{"kind":"Kynraze","url":"https://explorer.kynraze.com/dymension","tx_page":"https://explorer.kynraze.com/dymension/tx/${txHash}","account_page":"https://explorer.kynraze.com/dymension/account/${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://explorer.ist/dymension","tx_page":"https://explorer.ist/dymension/tx/${txHash}","account_page":"https://explorer.ist/dymension/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Dymension-Mainnet","tx_page":"https://explorer.stavr.tech/Dymension-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Dymension-Mainnet/account/${accountAddress}"},{"kind":"HoodScan","url":"https://hoodscan.io/dymension","tx_page":"https://hoodscan.io/dymension/transactions/${txHash}","account_page":"https://hoodscan.io/dymension/accounts/${accountAddress}"},{"kind":"posthuman","url":"https://explorer.posthuman.digital/dymension","tx_page":"https://explorer.posthuman.digital/dymension/tx/${txHash}","account_page":"https://explorer.posthuman.digital/dymension/account/${accountAddress}"},{"kind":"AVIAONE 🟒","url":"https://mainnet.explorer.aviaone.com/dymension","tx_page":"https://mainnet.explorer.aviaone.com/dymension/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/dymension/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/dymension","tx_page":"https://mainnet.whispernode.com/dymension/tx/${txHash}","account_page":"https://mainnet.whispernode.com/dymension/account/${accountAddress}"},{"kind":"DTEAM | Explorer","url":"https://explorer.mainnet.dteam.tech/dymension","tx_page":"https://explorer.mainnet.dteam.tech/dymension/tx/${txHash}","account_page":"https://explorer.mainnet.dteam.tech/dymension/account/${accountAddress}"}]},{"chainId":"dyson-mainnet-01","explorers":[{"kind":"dysonprotocol","url":"https://explorer.dys.dysonprotocol.com/dyson/","tx_page":"https://explorer.dys.dysonprotocol.com/dyson/tx/${txHash}","account_page":"https://explorer.dys.dysonprotocol.com/dyson/account/${accountAddress}"}]},{"chainId":"echelon_3000-3","explorers":[{"kind":"echelon","url":"https://app.ech.network/explorer","tx_page":"https://app.ech.network/explorer/tx/${txHash}"},{"kind":"blockscout","url":"https://scout.ech.network","tx_page":"https://scout.ech.network/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/echelon","tx_page":"https://ping.pub/echelon/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/echelon","tx_page":"https://atomscan.com/echelon/transactions/${txHash}","account_page":"https://atomscan.com/echelon/accounts/${accountAddress}"}]},{"chainId":"elys-1","explorers":[{"kind":"NodeStake","url":"https://explorer.nodestake.org/elys","tx_page":"https://explorer.nodestake.org/elys/tx/${txHash}","account_page":"https://explorer.nodestake.org/elys/account/${accountAddress}"},{"kind":"Moonlet","url":"https://explorer.moonlet.cloud/elys","tx_page":"https://explorer.moonlet.cloud/elys/tx/${txHash}","account_page":"https://explorer.moonlet.cloud/elys/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/elys","tx_page":"https://ping.pub/elys/tx/${txHash}","account_page":"https://ping.pub/elys/account/${accountAddress}"},{"kind":"itrocket","url":"https://mainnet.itrocket.net/elys","tx_page":"https://mainnet.itrocket.net/elys/staking/tx/${txHash}","account_page":"https://mainnet.itrocket.net/elys/account/${accountAddress}"}]},{"chainId":"emoney-3","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/emoney","tx_page":"https://ezstaking.app/emoney/txs/${txHash}","account_page":"https://ezstaking.app/emoney/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/e-money","tx_page":"https://ping.pub/e-money/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/emoney","tx_page":"https://atomscan.com/emoney/transactions/${txHash}","account_page":"https://atomscan.com/emoney/accounts/${accountAddress}"}]},{"chainId":"empowerchain-1","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/empowerchain","tx_page":"https://staking-explorer.com/transaction.php?chain=empowerchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=empowerchain&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Empower-Mainnet","tx_page":"https://explorer.stavr.tech/Empower-Mainnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/Empower-Mainnet/account/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/empower","tx_page":"https://explorer.nodestake.top/empower/tx/${txHash}","account_page":"https://explorer.nodestake.top/empower/account/{$accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/empower","tx_page":"https://exp.stakevillage.net/empower/tx/${txHash}","account_page":"https://exp.stakevillage.net/empower/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Empower","tx_page":"https://explorer.declab.pro/Empower/tx/${txHash}","account_page":"https://explorer.declab.pro/Empower/account/{$accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/empowerchain","tx_page":"https://mainnet.whispernode.com/empowerchain/tx/${txHash}","account_page":"https://mainnet.whispernode.com/empowerchain/account/${accountAddress}"}]},{"chainId":"epix_4242-1","explorers":[{"kind":"Silk Nodes Explorer","url":"https://explorer.silknodes.io/epix","tx_page":"https://explorer.silknodes.io/osmosis/tx/${txHash}"}]},{"chainId":"1","explorers":[{"kind":"Etherscan","url":"https://etherscan.io/","tx_page":"https://etherscan.io/tx/${txHash}"}]},{"chainId":"ethos_7003-1","explorers":[]},{"chainId":"evmos_9001-2","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/evmos","tx_page":"https://ezstaking.app/evmos/txs/${txHash}","account_page":"https://ezstaking.app/evmos/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/evmos","tx_page":"https://www.mintscan.io/evmos/transactions/${txHash}","account_page":"https://www.mintscan.io/evmos/accounts/${accountAddress}"},{"kind":"blockscout","url":"https://evm.evmos.org","tx_page":"https://evm.evmos.org/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/evmos","tx_page":"https://ping.pub/evmos/tx/${txHash}"},{"kind":"explorers.guru","url":"https://evmos.explorers.guru","tx_page":"https://evmos.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/evmos","tx_page":"https://staking-explorer.com/transaction.php?chain=evmos&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=evmos&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/evmos","tx_page":"https://atomscan.com/evmos/transactions/${txHash}","account_page":"https://atomscan.com/evmos/accounts/${accountAddress}"},{"kind":"tcnetwork","url":"https://evmos.tcnetwork.io","tx_page":"https://evmos.tcnetwork.io/transaction/${txHash}"},{"kind":"Stakeflow","url":"https://stakeflow.io/evmos","account_page":"https://stakeflow.io/evmos/accounts/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/evmos","tx_page":"https://exp.stakevillage.net/evmos/tx/${txHash}","account_page":"https://exp.stakevillage.net/evmos/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/evmos","tx_page":"https://explorer.stavr.tech/evmos/tx/${txHash}","account_page":"https://explorer.stavr.tech/evmos/accounts/${accountAddress}"}]},{"chainId":"fetchhub-4","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/fetchai","tx_page":"https://www.mintscan.io/fetchai/transactions/${txHash}","account_page":"https://www.mintscan.io/fetchai/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/fetchhub","tx_page":"https://ezstaking.app/fetchhub/txs/${txHash}","account_page":"https://ezstaking.app/fetchhub/account/${accountAddress}"},{"kind":"bigdipper","url":"https://explore-fetchhub.fetch.ai","tx_page":"https://explore-fetchhub.fetch.ai/transactions/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/fetchhub","tx_page":"https://ping.pub/fetchhub/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/fetchai","tx_page":"https://atomscan.com/fetchai/transactions/${txHash}","account_page":"https://atomscan.com/fetchai/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/fetchhub","tx_page":"https://staking-explorer.com/transaction.php?chain=fetchhub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=fetchhub&addr=${accountAddress}"},{"kind":"bigdipper","url":"https://fetch-explorer.teasel.org","tx_page":"https://fetch-explorer.teasel.org/transactions/${txHash}"},{"kind":"azoyalabs","url":"https://fetchstation.azoyalabs.com/mainnet","tx_page":"https://fetchstation.azoyalabs.com/mainnet/explorer/transactions/${txHash}","account_page":"https://fetchstation.azoyalabs.com/mainnet/explorer/address/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/fetchhub/","tx_page":"https://explorer.nodeshub.online/fetchhub/tx/${txHash}","account_page":"https://explorer.nodeshub.online/fetchhub/accounts/${accountAddress}"},{"kind":"Blockchain Explorer by AVIAONE 🟒","url":"https://mainnet.explorer.aviaone.com/fetchhub","tx_page":"https://mainnet.explorer.aviaone.com/fetchhub/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/fetchhub/accounts/${accountAddress}"}]},{"chainId":"finschia-2","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/finschia","tx_page":"https://www.mintscan.io/finschia/tx/${txHash}","account_page":"https://www.mintscan.io/finschia/address/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/finschia","tx_page":"https://ezstaking.app/finschia/txs/${txHash}","account_page":"https://ezstaking.app/finschia/account/${accountAddress}"}]},{"chainId":"colosseum-1","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/firmachain","tx_page":"https://staking-explorer.com/transaction.php?chain=firmachain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=firmachain&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/firmachain","tx_page":"https://ezstaking.app/firmachain/txs/${txHash}","account_page":"https://ezstaking.app/firmachain/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Firmachain-M","tx_page":"https://explorer.stavr.tech/Firmachain-M/txs/${txHash}","account_page":"https://explorer.stavr.tech/Firmachain-M/account/${accountAddress}"},{"kind":"bigdipper","url":"https://explorer.firmachain.dev","tx_page":"https://explorer.firmachain.dev/transactions/${txHash}"},{"kind":"explorer.ChainTools","url":"https://explorer.chaintools.tech/firmachain","tx_page":"https://explorer.chaintools.tech/firmachain/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/firmachain","tx_page":"https://atomscan.com/firmachain/transactions/${txHash}","account_page":"https://atomscan.com/firmachain/accounts/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/firmachain/","tx_page":"https://explorer.nodeshub.online/firmachain/tx/${txHash}","account_page":"https://explorer.nodeshub.online/firmachain/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/firmachain","tx_page":"https://explorer.whenmoonwhenlambo.money/firmachain/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/firmachain/account/${accountAddress}"}]},{"chainId":"furya-1","explorers":[{"kind":"Furya Explorer","url":"https://explorer.furya.network/furya-1/","tx_page":"https://explorer.furya.network/furya-1/tx/${txHash}","account_page":"https://explorer.furya.network/furya-1/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/furya","tx_page":"https://staking-explorer.com/transaction.php?chain=furya&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=furya&addr=${accountAddress}"},{"kind":"Nodeshub Explorer","url":"https://explorer.nodeshub.online/furya","tx_page":"https://explorer.nodeshub.online/furya/txs/${txHash}","account_page":"https://explorer.nodeshub.online/furya/account/${accountAddress}"}]},{"chainId":"fxcore","explorers":[{"kind":"starscan","url":"https://starscan.io","tx_page":"https://starscan.io/fxcore/tx/${txHash}","account_page":"https://starscan.io/fxcore/address/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/fx","tx_page":"https://explorer.tcnetwork.io/fx/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/fx/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/fxcore","tx_page":"https://ping.pub/fxcore/tx/${txHash}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/fxcore/","tx_page":"https://explorer.nodeshub.online/fxcore/tx/${txHash}","account_page":"https://explorer.nodeshub.online/fxcore/accounts/${accountAddress}"}]},{"chainId":"galaxy-1","explorers":[{"kind":"ping.pub","url":"https://explorer.postcapitalist.io/Galaxy","tx_page":"https://explorer.postcapitalist.io/Galaxy/tx/${txHash}"}]},{"chainId":"wormchain","explorers":[{"kind":"bigdipper","url":"https://bigdipper.live/wormhole","tx_page":"https://bigdipper.live/wormhole/transactions/${txHash}","account_page":"https://bigdipper.live/wormhole/accounts/${accountAddress}"}]},{"chainId":"genesis_29-2","explorers":[{"kind":"ping.pub","url":"https://ping.pub/genesisL1","tx_page":"https://ping.pub/genesisL1/tx/${txHash}"},{"kind":"ping.pub","url":"https://exp.utsa.tech/genesis","tx_page":"https://exp.utsa.tech/genesis/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Genesisl1","tx_page":"https://explorer.stavr.tech/Genesisl1/tx/${txHash}","account_page":"https://explorer.stavr.tech/Genesisl1/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/genesisl1","tx_page":"https://atomscan.com/genesisl1/transactions/${txHash}","account_page":"https://atomscan.com/genesisl1/accounts/${accountAddress}"}]},{"chainId":"gitopia","explorers":[{"kind":"ping.pub","url":"https://ping.pub/gitopia","tx_page":"https://ping.pub/gitopia/tx/${txHash}","account_page":"https://ping.pub/gitopia/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/gitopia","tx_page":"https://staking-explorer.com/transaction.php?chain=gitopia&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=gitopia&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Gitopia-M","tx_page":"https://explorer.stavr.tech/Gitopia-M/tx/${txHash}","account_page":"https://explorer.stavr.tech/Gitopia-M/account/${accountAddress}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀","url":"https://exp.utsa.tech/gitopia","tx_page":"https://exp.utsa.tech/gitopia/tx/${txHash}","account_page":"https://exp.utsa.tech/gitopia/account/${accountAddress}"},{"kind":"Nodeist","url":"https://exp.nodeist.net/gitopia","tx_page":"https://exp.nodeist.net/gitopia/tx/${txHash}","account_page":"https://exp.nodeist.net/gitopia/account/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/gitopia","tx_page":"https://explorer.stake-take.com/gitopia/tx/${txHash}","account_page":"https://explorer.stake-take.com/gitopia/account/${accountAddress}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/gitopia","tx_page":"https://explorer.nodexcapital.com/gitopia/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/gitopia/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/gitopia","tx_page":"https://explorer.tcnetwork.io/gitopia/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/gitopia/account/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/gitopia","tx_page":"https://explorer.nodestake.org/gitopia/tx/${txHash}","account_page":"https://explorer.nodestake.org/gitopia/account/${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/gitopia-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/gitopia-mainnet/transaction/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/gitopia-mainnet/account/${accountAddress}"},{"kind":"Moonbridge","url":"https://explorer.moonbridge.team/gitopia","tx_page":"https://explorer.moonbridge.team/gitopia/tx/${txHash}","account_page":"https://explorer.moonbridge.team/gitopia/account/${accountAddress}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/gitopia","tx_page":"https://explorer.konsortech.xyz/gitopia/tx/${txHash}","account_page":"https://explorer.konsortech.xyz/gitopia/account/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/gitopia","tx_page":"https://exp.stakevillage.net/gitopia/tx/${txHash}","account_page":"https://exp.stakevillage.net/gitopia/account/${accountAddress}"},{"kind":"AlxVoy ⚑ ANODE.TEAM","url":"https://main.anode.team/gitopia","tx_page":"https://main.anode.team/gitopia/tx/${txHash}","account_page":"https://main.anode.team/gitopia/account/${accountAddress}"},{"kind":"L0vd.com ❀️","url":"https://chain-services.l0vd.com/mainnets/gitopia","tx_page":"https://chain-services.l0vd.com/mainnets/gitopia/tx/${txHash}","account_page":"https://chain-services.l0vd.com/mainnets/gitopia/account/${accountAddress}"},{"kind":"ToTheMars","url":"https://explorer.tothemars.network/gitopia","tx_page":"https://explorer.tothemars.network/gitopia/tx/${txHash}","account_page":"https://explorer.tothemars.network/gitopia/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Gitopia","tx_page":"https://explorer.declab.pro/Gitopia/tx/${txHash}","account_page":"https://explorer.declab.pro/Gitopia/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/gitopia","tx_page":"https://mainnet.whispernode.com/gitopia/tx/${txHash}","account_page":"https://mainnet.whispernode.com/gitopia/account/${accountAddress}"}]},{"chainId":"govgen-1","explorers":[{"kind":"ping.pub","url":"https://explorer.govgen.io/","tx_page":"https://explorer.govgen.io/govgen/tx/${txHash}","account_page":"https://explorer.govgen.io/govgen/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/govgen","tx_page":"https://staking-explorer.com/transaction.php?chain=govgen&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=govgen&addr=${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.nodeshub.online/govgen","tx_page":"https://explorer.nodeshub.online/govgen/tx/${txHash}","account_page":"https://explorer.nodeshub.online/govgen/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.equinoxdao.xyz/govgen","tx_page":"https://explorer.equinoxdao.xyz/govgen/tx/${txHash}","account_page":"https://explorer.equinoxdao.xyz/govgen/account/${accountAddress}"},{"kind":"ping.pub","url":"https://test.explorer.ist/govgen","tx_page":"https://test.explorer.ist/govgen/tx/${txHash}","account_page":"https://test.explorer.ist/govgen/account/${accountAddress}"},{"kind":"posthuman","url":"https://explorer.posthuman.digital/govgen","tx_page":"https://explorer.posthuman.digital/govgen/tx/${txHash}","account_page":"https://explorer.posthuman.digital/govgen/account/${accountAddress}"}]},{"chainId":"gravity-bridge-3","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/gravitybridge","tx_page":"https://ezstaking.app/gravitybridge/txs/${txHash}","account_page":"https://ezstaking.app/gravitybridge/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/gravity-bridge","tx_page":"https://www.mintscan.io/gravity-bridge/transactions/${txHash}","account_page":"https://www.mintscan.io/gravity-bridge/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/gravity-bridge","tx_page":"https://ping.pub/gravity-bridge/tx/${txHash}"},{"kind":"explorers.guru","url":"https://gravity.explorers.guru","tx_page":"https://gravity.explorers.guru/transaction/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/gravity-bridge","tx_page":"https://atomscan.com/gravity-bridge/transactions/${txHash}","account_page":"https://atomscan.com/gravity-bridge/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/gravitybridge","tx_page":"https://explorer.tcnetwork.io/gravitybridge/transaction/${txHash}"},{"kind":"Stakeflow","url":"https://stakeflow.io/gravity-bridge","account_page":"https://stakeflow.io/gravity-bridge/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/GravityBridge","tx_page":"https://explorer.stavr.tech/GravityBridge/tx/${txHash}","account_page":"https://explorer.stavr.tech/GravityBridge/accounts/${accountAddress}"},{"kind":"AviaOne 🟒","url":"https://mainnet.explorer.aviaone.com/gravity-bridge","tx_page":"https://mainnet.explorer.aviaone.com/gravity-bridge/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/gravity-bridge/accounts/${accountAddress}"}]},{"chainId":"haqq_11235-1","explorers":[{"kind":"blockscout","url":"https://explorer.haqq.network","tx_page":"https://explorer.haqq.network/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/haqq","tx_page":"https://ping.pub/haqq/tx/${txHash}"},{"kind":"explorers.guru","url":"https://haqq.explorers.guru","tx_page":"https://haqq.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/haqq","tx_page":"https://staking-explorer.com/transaction.php?chain=haqq&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=haqq&addr=${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/haqq","tx_page":"https://explorer.nodestake.org/haqq/tx/${txHash}"},{"kind":"KonsorTech Explorer","url":"https://explorer.konsortech.xyz/haqq","tx_page":"https://explorer.konsortech.xyz/haqq/tx/${txHash}"},{"kind":"Palamar Explorer","url":"https://explorer.palamar.io/haqq","tx_page":"https://explorer.palamar.io/haqq/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/HAQQ-Mainnet","tx_page":"https://explorer.stavr.tech/HAQQ-Mainnet/tx/${txHash}"}]},{"chainId":"helichain","explorers":[{"kind":"ping.pub","url":"https://explorer.helichain.com/Helichain","tx_page":"https://explorer.helichain.com/Helichain/tx/${txHash}","account_page":"https://explorer.helichain.com/Helichain/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/heli","tx_page":"https://staking-explorer.com/transaction.php?chain=heli&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=heli&addr=${accountAddress}"}]},{"chainId":"highbury_710-1","explorers":[{"kind":"pingpub","url":"https://explorer.furya.wtf/","tx_page":"https://www.explorer.furya.wtf//txs/${txHash}","account_page":"https://explorer.furya.wtf//account/${accountAddress}"}]},{"chainId":"humans_1089-1","explorers":[{"kind":"mintscan","url":"https://mintscan.io/humans","tx_page":"https://www.mintscan.io/humans/tx/${txHash}"},{"kind":"ezstaking","url":"https://ezstaking.app/humans","tx_page":"https://ezstaking.app/humans/txs/${txHash}","account_page":"https://ezstaking.app/humans/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/humans","tx_page":"https://ping.pub/humans/tx/${txHash}"},{"kind":"explorers.guru","url":"https://humans.explorers.guru","tx_page":"https://humans.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/humans","tx_page":"https://staking-explorer.com/transaction.php?chain=humans&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=humans&addr=${accountAddress}"},{"kind":"exploreme","url":"https://humansai.exploreme.pro/","tx_page":"https://humans.exploreme.pro/transaction/${txHash}"},{"kind":"itrocket","url":"https://mainnet.itrocket.net/humans/staking","tx_page":"https://mainnet.itrocket.net/humans/tx/${txHash}","account_page":"https://mainnet.itrocket.net/humans/account/${accountAddress}"},{"kind":"posthuman","url":"https://explorer.posthuman.digital/humans","tx_page":"https://explorer.posthuman.digital/humans/tx/${txHash}","account_page":"https://explorer.posthuman.digital/humans/account/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/humans/staking","tx_page":"https://explorer.nodestake.org/humans/tx/${txHash}","account_page":"https://explorer.nodestake.org/humans/account/${accountAddress}"}]},{"chainId":"Antora","explorers":[{"kind":"chadscan","url":"https://chadscan.com","tx_page":"https://chadscan.com/transactions/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/idep","tx_page":"https://atomscan.com/idep/transactions/${txHash}","account_page":"https://atomscan.com/idep/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/idep","tx_page":"https://explorer.tcnetwork.io/idep/transaction/${txHash}"}]},{"chainId":"ixo-5","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/impacthub","tx_page":"https://staking-explorer.com/transaction.php?chain=impacthub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=impacthub&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/ixo","tx_page":"https://ezstaking.app/ixo/txs/${txHash}","account_page":"https://ezstaking.app/ixo/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/IXO-Mainnet","tx_page":"https://explorer.stavr.tech/IXO-Mainnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/IXO-Mainnet/account/${accountAddress}"},{"kind":"bigdipper","url":"https://blockscan.ixo.world","tx_page":"https://blockscan.ixo.world/transactions/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/ixo","tx_page":"https://ping.pub/ixo/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/ixo","tx_page":"https://atomscan.com/ixo/transactions/${txHash}","account_page":"https://atomscan.com/ixo/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/ixo","tx_page":"https://explorer.whenmoonwhenlambo.money/ixo/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/ixo/account/${accountAddress}"}]},{"chainId":"imversed_5555555-1","explorers":[{"kind":"blockscout","url":"https://txe.imversed.network/","tx_page":"https://txe.imversed.network/tx/${txHash}"}]},{"chainId":"injective-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/injective","tx_page":"https://ezstaking.app/injective/txs/${txHash}","account_page":"https://ezstaking.app/injective/account/${accountAddress}"},{"kind":"injectiveprotocol","url":"https://explorer.injective.network/","tx_page":"https://explorer.injective.network/transaction/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/injective","tx_page":"https://ping.pub/injective/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/injective","tx_page":"https://atomscan.com/injective/transactions/${txHash}","account_page":"https://atomscan.com/injective/accounts/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/injective","tx_page":"https://www.mintscan.io/injective/transactions/${txHash}","account_page":"https://www.mintscan.io/injective/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/injective","tx_page":"https://staking-explorer.com/transaction.php?chain=injective&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=injective&addr=${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/injective","account_page":"https://stakeflow.io/injective/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/injective","tx_page":"https://mainnet.whispernode.com/injective/tx/${txHash}","account_page":"https://mainnet.whispernode.com/injective/account/${accountAddress}"}]},{"chainId":"int3face-1","explorers":[{"kind":"ping.pub","url":"https://explorer.int3face.zone","tx_page":"https://explorer.int3face.zone/int3face-1/tx/${txHash}"}]},{"chainId":"irishub-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/irisnet","tx_page":"https://ezstaking.app/irisnet/txs/${txHash}","account_page":"https://ezstaking.app/irisnet/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/iris","tx_page":"https://www.mintscan.io/iris/transactions/${txHash}","account_page":"https://www.mintscan.io/iris/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/iris-network","tx_page":"https://ping.pub/iris-network/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/irisnet","tx_page":"https://staking-explorer.com/transaction.php?chain=irisnet&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=irisnet&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/iris-network","tx_page":"https://atomscan.com/iris-network/transactions/${txHash}","account_page":"https://atomscan.com/iris-network/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/irisnet","account_page":"https://stakeflow.io/irisnet/accounts/${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/iris","tx_page":"https://exp.nodeist.net/iris/tx/${txHash}"},{"kind":"L0vd.com ❀️","url":"https://explorers.l0vd.com/iris-mainnet","tx_page":"https://explorers.l0vd.com/iris-mainnet/tx/${txHash}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/iris","tx_page":"https://explorer.konsortech.xyz/iris/tx/${txHash}"}]},{"chainId":"jackal-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/jackal","tx_page":"https://ping.pub/jackal/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/jackal","tx_page":"https://staking-explorer.com/transaction.php?chain=jackal&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=jackal&addr=${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/jackal","tx_page":"https://explorer.nodestake.org/jackal/tx/${txHash}"},{"kind":"BccNodes","url":"https://explorer.bccnodes.com/jackal","tx_page":"https://explorer.bccnodes.com/jackal/tx/${txHash}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀","url":"https://exp.utsa.tech/jackal","tx_page":"https://exp.utsa.tech/jackal/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/jackal","tx_page":"https://explorer.stavr.tech/jackal/tx/${txHash}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/jackal","tx_page":"https://exp.nodeist.net/jackal/tx/${txHash}"},{"kind":"Big Dipper","url":"https://bigdipper.live/jackal","tx_page":"https://bigdipper.live/jackal/transactions/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/jackal","tx_page":"https://mainnet.whispernode.com/jackal/tx/${txHash}","account_page":"https://mainnet.whispernode.com/jackal/account/${accountAddress}"}]},{"chainId":"joltify_1729-1","explorers":[{"kind":"big dipper","url":"https://explorer.joltify.io/joltify","tx_page":"https://explorer.joltify.io/joltify/transactions/${txHash}","account_page":"https://explorer.joltify.io/joltify/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/joltify","tx_page":"https://staking-explorer.com/transaction.php?chain=joltify&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=joltify&addr=${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/joltify","tx_page":"https://explorer.whenmoonwhenlambo.money/joltify/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/joltify/account/${accountAddress}"}]},{"chainId":"juno-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/juno","tx_page":"https://ezstaking.app/juno/txs/${txHash}","account_page":"https://ezstaking.app/juno/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/juno","tx_page":"https://ping.pub/juno/tx/${txHash}"},{"kind":"explorers.guru","url":"https://juno.explorers.guru","tx_page":"https://juno.explorers.guru/transaction/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/juno","tx_page":"https://www.mintscan.io/juno/transactions/${txHash}","account_page":"https://www.mintscan.io/juno/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/juno","tx_page":"https://staking-explorer.com/transaction.php?chain=juno&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=juno&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/juno","tx_page":"https://atomscan.com/juno/transactions/${txHash}","account_page":"https://atomscan.com/juno/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/juno","tx_page":"https://explorer.stavr.tech/juno/transactions/${txHash}","account_page":"https://explorer.stavr.tech/juno/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/juno","tx_page":"https://explorer.tcnetwork.io/juno/transaction/${txHash}"},{"kind":"Stakeflow","url":"https://stakeflow.io/juno","account_page":"https://stakeflow.io/juno/accounts/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Juno","tx_page":"https://explorer.declab.pro/Juno/tx/${txHash}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/juno/","tx_page":"https://explorer.nodeshub.online/juno/tx/${txHash}","account_page":"https://explorer.nodeshub.online/juno/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/juno","tx_page":"https://mainnet.whispernode.com/juno/tx/${txHash}","account_page":"https://mainnet.whispernode.com/juno/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/juno","tx_page":"https://explorer.chainroot.io/juno/transactions/${txHash}","account_page":"https://explorer.chainroot.io/juno/accounts/${accountAddress}"}]},{"chainId":"kava_2222-10","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/kava","tx_page":"https://www.mintscan.io/kava/transactions/${txHash}","account_page":"https://www.mintscan.io/kava/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/kava","tx_page":"https://staking-explorer.com/transaction.php?chain=kava&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=kava&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/kava","tx_page":"https://ezstaking.app/kava/txs/${txHash}","account_page":"https://ezstaking.app/kava/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/kava","tx_page":"https://ping.pub/kava/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/kava","tx_page":"https://atomscan.com/kava/transactions/${txHash}","account_page":"https://atomscan.com/kava/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/kava","account_page":"https://stakeflow.io/kava/accounts/${accountAddress}"}]},{"chainId":"kichain-2","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/kichain","tx_page":"https://ezstaking.app/kichain/txs/${txHash}","account_page":"https://ezstaking.app/kichain/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/ki-chain","tx_page":"https://www.mintscan.io/ki-chain/txs/${txHash}","account_page":"https://www.mintscan.io/ki-chain/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Kichain-Mainnet","tx_page":"https://explorer.stavr.tech/Kichain-Mainnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/kichain","tx_page":"https://ping.pub/kichain/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/kichain","tx_page":"https://staking-explorer.com/transaction.php?chain=kichain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=kichain&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/ki-chain","tx_page":"https://atomscan.com/ki-chain/transactions/${txHash}","account_page":"https://atomscan.com/ki-chain/accounts/${accountAddress}"},{"kind":"AVIAONE Explorer 🟒","url":"https://mainnet.explorer.aviaone.com/kichain","tx_page":"https://mainnet.explorer.aviaone.com/kichain/transactions/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/kichain/accounts/${accountAddress}"}]},{"chainId":"kima_network","explorers":[{"kind":"Kima Network Explorer","url":"https://explorer.kima.network/","tx_page":"https://explorer.kima.network/transactions/${txHash}"}]},{"chainId":"darchub","explorers":[{"kind":"konstellation","url":"https://explorer.konstellation.tech/","tx_page":"https://explorer.konstellation.tech/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/konstellation","tx_page":"https://staking-explorer.com/transaction.php?chain=konstellation&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=konstellation&addr=${accountAddress}"},{"kind":"cosmotracker","url":"https://cosmotracker.com/konstellation","tx_page":"https://cosmotracker.com/konstellation/tx/${txHash}"}]},{"chainId":"luwak-1","explorers":[{"kind":"Kopi Foundation Explorer","url":"https://explorer.kopi.money/","tx_page":"https://explorer.kopi.money/luwak-1/tx/${txHash}","account_page":"https://explorer.kopi.money/luwak-1/account/${accountAddress}"},{"kind":"CzCryptoman Explorer","url":"https://explorer.czcryptoman.com/kopi-mainnet","tx_page":"https://explorer.czcryptoman.com/kopi-mainnet/tx/${txHash}","account_page":"https://explorer.czcryptoman.com/kopi-mainnet/account/${accountAddress}"},{"kind":"Sychonix Explorer","url":"https://explorer.sychonix.com/kopi-mainnet","tx_page":"https://explorer.sychonix.com/kopi-mainnet/tx/${txHash}","account_page":"https://explorer.sychonix.com/kopi-mainnet/account/${accountAddress}"},{"kind":"Nodeshub Explorer","url":"https://explorer.nodeshub.online/Kopi","tx_page":"https://explorer.nodeshub.online/Kopi/txs/${txHash}","account_page":"https://explorer.nodeshub.online/Kopi/account/${accountAddress}"},{"kind":"Bony Explorer","url":"https://explorer.bonynode.online/kopi/","tx_page":"https://explorer.bonynode.online/kopi/txs/${txHash}","account_page":"https://explorer.bonynode.online/kopi/account/${accountAddress}"},{"kind":"Moonbridge Explorer","url":"https://explorer.moonbridge.team/kopi/","tx_page":"https://explorer.moonbridge.team/kopi/txs/${txHash}","account_page":"https://explorer.moonbridge.team/kopi/account/${accountAddress}"},{"kind":"Cosmoscan Explorer","url":"https://cosmoscan.com/kopi","tx_page":"https://cosmoscan.com/kopi/txs/${txHash}","account_page":"https://cosmoscan.com/kopi/account/${accountAddress}"}]},{"chainId":"kaiyo-1","explorers":[{"kind":"kujira","url":"https://finder.kujira.app","tx_page":"https://finder.kujira.app/kaiyo-1/tx/${txHash}"},{"kind":"explorers.guru","url":"https://kujira.explorers.guru","tx_page":"https://kujira.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/kujira","tx_page":"https://staking-explorer.com/transaction.php?chain=kujira&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=kujira&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/kujira","tx_page":"https://ezstaking.app/kujira/txs/${txHash}","account_page":"https://ezstaking.app/kujira/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/kujira","tx_page":"https://atomscan.com/kujira/transactions/${txHash}","account_page":"https://atomscan.com/kujira/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/kujira","tx_page":"https://mainnet.whispernode.com/kujira/tx/${txHash}","account_page":"https://mainnet.whispernode.com/kujira/account/${accountAddress}"}]},{"chainId":"kyve-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/kyve","tx_page":"https://ezstaking.app/kyve/txs/${txHash}","account_page":"https://ezstaking.app/kyve/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/kyve","tx_page":"https://www.mintscan.io/kyve/txs/${txHash}","account_page":"https://www.mintscan.io/kyve/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/kyve","tx_page":"https://staking-explorer.com/transaction.php?chain=kyve&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=kyve&addr=${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/kyve","tx_page":"https://explorer.nodestake.top/kyve/txs/${txHash}","account_page":"https://explorer.nodestake.top/kyve/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Kyve","tx_page":"https://explorer.stavr.tech/Kyve/txs/${txHash}","account_page":"https://explorer.stavr.tech/Kyve/account/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/kyve","tx_page":"https://explorer.stake-take.com/kyve/txs/${txHash}","account_page":"https://explorer.stake-take.com/kyve/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Kyve","tx_page":"https://explorer.declab.pro/Kyve/txs/${txHash}","account_page":"https://explorer.declab.pro/Kyve/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/kyve","tx_page":"https://explorer.whenmoonwhenlambo.money/kyve/txs/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/kyve/account/${accountAddress}"},{"kind":"KYVE Explorer","url":"https://explorer.kyve.network/kyve","tx_page":"https://explorer.kyve.network/kyve/tx/${txHash}","account_page":"https://explorer.kyve.network/kyve/account/${accountAddress}"},{"kind":"Viewblock","url":"https://viewblock.io/kyve","tx_page":"https://viewblock.io/kyve/tx/${txHash}","account_page":"https://viewblock.io/kyve/address/${accountAddress}"}]},{"chainId":"lambda_92000-1","explorers":[{"kind":"blockscout","url":"https://explorer.lambda.im/","tx_page":"https://explorer.lambda.im/tx/${txHash}"},{"kind":"NodeStake","url":"https://explorer.nodestake.top/lambda","tx_page":"https://explorer.nodestake.top/lambda/txs/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/lambda","tx_page":"https://explorer.stavr.tech/lambda/txs/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/lambda","tx_page":"https://atomscan.com/lambda/transactions/${txHash}","account_page":"https://atomscan.com/lambda/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/lambda","tx_page":"https://explorer.whenmoonwhenlambo.money/lambda/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/lambda/account/${accountAddress}"}]},{"chainId":"lava-mainnet-1","explorers":[{"kind":"finteh","url":"https://explorer.finteh.org/lava","tx_page":"https://explorer.finteh.org/lava/tx/${txHash}","account_page":"https://explorer.finteh.org/lava/account/${accountAddress}"},{"kind":"guru","url":"https://lava.explorers.guru/","tx_page":"https://lava.explorers.guru/transaction/${txHash}","account_page":"https://lava.explorers.guru/account/${accountAddress}"},{"kind":"w3coins","url":"https://lava-explorer.w3coins.io/Lava","tx_page":"https://lava-explorer.w3coins.io/Lava/tx/${txHash}","account_page":"https://lava-explorer.w3coins.io/Lava/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/lava","tx_page":"https://staking-explorer.com/transaction.php?chain=lava&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=lava&addr=${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/lava-mainnet","tx_page":"https://exp.stakevillage.net/lava-mainnet/tx/${txHash}","account_page":"https://exp.stakevillage.net/lava-mainnet/account/${accountAddress}"},{"kind":"AVIAONE 🟒","url":"https://mainnet.explorer.aviaone.com/lava/","tx_page":"https://mainnet.explorer.aviaone.com/lava/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/lava/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Lava-Mainnet","tx_page":"https://explorer.stavr.tech/Lava-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Lava-Mainnet/account/${accountAddress}"}]},{"chainId":"likecoin-mainnet-2","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/likecoin","tx_page":"https://staking-explorer.com/transaction.php?chain=likecoin&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=likecoin&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/likecoin","tx_page":"https://ezstaking.app/likecoin/txs/${txHash}","account_page":"https://ezstaking.app/likecoin/account/${accountAddress}"},{"kind":"lunie-ng","url":"https://stake.like.co/"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Likecoin-M","tx_page":"https://explorer.stavr.tech/Likecoin-M/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/likecoin","tx_page":"https://ping.pub/likecoin/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/likecoin","tx_page":"https://atomscan.com/likecoin/transactions/${txHash}","account_page":"https://atomscan.com/likecoin/accounts/${accountAddress}"}]},{"chainId":"logos_7002-1","explorers":[]},{"chainId":"loop-1","explorers":[{"kind":"ping.pub","url":"https://ping.pfc.zone/loop","tx_page":"https://ping.pfc.zone/loop/tx/${txHash}"}]},{"chainId":"lorenzo_8329-1","explorers":[{"kind":"blockscout","url":"https://scan.lorenzo-protocol.xyz/","tx_page":"https://scan.lorenzo-protocol.xyz/tx/${txHash}"}]},{"chainId":"loyal-main-02","explorers":[{"kind":"Loyal explorer","url":"https://pingpub.joinloyal.io/loyal","tx_page":"https://pingpub.joinloyal.io/loyal/tx/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/loyal","tx_page":"https://explorer.tcnetwork.io/loyal/transaction/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/loyal","tx_page":"https://explorer.nodestake.top/loyal/tx/${txHash}"}]},{"chainId":"lum-network-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/lumnetwork","tx_page":"https://ezstaking.app/lumnetwork/txs/${txHash}","account_page":"https://ezstaking.app/lumnetwork/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/lum","tx_page":"https://www.mintscan.io/lum/transactions/${txHash}","account_page":"https://www.mintscan.io/lum/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/lumnetwork","tx_page":"https://staking-explorer.com/transaction.php?chain=lumnetwork&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=lumnetwork&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/LumNetwork-Mainnet","tx_page":"https://explorer.stavr.tech/LumNetwork-Mainnet/tx/${txHash}"},{"kind":"lum-network","url":"https://explorer.lum.network","tx_page":"https://explorer.lum.network/txs/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/lum-network","tx_page":"https://ping.pub/lum-network/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/lum-network","tx_page":"https://atomscan.com/lum-network/transactions/${txHash}","account_page":"https://atomscan.com/lum-network/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/lum-network","tx_page":"https://explorer.whenmoonwhenlambo.money/lum-network/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/lum-network/account/${accountAddress}"}]},{"chainId":"mande_18071918-1","explorers":[{"kind":"FYI","url":"https://dym.fyi/r/mande","tx_page":"https://dym.fyi/r/mande/tx/${txHash}","account_page":"https://dym.fyi/r/mande/address/${accountAddress}"}]},{"chainId":"mantra-1","explorers":[{"kind":"ITRocket","url":"https://mainnet.itrocket.net/mantra","tx_page":"https://mainnet.itrocket.net/mantra/transaction/${txHash}","account_page":"https://mainnet.itrocket.net/mantra/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Mantra-Mainnet","tx_page":"https://explorer.stavr.tech/Mantra-Mainnet/transaction/${txHash}","account_page":"https://explorer.stavr.tech/Mantra-Mainnet/account/${accountAddress}"}]},{"chainId":"mars-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/mars-protocol","tx_page":"https://ezstaking.app/mars-protocol/txs/${txHash}","account_page":"https://ezstaking.app/mars-protocol/account/${accountAddress}"},{"kind":"BigDipper","url":"https://explorer.marsprotocol.io","tx_page":"https://explorer.marsprotocol.io/transactions/${txHash}","account_page":"https://explorer.marsprotocol.io/accounts/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/mars","tx_page":"https://explorer.nodestake.top/mars/transactions/${txHash}","account_page":"https://explorer.nodestake.top/mars/account/${accountAddress}"},{"kind":"Nodes.Guru","url":"https://mars.explorers.guru/","tx_page":"https://mars.explorers.guru/transaction/${txHash}","account_page":"https://mars.explorers.guru/account/${accountAddress}"},{"kind":"MintScan","url":"https://www.mintscan.io/mars-protocol","tx_page":"https://www.mintscan.io/mars-protocol/transactions/${txHash}","account_page":"https://www.mintscan.io/mars-protocol/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/mars","tx_page":"https://ping.pub/mars/tx/${txHash}","account_page":"https://ping.pub/mars/account/${accountAddress}"}]},{"chainId":"mayachain-mainnet-v1","explorers":[{"kind":"Maya Protocol explorer","url":"https://www.explorer.mayachain.info","tx_page":"https://www.explorer.mayachain.info/#/txs/${txHash}"}]},{"chainId":"medasdigital-2","explorers":[{"kind":"BigDipper","url":"https://explorer.medas-digital.io:3100/medasdigital","tx_page":"https://explorer.medas-digital.io:3100/medasdigital/transactions/${txHash}","account_page":"explorer.medas-digital.io:3100/medasdigital/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/frontier/medasdigital","tx_page":"https://atomscan.com/frontier/medasdigital/transactions/${txHash}","account_page":"https://atomscan.com/frontier/medasdigital/accounts/${accountAddress}"}]},{"chainId":"meme-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/meme","tx_page":"https://ping.pub/meme/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/meme","tx_page":"https://atomscan.com/meme/transactions/${txHash}","account_page":"https://atomscan.com/meme/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/meme","tx_page":"https://staking-explorer.com/transaction.php?chain=meme&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=meme&addr=${accountAddress}"},{"kind":"MEME Explorer","url":"https://explorer.meme.sx/meme","tx_page":"https://explorer.meme.sx/meme/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/meme","tx_page":"https://atomscan.com/meme/transactions/${txHash}","account_page":"https://atomscan.com/meme/accounts/${accountAddress}"},{"kind":"Brochain","url":"https://explorer.brocha.in/meme","tx_page":"https://explorer.brocha.in/meme/tx/${txHash}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/meme","tx_page":"https://explorer.stake-take.com/meme/tx/${txHash}","account_page":"https://explorer.stake-take.com/meme/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Meme","tx_page":"https://explorer.stavr.tech/Meme/tx/${txHash}","account_page":"https://explorer.stavr.tech/Meme/account/${accountAddress}"}]},{"chainId":"migaloo-1","explorers":[{"kind":"Migaloo Explorers Guru","url":"https://migaloo.explorers.guru","tx_page":"https://migaloo.explorers.guru/transaction/${txHash}","account_page":"https://migaloo.explorers.guru/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/migaloo","tx_page":"https://ping.pub/migaloo/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/migaloo","tx_page":"https://staking-explorer.com/transaction.php?chain=migaloo&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=migaloo&addr=${accountAddress}"},{"kind":"Silk Nodes","url":"https://explorer.silknodes.io/migaloo","tx_page":"https://explorer.silknodes.io/migaloo/tx/${txHash}","account_page":"https://explorer.silknodes.io/migaloo/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/migaloo","tx_page":"https://atomscan.com/migaloo/transactions/${txHash}","account_page":"https://atomscan.com/migaloo/accounts/${accountAddress}"}]},{"chainId":"milkyway","explorers":[]},{"chainId":"mainnet","explorers":[{"kind":"Mises-GW Explorer","url":"https://gw.mises.site","tx_page":"https://gw.mises.site/tx/${txHash}"},{"kind":"Jambulmerah ping.pub based","url":"https://explorer.jambulmerah.dev/mises","tx_page":"https://explorer.jambulmerah.dev/mises/tx/${txHash}"}]},{"chainId":"mtgbp-1","explorers":[{"kind":"ping.pub","url":"https://blockexplorer.mtgbp.com/mtgbp","tx_page":"https://blockexplorer.mtgbp.com/mtgbp/tx/${txHash}","account_page":"https://blockexplorer.mtgbp.com/mtgbp/accounts/${accountAddress}"}]},{"chainId":"mun-1","explorers":[{"url":"https://explorer.mun.money/mun","tx_page":"https://explorer.mun.money/mun/${txHash}"},{"url":"https://explorer.indonode.net/mun/staking","tx_page":"https://explorer.indonode.net/mun/${txHash}"},{"url":"https://explorer.konsortech.xyz/mun/staking","tx_page":"https://explorer.konsortech.xyz/mun/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/mun","tx_page":"https://ping.pub/mun/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/mun","tx_page":"https://explorer.tcnetwork.io/mun/transaction/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/mun","tx_page":"https://explorer.whenmoonwhenlambo.money/mun/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/mun/account/${accountAddress}"}]},{"chainId":"mythos_7001-1","explorers":[]},{"chainId":"neura_266-1"},{"chainId":"Neutaro-1","explorers":[{"kind":"ping.pub","url":"https://explorer.neutaro.io/Neutaro","tx_page":"https://explorer.neutaro.io/Neutaro/tx/${txHash}","account_page":"https://explorer.neutaro.io/Neutaro/account/${accountAddress}"}]},{"chainId":"neutron-1","explorers":[{"kind":"Mintscan","url":"https://www.mintscan.io/neutron","tx_page":"https://www.mintscan.io/neutron/transactions/${txHash}","account_page":"https://www.mintscan.io/neutron/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/neutron","tx_page":"https://ezstaking.app/neutron/txs/${txHash}","account_page":"https://ezstaking.app/neutron/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/neutron","tx_page":"https://mainnet.whispernode.com/neutron/tx/${txHash}","account_page":"https://mainnet.whispernode.com/neutron/account/${accountAddress}"}]},{"chainId":"cataclysm-1","explorers":[{"kind":"Nodes Guru","url":"https://nibiru.explorers.guru/","tx_page":"https://nibiru.explorers.guru/transaction/${txHash}","account_page":"https://nibiru.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/nibiru","tx_page":"https://staking-explorer.com/transaction.php?chain=nibiru&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=nibiru&addr=${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/nibiru","tx_page":"https://explorer.nodestake.org/nibiru/tx/${txHash}","account_page":"https://explorer.nodestake.org/nibiru/account/${accountAddress}"},{"kind":"LiveRaveN","url":"https://mainnet.explorer.liveraven.net/nibiru","tx_page":"https://mainnet.explorer.liveraven.net/nibiru/tx/${txHash}","account_page":"https://mainnet.explorer.liveraven.net/nibiru/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Nibiru-Mainnet","tx_page":"https://explorer.stavr.tech/Nibiru-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Nibiru-Mainnet/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/nibiru/","tx_page":"https://explorer.nodeshub.online/nibiru/tx/${txHash}","account_page":"https://explorer.nodeshub.online/nibiru/accounts/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/nibiru-mainnet","tx_page":"https://exp.stakevillage.net/nibiru-mainnet/tx/${txHash}","account_page":"https://exp.stakevillage.net/nibiru-mainnet/accounts/${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/nibiru-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/nibiru-mainnet/tx/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/nibiru-mainnet/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/nibiru","tx_page":"https://explorer.whenmoonwhenlambo.money/nibiru/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/nibiru/account/${accountAddress}"}]},{"chainId":"nim_1122-1","explorers":[{"kind":"Orbit Codes","url":"https://explorer.nim.network","tx_page":"https://explorer.nim.network/tx/${txHash}","account_page":"https://explorer.nim.network/account/${accountAddress}"}]},{"chainId":"noble-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/noble","tx_page":"https://www.mintscan.io/noble/txs/${txHash}","account_page":"https://www.mintscan.io/noble/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/noble","tx_page":"https://ezstaking.app/noble/txs/${txHash}","account_page":"https://ezstaking.app/noble/account/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/noble","account_page":"https://stakeflow.io/noble/accounts/${accountAddress}"}]},{"chainId":"pirin-1","explorers":[{"kind":"Nolus Explorer","url":"https://explorer.nolus.io/pirin-1","tx_page":"https://explorer.nolus.io/pirin-1/tx/${txHash}","account_page":"https://explorer.nolus.io/pirin-1/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/nolus","tx_page":"https://ping.pub/nolus/tx/${txHash}","account_page":"https://ping.pub/nolus/account/${accountAddress}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/nolus","tx_page":"https://explorer.nodexcapital.com/nolus/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/nolus/account/${accountAddress}"},{"kind":"Nodes Guru Explorer","url":"https://nolus.explorers.guru","tx_page":"https://nolus.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/nolus","tx_page":"https://staking-explorer.com/transaction.php?chain=nolus&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=nolus&addr=${accountAddress}"},{"kind":"KJ Nodes Explorer","url":"https://explorer.kjnodes.com/nolus","tx_page":"https://explorer.kjnodes.com/nolus/tx/${txHash}","account_page":"https://explorer.kjnodes.com/nolus/account/${accountAddress}"}]},{"chainId":"nomic-stakenet-3","explorers":[{"kind":"bigdipper","url":"https://bigdipper.live/nomic","account_page":"https://bigdipper.live/nomic/accounts/${accountAddress}","tx_page":"https://bigdipper.live/nomic/transactions/${txHash}"},{"kind":"Zenscan.io","url":"https://nomic.zenscan.io/index.php","account_page":"https://nomic.zenscan.io/address.php?address=${accountAddress}","tx_page":"https://nomic.zenscan.io/transaction.php?hash=${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/nomic","tx_page":"https://mainnet.whispernode.com/nomic/tx/${txHash}","account_page":"https://mainnet.whispernode.com/nomic/account/${accountAddress}"}]},{"chainId":"nyx","explorers":[{"kind":"Nodes Guru explorer","url":"https://nym.explorers.guru/","tx_page":"https://nym.explorers.guru/transaction/${txHash}","account_page":"https://nym.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/nyx","tx_page":"https://staking-explorer.com/transaction.php?chain=nyx&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=nyx&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/nyx","tx_page":"https://ezstaking.app/nyx/txs/${txHash}","account_page":"https://ezstaking.app/nyx/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/nyx","tx_page":"https://www.mintscan.io/nyx/transactions/${txHash}","account_page":"https://www.mintscan.io/nyx/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/nyx","tx_page":"https://ping.pub/nyx/tx/${txHash}"}]},{"chainId":"octa","explorers":[{"kind":"Octa explorer","url":"http://explorer.octa-coin.com/","tx_page":"http://explorer.octa-coin.com/txs/${txHash}"}]},{"chainId":"odin-mainnet-freya","explorers":[{"kind":"Runa","url":"https://runa.odinprotocol.io/","tx_page":"https://runa.odinprotocol.io/transactions/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Odin-Mainnet","tx_page":"https://explorer.stavr.tech/Odin-Mainnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/odin","tx_page":"https://ping.pub/odin/tx/${txHash}"}]},{"chainId":"exchain-66","explorers":[{"kind":"OKLink","url":"https://www.oklink.com/en/okc","tx_page":"https://www.oklink.com/en/okc/tx/${txHash}","account_page":"https://www.oklink.com/en/okc/address/${accountAddress}"}]},{"chainId":"omniflixhub-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/omniflix","tx_page":"https://www.mintscan.io/omniflix/transactions/${txHash}","account_page":"https://www.mintscan.io/omniflix/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/omniflixhub","tx_page":"https://atomscan.com/omniflixhub/transactions/${txHash}","account_page":"https://atomscan.com/omniflixhub/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/omniflixhub","tx_page":"https://staking-explorer.com/transaction.php?chain=omniflixhub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=omniflixhub&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/omniflixhub","tx_page":"https://ezstaking.app/omniflixhub/txs/${txHash}","account_page":"https://ezstaking.app/omniflixhub/account/${accountAddress}"},{"kind":"STAKR.space explorer","url":"https://explorer.stakr.space/omniflix/","tx_page":"https://explorer.stakr.space/omniflix/tx/${txHash}","account_page":"https://explorer.stakr.space/omniflix/account/${accountAddress}"}]},{"chainId":"onex-mainnet-1","explorers":[{"kind":"Dexplorer - must enter rpc link provided above","url":"https://dexplorer.cakralabs.site","tx_page":"https://dexplorer.cakralabs.site/txs/${txHash}","account_page":"https://dexplorer.cakralabs.site/${accountAddress}"}]},{"chainId":"onomy-mainnet-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/onomy-protocol","tx_page":"https://www.mintscan.io/onomy-protocol/transactions/${txHash}","account_page":"https://www.mintscan.io/onomy-protocol/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/onomy","tx_page":"https://staking-explorer.com/transaction.php?chain=onomy&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=onomy&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/onomy","tx_page":"https://ezstaking.app/onomy/txs/${txHash}","account_page":"https://ezstaking.app/onomy/account/${accountAddress}"}]},{"chainId":"Oraichain","explorers":[{"kind":"oraiscan","url":"https://scan.orai.io","tx_page":"https://scan.orai.io/txs/${txHash}"},{"kind":"Nodine Explorer","url":"https://explorer.co.id/orai","tx_page":"https://explorer.co.id/orai/tx/${txHash}"},{"kind":"Blockval Explorer","url":"https://explorer.blockval.io/oraichain","tx_page":"https://explorer.blockval.io/oraichain/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/orai","tx_page":"https://atomscan.com/orai/transactions/${txHash}","account_page":"https://atomscan.com/orai/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/oraichain","tx_page":"https://staking-explorer.com/transaction.php?chain=oraichain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=oraichain&addr=${accountAddress}"},{"kind":"KonsorTech Explorer","url":"https://explorer.konsortech.xyz/oraichain","tx_page":"https://explorer.konsortech.xyz/oraichain/transactions/${txHash}","account_page":"https://explorer.konsortech.xyz/oraichain/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/Orai-Mainnet","tx_page":"https://explorer.stavr.tech/Orai-Mainnet/transactions/${txHash}","account_page":"https://explorer.stavr.tech/Orai-Mainnet/accounts/${accountAddress}"},{"kind":"imORAI ORAIchain Explorer","url":"https://explorer.imdev.app/oraichain","tx_page":"https://explorer.imdev.app/oraichain/tx/${txHash}","account_page":"https://explorer.imdev.app/oraichain/account/${accountAddress}"}]},{"chainId":"osmosis-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/osmosis","tx_page":"https://ezstaking.app/osmosis/txs/${txHash}","account_page":"https://ezstaking.app/osmosis/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/osmosis","tx_page":"https://www.mintscan.io/osmosis/transactions/${txHash}","account_page":"https://www.mintscan.io/osmosis/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/osmosis","tx_page":"https://ping.pub/osmosis/tx/${txHash}"},{"kind":"explorers.guru","url":"https://osmosis.explorers.guru","tx_page":"https://osmosis.explorers.guru/transaction/${txHash}","account_page":"https://osmosis.explorers.guru/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/osmosis","tx_page":"https://atomscan.com/osmosis/transactions/${txHash}","account_page":"https://atomscan.com/osmosis/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/osmosis","tx_page":"https://explorer.tcnetwork.io/osmosis/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/osmosis/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/osmosis","tx_page":"https://staking-explorer.com/transaction.php?chain=osmosis&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=osmosis&addr=${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/osmosis","account_page":"https://stakeflow.io/osmosis/accounts/${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/osmosis","tx_page":"https://exp.nodeist.net/osmosis/tx/${txHash}"},{"kind":"L0vd.com ❀️","url":"https://explorers.l0vd.com/osmosis-mainnet","tx_page":"https://explorers.l0vd.com/osmosis-mainnet/tx/${txHash}"},{"kind":"Chainscope","url":"https://chainsco.pe/osmosis","tx_page":"https://chainsco.pe/osmosis/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/osmosis","tx_page":"https://mainnet.whispernode.com/osmosis/tx/${txHash}","account_page":"https://mainnet.whispernode.com/osmosis/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/osmosis","tx_page":"https://explorer.chainroot.io/osmosis/transactions/${txHash}","account_page":"https://explorer.chainroot.io/osmosis/accounts/${accountAddress}"}]},{"chainId":"tumbler","explorers":[{"kind":"explorers.guru","url":"https://paloma.explorers.guru/","tx_page":"https://paloma.explorers.guru/transaction/${txHash}"}]},{"chainId":"panacea-3","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/medibloc","tx_page":"https://www.mintscan.io/medibloc/transactions/${txHash}","account_page":"https://www.mintscan.io/medibloc/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/panacea","tx_page":"https://staking-explorer.com/transaction.php?chain=panacea&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=panacea&addr=${accountAddress}"},{"kind":"bigdipper","url":"https://explorer.gopanacea.org","tx_page":"https://explorer.gopanacea.org/transactions/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/panacea","tx_page":"https://explorer.whenmoonwhenlambo.money/panacea/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/panacea/account/${accountAddress}"}]},{"chainId":"passage-2","explorers":[{"kind":"aneka","url":"https://passage.aneka.io","tx_page":"https://passage.aneka.io/txs/${txHash}","account_page":"https://passage.aneka.io/accounts/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/passage","tx_page":"https://www.mintscan.io/passage/transactions/${txHash}","account_page":"https://www.mintscan.io/passage/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/passage","tx_page":"https://ezstaking.app/passage/txs/${txHash}","account_page":"https://ezstaking.app/passage/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/passage","tx_page":"https://staking-explorer.com/transaction.php?chain=passage&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=passage&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/passage","tx_page":"https://atomscan.com/passage/transactions/${txHash}","account_page":"https://atomscan.com/passage/accounts/${accountAddress}"},{"kind":"cosmotracker","url":"https://cosmotracker.com/passage","tx_page":"https://cosmotracker.com/passage/tx/${txHash}","account_page":"https://cosmotracker.com/passage/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/passage","tx_page":"https://mainnet.whispernode.com/passage/tx/${txHash}","account_page":"https://mainnet.whispernode.com/passage/account/${accountAddress}"}]},{"chainId":"core-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/persistence","tx_page":"https://www.mintscan.io/persistence/transactions/${txHash}","account_page":"https://www.mintscan.io/persistence/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/persistence","tx_page":"https://ezstaking.app/persistence/txs/${txHash}","account_page":"https://ezstaking.app/persistence/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/persistence","tx_page":"https://ping.pub/persistence/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Persistence-Mainnet","tx_page":"https://explorer.stavr.tech/Persistence-Mainnet/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/persistence","tx_page":"https://staking-explorer.com/transaction.php?chain=persistence&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=persistence&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/persistence","tx_page":"https://atomscan.com/persistence/transactions/${txHash}","account_page":"https://atomscan.com/persistence/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/persistence","account_page":"https://stakeflow.io/persistence/accounts/${accountAddress}"}]},{"chainId":"planq_7070-2","explorers":[{"kind":"bigdipper","url":"https://explorer.planq.network","tx_page":"https://explorer.planq.network/transactions/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Planq-Mainnet","tx_page":"https://explorer.stavr.tech/Planq-Mainnet/tx/${txHash}"},{"kind":"blockscout","url":"https://evm.planq.network","tx_page":"https://evm.planq.network/tx/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/planq","tx_page":"https://explorer.nodestake.org/planq/tx/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/planq","tx_page":"https://explorer.tcnetwork.io/planq/transaction/${txHash}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/planq-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/planq-mainnet/transaction/${txHash}"},{"kind":"Kynraze","url":"https://explorer.kynraze.com/planq","tx_page":"https://explorer.kynraze.com/planq/tx/${txHash}"},{"kind":"THE EXPLORER","url":"https://explorer.sxlzptprjkt.xyz/planq","tx_page":"https://explorer.sxlzptprjkt.xyz/planq/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/planq","tx_page":"https://explorer.nodexcapital.com/planq/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/planq","tx_page":"https://atomscan.com/planq/transactions/${txHash}","account_page":"https://atomscan.com/planq/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/planq","tx_page":"https://staking-explorer.com/transaction.php?chain=planq&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=planq&addr=${accountAddress}"},{"kind":"Indonode","url":"https://explorer.indonode.net/planq","tx_page":"https://explorer.indonode.net/planq/tx/${txHash}"},{"kind":"Safe Block","url":"https://explorer.safeblock.space/planq","tx_page":"https://explorer.safeblock.space/planq/tx/${txHash}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/planq","tx_page":"https://explorer.konsortech.xyz/planq/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/planq","tx_page":"https://explorer.whenmoonwhenlambo.money/tx/${txHash}"}]},{"chainId":"point_10687-1","explorers":[{"kind":"blockscout","url":"https://explorer.pointnetwork.io/","tx_page":"https://explorer.pointnetwork.io/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Point-Mainnet","tx_page":"https://explorer.stavr.tech/Point-Mainnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://cosmos.pointnetwork.io/","tx_page":"https://cosmos.pointnetwork.io/point/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/point","tx_page":"https://explorer.nodexcapital.com/point/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/point","tx_page":"https://atomscan.com/point/transactions/${txHash}","account_page":"https://atomscan.com/point/accounts/${accountAddress}"}]},{"chainId":"pio-mainnet-1","explorers":[{"kind":"Provenance","url":"https://explorer.provenance.io","tx_page":"https://explorer.provenance.io/tx/${txHash}"},{"kind":"hubble","url":"https://hubble.figment.io/provenance/chains/pio-mainnet-1","tx_page":"https://hubble.figment.io/provenance/chains/pio-mainnet-1/${block}/transactions/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/provenance","tx_page":"https://ping.pub/provenance/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/provenance","tx_page":"https://www.mintscan.io/provenance/transactions/${txHash}","account_page":"https://www.mintscan.io/provenance/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Provenance","tx_page":"https://explorer.stavr.tech/Provenance/txs/${txHash}","account_page":"https://explorer.stavr.tech/Provenance/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/provenance","tx_page":"https://ezstaking.app/provenance/txs/${txHash}","account_page":"https://ezstaking.app/provenance/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/provenance","tx_page":"https://atomscan.com/provenance/transactions/${txHash}","account_page":"https://atomscan.com/provenance/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/provenance","tx_page":"https://staking-explorer.com/transaction.php?chain=provenance&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=provenance&addr=${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/provenance","tx_page":"https://explorer.whenmoonwhenlambo.money/provenance/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/provenance/account/${accountAddress}"},{"kind":"AVIAONE 🟒","url":"https://mainnet.explorer.aviaone.com/provenance","tx_page":"https://mainnet.explorer.aviaone.com/provenance/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/provenance/account/${accountAddress}"}]},{"chainId":"pryzm-1","explorers":[{"kind":"Chainscope","url":"https://chainsco.pe/pryzm","tx_page":"https://chainsco.pe/pryzm/tx/${txHash}","account_page":"https://chainsco.pe/pryzm/address/${accountAddress}","block_page":"https://chainsco.pe/pryzm/block/${blockHeight}","proposal_page":"https://chainsco.pe/pryzm/governance/proposal/${proposalId}","validator_page":"https://chainsco.pe/pryzm/validator/${validatorAddress}"},{"kind":"PingPub","url":"https://cosmosrun.info/pryzm","tx_page":"https://cosmosrun.info/pryzm/tx/${txHash}","account_page":"https://cosmosrun.info/pryzm/account/${accountAddress}","block_page":"https://cosmosrun.info/pryzm/blocks/${blockHeight}","proposal_page":"https://cosmosrun.info/pryzm/gov/${proposalId}","validator_page":"https://cosmosrun.info/pryzm/staking/${validatorAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/pryzm","tx_page":"https://staking-explorer.com/transaction.php?chain=pryzm&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=pryzm&addr=${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/pryzm","tx_page":"https://explorer.chainroot.io/pryzm/transactions/${txHash}","account_page":"https://explorer.chainroot.io/pryzm/accounts/${accountAddress}"}]},{"chainId":"PUNDIX","explorers":[{"kind":"starscan","url":"https://starscan.io","tx_page":"https://starscan.io/pundix/tx/${txHash}","account_page":"https://starscan.io/pundix/address/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/pundix/","tx_page":"https://explorer.nodeshub.online/pundix/tx/${txHash}","account_page":"https://explorer.nodeshub.online/pundix/accounts/${accountAddress}"}]},{"chainId":"pylons-mainnet-1","explorers":[{"kind":"Nodes.guru","url":"https://pylons.explorers.guru/","tx_page":"https://pylons.explorers.guru/transaction/${txHash}"}]},{"chainId":"qfs-1","explorers":[{"kind":"ping.pub","url":"https://blockexplorer.qfsone.com/qfs","tx_page":"https://blockexplorer.qfsone.com/qfs/tx/${txHash}","account_page":"https://blockexplorer.qfsone.com/qfs/accounts/${accountAddress}"}]},{"chainId":"quasar-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/quasar","tx_page":"https://www.mintscan.io/quasar/transactions/${txHash}","account_page":"https://www.mintscan.io/quasar/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/quasar","tx_page":"https://ezstaking.app/quasar/txs/${txHash}","account_page":"https://ezstaking.app/quasar/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/quasar","tx_page":"https://staking-explorer.com/transaction.php?chain=quasar&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=quasar&addr=${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/quasar","tx_page":"https://mainnet.whispernode.com/quasar/tx/${txHash}","account_page":"https://mainnet.whispernode.com/quasar/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/quasar","tx_page":"https://explorer.chainroot.io/quasar/transactions/${txHash}","account_page":"https://explorer.chainroot.io/quasar/accounts/${accountAddress}"}]},{"chainId":"quicksilver-2","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/quicksilver","tx_page":"https://www.mintscan.io/quicksilver/transactions/${txHash}","account_page":"https://www.mintscan.io/quicksilver/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/quicksilver","tx_page":"https://ezstaking.app/quicksilver/txs/${txHash}","account_page":"https://ezstaking.app/quicksilver/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/quicksilver","tx_page":"https://staking-explorer.com/transaction.php?chain=quicksilver&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=quicksilver&addr=${accountAddress}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀 explorer","url":"https://exp.utsa.tech/quicksilver","tx_page":"https://exp.utsa.tech/quicksilver/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ explorer","url":"https://explorer.stavr.tech/quicksilver-mainnet","tx_page":"https://explorer.stavr.tech/quicksilver-mainnet/tx/${txHash}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/quicksilver","tx_page":"https://explorer.stake-take.com/quicksilver/tx/${txHash}"},{"kind":"AM Solutions Explorers","url":"https://explorer.theamsolutions.info/quicksilver-main/staking","tx_page":"https://explorer.theamsolutions.info/quicksilver-main/tx/${txHash}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/quicksilver/staking","tx_page":"https://explorer.konsortech.xyz/quicksilver/tx/${txHash}"}]},{"chainId":"qwoyn-1","explorers":[{"kind":"ping","url":"https://explorer.theamsolutions.info/qwoyn-main/","tx_page":"https://explorer.theamsolutions.info/qwoyn-main/blocks","account_page":"https://explorer.theamsolutions.info/qwoyn-main/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/qwoyn","tx_page":"https://staking-explorer.com/transaction.php?chain=qwoyn&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=qwoyn&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Qwoyn-Mainnet","tx_page":"https://explorer.stavr.tech/Qwoyn-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Qwoyn-Mainnet/account/${accountAddress}"},{"kind":"ping","url":"https://explorer.theamsolutions.info/QWOYN-MAIN","tx_page":"https://explorer.theamsolutions.info/QWOYN-MAIN/tx/${txHash}","account_page":"https://explorer.theamsolutions.info/QWOYN-MAIN/account/${accountAddress}"}]},{"chainId":"realionetwork_3301-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/realio-mainnet","tx_page":"https://explorer.stavr.tech/realio-mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/realio-mainnet/account/{$accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/realio","tx_page":"https://explorer.nodestake.org/realio/tx/${txHash}","account_page":"https://explorer.nodestake.org/realio/account/{$accountAddress}"},{"kind":"Sr20de Explorer","url":"https://explorer.sr20de.xyz/Realio","tx_page":"https://explorer.sr20de.xyz/Realio/tx/${txHash}","account_page":"https://explorer.sr20de.xyz/Realio/account/{$accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/realio","tx_page":"https://explorer.tcnetwork.io/realio/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/realio/account/${accountAddress}"},{"kind":"Safe Block","url":"https://explorer.safeblock.space/realio","tx_page":"https://explorer.safeblock.space/realio/tx/${txHash}","account_page":"https://explorer.safeblock.space/realio/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/realio","tx_page":"https://explorer.declab.pro/realio/tx/${txHash}","account_page":"https://explorer.declab.pro/realio/account/{$accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/realio","tx_page":"https://explorer.whenmoonwhenlambo.money/realio/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/realio/account/${accountAddress}"}]},{"chainId":"reb_1111-1","explorers":[{"kind":"explorers.guru","url":"https://rebus.explorers.guru","tx_page":"https://rebus.explorers.guru/transaction/${txHash}"},{"kind":"NodeStake","url":"https://explorer.nodestake.top/rebus","tx_page":"https://explorer.nodestake.top/rebus/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/rebus","tx_page":"https://staking-explorer.com/transaction.php?chain=rebus&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=rebus&addr=${accountAddress}"},{"kind":"BccNodes","url":"https://explorer.bccnodes.com/rebus-M","tx_page":"https://explorer.bccnodes.com/rebus-M/tx/${txHash}"},{"kind":"Brochain","url":"https://explorer.brocha.in/rebus","tx_page":"https://explorer.brocha.in/rebus/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/rebus","tx_page":"https://explorer.stavr.tech/rebus/tx/${txHash}"},{"kind":"tcnetwork","url":"https://rebus.tcnetwork.io","tx_page":"https://rebus.tcnetwork.io/transaction/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/rebus","tx_page":"https://atomscan.com/rebus/transactions/${txHash}","account_page":"https://atomscan.com/rebus/accounts/${accountAddress}"}]},{"chainId":"regen-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/regen","tx_page":"https://ezstaking.app/regen/txs/${txHash}","account_page":"https://ezstaking.app/regen/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/regen","tx_page":"https://staking-explorer.com/transaction.php?chain=regen&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=regen&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Regen-Mainnet","tx_page":"https://explorer.stavr.tech/Regen-Mainnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/regen","tx_page":"https://ping.pub/regen/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/regen-network","tx_page":"https://atomscan.com/regen-network/transactions/${txHash}","account_page":"https://atomscan.com/regen-network/accounts/${accountAddress}"}]},{"chainId":"titan-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/rizon","tx_page":"https://ezstaking.app/rizon/txs/${txHash}","account_page":"https://ezstaking.app/rizon/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/rizon","tx_page":"https://www.mintscan.io/rizon/transactions/${txHash}","account_page":"https://www.mintscan.io/rizon/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/rizon","tx_page":"https://ping.pub/rizon/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/rizon","tx_page":"https://staking-explorer.com/transaction.php?chain=rizon&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=rizon&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/rizon","tx_page":"https://atomscan.com/rizon/transactions/${txHash}","account_page":"https://atomscan.com/rizon/accounts/${accountAddress}"},{"kind":"bigdipper","url":"https://bigdipper.live/rizon","tx_page":"https://bigdipper.live/rizon/transactions/${txHash}","account_page":"https://bigdipper.live/rizon/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Rizon","tx_page":"https://explorer.stavr.tech/Rizon/tx/${txHash}","account_page":"https://explorer.stavr.tech/Rizon/accounts/${accountAddress}"}]},{"chainId":"30","explorers":[{"kind":"Rootstock Explorer","url":"https://explorer.rootstock.io/","tx_page":"https://explorer.rootstock.io/tx/${txHash}"}]},{"chainId":"router_9600-1","explorers":[{"kind":"Routerscan","url":"https://routerscan.io/","tx_page":"https://routerscan.io/transactions/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/router","tx_page":"https://explorer.nodestake.org/router/tx/${txHash}"},{"kind":"Router Explorer","url":"https://router.explorers.guru/","tx_page":"https://router.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/routerchain","tx_page":"https://staking-explorer.com/transaction.php?chain=routerchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=routerchain&addr=${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/router/","tx_page":"https://explorer.nodeshub.online/router/tx/${txHash}","account_page":"https://explorer.nodeshub.online/router/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/routerchain","tx_page":"https://explorer.whenmoonwhenlambo.money/routerchain/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/routerchain/account/${accountAddress}"}]},{"chainId":"ssc-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/saga","tx_page":"https://www.mintscan.io/saga/transactions/${txHash}","account_page":"https://www.mintscan.io/saga/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/saga","tx_page":"https://staking-explorer.com/transaction.php?chain=saga&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=saga&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/saga","tx_page":"https://ezstaking.app/saga/txs/${txHash}","account_page":"https://ezstaking.app/saga/account/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/saga","tx_page":"https://explorer.nodestake.org/saga/tx/${txHash}","account_page":"https://explorer.nodestake.org/saga/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/saga","tx_page":"https://explorer.chainroot.io/saga/transactions/${txHash}","account_page":"https://explorer.chainroot.io/saga/accounts/${accountAddress}"}]},{"chainId":"scorum-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/scorum","tx_page":"https://ezstaking.app/scorum/txs/${txHash}","account_page":"https://ezstaking.app/scorum/account/${accountAddress}"},{"kind":"bigdipper","url":"https://cosmos.scorum.com/scorum","tx_page":"https://cosmos.scorum.com/scorum/transactions/${txHash}","account_page":"https://cosmos.scorum.com/scorum/accounts/${accountAddress}"}]},{"chainId":"secret-4","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/secretnetwork","tx_page":"https://ezstaking.app/secretnetwork/txs/${txHash}","account_page":"https://ezstaking.app/secretnetwork/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/secret","tx_page":"https://ping.pub/secret/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/secret","tx_page":"https://www.mintscan.io/secret/transactions/${txHash}","account_page":"https://www.mintscan.io/secret/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/secret-network","tx_page":"https://atomscan.com/secret-network/transactions/${txHash}","account_page":"https://atomscan.com/secret-network/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/secretnetwork","tx_page":"https://staking-explorer.com/transaction.php?chain=secretnetwork&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=secretnetwork&addr=${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/secret","tx_page":"https://mainnet.whispernode.com/secret/tx/${txHash}","account_page":"https://mainnet.whispernode.com/secret/account/${accountAddress}"}]},{"chainId":"seda-1","explorers":[{"kind":"sedaexplorer","url":"https://explorer.seda.xyz/","tx_page":"https://explorer.seda.xyz/txs/${txHash}","account_page":"https://explorer.seda.xyz/account/${accountAddress}"},{"kind":"explorers.guru","url":"https://seda.explorers.guru","tx_page":"https://seda.explorers.guru/transaction/${txHash}","account_page":"https://seda.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/seda","tx_page":"https://staking-explorer.com/transaction.php?chain=seda&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=seda&addr=${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/seda","tx_page":"https://mainnet.whispernode.com/seda/tx/${txHash}","account_page":"https://mainnet.whispernode.com/seda/account/${accountAddress}"},{"kind":"Apple juice πŸ§ƒ","url":"https://explorer.256x25.tech/seda-mainnet","tx_page":"https://explorer.256x25.tech/seda-mainnet/tx/${txHash}","account_page":"https://explorer.256x25.tech/seda-mainnet/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/seda","tx_page":"https://explorer.whenmoonwhenlambo.money/seda/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/seda/account/${accountAddress}"}]},{"chainId":"pacific-1","explorers":[{"kind":"blockscout","url":"https://seitrace.com","tx_page":"https://seitrace.com/tx/${txHash}?chain=pacific-1","account_page":"https://seitrace.com/address/${accountAddress}?chain=pacific-1"},{"kind":"mintscan","url":"https://www.mintscan.io/sei","tx_page":"https://www.mintscan.io/sei/transactions/${txHash}","account_page":"https://www.mintscan.io/sei/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/sei","tx_page":"https://ezstaking.app/sei/txs/${txHash}","account_page":"https://ezstaking.app/sei/account/${accountAddress}"},{"kind":"celatone","url":"https://www.seiscan.app/pacific-1","tx_page":"https://www.seiscan.app/pacific-1/txs/${txHash}","account_page":"https://www.seiscan.app/pacific-1/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sei","tx_page":"https://staking-explorer.com/transaction.php?chain=sei&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sei&addr=${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/sei","tx_page":"https://mainnet.whispernode.com/sei/tx/${txHash}","account_page":"https://mainnet.whispernode.com/sei/account/${accountAddress}"}]},{"chainId":"self-1","explorers":[{"kind":"Self Chain","url":"https://explorer.selfchain.xyz/selfchain","tx_page":"https://explorer.selfchain.xyz/selfchain/tx/${txHash}","account_page":"https://explorer.selfchain.xyz/selfchain/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/self","tx_page":"https://staking-explorer.com/transaction.php?chain=self&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=self&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Selfchain-Mainnet","tx_page":"https://explorer.stavr.tech/Selfchain-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Selfchain-Mainnet/account/${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/selfchain-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/selfchain-mainnet/tx/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/selfchain-mainnet/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/self","tx_page":"https://explorer.whenmoonwhenlambo.money/self/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/self/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/selfchain/","tx_page":"https://explorer.nodeshub.online/selfchain/tx/${txHash}","account_page":"https://explorer.nodeshub.online/selfchain/accounts/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/selfchain-mainnet","tx_page":"https://exp.stakevillage.net/selfchain-mainnet/tx/${txHash}","account_page":"https://exp.stakevillage.net/selfchain-mainnet/accounts/${accountAddress}"}]},{"chainId":"sentinelhub-2","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/sentinel","tx_page":"https://www.mintscan.io/sentinel/transactions/${txHash}","account_page":"https://www.mintscan.io/sentinel/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/sentinel","tx_page":"https://ezstaking.app/sentinel/txs/${txHash}","account_page":"https://ezstaking.app/sentinel/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/sentinel","tx_page":"https://atomscan.com/sentinel/transactions/${txHash}","account_page":"https://atomscan.com/sentinel/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sentinel","tx_page":"https://staking-explorer.com/transaction.php?chain=sentinel&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sentinel&addr=${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/sentinel-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/sentinel-mainnet/transactions/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/sentinel-mainnet/accounts/${accountAddress}"},{"kind":"ValidatorNode","url":"https://explorer.validatornode.com/sentinel","tx_page":"https://explorer.validatornode.com/sentinel/tx/${txHash}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Sentinel","tx_page":"https://explorer.declab.pro/Sentinel/tx/${txHash}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/sentinel/","tx_page":"https://explorer.nodeshub.online/sentinel/tx/${txHash}","account_page":"https://explorer.nodeshub.online/sentinel/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/sentinel","tx_page":"https://mainnet.whispernode.com/sentinel/tx/${txHash}","account_page":"https://mainnet.whispernode.com/sentinel/account/${accountAddress}"}]},{"chainId":"sgenet-1","explorers":[{"kind":"ping.pub","url":"https://blockexplorer.sgenetwork.io/sge","tx_page":"https://blockexplorer.sgenetwork.io/sge/tx/${txHash}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/sge","tx_page":"https://explorer.nodestake.org/sge/tx/${txHash}"},{"kind":"stakerhouse","url":"https://cosmotracker.com/sge","tx_page":"https://cosmotracker.com/sge/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Sge-Mainnet","tx_page":"https://explorer.stavr.tech/Sge-Mainnet/transaction/${txHash}","account_page":"https://explorer.stavr.tech/Sge-Mainnet/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/sge","tx_page":"https://explorer.tcnetwork.io/sge/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/sge/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sge","tx_page":"https://staking-explorer.com/transaction.php?chain=sge&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sge&addr=${accountAddress}"},{"kind":"Safe Block","url":"https://explorer.safeblock.space/sge","tx_page":"https://explorer.safeblock.space/sge/tx/${txHash}","account_page":"https://explorer.safeblock.space/sge/account/${accountAddress}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/sge","tx_page":"https://explorer.konsortech.xyz/sge/tx/${txHash}","account_page":"https://explorer.konsortech.xyz/sge/account/${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/sge-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/sge-mainnet/tx/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/sge-mainnet/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/sge","tx_page":"https://explorer.whenmoonwhenlambo.money/sge/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/sge/account/${accountAddress}"}]},{"chainId":"ShareRing-VoyagerNet","explorers":[{"kind":"big dipper","url":"https://explorer.shareri.ng","tx_page":"https://explorer.shareri.ng/transactions/${txHash}","account_page":"https://explorer.shareri.ng/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/shareledger","tx_page":"https://staking-explorer.com/transaction.php?chain=shareledger&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=shareledger&addr=${accountAddress}"}]},{"chainId":"shentu-2.2","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/shentu","tx_page":"https://ezstaking.app/shentu/txs/${txHash}","account_page":"https://ezstaking.app/shentu/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Shentu-Mainnet","tx_page":"https://explorer.stavr.tech/Shentu-Mainnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/Shentu-Mainnet/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/shentu","tx_page":"https://www.mintscan.io/shentu/transactions/${txHash}","account_page":"https://www.mintscan.io/shentu/accounts/${accountAddress}"},{"kind":"Shentu Explorer","url":"https://explorer.shentu.org/?chain=shentu-2.2","tx_page":"https://explorer.shentu.org/transactions/${txHash}?chain=shentu-2.2"},{"kind":"ping.pub","url":"https://ping.pub/shentu","tx_page":"https://ping.pub/shentu/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/shentu","tx_page":"https://atomscan.com/shentu/transactions/${txHash}","account_page":"https://atomscan.com/shentu/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/shentu","tx_page":"https://staking-explorer.com/transaction.php?chain=shentu&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=shentu&addr=${accountAddress}"},{"kind":"bigdipper","url":"https://bigdipper.live/shentu","tx_page":"https://bigdipper.live/shentu/transactions/${txHash}","account_page":"https://bigdipper.live/shentu/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/shentu","account_page":"https://stakeflow.io/shentu/accounts/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/shentu","tx_page":"https://explorer.chainroot.io/shentu/transactions/${txHash}","account_page":"https://explorer.chainroot.io/shentu/accounts/${accountAddress}"}]},{"chainId":"shido_9008-1","explorers":[{"kind":"shido","url":"https://shidoscan.com","tx_page":"https://shidoscan.com/tx/${txHash}","account_page":"https://shidoscan.com/address/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/shido","tx_page":"https://explorer.whenmoonwhenlambo.money/shido/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/shido/account/${accountAddress}"},{"kind":"256x25","url":"https://explorer.256x25.tech/shido","tx_page":"https://explorer.256x25.tech/shido/tx/${txHash}","account_page":"https://explorer.256x25.tech//shido/account/${accountAddress}"},{"kind":"MavNode","url":"https://explorer.mavnode.io/shido","tx_page":"https://explorer.mavnode.io/shido/tx/${txHash}","account_page":"https://explorer.mavnode.io/shido/account/${accountAddress}"},{"kind":"Indonode","url":"https://explorer.indonode.net/shido","tx_page":"https://explorer.indonode.net/shido/tx/${txHash}","account_page":"https://explorer.indonode.net/shido/account/${accountAddress}"}]},{"chainId":"sifchain-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/sifchain","tx_page":"https://ping.pub/sifchain/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/sifchain","tx_page":"https://atomscan.com/sifchain/transactions/${txHash}","account_page":"https://atomscan.com/sifchain/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sifchain","tx_page":"https://staking-explorer.com/transaction.php?chain=sifchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sifchain&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Sifchain","tx_page":"https://explorer.stavr.tech/Sifchain/tx/${txHash}","account_page":"https://explorer.stavr.tech/Sifchain/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/sifchain","tx_page":"https://explorer.whenmoonwhenlambo.money/sifchain/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/sifchain/account/${accountAddress}"}]},{"chainId":"sixnet","explorers":[{"kind":"sixscan","url":"https://sixscan.io/sixnet","tx_page":"https://sixscan.io/sixnet/tx/${txHash}"}]},{"explorers":[{"kind":"Solana Explorer","url":"https://explorer.solana.com/","tx_page":"https://explorer.solana.com/tx/${txHash}"}]},{"chainId":"sommelier-3","explorers":[{"kind":"sommscan","url":"https://sommscan.io","tx_page":"https://sommscan.io"},{"kind":"mintscan","url":"https://www.mintscan.io/sommelier","tx_page":"https://www.mintscan.io/sommelier/transactions/${txHash}","account_page":"https://www.mintscan.io/sommelier/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/sommelier","tx_page":"https://ezstaking.app/sommelier/txs/${txHash}","account_page":"https://ezstaking.app/sommelier/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sommelier","tx_page":"https://staking-explorer.com/transaction.php?chain=sommelier&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sommelier&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Sommelier-Mainnet","tx_page":"https://explorer.stavr.tech/Sommelier-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Sommelier-Mainnet/account/${accountAddress}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/sommelier","tx_page":"https://explorer.nodexcapital.com/sommelier/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/sommelier/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/sommelier","tx_page":"https://atomscan.com/sommelier/transactions/${txHash}","account_page":"https://atomscan.com/sommelier/accounts/${accountAddress}"}]},{"chainId":"source-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Source-Mainnet/","tx_page":"https://explorer.stavr.tech/Source-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Source-Mainnet/accounts/${accountAddress}"},{"kind":"Nodeist","url":"https://exp.nodeist.net/source/","tx_page":"https://exp.nodeist.net/source/tx/${txHash}","account_page":"https://exp.nodeist.net/source/accounts/${accountAddress}"},{"kind":"MoonBridge","url":"https://explorer.moonbridge.team/source","tx_page":"https://explorer.moonbridge.team/source/tx/${txHash}","account_page":"https://explorer.moonbridge.team/source/accounts/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/source","tx_page":"https://explorer.nodestake.org/source/tx/${txHash}","account_page":"https://explorer.nodestake.org/source/accounts/${accountAddress}"},{"kind":"Sr20de","url":"https://explorer.sr20de.xyz/Source-mainnet","tx_page":"https://explorer.sr20de.xyz/Source-mainnet/tx/${txHash}","account_page":"https://explorer.sr20de.xyz/Source-mainnet/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/source","tx_page":"https://explorer.tcnetwork.io/source/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/source","tx_page":"https://staking-explorer.com/transaction.php?chain=source&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=source&addr=${accountAddress}"},{"kind":"Indonode","url":"https://explorer.indonode.net/source","tx_page":"https://explorer.indonode.net/source/tx/${txHash}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/source-mainnet/","tx_page":"https://explorer.tendermint.roomit.xyz/source-mainnet/tx/${txHash}"},{"kind":"posthuman","url":"https://explorer.posthuman.digital/source","tx_page":"https://explorer.posthuman.digital/source/tx/${txHash}","account_page":"https://explorer.posthuman.digital/source/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Source","tx_page":"https://explorer.declab.pro/Source/tx/${txHash}","account_page":"https://explorer.declab.pro/Source/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/source","tx_page":"https://explorer.whenmoonwhenlambo.money/source/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/source/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/source/","tx_page":"https://explorer.nodeshub.online/source/tx/${txHash}","account_page":"https://explorer.nodeshub.online/source/accounts/${accountAddress}"}]},{"chainId":"stafihub-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/stafi","tx_page":"https://www.mintscan.io/stafi/transactions/${txHash}","account_page":"https://www.mintscan.io/stafi/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/stafihub","tx_page":"https://ezstaking.app/stafihub/txs/${txHash}","account_page":"https://ezstaking.app/stafihub/account/${accountAddress}"},{"kind":"ping-pub","url":"https://ping.pub/stafihub","tx_page":"https://ping.pub/stafihub/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/stafihub","tx_page":"https://staking-explorer.com/transaction.php?chain=stafihub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=stafihub&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/stafihub","tx_page":"https://atomscan.com/stafihub/transactions/${txHash}","account_page":"https://atomscan.com/stafihub/accounts/${accountAddress}"}]},{"chainId":"stargaze-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/stargaze","tx_page":"https://ezstaking.app/stargaze/txs/${txHash}","account_page":"https://ezstaking.app/stargaze/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/stargaze/","tx_page":"https://www.mintscan.io/stargaze/transactions/${txHash}","account_page":"https://www.mintscan.io/stargaze/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/stargaze","tx_page":"https://ping.pub/stargaze/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/stargaze","tx_page":"https://staking-explorer.com/transaction.php?chain=stargaze&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=stargaze&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/stargaze","tx_page":"https://atomscan.com/stargaze/transactions/${txHash}","account_page":"https://atomscan.com/stargaze/accounts/${accountAddress}"},{"kind":"Starscan","url":"https://starscan.net/","tx_page":"https://starscan.net/stargaze-1/tx/${txHash}","account_page":"https://starscan.net/stargaze-1/address/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/stargaze","tx_page":"https://mainnet.whispernode.com/stargaze/tx/${txHash}","account_page":"https://mainnet.whispernode.com/stargaze/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/stargaze","tx_page":"https://explorer.chainroot.io/stargaze/transactions/${txHash}","account_page":"https://explorer.chainroot.io/stargaze/accounts/${accountAddress}"}]},{"chainId":"iov-mainnet-ibc","explorers":[{"kind":"ping.pub","url":"https://ping.pub/starname","tx_page":"https://ping.pub/starname/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/starname","tx_page":"https://atomscan.com/starname/transactions/${txHash}","account_page":"https://atomscan.com/starname/accounts/${accountAddress}"}]},{"chainId":"stratos-1","explorers":[{"kind":"bigdipper","url":"https://explorer.thestratos.org","tx_page":"https://explorer.thestratos.org/transactions/${txHash}","account_page":"https://explorer.thestratos.org/accounts/${accountAddress}"},{"kind":"blockscout","url":"https://web3-explorer.thestratos.org","tx_page":"https://web3-explorer.thestratos.org/tx/${txHash}","account_page":"https://web3-explorer.thestratos.org/address/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/stratos","tx_page":"https://explorer.nodestake.org/stratos/tx/${txHash}","account_page":"https://explorer.nodestake.org/stratos/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/stratos","tx_page":"https://staking-explorer.com/transaction.php?chain=stratos&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=stratos&addr=${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/stratos","tx_page":"https://explorer.tcnetwork.io/stratos/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/stratos/account/${accountAddress}"}]},{"chainId":"stride-1","explorers":[{"kind":"BccNodes","url":"https://explorer.bccnodes.com/stride-M","tx_page":"https://explorer.bccnodes.com/stride-M/tx/${txHash}","account_page":"https://explorer.bccnodes.com/stride-M/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/stride","tx_page":"https://ezstaking.app/stride/txs/${txHash}","account_page":"https://ezstaking.app/stride/account/${accountAddress}"},{"kind":"Apollo","url":"https://apollo.chandrastation.com/stride","tx_page":"https://apollo.chandrastation.com/stride/tx/${txHash}","account_page":"https://apollo.chandrastation.com/stride/account/${accountAddress}"},{"kind":"Stride Ping Pub","url":"https://explorer.stride.zone/stride","tx_page":"https://explorer.stride.zone/stride/tx/${txHash}","account_page":"https://explorer.stride.zone/stride/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/stride","tx_page":"https://explorer.stavr.tech/stride/tx/${txHash}","account_page":"https://explorer.stavr.tech/stride/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/stride","tx_page":"https://www.mintscan.io/stride/transactions/${txHash}","account_page":"https://www.mintscan.io/stride/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/stride","tx_page":"https://atomscan.com/stride/transactions/${txHash}","account_page":"https://atomscan.com/stride/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/stride","tx_page":"https://staking-explorer.com/transaction.php?chain=stride&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=stride&addr=${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/stride","account_page":"https://stakeflow.io/stride/accounts/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/stride","tx_page":"https://explorer.stake-take.com/stride/tx/${txHash}","account_page":"https://explorer.stake-take.com/stride/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/stride","tx_page":"https://mainnet.whispernode.com/stride/tx/${txHash}","account_page":"https://mainnet.whispernode.com/stride/account/${accountAddress}"}]},{"chainId":"sunrise-1","explorers":[]},{"chainId":"synternet-1","explorers":[{"kind":"Big Dipper","url":"https://explorer.synternet.com/","tx_page":"https://explorer.synternet.com/transactions/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/synternet","tx_page":"https://staking-explorer.com/transaction.php?chain=synternet&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=synternet&addr=${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/synternet","tx_page":"https://explorer.whenmoonwhenlambo.money/synternet/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/synternet/account/${accountAddress}"}]},{"chainId":"taketitan-12","explorers":[{"kind":"ping.pub","url":"https://scan.taketitan.com/taketitan","tx_page":"https://scan.taketitan.com/taketitan/tx/${txHash}","account_page":"https://scan.taketitan.com/taketitan/accounts/${accountAddress}"}]},{"chainId":"tenet_1559-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/tenet","tx_page":"https://ping.pub/tenet/tx/${txHash}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/Tenet","tx_page":"https://exp.nodeist.net/Tenet/tx/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/tenet","tx_page":"https://explorer.tcnetwork.io/tenet/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/tenet/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/tenet","tx_page":"https://staking-explorer.com/transaction.php?chain=tenet&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=tenet&addr=${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/tenet","tx_page":"https://explorer.whenmoonwhenlambo.money/tenet/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/tenet/account/${accountAddress}"}]},{"chainId":"teritori-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/teritori","tx_page":"https://ezstaking.app/teritori/txs/${txHash}","account_page":"https://ezstaking.app/teritori/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.teritori.com/teritori","tx_page":"https://explorer.teritori.com/teritori/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/teritori-main","tx_page":"https://explorer.stavr.tech/teritori-main/tx/${txHash}"},{"kind":"guru","url":"https://teritori.explorers.guru/","tx_page":"https://teritori.explorers.guru/transaction/${txHash}"},{"kind":"Brochain","url":"https://explorer.brocha.in/teritori","tx_page":"https://explorer.brocha.in/teritori/tx/${txHash}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀","url":"https://exp.utsa.tech/teritori","tx_page":"https://exp.utsa.tech/teritori/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/teritori","tx_page":"https://www.mintscan.io/teritori/transactions/${txHash}","account_page":"https://www.mintscan.io/teritori/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/teritori","tx_page":"https://explorer.tcnetwork.io/teritori/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/teritori","tx_page":"https://staking-explorer.com/transaction.php?chain=teritori&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=teritori&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/teritori","tx_page":"https://atomscan.com/teritori/transactions/${txHash}","account_page":"https://atomscan.com/teritori/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/teritori","tx_page":"https://explorer.whenmoonwhenlambo.money/teritori/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/teritori/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/teritori","tx_page":"https://explorer.chainroot.io/teritori/transactions/${txHash}","account_page":"https://explorer.chainroot.io/teritori/accounts/${accountAddress}"}]},{"chainId":"morocco-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/terp","tx_page":"https://ping.pub/terp/tx/${txHash}","account_page":"https://ping.pub/terp/account/{$accountAddress}"},{"kind":"ping.pub","url":"https://explorer.nodestake.top","tx_page":"https://explorer.nodestake.top/terp/tx/${txHash}","account_page":"https://explorer.nodestake.top/terp/account/{$accountAddress}"},{"kind":"ZenChainLabs","url":"https://terp.zenscan.io/","tx_page":"https://terp.zenscan.io/transaction.php?hash=${txHash}","account_page":"https://terp.zenscan.io/address.php?address=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Terp-Mainnet","tx_page":"https://explorer.stavr.tech/Terp-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Terp-Mainnet/account/{$accountAddress}"}]},{"chainId":"columbus-5","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/terra","tx_page":"https://ezstaking.app/terra/txs/${txHash}","account_page":"https://ezstaking.app/terra/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/terra-luna","tx_page":"https://ping.pub/terra-luna/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/terra","tx_page":"https://atomscan.com/terra/transactions/${txHash}","account_page":"https://atomscan.com/terra/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/terra","tx_page":"https://staking-explorer.com/transaction.php?chain=terra&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=terra&addr=${accountAddress}"},{"kind":"finder","url":"https://finder.terra.money/classic","tx_page":"https://finder.terra.money/classic/tx/${txHash}","account_page":"https://finder.terra.money/classic/address/${accountAddress}"},{"kind":"finder","url":"https://finder.terrarebels.net/classic","tx_page":"https://finder.terrarebels.net/classic/tx/${txHash}","account_page":"https://finder.terrarebels.net/classic/address/${accountAddress}"}]},{"chainId":"phoenix-1","explorers":[{"kind":"atomscan","url":"https://atomscan.com/terra2","tx_page":"https://atomscan.com/terra2/transactions/${txHash}","account_page":"https://atomscan.com/terra2/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/terra2","tx_page":"https://staking-explorer.com/transaction.php?chain=terra2&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=terra2&addr=${accountAddress}"},{"kind":"finder","url":"http://finder.terra.money/","tx_page":"https://finder.terra.money/mainnet/tx/${txHash}","account_page":"https://finder.terra.money/mainnet/address/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/terra","account_page":"https://stakeflow.io/terra/accounts/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/terra","tx_page":"https://www.mintscan.io/terra/transactions/${txHash}","account_page":"https://www.mintscan.io/terra/accounts/${accountAddress}"}]},{"chainId":"tgrade-mainnet-1","explorers":[{"kind":"aneka","url":"https://tgrade.aneka.io","tx_page":"https://tgrade.aneka.io/txs/${txHash}","account_page":"https://tgrade.aneka.io/accounts/${accountAddress}"}]},{"chainId":"thorchain-1","explorers":[{"kind":"THORChain explorer","url":"https://thorchain.net","tx_page":"https://thorchain.net/#/txs/${txHash}"},{"kind":"viewblock","url":"https://viewblock.io/thorchain","tx_page":"https://viewblock.io/thorchain/tx/${txHash}"}]},{"chainId":"titan_18888-1","explorers":[{"kind":"ping.pub","url":"https://tkxscan.io","tx_page":"https://tkxscan.io/Titan/tx/${txHash}","account_page":"https://tkxscan.io/Titan/account/${accountAddress}"}]},{"explorers":[{"kind":"Tonscan","url":"https://tonscan.org/","tx_page":"https://tonscan.org/tx/${txHash}"}]},{"explorers":[{"kind":"TRONSCAN","url":"https://tronscan.org/","tx_page":"https://tronscan.org/#/transaction//${txHash}"}]},{"chainId":"umee-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/umee/","tx_page":"https://www.mintscan.io/umee/transactions/${txHash}","account_page":"https://www.mintscan.io/umee/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/umee","tx_page":"https://ping.pub/umee/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/umee","tx_page":"https://explorer.stavr.tech/umee/tx/${txHash}"},{"kind":"explorers.guru","url":"https://umee.explorers.guru","tx_page":"https://umee.explorers.guru/transaction/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/umee","tx_page":"https://atomscan.com/umee/transactions/${txHash}","account_page":"https://atomscan.com/umee/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/umee","tx_page":"https://staking-explorer.com/transaction.php?chain=umee&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=umee&addr=${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/umee","account_page":"https://stakeflow.io/umee/accounts/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/umee","tx_page":"https://explorer.stake-take.com/umee/transactions/${txHash}","account_page":"https://explorer.stake-take.com/umee/account/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/umee","tx_page":"https://exp.stakevillage.net/umee/tx/${txHash}","account_page":"https://exp.stakevillage.net/umee/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/umee","tx_page":"https://ezstaking.app/umee/txs/${txHash}","account_page":"https://ezstaking.app/umee/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/umee","tx_page":"https://explorer.whenmoonwhenlambo.money/umee/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/umee/account/${accountAddress}"}]},{"chainId":"unicorn-420"},{"chainId":"FUND-MainNet-2","explorers":[{"kind":"ping.pub","url":"https://explorer.unification.io/u","tx_page":"https://explorer.unification.io/u/tx/${txHash}","account_page":"https://explorer.unification.io/u/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.unification.chainmasters.ninja/unification","tx_page":"https://explorer.unification.chainmasters.ninja/unification/tx/${txHash}","account_page":"https://explorer.unification.chainmasters.ninja/Unification/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/unification","tx_page":"https://staking-explorer.com/transaction.php?chain=unification&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=unification&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/unification","tx_page":"https://atomscan.com/unification/transactions/${txHash}","account_page":"https://atomscan.com/unification/accounts/${accountAddress}"}]},{"chainId":"ununifi-beta-v1","explorers":[{"kind":"UnUniFi Explorer","url":"https://ununifi.io/explorer","tx_page":"https://ununifi.io/explorer/txs/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/ununifi","tx_page":"https://explorer.nodestake.top/ununifi/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/ununifi","tx_page":"https://staking-explorer.com/transaction.php?chain=ununifi&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=ununifi&addr=${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/Ununifi","tx_page":"https://exp.nodeist.net/Ununifi/tx/${txHash}"}]},{"chainId":"uptick_117-1","explorers":[{"kind":"ping.pub","url":"https://explorers.brocha.in/uptick","tx_page":"https://explorers.brocha.in/uptick/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/uptick","tx_page":"https://staking-explorer.com/transaction.php?chain=uptick&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=uptick&addr=${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/uptick","tx_page":"https://explorer.nodestake.org/uptick/tx/${txHash}"},{"kind":"BccNodes Explorer","url":"https://explorer.bccnodes.com/uptick-M","tx_page":"https://explorer.bccnodes.com/uptick-M/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/uptick-mainnet","tx_page":"https://explorer.stavr.tech/uptick-mainnet/tx/${txHash}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀 Explorer","url":"https://exp.utsa.tech/uptick","tx_page":"https://exp.utsa.tech/uptick/tx/${txHash}"},{"kind":"cosmotracker","url":"https://cosmotracker.com/uptick","tx_page":"https://cosmotracker.com/uptick/tx/${txHash}"},{"kind":"Upscan","url":"https://upscan.xyz/","tx_page":"https://upscan.xyz/uptick_117-1/tx/${txHash}"},{"kind":"Sr20de","url":"https://explorer.sr20de.xyz/uptick","tx_page":"https://explorer.sr20de.xyz/uptick/tx/${txHash}"}]},{"chainId":"xion-mainnet-1","explorers":[{"url":"https://explorer.burnt.com/xion-mainnet-1","tx_page":"https://explorer.burnt.com/xion-mainnet-1/tx/${txHash}","account_page":"https://explorer.burnt.com/xion-mainnet-1/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/xion","tx_page":"https://explorer.whenmoonwhenlambo.money/xion/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/xion/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/xion","tx_page":"https://staking-explorer.com/transaction.php?chain=xion&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=xion&addr=${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/xion","tx_page":"https://explorer.nodestake.org/xion/tx/${txHash}","account_page":"https://explorer.nodestake.org/xion/account/${accountAddress}"}]},{"chainId":"dimension_37-1","explorers":[{"kind":"explorer.xpla","url":"https://explorer.xpla.io","tx_page":"https://explorer.xpla.io/mainnet/tx/${txHash}"},{"kind":"finder","url":"https://finder.xpla.io","tx_page":"https://finder.xpla.io/mainnet/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Xpla-Mainnet","tx_page":"https://explorer.stavr.tech/Xpla-Mainnet/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/xpla","tx_page":"https://www.mintscan.io/xpla/transactions/${txHash}","account_page":"https://www.mintscan.io/xpla/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/xpla","tx_page":"https://staking-explorer.com/transaction.php?chain=xpla&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=xpla&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/xpla","tx_page":"https://ezstaking.app/xpla/txs/${txHash}","account_page":"https://ezstaking.app/xpla/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Xpla-Mainnet","tx_page":"https://explorer.stavr.tech/Xpla-Mainnet/${txHash}","account_page":"https://explorer.stavr.tech/Xpla-Mainnet/account/${accountAddress}"}]},{"chainId":"zetachain_7000-1","explorers":[{"kind":"ZetaScan","url":"https://explorer.zetachain.com/","tx_page":"https://explorer.zetachain.com/cc/tx/${txHash}"},{"kind":"BlockScout","url":"https://zetachain.blockscout.com/","tx_page":"https://zetachain.blockscout.com/tx/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/zetachain","tx_page":"https://explorer.nodestake.org/zetachain/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/zetachain","tx_page":"https://staking-explorer.com/transaction.php?chain=zetachain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=zetachain&addr=${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/zetachain/","tx_page":"https://explorer.nodeshub.online/zetachain/tx/${txHash}","account_page":"https://explorer.nodeshub.online/zetachain/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Zetachain-Mainnet","tx_page":"https://explorer.stavr.tech/Zetachain-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Zetachain-Mainnet/accounts/${accountAddress}"}]},{"chainId":"junction","explorers":[{"kind":"Airchains","url":"https://testnet.airchains.io","tx_page":"https://testnet.airchains.io/transaction/${txHash}","account_page":"https://testnet.airchains.io/address/${accountAddress}"},{"kind":"NodesGuru","url":"https://testnet.junction.explorers.guru/","tx_page":"https://testnet.junction.explorers.guru/transaction/${txHash}","account_page":"https://testnet.junction.explorers.guru/account/${accountAddress}"},{"kind":"Nodejumper","url":"https://app.nodejumper.io/airchains-testnet/"},{"kind":"UTSA","url":"https://exp.utsa.tech/airchains-test/","tx_page":"https://exp.utsa.tech/airchains-test/tx/${txHash}","account_page":"https://exp.utsa.tech/airchains-test/account/${accountAddress}"},{"kind":"Stavr Tech","url":"https://explorer.stavr.tech/Airchains-Testnet","tx_page":"https://explorer.stavr.tech/Airchains-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Airchains-Testnet/${accountAddress}"},{"kind":"CoinHunters","url":"https://explorer.coinhunterstr.com/Airchains","tx_page":"https://explorer.coinhunterstr.com/Airchains/tx/${txHash}","account_page":"https://explorer.coinhunterstr.com/Airchains/account/${accountAddress}"},{"kind":"KZVN","url":"https://explorer.kzvn.xyz/airchains","tx_page":"https://explorer.kzvn.xyz/airchains/tx/${txHash}","account_page":"https://explorer.kzvn.xyz/airchains/account/${accountAddress}"},{"kind":"Elessar Nodes","url":"https://explorer.elessarnodes.xyz/Airchains","tx_page":"https://explorer.elessarnodes.xyz/Airchains/tx/${txHash}","account_page":"https://explorer.elessarnodes.xyz/Airchains/account/${accountAddress}"},{"kind":"Apollo Sync","url":"https://explorer.apollo-sync.com/","tx_page":"https://explorer.apollo-sync.com/tx/${txHash}","account_page":"https://explorer.apollo-sync.com/account/${accountAddress}"},{"kind":"Stakeme","url":"https://airchains.exploreme.pro/","tx_page":"https://airchains.exploreme.pro/transaction/${txHash}"},{"kind":"StakerHouse","url":"https://cosmotracker.com/airchains","tx_page":"https://cosmotracker.com/airchains/tx/${txHash}","account_page":"https://cosmotracker.com/airchains/account/${accountAddress}"},{"kind":"IT Rocket","url":"https://testnet.itrocket.net/airchains/","tx_page":"https://testnet.itrocket.net/airchains//tx/${txHash}","account_page":"https://testnet.itrocket.net/airchains/account/${accountAddress}"},{"kind":"Validator VN ","url":"https://explorer.validatorvn.com/Airchains-Testnet","tx_page":"https://explorer.validatorvn.com/Airchains-Testnet/tx/${txHash}","account_page":"https://explorer.validatorvn.com/Airchains-Testnet/account/${accountAddress}"}]},{"chainId":"sandbox-01","explorers":[{"kind":"ping.pub","url":"https://explorer.sandbox-01.aksh.pw/akash","tx_page":"https://explorer.sandbox-01.aksh.pw/akash/tx/${txHash}"}]},{"chainId":"constantine-3","explorers":[{"kind":"archwayscan","url":"https://testnet.archway.explorers.guru","tx_page":"https://testnet.archway.explorers.guru/transaction/${txHash}"}]},{"chainId":"arkeo","explorers":[{"url":"https://explorer.nodexcapital.com/arkeo","tx_page":"https://explorer.nodexcapital.com/arkeo/tx/${txHash}"}]},{"chainId":"artela_11820-1","explorers":[{"kind":"Artela Network","url":"https://testnet-scan.artela.network","tx_page":"https://testnet-scan.artela.network/tx/${txHash}"}]},{"chainId":"aura_6321-3","explorers":[{"kind":"aurascan","url":"https://euphoria.aurascan.io","tx_page":"https://euphoria.aurascan.io/tx/${txHash}","account_page":"https://euphoria.aurascan.io/address/${accountAddress}"}]},{"chainId":"axelar-testnet-lisbon-3","explorers":[{"kind":"axelarscan","url":"https://testnet.axelarscan.io","tx_page":"https://testnet.axelarscan.io/tx/${txHash}"},{"kind":"mintscan","url":"https://mintscan.io/axelar-testnet","tx_page":"https://mintscan.io/axelar-testnet/txs/${txHash}","account_page":"https://mintscan.io/axelar-testnet/account/${accountAddress}"}]},{"chainId":"bbn-test3","explorers":[{"kind":"babylonscan","url":"https://babylonscan.io"},{"kind":"explorers.guru","url":"https://testnet.babylon.explorers.guru","tx_page":"https://testnet.babylon.explorers.guru/transaction/${txHash}"}]},{"chainId":"bitcanna-dev-1","explorers":[{"url":"https://explorer.thesilverfox.pro/bitcanna","tx_page":"https://explorer.thesilverfox.pro/bitcanna/tx/${txHash}"},{"url":"https://testnets-cosmos.mintthemoon.xyz/bitcanna","tx_page":"https://testnets-cosmos.mintthemoon.xyz/bitcanna/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Bitcanna-DEV","tx_page":"https://explorer.stavr.tech/Bitcanna-DEV/tx/${txHash}","account_page":"https://explorer.stavr.tech/Bitcanna-DEV/account/${accountAddress}"},{"url":"https://explorer.kjnodes.com/bitcanna-testnet","tx_page":"https://explorer.kjnodes.com/bitcanna-testnet/tx/${txHash}"},{"url":"https://explorer.stavr.tech/bitcanna-dev","tx_page":"https://explorer.stavr.tech/bitcanna-dev/tx/${txHash}"}]},{"chainId":"blockx_19077-1"},{"chainId":"cascadia_6102-1","explorers":[{"kind":"validator_explorer","url":"https://validator.cascadia.foundation/","tx_page":"https://validator.cascadia.foundation/transactions/${txHash}","account_page":"https://validator.cascadia.foundation/accounts/${accountAddress}"},{"kind":"block_explorer","url":"https://explorer.cascadia.foundation/","tx_page":"https://explorer.cascadia.foundation/tx/${txHash}","account_page":"https://explorer.cascadia.foundation/address/${accountAddress}"}]},{"chainId":"mocha-4","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/celestia-testnet","tx_page":"https://mintscan.io/celestia-testnet/txs/${txHash}"},{"kind":"πŸš€ITRocketπŸš€","url":"https://testnet.itrocket.net/celestia","tx_page":"https://testnet.itrocket.net/celestia/tx/${txHash}","account_page":"https://testnet.itrocket.net/celestia/account/${accountAddress}"},{"kind":"CrypTech","url":"https://explorers.cryptech.com.ua/Celestia-Testnet","tx_page":"https://explorers.cryptech.com.ua/Celestia-Testnet/tx/${txHash}","account_page":"https://explorers.cryptech.com.ua/Celestia-Testnet/account/${accountAddress}"},{"kind":"DTEAM | Explorer","url":"https://explorer.testnet.dteam.tech/celestia","tx_page":"https://explorer.testnet.dteam.tech/celestia/tx/${txHash}","account_page":"https://explorer.testnet.dteam.tech/celestia/account/${accountAddress}"},{"kind":"Relaxed Explorer πŸ¦₯","url":"https://testnet.explorer.stakeandrelax.net/celestia","tx_page":"https://testnet.explorer.stakeandrelax.net/celestia/transaction/${txHash}","account_page":"https://testnet.explorer.stakeandrelax.net/celestia/account/${accountAddress}"}]},{"chainId":"babajaga-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/C4E-Testnet","tx_page":"https://explorer.stavr.tech/C4E-Testnet/transactions/${txHash}"},{"kind":"explorer","url":"https://explorer-testnet.c4e.io/","tx_page":"https://explorer-testnet.c4e.io/transactions/${txHash}"}]},{"chainId":"cheqd-testnet-6","explorers":[{"kind":"bigdipper","url":"https://testnet-explorer.cheqd.io/","tx_page":"https://testnet-explorer.cheqd.io/transactions/${txHash}"}]},{"chainId":"chimba-testnet","explorers":[{"kind":"bigdipper","url":"https://explorer.testnet.chimba.ooo/","tx_page":"https://explorer.testnet.chimba.ooo/transactions/${txHash}"}]},{"chainId":"banksy-testnet-3","explorers":[{"url":"https://explorer.nodexcapital.com/composable-3","tx_page":"https://explorer.nodexcapital.com/composable-3/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Composable-Testnet4","tx_page":"https://explorer.stavr.tech/Composable-Testnet4/tx/${txHash}"},{"url":"https://explorer.indonode.net/composable-testnet-3","tx_page":"https://explorer.indonode.net/composable-testnet-3/tx/${txHash}"},{"url":"https://explorer.sr20de.xyz/Composible-3","tx_page":"https://explorer.sr20de.xyz/Composible-3/tx/${txHash}"}]},{"chainId":"kitten-04","explorers":[]},{"chainId":"coreum-testnet-1","explorers":[{"kind":"Coreum","url":"https://explorer.testnet-1.coreum.dev/coreum","tx_page":"https://explorer.testnet-1.coreum.dev/coreum/transactions/${txHash}","account_page":"https://explorer.testnet-1.coreum.dev/coreum/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/coreum-testnet","tx_page":"https://www.mintscan.io/coreum-testnet/transactions/${txHash}","account_page":"https://www.mintscan.io/coreum-testnet/accounts/${accountAddress}"}]},{"chainId":"theta-testnet-001","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/cosmoshub-testnet","tx_page":"https://mintscan.io/cosmoshub-testnet/txs/${txHash}"},{"kind":"Big Dipper","url":"https://explorer.theta-testnet.polypore.xyz/","tx_page":"https://explorer.theta-testnet.polypore.xyz/transactions/${txHash}"}]},{"chainId":"provider","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/ics-testnet-provider","tx_page":"https://mintscan.io/ics-testnet-provider/tx/${txHash}"},{"kind":"Ping.pub","url":"https://explorer.polypore.xyz/provider","tx_page":"https://explorer.polypore.xyz/provider/tx/${txHash}"},{"kind":"ITRocket","url":"https://testnet.itrocket.net/cosmos","tx_page":"https://testnet.itrocket.net/cosmos/tx/${txHash}","account_page":"https://testnet.itrocket.net/cosmos/account/${accountAddress}","validator_page":"https://testnet.itrocket.net/cosmos/staking/${validatorAddress}","proposal_page":"https://testnet.itrocket.net/cosmos/gov/${proposalId}","block_page":"https://testnet.itrocket.net/cosmos/block/${blockHeight}"}]},{"chainId":"malaga-420","explorers":[{"kind":"BIG DIPPER","url":"https://block-explorer.malaga-420.cosmwasm.com/","tx_page":"https://block-explorer.malaga-420.cosmwasm.com/transactions/${txHash}"}]},{"chainId":"coss-testnet-1"},{"chainId":"cudos-testnet-public-3","explorers":[{"kind":"bigdipper-testnet","url":"https://explorer.testnet.cudos.org/","tx_page":"https://explorer.testnet.cudos.org/transactions/${txHash}","account_page":"https://explorer.testnet.cudos.org/accounts/${accountAddress}"}]},{"chainId":"deardoge-testnet","explorers":[{"kind":"Dear Doge Ping Pub","url":"https://testnet-explorer.deardoge.org/deardoge","tx_page":"https://testnet-explorer.deardoge.org/deardoge/tx/${txHash}"}]},{"chainId":"morpheus-apollo-3","explorers":[{"kind":"bigdipper","url":"https://testnet.bigdipper.live/desmos","tx_page":"https://testnet.live/desmos/transactions/${txHash}","account_page":"https://testnet.bigdipper.live/desmos/accounts/${accountAddress}"}]},{"chainId":"dhealth-testnet-2","explorers":[]},{"chainId":"vota-testnet","explorers":[{"kind":"Dora Vota Ping Pub","url":"https://maci-explorer-test.dorafactory.org","tx_page":"https://maci-explorer-test.dorafactory.org/dora/tx/${txHash}"}]},{"chainId":"dydx-testnet-4","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/dydx-testnet","tx_page":"https://www.mintscan.io/dydx-testnet/txs/${txHash}","account_page":"https://www.mintscan.io/dydx-testnet/account/${accountAddress}"}]},{"chainId":"dymension_1405-1","explorers":[{"kind":"dymscan","url":"https://pg.dym.fyi/","tx_page":"https://pg.dym.fyi//tx/${txHash}"}]},{"chainId":"elysicstestnet-1","explorers":[{"kind":"ping.pub","url":"https://testnet.ping.pub/elys","tx_page":"https://testnet.ping.pub/elys/tx/${txHash}","account_page":"https://testnet.ping.pub/elys/account/${accountAddress}"},{"kind":"itrocket","url":"https://testnet.itrocket.net/elys","tx_page":"https://testnet.itrocket.net/elys/staking/tx/${txHash}","account_page":"https://testnet.itrocket.net/elys/account/${accountAddress}"}]},{"chainId":"empe-testnet-2","explorers":[{"kind":"empe","url":"https://explorer-testnet.empe.io","tx_page":"https://explorer-testnet.empe.io/transactions/${txHash}"}]},{"chainId":"circulus-1","explorers":[{"kind":"exploreme","url":"https://empowerchain.exploreme.pro","tx_page":"https://empowerchain.exploreme.pro/transaction/${txHash}"},{"kind":"ping.pub","url":"https://exp.nodeist.net/Empower","tx_page":"https://exp.nodeist.net/Empower/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Empower","tx_page":"https://explorer.stavr.tech/Empower/tx/${txHash}"},{"kind":"ping.pub","url":"https://explorer.nodestake.top/empower-testnet","tx_page":"https://explorer.nodestake.top/empower-testnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://testnet.itrocket.net/empower/staking","tx_page":"https://testnet.itrocket.net/empower/staking/tx/${txHash}"},{"kind":"ping.pub","url":"https://explorer.stavr.tech/empower","tx_page":"https://explorer.stavr.tech/empower/tx/${txHash}"}]},{"chainId":"epix_4243-1","explorers":[{"kind":"Epix Explorer","url":"https://testnet.epix.zone/epix","tx_page":"https://testnet.epix.zone/epix/tx/${txHash}"}]},{"chainId":"evmos_9000-4","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/evmos-testnet","tx_page":"https://mintscan.io/evmos-testnet/txs/${txHash}"},{"kind":"NodesGuru","url":"https://testnet.evmos.explorers.guru/","tx_page":"https://testnet.evmos.explorers.guru/transaction/${txHash}"}]},{"chainId":"dorado-1","explorers":[{"kind":"bigdipper","url":"https://explore-dorado.fetch.ai","tx_page":"https://explore-dorado.fetch.ai/transactions/${txHash}"},{"kind":"azoyalabs","url":"https://fetchstation.azoyalabs.com/testnet","tx_page":"https://fetchstation.azoyalabs.com/testnet/explorer/transactions/${txHash}","account_page":"https://fetchstation.azoyalabs.com/testnet/explorer/address/${accountAddress}"}]},{"chainId":"fiamma-testnet-1","explorers":[{"kind":"ping.pub","url":"https://testnet-explorer.fiammachain.io/"}]},{"chainId":"ebony-2","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/finschia-testnet","tx_page":"https://www.mintscan.io/finschia-testnet/tx/${txHash}","account_page":"https://www.mintscan.io/finschia-testnet/address/${accountAddress}"}]},{"chainId":"galactica_9302-1","explorers":[{"kind":"ping.pub","url":"https://ping.pfc.zone/galactica-testnet","tx_page":"https://ping.pfc.zone/galactica-testnet/tx/${txHash}","account_page":"https://ping.pfc.zone/galactica-testnet/account/${accountAddress}"}]},{"chainId":"gitopia-janus-testnet-2","explorers":[{"kind":"explorer.humans.zone","url":"https://gitopia.explorers.guru/","tx_page":"https://gitopia.explorers.guru/transaction/${txHash}"}]},{"chainId":"berberis-1","explorers":[{"kind":"hedgescan","url":"https://berberis.hedgescan.io","tx_page":"https://berberis.hedgescan.io/txs/${txHash}"}]},{"chainId":"testnet-1","explorers":[{"kind":"explorer.humans.zone","url":"https://explorer.humans.zone/","tx_page":"https://explorer.humans.zone/humans-testnet/tx/${txHash}"}]},{"chainId":"prajna-1","explorers":[{"kind":"Hypersign","url":"https://explorer.hypersign.id/hypersign-prajna-testnet","tx_page":"https://explorer.hypersign.id/hypersign-prajna-testnet/tx/${txHash}"}]},{"chainId":"pandora-8","explorers":[{"kind":"ixoworld","url":"https://blockscan.testnet.ixo.earth/ixo","tx_page":"https://blockscan.testnet.ixo.earth/ixo/transactions/${txHash}","account_page":"https://blockscan.testnet.ixo.earth/ixo/accounts/${accountAddress}"}]},{"chainId":"imversed-test-1","explorers":[{"kind":"Big Dipper","url":"https://tex-s.imversed.com","tx_page":"https://tex-s.imversed.com/transactions/${txHash}"}]},{"chainId":"injective-888","explorers":[{"kind":"injectiveprotocol","url":"https://testnet.explorer.injective.network/","tx_page":"https://testnet.explorer.injective.network/transaction/${txHash}"}]},{"chainId":"canine-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Jackal-Testnet","tx_page":"https://explorer.stavr.tech/Jackal-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Jackal-Testnet/account/${accountAddress}"},{"kind":"ping.pub","url":"https://testnet.ping.pub/jackal","tx_page":"https://testnet.ping.pub/jackal/tx/${txHash}"}]},{"chainId":"mesomelas-1","explorers":[{"kind":"PingPub","url":"https://testnet-explorer.brocha.in/Jackal%20v4","tx_page":"https://testnet-explorer.brocha.in/Jackal%20v4/tx/${txHash}","account_page":"https://testnet-explorer.brocha.in/Jackal%20v4/account/${accountAddress}"}]},{"chainId":"uni-6","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Juno-Testnet","tx_page":"https://explorer.stavr.tech/Juno-Testnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/Juno-Testnet/account/${accountAddress}"}]},{"chainId":"kichain-t-4","explorers":[{"kind":"kifoundation","url":"https://kichain-t-4.blockchain.ki/","tx_page":"https://kichain-t-4.blockchain.ki/transactions/${txHash}"}]},{"chainId":"kima_testnet","explorers":[{"kind":"Kima Network","url":"https://explorer-testnet.kima.finance/","tx_page":"https://explorer-testnet.kima.finance/transactions/${txHash}"}]},{"chainId":"harpoon-4","explorers":[{"kind":"explorers.guru","url":"https://kujira.explorers.guru","tx_page":"https://kujira.explorers.guru/transaction/${txHash}"}]},{"chainId":"kaon-1","explorers":[{"kind":"mintscan","url":"https://mintscan.io/kyve-testnet","tx_page":"https://mintscan.io/kyve-testnet/txs/${txHash}","account_page":"https://mintscan.io/kyve-testnet/account/${accountAddress}"},{"kind":"KYVE Explorer","url":"https://explorer.kyve.network/kaon","tx_page":"https://explorer.kyve.network/kaon/tx/${txHash}","account_page":"https://explorer.kyve.network/kaon/account/${accountAddress}"}]},{"chainId":"lava-testnet-2","explorers":[{"kind":"explorers.guru","url":"https://lava.explorers.guru/","tx_page":"https://lava.explorers.guru//transaction/${txHash}","account_page":"https://lava.explorers.guru//account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Lava-Testnet","tx_page":"https://explorer.stavr.tech/Lava-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Lava-Testnet/account/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/lava-testnet","tx_page":"https://explorer.nodestake.org/lava-testnet/tx/${txHash}","account_page":"https://explorer.nodestake.org/lava-testnet/account/${accountAddress}"},{"kind":"πŸš€ITRocketπŸš€","url":"https://testnet.itrocket.net/lava","tx_page":"https://testnet.itrocket.net/lava/tx/${txHash}","account_page":"https://testnet.itrocket.net/lava/account/${accountAddress}"}]},{"chainId":"likecoin-public-testnet-5","explorers":[{"kind":"bigdipper","url":"https://testnet.bigdipper.live/likecoin","tx_page":"https://testnet.bigdipper.live/likecoin/transactions/${txHash}","account_page":"https://testnet.bigdipper.live/likecoin/accounts/${accountAddress}"},{"kind":"lunie-ng","url":"https://likecoin-public-testnet-5.netlify.app/"}]},{"chainId":"lumenx-test","explorers":[{"kind":"ping.pub","url":"https://testnet.explorer.chaintools.tech/lumenx","tx_page":"https://testnet.explorer.chaintools.tech/lumenx/tx/${txHash}"}]},{"chainId":"manifest-ledger-beta","explorers":[{"kind":"Default Explorer","url":"https://manifest-explorer.vercel.app/","tx_page":"https://manifest-explorer.vercel.app/manifest/tx"}]},{"chainId":"mantra-hongbai-1"},{"chainId":"mantra-dukong-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/mantra-testnet","tx_page":"https://mintscan.io/mantra-testnet/txs/${txHash}","account_page":"https://mintscan.io/mantra-testnet/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.mantrachain.io","tx_page":"https://explorer.mantrachain.io/MANTRA-Dukong/tx/${txHash}","account_page":"https://explorer.mantrachain.io/MANTRA-Dukong/account/${accountAddress}"}]},{"chainId":"ares-1","explorers":[{"kind":"Mars Protocol","url":"https://testnet-explorer.marsprotocol.io","tx_page":"https://testnet-explorer.marsprotocol.io/transactions/${txHash}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/t-mars/","tx_page":"https://exp.nodeist.net/t-mars/transactions/${txHash}"}]},{"chainId":"mnova_10096-1"},{"chainId":"narwhal-2","explorers":[{"kind":"ping.pub","url":"https://ping.pfc.zone/narwhal-testnet","tx_page":"https://ping.pfc.zone/narwhal-testnet/tx/${txHash}"}]},{"chainId":"neura_267-1","explorers":[{"kind":"ankrscan-neura","url":"https://testnet.explorer.neuraprotocol.io","tx_page":"https://testnet.explorer.neuraprotocol.io/tx/${txHash}"},{"kind":"blockscout","url":"https://explorer.neura-testnet.ankr.com","tx_page":"https://explorer.neura-testnet.ankr.com/tx/${txHash}"}]},{"chainId":"pion-1","explorers":[{"kind":"Ping.pub Explorer from Hypha","url":"https://explorer.rs-testnet.polypore.xyz/pion-1","tx_page":"https://explorer.rs-testnet.polypore.xyz/pion-1/tx/${txHash}","account_page":"https://explorer.rs-testnet.polypore.xyz/baryon-1/account/${accountAddress}"},{"kind":"Mintscan","url":"https://mintscan.io/neutron-testnet","tx_page":"https://mintscan.io/neutron-testnet/txs/${txHash}","account_page":"https://mintscan.io/neutron-testnet/account/${accountAddress}"}]},{"chainId":"nibiru-testnet-1","explorers":[{"kind":"Nibiru Foundation","url":"https://explorer.nibiru.fi/nibiru-testnet-1","tx_page":"https://explorer.nibiru.fi/nibiru-tesnet-1/tx/${txHash}","account_page":"https://explorer.nibiru.fi/nibiru-testnet-1/account/${accountAddress}"}]},{"chainId":"nibiru-testnet-2","explorers":[{"kind":"Nibiru Foundation","url":"https://explorer.nibiru.fi/nibiru-testnet-2","tx_page":"https://explorer.nibiru.fi/nibiru-tesnet-2/tx/${txHash}","account_page":"https://explorer.nibiru.fi/nibiru-testnet-2/account/${accountAddress}"}]},{"chainId":"nibiru-testnet-3","explorers":[{"kind":"Nibiru Foundation","url":"https://explorer.nibiru.fi/nibiru-testnet-3","tx_page":"https://explorer.nibiru.fi/nibiru-tesnet-3/tx/${txHash}","account_page":"https://explorer.nibiru.fi/nibiru-testnet-3/account/${accountAddress}"}]},{"chainId":"nillion-chain-testnet-1","explorers":[{"url":"https://testnet.nillion.explorers.guru","tx_page":"https://testnet.nillion.explorers.guru/transaction/${txHash}","account_page":"https://testnet.nillion.explorers.guru/account/${accountAddress}"},{"url":"https://testnet.ping.pub/nillion","tx_page":"https://testnet.ping.pub/nillion/tx/${txHash}","account_page":"https://testnet.ping.pub/nillion/account/${accountAddress}"}]},{"chainId":"grand-1","explorers":[{"kind":"mintscan","url":"https://mintscan.io/noble-testnet","tx_page":"https://mintscan.io/noble-testnet/txs/${txHash}"},{"kind":"ping.pub","url":"https://explore.strange.love/grand-1","tx_page":"https://explore.strange.love/grand-1/tx/${txHash}"}]},{"chainId":"nois-testnet-005","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Nois-Testnet","tx_page":"https://explorer.stavr.tech/Nois-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Nois-Testnet/account/${accountAddress}"},{"kind":"explorers.guru","url":"https://testnet.nois.explorers.guru","tx_page":"https://testnet.nois.explorers.guru/transaction/${txHash}","account_page":"https://testnet.nois.explorers.guru/account/${accountAddress}"}]},{"chainId":"rila-1","explorers":[{"kind":"Nolus Explorer","url":"https://explorer-rila.nolus.io/rila-1/","tx_page":"https://explorer-rila.nolus.io/rila-1/tx/${txHash}","account_page":"https://explorer-rila.nolus.io/rila-1/account/${accountAddress}"}]},{"chainId":"nomic-testnet-6","explorers":[]},{"chainId":"sandbox","explorers":[{"kind":"ping.pub","url":"https://sandbox-blocks.nymtech.net/sandbox","tx_page":"https://sandbox-blocks.nymtech.net/sandbox/tx/${txHash}"}]},{"chainId":"okp4-nemeton-1","explorers":[{"kind":"ping.pub","url":"https://testnet.ping.pub/OKP4%20testnet","tx_page":"https://testnet.ping.pub/OKP4%20testnet/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/OKP4-Testnet","tx_page":"https://explorer.stavr.tech/OKP4-Testnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://explore.okp4.network/OKP4%20testnet","tx_page":"https://explore.okp4.network/OKP4%20testnet/tx/${txHash}"}]},{"chainId":"osmo-test-5","explorers":[{"kind":"mintscan","url":"https://mintscan.io/osmosis-testnet","tx_page":"https://mintscan.io/osmosis-testnet/txs/${txHash}","account_page":"https://mintscan.io/osmosis-testnet/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.osmotest5.osmosis.zone","tx_page":"https://explorer.osmotest5.osmosis.zone/osmo-test-5/tx/${txHash}","account_page":"https://explorer.osmotest5.osmosis.zone/osmo-test-5/account/${accountAddress}"}]},{"chainId":"INVALID-ID-permtestnet-testnet-1","explorers":[{"kind":"bigdipper","url":"https://explorer.testnet.perm.ooo/","tx_page":"https://explorer.testnet.perm.ooo/transactions/${txHash}"}]},{"chainId":"test-core-1","explorers":[{"kind":"ping.pub","url":"https://testnet.ping.pub/test-core-1/","tx_page":"https://testnet.ping.pub/test-core-1/tx/${txHash}"},{"kind":"mintscan","url":"https://mintscan.io/persistence-testnet","tx_page":"https://mintscan.io/persistence-testnet/txs/${txHash}","account_page":"https://mintscan.io/persistence-testnet/account/${accountAddress}"}]},{"chainId":"test-core-2","explorers":[{"kind":"mintscan","url":"https://mintscan.io/persistence-testnet","tx_page":"https://mintscan.io/persistence-testnet/txs/${txHash}","account_page":"https://mintscan.io/persistence-testnet/account/${accountAddress}"},{"kind":"StakeFlow","url":"https://stakeflow.io/persistence-testnet","tx_page":"https://stakeflow.io/persistence-testnet/transactions/${txHash}","account_page":"https://stakeflow.io/persistence-testnet/accounts/${accountAddress}"},{"kind":"baryon","url":"https://testnet-explorer.baryon.dev/test-core-2","tx_page":"https://testnet-explorer.baryon.dev/test-core-2/tx/{txHash}","account_page":"https://testnet-explorer.baryon.dev/test-core-2/account/${accountAddress}"}]},{"chainId":"planq_7077-1","explorers":[{"kind":"EVM","url":"https://evm-atlas.planq.network","tx_page":"https://evm-atlas.planq.network/tx/${txHash}"},{"kind":"Konsortech","url":"https://testnet-explorer.konsortech.xyz/planq","tx_page":"https://testnet-explorer.konsortech.xyz/planq/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/planq-testnet","tx_page":"https://explorer.whenmoonwhenlambo.money/planq-testnet/tx/${txHash}"}]},{"chainId":"pocket-beta","explorers":[{"kind":"πŸ” POKTScan Explorer πŸ”Ž","url":"https://shannon-beta.poktscan.com/","tx_page":"https://shannon-beta.poktscan.com/tx/${txHash}","account_page":"https://shannon-beta.poktscan.com/accounts/${accountAddress}"},{"kind":"πŸ—Ί Shannon Explorer (stakenodes.org) πŸ—Ί","url":"https://shannon.beta.testnet.pokt.network/","tx_page":"https://shannon.beta.testnet.pokt.network/poktroll/tx/${txHash}","account_page":"https://shannon.beta.testnet.pokt.network/poktroll/account/${accountAddress}"}]},{"chainId":"indigo-1","explorers":[{"kind":"PingPub","url":"https://testnets.cosmosrun.info/pryzm-indigo-1","tx_page":"https://testnets.cosmosrun.info/pryzm-indigo-1/tx/${txHash}","account_page":"https://testnets.cosmosrun.info/pryzm-indigo-1/account/${accountAddress}"},{"kind":"ITRocket","url":"https://testnet.itrocket.net/pryzm","tx_page":"https://testnet.itrocket.net/pryzm/tx/${txHash}","account_page":"https://testnet.itrocket.net/pryzm/account/${accountAddress}"}]},{"chainId":"quasar-test-1"},{"chainId":"rhye-2","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Quicksilver","tx_page":"https://explorer.stavr.tech/Quicksilver/tx/${txHash}","account_page":"https://explorer.stavr.tech/Quicksilver/account/${accountAddress}"},{"url":"https://testnet.quicksilver.explorers.guru","tx_page":"https://testnet.quicksilver.explorers.guru/transaction/${txHash}","account_page":"https://testnet.quicksilver.explorers.guru/account/${accountAddress}"}]},{"chainId":"earendel-1","explorers":[{"kind":"pingfork","url":"https://explorer.theamsolutions.info/qwoyn-testnet/","tx_page":"https://explorer.theamsolutions.info/qwoyn-testnet/tx/${txHash}","account_page":"https://explorer.theamsolutions.info/qwoyn-testnet/account/${accountAddress}"}]},{"chainId":"ssc-testnet-2","explorers":[{"kind":"mintscan","url":"https://mintscan.io/saga-testnet","tx_page":"https://www.mintscan.io/saga-testnet/tx/${txHash}","account_page":"https://mintscan.io/saga-testnet/address/${accountAddress}"}]},{"chainId":"pulsar-3","explorers":[{"kind":"ping.pub","url":"https://testnet.ping.pub/secret","tx_page":"https://testnet.ping.pub/secret/tx/${txHash}"}]},{"chainId":"atlantic-1","explorers":[{"kind":"explorers.guru","url":"https://sei.explorers.guru","tx_page":"https://sei.explorers.guru/transaction/${txHash}"},{"kind":"Brochain","url":"https://testnet-explorer.brocha.in/sei","tx_page":"https://testnet-explorer.brocha.in/sei/tx/${txHash}"}]},{"chainId":"atlantic-2","explorers":[{"kind":"blockscout","url":"https://seitrace.com/?chain=atlantic-2","tx_page":"https://seitrace.com/tx/${txHash}?chain=atlantic-2"},{"kind":"celatone","url":"https://www.seiscan.app/atlantic-2","tx_page":"https://www.seiscan.app/atlantic-2/txs/${txHash}"},{"kind":"explorers.guru","url":"https://testnet.sei.explorers.guru","tx_page":"https://testnet.sei.explorers.guru/transaction/${txHash}"},{"kind":"Brochain","url":"https://testnet-explorer.brocha.in/sei%20atlantic%202","tx_page":"https://testnet-explorer.brocha.in/sei%20atlantic%202/tx/${txHash}"}]},{"chainId":"self-dev-1","explorers":[{"kind":"Selfchain","url":"https://explorer-devnet.selfchain.xyz","tx_page":"https://explorer-devnet.selfchain.xyz/self/transactions/${txHash}"}]},{"chainId":"sge-network-3","explorers":[{"kind":"Sge BlockExplorer","url":"https://blockexplorer.testnet.sgenetwork.io/","tx_page":"https://blockexplorer.testnet.sgenetwork.io/sge-network/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Sge-Testnet","tx_page":"https://explorer.stavr.tech/Sge-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Sge-Testnet/account/${accountAddress}"}]},{"chainId":"sge-network-4","explorers":[{"kind":"Sge BlockExplorer","url":"https://blockexplorer.testnet.sgenetwork.io/","tx_page":"https://blockexplorer.testnet.sgenetwork.io/sge-network/tx/${txHash}"}]},{"chainId":"yulei-2.1","explorers":[{"kind":"Shentu Explorer","url":"https://explorer.shentu.org/?chain=yulei-2.1","tx_page":"https://explorer.shentu.org/transactions/${txHash}?chain=yulei-2.1"}]},{"chainId":"fivenet","explorers":[{"kind":"sixscan","url":"https://sixscan.io/fivenet","tx_page":"https://sixscan.io/fivenet/tx/${txHash}"}]},{"chainId":"soarchaintestnet","explorers":[{"kind":"Soarchain Explorer","url":"https://explorer.soarchain.com/soarchain","tx_page":"https://explorer.soarchain.com/soarchain/tx/${txHash}"},{"kind":"Kjnodes Explorer","url":"https://explorer.kjnodes.com/soarchain-testnet","tx_page":"https://explorer.kjnodes.com/soarchain-testnet/tx/${txHash}"}]},{"chainId":"sourcetest-1","explorers":[{"kind":"Nodestake","url":"https://explorer.nodestake.top/source-testnet","tx_page":"https://explorer.nodestake.top/source-testnet/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Source","tx_page":"https://explorer.stavr.tech/Source/tx/${txHash}"},{"kind":"SR20DE","url":"https://explorer.sr20de.xyz/Source-testnet","tx_page":"https://explorer.sr20de.xyz/Source-testnet/txs/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/source-testnet","tx_page":"https://explorer.whenmoonwhenlambo.money/source-testnet/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/source-testnet/account/${accountAddress}"}]},{"chainId":"elgafar-1","explorers":[{"kind":"ping.pub","url":"https://testnet-explorer.publicawesome.dev/stargaze","tx_page":"https://testnet-explorer.publicawesome.dev/stargaze/tx/${txHash}"}]},{"chainId":"stateset-1-testnet","explorers":[{"kind":"bigdipper","url":"https://explore.stateset.zone","tx_page":"https://explore.stateset.zone/transactions/${txHash}"}]},{"chainId":"stride-internal-1","explorers":[{"kind":"PingPub","url":"https://testnet.ping.pub/stride","tx_page":"https://testnet.ping.pub/stride/tx/${txHash}"}]},{"chainId":"sunrise-test-0.1","explorers":[]},{"chainId":"swisstronik_1291-1","explorers":[{"kind":"ping.pub","url":"https://explorer-cosmos.testnet.swisstronik.com/swisstronik","tx_page":"https://explorer-cosmos.testnet.swisstronik.com/swisstronik/tx/${txHash}"}]},{"chainId":"symphony-testnet-3"},{"chainId":"amber-2","explorers":[{"kind":"Big Dipper","url":"https://explorer-testnet.synternet.com/","tx_page":"https://explorer-testnet.synternet.com/transactions/${txHash}"}]},{"chainId":"90u-4","explorers":[{"kind":"Ping Pub","url":"https://explorer.nodestake.top/terp-testnet","tx_page":"https://explorer.nodestake.top/terp-testnet/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com","tx_page":"https://explorer.nodexcapital.com/terp/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/terp/account/{$accountAddress}"}]},{"chainId":"90u-2","explorers":[{"kind":"Ping Pub","url":"https://explorer.nodestake.top/terp-testnet","tx_page":"https://explorer.nodestake.top/terp-testnet/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com","tx_page":"https://explorer.nodexcapital.com/terp/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/terp/account/{$accountAddress}"}]},{"chainId":"pisco-1","explorers":[{"kind":"finder","url":"http://finder.terra.money/testnet/","tx_page":"https://finder.terra.money/testnet/tx/${txHash}"}]},{"chainId":"titan_18889-1","explorers":[{"kind":"ping.pub","url":"https://titan-testnet-explorer-light.titanlab.io","tx_page":"https://titan-testnet-explorer-light.titanlab.io/Titan%20Testnet/tx/${txHash}","account_page":"https://titan-testnet-explorer-light.titanlab.io/Titan%20Testnet/account/${accountAddress}"}]},{"chainId":"tucana_712-1","explorers":[{"kind":"Blockscout","url":"https://explorer.birdee-2.tucana.zone/","tx_page":"https://explorer.birdee-2.tucana.zone/tx/${txHash}"}]},{"chainId":"ulas","explorers":[{"kind":"ulas-scan","url":"https://testnet-explorer.ulas.network","tx_page":"https://testnet-explorer.ulas.network/ulas/tx/${txHash}"}]},{"chainId":"FUND-TestNet-2","explorers":[{"kind":"ping.pub","url":"https://explorer-testnet.unification.io/u","tx_page":"https://explorer-testnet.unification.io/u/tx/${txHash}","account_page":"https://explorer-testnet.unification.io/u/account/${accountAddress}"}]},{"chainId":"union-testnet-8","explorers":[{"kind":"ping.pub","url":"https://explorer.testnet-8.union.build/union","tx_page":"https://explorer.testnet-8.union.build/union/tx/${txHash}","account_page":"https://explorer.testnet-8.union.build/union/account/${accountAddress}"},{"kind":"explorers.guru","url":"https://testnet.union.explorers.guru","tx_page":"https://testnet.union.explorers.guru/transaction/${txHash}","account_page":"https://testnet.union.explorers.guru/account/${accountAddress}"}]},{"chainId":"uptick_7000-2","explorers":[{"kind":"ping.pub","url":"https://explorer.testnet.uptick.network/uptick-network-testnet","tx_page":"https://explorer.testnet.uptick.network/uptick-network-testnet/tx/${txHash}"},{"kind":"Nodes.Guru","url":"https://uptick.explorers.guru/","tx_page":"https://uptick.explorers.guru/transaction/${txHash}"}]},{"chainId":"buenavista-1","explorers":[]},{"chainId":"INVALID-ID-wavehashtestnet-testnet-1","explorers":[{"kind":"atomscan","url":"https://atomscan.com/directory/testnet/wavehashtestnet","tx_page":"https://atomscan.com/directory/testnet/wavehashtestnet/transactions/${txHash}"}]},{"chainId":"xion-testnet-1","explorers":[{"url":"https://explorer.burnt.com/xion-testnet-1","tx_page":"https://explorer.burnt.com/xion-testnet-1/tx/${txHash}","account_page":"https://explorer.burnt.com/xion-testnet-1/account/${accountAddress}"},{"kind":"ITRocket","url":"https://testnet.itrocket.net/burnt","tx_page":"https://testnet.itrocket.net/burnt/tx/${txHash}","account_page":"https://testnet.itrocket.net/burnt/account/${accountAddress}"}]},{"chainId":"cube_47-5","explorers":[{"kind":"explorer.xpla","url":"https://explorer.xpla.io/testnet","tx_page":"https://explorer.xpla.io/testnet/mainnet/tx/${txHash}"},{"kind":"finder","url":"https://finder.xpla.io/testnet","tx_page":"https://finder.xpla.io/testnet/tx/${txHash}"}]},{"chainId":"gardia-2","explorers":[{"kind":"Big Dipper","url":"https://explorer.gardia.zenrocklabs.io/","tx_page":"https://explorer.gardia.zenrocklabs.io/tx/${txHash}","account_page":"https://explorer.gardia.zenrocklabs.io/account/${accountAddress}"}]},{"chainId":"athens_7001-1","explorers":[{"kind":"ZetaScan","url":"https://athens.explorer.zetachain.com/","tx_page":"https://athens.explorer.zetachain.com/cc/tx/${txHash}"},{"kind":"BlockScout","url":"https://zetachain-athens-3.blockscout.com/","tx_page":"https://zetachain-athens-3.blockscout.com/tx/${txHash}"}]},{"chainId":"landlord-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/landlord-2","tx_page":"https://scan.testnet.initia.xyz/landlord-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/landlord-2/accounts/${accountAddress}"}]},{"chainId":"initiation-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/initiation-2","tx_page":"https://scan.testnet.initia.xyz/initiation-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/initiation-2/accounts/${accountAddress}"}]},{"chainId":"glados-2.1","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/glados-2.1","tx_page":"https://scan.testnet.initia.xyz/glados-2.1/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/glados-2.1/accounts/${accountAddress}"}]},{"chainId":"minievm-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/minievm-2","tx_page":"https://scan.testnet.initia.xyz/minievm-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/minievm-2/accounts/${accountAddress}"}]},{"chainId":"minimove-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/minimove-2","tx_page":"https://scan.testnet.initia.xyz/minimove-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/minimove-2/accounts/${accountAddress}"}]},{"chainId":"miniwasm-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/miniwasm-2","tx_page":"https://scan.testnet.initia.xyz/miniwasm-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/miniwasm-2/accounts/${accountAddress}"}]}] \ No newline at end of file diff --git a/packages/widget/src/constants/cosmosChains/mainnet.json b/packages/widget/src/constants/cosmosChains/mainnet.json index b5478232c..e963bda2b 100644 --- a/packages/widget/src/constants/cosmosChains/mainnet.json +++ b/packages/widget/src/constants/cosmosChains/mainnet.json @@ -1 +1 @@ -[{"chainId":"aaronetwork","currencies":[{"coinDenom":"AARON","coinMinimalDenom":"uaaron","coinDecimals":6}],"rest":"https://mainnet-api.aaronetwork.xyz","rpc":"https://mainnet-rpc.aaronetwork.xyz","bech32Config":{"bech32PrefixAccAddr":"aaron","bech32PrefixAccPub":"aaronpub","bech32PrefixValAddr":"aaronvaloper","bech32PrefixValPub":"aaronvaloperpub","bech32PrefixConsAddr":"aaronvalcons","bech32PrefixConsPub":"aaronvalconspub"},"chainName":"aaronetwork","feeCurrencies":[{"coinDenom":"AARON","coinMinimalDenom":"uaaron","coinDecimals":6}],"stakeCurrency":{"coinDenom":"AARON","coinMinimalDenom":"uaaron","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"acre_9052-1","currencies":[{"coinDenom":"acre","coinMinimalDenom":"aacre","coinDecimals":18},{"coinDenom":"arusd","coinMinimalDenom":"erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c","coinDecimals":18},{"coinDenom":"cnto","coinMinimalDenom":"erc20/0xAE6D3334989a22A65228732446731438672418F2","coinDecimals":18}],"rest":"https://lcd-acre.synergynodes.com","rpc":"https://rpc.acre.nodestake.top","bech32Config":{"bech32PrefixAccAddr":"acre","bech32PrefixAccPub":"acrepub","bech32PrefixValAddr":"acrevaloper","bech32PrefixValPub":"acrevaloperpub","bech32PrefixConsAddr":"acrevalcons","bech32PrefixConsPub":"acrevalconspub"},"chainName":"acrechain","feeCurrencies":[{"coinDenom":"acre","coinMinimalDenom":"aacre","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"acre","coinMinimalDenom":"aacre","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"agoric-3","currencies":[{"coinDenom":"bld","coinMinimalDenom":"ubld","coinDecimals":6},{"coinDenom":"ist","coinMinimalDenom":"uist","coinDecimals":6}],"rest":"https://main.api.agoric.net:443","rpc":"https://main.rpc.agoric.net:443","bech32Config":{"bech32PrefixAccAddr":"agoric","bech32PrefixAccPub":"agoricpub","bech32PrefixValAddr":"agoricvaloper","bech32PrefixValPub":"agoricvaloperpub","bech32PrefixConsAddr":"agoricvalcons","bech32PrefixConsPub":"agoricvalconspub"},"chainName":"agoric","feeCurrencies":[{"coinDenom":"bld","coinMinimalDenom":"ubld","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.05,"high":0.07}},{"coinDenom":"ist","coinMinimalDenom":"uist","coinDecimals":6,"gasPriceStep":{"low":0.0034,"average":0.007,"high":0.02}}],"stakeCurrency":{"coinDenom":"bld","coinMinimalDenom":"ubld","coinDecimals":6},"bip44":{"coinType":564}},{"chainId":"aioz_168-1","currencies":[{"coinDenom":"aioz","coinMinimalDenom":"attoaioz","coinDecimals":18}],"rest":"https://lcd-dataseed.aioz.network","rpc":"https://rpc-dataseed.aioz.network:443","bech32Config":{"bech32PrefixAccAddr":"aioz","bech32PrefixAccPub":"aiozpub","bech32PrefixValAddr":"aiozvaloper","bech32PrefixValPub":"aiozvaloperpub","bech32PrefixConsAddr":"aiozvalcons","bech32PrefixConsPub":"aiozvalconspub"},"chainName":"aioz","feeCurrencies":[{"coinDenom":"aioz","coinMinimalDenom":"attoaioz","coinDecimals":18,"gasPriceStep":{"low":7000000000,"average":7000000000,"high":10000000000}}],"stakeCurrency":{"coinDenom":"aioz","coinMinimalDenom":"attoaioz","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"akashnet-2","currencies":[{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/05DB6975261B805B6F6A157A4386C627F8A70BF8118D411655EFEDCA82BFABA5","coinDecimals":6}],"rest":"https://api.akash.forbole.com:443","rpc":"https://rpc.akash.forbole.com:443","bech32Config":{"bech32PrefixAccAddr":"akash","bech32PrefixAccPub":"akashpub","bech32PrefixValAddr":"akashvaloper","bech32PrefixValPub":"akashvaloperpub","bech32PrefixConsAddr":"akashvalcons","bech32PrefixConsPub":"akashvalconspub"},"chainName":"akash","feeCurrencies":[{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6,"gasPriceStep":{"low":0.00025,"average":0.0025,"high":0.025}}],"stakeCurrency":{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"althea_258432-1","currencies":[{"coinDenom":"althea","coinMinimalDenom":"aalthea","coinDecimals":18}],"rest":"https://nodes.chandrastation.com/api/althea/","rpc":"https://nodes.chandrastation.com/rpc/althea/","bech32Config":{"bech32PrefixAccAddr":"althea","bech32PrefixAccPub":"altheapub","bech32PrefixValAddr":"altheavaloper","bech32PrefixValPub":"altheavaloperpub","bech32PrefixConsAddr":"altheavalcons","bech32PrefixConsPub":"altheavalconspub"},"chainName":"althea","feeCurrencies":[{"coinDenom":"althea","coinMinimalDenom":"aalthea","coinDecimals":18,"gasPriceStep":{"low":100000000000,"average":100000000000,"high":300000000000}}],"stakeCurrency":{"coinDenom":"althea","coinMinimalDenom":"aalthea","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"andromeda-1","currencies":[{"coinDenom":"andr","coinMinimalDenom":"uandr","coinDecimals":6}],"rest":"https://api.andromeda-1.andromeda.aviaone.com","rpc":"https://rpc.andromeda-1.andromeda.aviaone.com","bech32Config":{"bech32PrefixAccAddr":"andr","bech32PrefixAccPub":"andrpub","bech32PrefixValAddr":"andrvaloper","bech32PrefixValPub":"andrvaloperpub","bech32PrefixConsAddr":"andrvalcons","bech32PrefixConsPub":"andrvalconspub"},"chainName":"andromeda","feeCurrencies":[{"coinDenom":"andr","coinMinimalDenom":"uandr","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.05,"high":0.075}}],"stakeCurrency":{"coinDenom":"andr","coinMinimalDenom":"uandr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"archway-1","currencies":[{"coinDenom":"arch","coinMinimalDenom":"aarch","coinDecimals":18},{"coinDenom":"bARCH","coinMinimalDenom":"archway12yurzx8zynv3ck7uh4tucre48tqsm4fac4hfk9p3l24qs2cn08dqr684cg","coinDecimals":18},{"coinDenom":"TOKN","coinMinimalDenom":"archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu","coinDecimals":18},{"coinDenom":"ampARCH","coinMinimalDenom":"cw20:archway1fwurjg7ah4v7hhs6xsc3wutqpvmahrfhns285s0lt34tgfdhplxq6m8xg5","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/D2BCFE34F35AF2968C8E1F84557D8A2058BB56F739EB553206EFC2AD8C6EDAF0","coinDecimals":6},{"coinDenom":"vdl","coinMinimalDenom":"ibc/1BCF1FCAFE3568E234787EDFDA12460BD8931B17FE6A729DCD60FAD845558DA1","coinDecimals":6},{"coinDenom":"AXV","coinMinimalDenom":"cw20:archway1ecjefhcf8r60wtfnhwefrxhj9caeqa90fj58cqsaafqveawn6cjs5znd2n","coinDecimals":6},{"coinDenom":"wARCH","coinMinimalDenom":"cw20:archway1msc3fa4e2mh73y760qmjd3wfkzr98nl26f36xgt2xnhuw6ay3scs42zeue","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/43897B9739BD63E3A08A88191999C632E052724AB96BD4C74AE31375C991F48D","coinDecimals":6},{"coinDenom":"wUSDC","coinMinimalDenom":"cw20:archway1gaf9nw7n8v5lpjz9caxjpps006kxfcrzcuc8y5qp4clslhven2ns2g0ule","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/3F882513A0CCD1C4110ACB7C6C761AC7B48974C9D2D439CD6F652F9B44362518","coinDecimals":6}],"rest":"https://api.mainnet.archway.io","rpc":"https://rpc.mainnet.archway.io","bech32Config":{"bech32PrefixAccAddr":"archway","bech32PrefixAccPub":"archwaypub","bech32PrefixValAddr":"archwayvaloper","bech32PrefixValPub":"archwayvaloperpub","bech32PrefixConsAddr":"archwayvalcons","bech32PrefixConsPub":"archwayvalconspub"},"chainName":"archway","feeCurrencies":[{"coinDenom":"arch","coinMinimalDenom":"aarch","coinDecimals":18,"gasPriceStep":{"low":196000000000,"average":225400000000,"high":254800000000}}],"stakeCurrency":{"coinDenom":"arch","coinMinimalDenom":"aarch","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"arkh","currencies":[{"coinDenom":"ARKH","coinMinimalDenom":"arkh","coinDecimals":6}],"rest":"https://asc-blockchain-api.arkhadian.com/","rpc":"https://asc-dataseed.arkhadian.com/","bech32Config":{"bech32PrefixAccAddr":"arkh","bech32PrefixAccPub":"arkhpub","bech32PrefixValAddr":"arkhvaloper","bech32PrefixValPub":"arkhvaloperpub","bech32PrefixConsAddr":"arkhvalcons","bech32PrefixConsPub":"arkhvalconspub"},"chainName":"arkh","feeCurrencies":[{"coinDenom":"ARKH","coinMinimalDenom":"arkh","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"ARKH","coinMinimalDenom":"arkh","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mantle-1","currencies":[{"coinDenom":"mntl","coinMinimalDenom":"umntl","coinDecimals":6}],"rest":"https://rest.assetmantle.one","rpc":"https://rpc.assetmantle.one","bech32Config":{"bech32PrefixAccAddr":"mantle","bech32PrefixAccPub":"mantlepub","bech32PrefixValAddr":"mantlevaloper","bech32PrefixValPub":"mantlevaloperpub","bech32PrefixConsAddr":"mantlevalcons","bech32PrefixConsPub":"mantlevalconspub"},"chainName":"assetmantle","feeCurrencies":[{"coinDenom":"mntl","coinMinimalDenom":"umntl","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"mntl","coinMinimalDenom":"umntl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"atomone-1","currencies":[{"coinDenom":"atone","coinMinimalDenom":"uatone","coinDecimals":6}],"rest":"https://atomone-api.allinbits.com","rpc":"https://atomone-rpc.allinbits.com:443","bech32Config":{"bech32PrefixAccAddr":"atone","bech32PrefixAccPub":"atonepub","bech32PrefixValAddr":"atonevaloper","bech32PrefixValPub":"atonevaloperpub","bech32PrefixConsAddr":"atonevalcons","bech32PrefixConsPub":"atonevalconspub"},"chainName":"atomone","feeCurrencies":[{"coinDenom":"atone","coinMinimalDenom":"uatone","coinDecimals":6,"gasPriceStep":{"low":0.006,"average":0.006,"high":0.009}}],"stakeCurrency":{"coinDenom":"atone","coinMinimalDenom":"uatone","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"aura_6322-2","currencies":[{"coinDenom":"aura","coinMinimalDenom":"uaura","coinDecimals":6}],"rest":"https://lcd.aura.network/","rpc":"https://rpc.aura.network/","bech32Config":{"bech32PrefixAccAddr":"aura","bech32PrefixAccPub":"aurapub","bech32PrefixValAddr":"auravaloper","bech32PrefixValPub":"auravaloperpub","bech32PrefixConsAddr":"auravalcons","bech32PrefixConsPub":"auravalconspub"},"chainName":"aura","feeCurrencies":[{"coinDenom":"aura","coinMinimalDenom":"uaura","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.0025}}],"stakeCurrency":{"coinDenom":"aura","coinMinimalDenom":"uaura","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"axelar-dojo-1","currencies":[{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6},{"coinDenom":"frax","coinMinimalDenom":"frax-wei","coinDecimals":18},{"coinDenom":"dai","coinMinimalDenom":"dai-wei","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"uusdt","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"weth-wei","coinDecimals":18},{"coinDenom":"wbtc","coinMinimalDenom":"wbtc-satoshi","coinDecimals":8},{"coinDenom":"aave","coinMinimalDenom":"aave-wei","coinDecimals":18},{"coinDenom":"ape","coinMinimalDenom":"ape-wei","coinDecimals":18},{"coinDenom":"axs","coinMinimalDenom":"axs-wei","coinDecimals":18},{"coinDenom":"link","coinMinimalDenom":"link-wei","coinDecimals":18},{"coinDenom":"mkr","coinMinimalDenom":"mkr-wei","coinDecimals":18},{"coinDenom":"rai","coinMinimalDenom":"rai-wei","coinDecimals":18},{"coinDenom":"shib","coinMinimalDenom":"shib-wei","coinDecimals":18},{"coinDenom":"steth","coinMinimalDenom":"steth-wei","coinDecimals":18},{"coinDenom":"uni","coinMinimalDenom":"uni-wei","coinDecimals":18},{"coinDenom":"xcn","coinMinimalDenom":"xcn-wei","coinDecimals":18},{"coinDenom":"dot","coinMinimalDenom":"dot-planck","coinDecimals":10},{"coinDenom":"wglmr","coinMinimalDenom":"wglmr-wei","coinDecimals":18},{"coinDenom":"wmatic","coinMinimalDenom":"wmatic-wei","coinDecimals":18},{"coinDenom":"wbnb","coinMinimalDenom":"wbnb-wei","coinDecimals":18},{"coinDenom":"busd","coinMinimalDenom":"busd-wei","coinDecimals":18},{"coinDenom":"avax","coinMinimalDenom":"wavax-wei","coinDecimals":18},{"coinDenom":"ftm","coinMinimalDenom":"wftm-wei","coinDecimals":18},{"coinDenom":"polygon-usdc","coinMinimalDenom":"polygon-uusdc","coinDecimals":6},{"coinDenom":"avalanche-usdc","coinMinimalDenom":"avalanche-uusdc","coinDecimals":6},{"coinDenom":"fil","coinMinimalDenom":"wfil-wei","coinDecimals":18},{"coinDenom":"arb","coinMinimalDenom":"arb-wei","coinDecimals":18},{"coinDenom":"pepe","coinMinimalDenom":"pepe-wei","coinDecimals":18},{"coinDenom":"cbeth","coinMinimalDenom":"cbeth-wei","coinDecimals":18},{"coinDenom":"reth","coinMinimalDenom":"reth-wei","coinDecimals":18},{"coinDenom":"sfrxeth","coinMinimalDenom":"sfrxeth-wei","coinDecimals":18},{"coinDenom":"wsteth","coinMinimalDenom":"wsteth-wei","coinDecimals":18},{"coinDenom":"YieldETH","coinMinimalDenom":"yieldeth-wei","coinDecimals":18},{"coinDenom":"ox","coinMinimalDenom":"ox-wei","coinDecimals":18},{"coinDenom":"yum","coinMinimalDenom":"yum-wei","coinDecimals":18},{"coinDenom":"arbitrum-weth","coinMinimalDenom":"arbitrum-weth-wei","coinDecimals":18},{"coinDenom":"base-weth","coinMinimalDenom":"base-weth-wei","coinDecimals":18},{"coinDenom":"polygon-weth","coinMinimalDenom":"polygon-weth-wei","coinDecimals":18},{"coinDenom":"op","coinMinimalDenom":"op-wei","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"arbitrum-uusdt","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"optimism-uusdt","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"polygon-uusdt","coinDecimals":6},{"coinDenom":"cbbtc","coinMinimalDenom":"cbbtc-satoshi","coinDecimals":8},{"coinDenom":"fbtc","coinMinimalDenom":"fbtc-satoshi","coinDecimals":8},{"coinDenom":"lbtc","coinMinimalDenom":"lbtc-satoshi","coinDecimals":8},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/53046FFF6CAD109D8F9B2C7C9913853AD241928CD05CDDE419343D176025DA74","coinDecimals":18}],"rest":"https://lcd-axelar.imperator.co:443","rpc":"https://rpc-axelar.imperator.co:443","bech32Config":{"bech32PrefixAccAddr":"axelar","bech32PrefixAccPub":"axelarpub","bech32PrefixValAddr":"axelarvaloper","bech32PrefixValPub":"axelarvaloperpub","bech32PrefixConsAddr":"axelarvalcons","bech32PrefixConsPub":"axelarvalconspub"},"chainName":"axelar","feeCurrencies":[{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6,"gasPriceStep":{"low":0.007,"average":0.007,"high":0.01}}],"stakeCurrency":{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"laozi-mainnet","currencies":[{"coinDenom":"band","coinMinimalDenom":"uband","coinDecimals":6}],"rest":"https://laozi1.bandchain.org/api","rpc":"http://rpc.laozi1.bandchain.org:80","bech32Config":{"bech32PrefixAccAddr":"band","bech32PrefixAccPub":"bandpub","bech32PrefixValAddr":"bandvaloper","bech32PrefixValPub":"bandvaloperpub","bech32PrefixConsAddr":"bandvalcons","bech32PrefixConsPub":"bandvalconspub"},"chainName":"bandchain","feeCurrencies":[{"coinDenom":"band","coinMinimalDenom":"uband","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.003,"high":0.005}}],"stakeCurrency":{"coinDenom":"band","coinMinimalDenom":"uband","coinDecimals":6},"bip44":{"coinType":494}},{"chainId":"beezee-1","currencies":[{"coinDenom":"bze","coinMinimalDenom":"ubze","coinDecimals":6},{"coinDenom":"vdl","coinMinimalDenom":"factory/bze13gzq40che93tgfm9kzmkpjamah5nj0j73pyhqk/uvdl","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6},{"coinDenom":"C2M","coinMinimalDenom":"factory/bze15pqjgk4la0mfphwddce00d05n3th3u66n3ptcv/2MARS","coinDecimals":6},{"coinDenom":"arch","coinMinimalDenom":"ibc/C00D101A3572A5374E23F11944463D1325319E255D7C824B33AF2F927F532348","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/6490A7EAB61059BFC1CDDEB05917DD70BDF3A611654162A1A47DB930D40D8AF4","coinDecimals":6},{"coinDenom":"Spice","coinMinimalDenom":"ibc/08EAEAB525E59C611D5BD8FAC4BE65DF65A69E62874377F6889BBD01A33F385F","coinDecimals":6}],"rest":"https://rest.getbze.com","rpc":"https://rpc.getbze.com","bech32Config":{"bech32PrefixAccAddr":"bze","bech32PrefixAccPub":"bzepub","bech32PrefixValAddr":"bzevaloper","bech32PrefixValPub":"bzevaloperpub","bech32PrefixConsAddr":"bzevalcons","bech32PrefixConsPub":"bzevalconspub"},"chainName":"beezee","feeCurrencies":[{"coinDenom":"bze","coinMinimalDenom":"ubze","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"bze","coinMinimalDenom":"ubze","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"bitbadges-1","currencies":[{"coinDenom":"badge","coinMinimalDenom":"ubadge","coinDecimals":9},{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":9}],"rest":"http://134.122.12.165:1317","rpc":"http://134.122.12.165:26657","bech32Config":{"bech32PrefixAccAddr":"bb","bech32PrefixAccPub":"bbpub","bech32PrefixValAddr":"bbvaloper","bech32PrefixValPub":"bbvaloperpub","bech32PrefixConsAddr":"bbvalcons","bech32PrefixConsPub":"bbvalconspub"},"chainName":"bitbadges","feeCurrencies":[{"coinDenom":"badge","coinMinimalDenom":"ubadge","coinDecimals":9,"gasPriceStep":{"low":0.00025,"average":0.0025,"high":0.025}}],"stakeCurrency":{"coinDenom":"badge","coinMinimalDenom":"ubadge","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"bitcanna-1","currencies":[{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6}],"rest":"https://lcd.bitcanna.io","rpc":"https://rpc.bitcanna.io/","bech32Config":{"bech32PrefixAccAddr":"bcna","bech32PrefixAccPub":"bcnapub","bech32PrefixValAddr":"bcnavaloper","bech32PrefixValPub":"bcnavaloperpub","bech32PrefixConsAddr":"bcnavalcons","bech32PrefixConsPub":"bcnavalconspub"},"chainName":"bitcanna","feeCurrencies":[{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.0025,"high":0.01}}],"stakeCurrency":{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"bitsong-2b","currencies":[{"coinDenom":"btsg","coinMinimalDenom":"ubtsg","coinDecimals":6},{"coinDenom":"clay","coinMinimalDenom":"ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09","coinDecimals":6},{"coinDenom":"fasano","coinMinimalDenom":"ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7","coinDecimals":6},{"coinDenom":"d9x","coinMinimalDenom":"ft575B10B0CEE2C164D9ED6A96313496F164A9607C","coinDecimals":6},{"coinDenom":"fonti","coinMinimalDenom":"ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305","coinDecimals":6},{"coinDenom":"bjks","coinMinimalDenom":"ft52EEB0EE509AC546ED92EAC8591F731F213DDD16","coinDecimals":6},{"coinDenom":"rwne","coinMinimalDenom":"ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A","coinDecimals":6},{"coinDenom":"enmoda","coinMinimalDenom":"ft85AE1716C5E39EA6D64BBD7898C3899A7B500626","coinDecimals":6},{"coinDenom":"404dr","coinMinimalDenom":"ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A","coinDecimals":6},{"coinDenom":"n43","coinMinimalDenom":"ft387C1C279D962ED80C09C1D592A92C4275FD7C5D","coinDecimals":6},{"coinDenom":"lobo","coinMinimalDenom":"ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB","coinDecimals":6},{"coinDenom":"vibra","coinMinimalDenom":"ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B","coinDecimals":6},{"coinDenom":"karina","coinMinimalDenom":"ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE","coinDecimals":6},{"coinDenom":"testa","coinMinimalDenom":"ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12","coinDecimals":6},{"coinDenom":"cmqz","coinMinimalDenom":"ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3","coinDecimals":6},{"coinDenom":"ft347B1612A2B7659913679CF6CD45B8B130C50A00/6","coinMinimalDenom":"ft347B1612A2B7659913679CF6CD45B8B130C50A00","coinDecimals":6}],"rest":"https://api-bitsong-ia.cosmosia.notional.ventures/","rpc":"https://rpc-bitsong-ia.cosmosia.notional.ventures/","bech32Config":{"bech32PrefixAccAddr":"bitsong","bech32PrefixAccPub":"bitsongpub","bech32PrefixValAddr":"bitsongvaloper","bech32PrefixValPub":"bitsongvaloperpub","bech32PrefixConsAddr":"bitsongvalcons","bech32PrefixConsPub":"bitsongvalconspub"},"chainName":"bitsong","feeCurrencies":[{"coinDenom":"btsg","coinMinimalDenom":"ubtsg","coinDecimals":6,"gasPriceStep":{"low":3,"average":10,"high":20}}],"stakeCurrency":{"coinDenom":"btsg","coinMinimalDenom":"ubtsg","coinDecimals":6},"bip44":{"coinType":639}},{"chainId":"bluzelle-9","currencies":[{"coinDenom":"bnt","coinMinimalDenom":"ubnt","coinDecimals":6},{"coinDenom":"elt","coinMinimalDenom":"uelt","coinDecimals":6},{"coinDenom":"g4","coinMinimalDenom":"ug4","coinDecimals":6}],"rest":"https://a.client.sentry.net.bluzelle.com:1317","rpc":"https://a.client.sentry.net.bluzelle.com:26657","bech32Config":{"bech32PrefixAccAddr":"bluzelle","bech32PrefixAccPub":"bluzellepub","bech32PrefixValAddr":"bluzellevaloper","bech32PrefixValPub":"bluzellevaloperpub","bech32PrefixConsAddr":"bluzellevalcons","bech32PrefixConsPub":"bluzellevalconspub"},"chainName":"bluzelle","feeCurrencies":[{"coinDenom":"bnt","coinMinimalDenom":"ubnt","coinDecimals":6,"gasPriceStep":{"low":0.002,"average":0.002,"high":0.025}}],"stakeCurrency":{"coinDenom":"bnt","coinMinimalDenom":"ubnt","coinDecimals":6},"bip44":{"coinType":483}},{"chainId":"bostrom","currencies":[{"coinDenom":"boot","coinMinimalDenom":"boot","coinDecimals":0},{"coinDenom":"hydrogen","coinMinimalDenom":"hydrogen","coinDecimals":0},{"coinDenom":"ampere","coinMinimalDenom":"milliampere","coinDecimals":3},{"coinDenom":"volt","coinMinimalDenom":"millivolt","coinDecimals":3},{"coinDenom":"tocyb","coinMinimalDenom":"tocyb","coinDecimals":0}],"rest":"https://lcd.bostrom.cybernode.ai","rpc":"https://rpc.bostrom.cybernode.ai","bech32Config":{"bech32PrefixAccAddr":"bostrom","bech32PrefixAccPub":"bostrompub","bech32PrefixValAddr":"bostromvaloper","bech32PrefixValPub":"bostromvaloperpub","bech32PrefixConsAddr":"bostromvalcons","bech32PrefixConsPub":"bostromvalconspub"},"chainName":"bostrom","feeCurrencies":[{"coinDenom":"boot","coinMinimalDenom":"boot","coinDecimals":0}],"stakeCurrency":{"coinDenom":"boot","coinMinimalDenom":"boot","coinDecimals":0},"bip44":{"coinType":118}},{"chainId":"bouachain","currencies":[{"coinDenom":"bouacoin","coinMinimalDenom":"ubouacoin","coinDecimals":8}],"rest":"https://lcd.bouachain.com","rpc":"https://rpc.bouachain.com","bech32Config":{"bech32PrefixAccAddr":"boua","bech32PrefixAccPub":"bouapub","bech32PrefixValAddr":"bouavaloper","bech32PrefixValPub":"bouavaloperpub","bech32PrefixConsAddr":"bouavalcons","bech32PrefixConsPub":"bouavalconspub"},"chainName":"bouachain","feeCurrencies":[{"coinDenom":"bouacoin","coinMinimalDenom":"ubouacoin","coinDecimals":8,"gasPriceStep":{"low":0.0006,"average":0.012,"high":0.04}}],"stakeCurrency":{"coinDenom":"bouacoin","coinMinimalDenom":"ubouacoin","coinDecimals":8},"bip44":{"coinType":118}},{"chainId":"canto_7700-1","currencies":[{"coinDenom":"canto","coinMinimalDenom":"acanto","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/FAFF3F7B2FE30447544A27910DF77069763CF25472BFCF63A9E7C81F0AD545AC","coinDecimals":6}],"rest":"https://api.canto.nodestake.top","rpc":"https://rpc.canto.nodestake.top","bech32Config":{"bech32PrefixAccAddr":"canto","bech32PrefixAccPub":"cantopub","bech32PrefixValAddr":"cantovaloper","bech32PrefixValPub":"cantovaloperpub","bech32PrefixConsAddr":"cantovalcons","bech32PrefixConsPub":"cantovalconspub"},"chainName":"canto","feeCurrencies":[{"coinDenom":"canto","coinMinimalDenom":"acanto","coinDecimals":18,"gasPriceStep":{"low":1000000000000,"average":2000000000000,"high":3000000000000}}],"stakeCurrency":{"coinDenom":"canto","coinMinimalDenom":"acanto","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"carbon-1","currencies":[{"coinDenom":"dswth","coinMinimalDenom":"swth","coinDecimals":8},{"coinDenom":"dusc","coinMinimalDenom":"usc","coinDecimals":8},{"coinDenom":"bnb","coinMinimalDenom":"bnb.1.6.773edb","coinDecimals":18},{"coinDenom":"bneo","coinMinimalDenom":"bneo.1.14.e2e5f6","coinDecimals":8},{"coinDenom":"busd","coinMinimalDenom":"busd.1.6.754a80","coinDecimals":18},{"coinDenom":"cglp","coinMinimalDenom":"cglp.1.19.1698d3","coinDecimals":18},{"coinDenom":"usd","coinMinimalDenom":"cgt/1","coinDecimals":18},{"coinDenom":"eth","coinMinimalDenom":"eth.1.19.c3b805","coinDecimals":18},{"coinDenom":"eth","coinMinimalDenom":"eth.1.2.942d87","coinDecimals":18},{"coinDenom":"stars","coinMinimalDenom":"ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6},{"coinDenom":"milkTIA","coinMinimalDenom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","coinDecimals":6},{"coinDenom":"strd","coinMinimalDenom":"ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5","coinDecimals":6},{"coinDenom":"evmos","coinMinimalDenom":"ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364","coinDecimals":18},{"coinDenom":"iris","coinMinimalDenom":"ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118","coinDecimals":6},{"coinDenom":"kuji","coinMinimalDenom":"ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93","coinDecimals":6},{"coinDenom":"canto","coinMinimalDenom":"ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861","coinDecimals":18},{"coinDenom":"atom","coinMinimalDenom":"ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"usdc.1.2.343151","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"usdc.1.6.53ff75","coinDecimals":18},{"coinDenom":"zil","coinMinimalDenom":"zil.1.18.1a4a06","coinDecimals":12}],"rest":"https://api.carbon.network","rpc":"https://tm-api.carbon.network","bech32Config":{"bech32PrefixAccAddr":"swth","bech32PrefixAccPub":"swthpub","bech32PrefixValAddr":"swthvaloper","bech32PrefixValPub":"swthvaloperpub","bech32PrefixConsAddr":"swthvalcons","bech32PrefixConsPub":"swthvalconspub"},"chainName":"carbon","feeCurrencies":[{"coinDenom":"dswth","coinMinimalDenom":"swth","coinDecimals":8,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"dusc","coinMinimalDenom":"usc","coinDecimals":8,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.0001}},{"coinDenom":"bnb","coinMinimalDenom":"bnb.1.6.773edb","coinDecimals":18,"gasPriceStep":{"low":1000000,"average":1000000,"high":1000000}},{"coinDenom":"bneo","coinMinimalDenom":"bneo.1.14.e2e5f6","coinDecimals":8,"gasPriceStep":{"low":0.0015,"average":0.0015,"high":0.0015}},{"coinDenom":"busd","coinMinimalDenom":"busd.1.6.754a80","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":100000000,"high":100000000}},{"coinDenom":"cglp","coinMinimalDenom":"cglp.1.19.1698d3","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":100000000,"high":100000000}},{"coinDenom":"usd","coinMinimalDenom":"cgt/1","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":100000000,"high":100000000}},{"coinDenom":"eth","coinMinimalDenom":"eth.1.19.c3b805","coinDecimals":18,"gasPriceStep":{"low":100000,"average":100000,"high":100000}},{"coinDenom":"eth","coinMinimalDenom":"eth.1.2.942d87","coinDecimals":18,"gasPriceStep":{"low":100000,"average":100000,"high":100000}},{"coinDenom":"stars","coinMinimalDenom":"ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C","coinDecimals":6,"gasPriceStep":{"low":0.0035,"average":0.0035,"high":0.0035}},{"coinDenom":"milkTIA","coinMinimalDenom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","coinDecimals":6,"gasPriceStep":{"low":0.0000075,"average":0.0000075,"high":0.0000075}},{"coinDenom":"luna","coinMinimalDenom":"ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5","coinDecimals":6,"gasPriceStep":{"low":0.00005,"average":0.00005,"high":0.00005}},{"coinDenom":"strd","coinMinimalDenom":"ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5","coinDecimals":6,"gasPriceStep":{"low":0.00032,"average":0.00032,"high":0.00032}},{"coinDenom":"evmos","coinMinimalDenom":"ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364","coinDecimals":18,"gasPriceStep":{"low":300000000,"average":300000000,"high":300000000}},{"coinDenom":"iris","coinMinimalDenom":"ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118","coinDecimals":6,"gasPriceStep":{"low":0.0006,"average":0.0006,"high":0.0006}},{"coinDenom":"kuji","coinMinimalDenom":"ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5","coinDecimals":6,"gasPriceStep":{"low":0.00015,"average":0.00015,"high":0.00015}},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6,"gasPriceStep":{"low":0.0000075,"average":0.0000075,"high":0.0000075}},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93","coinDecimals":6,"gasPriceStep":{"low":0.00015,"average":0.00015,"high":0.00015}},{"coinDenom":"canto","coinMinimalDenom":"ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861","coinDecimals":18,"gasPriceStep":{"low":200000000,"average":200000000,"high":200000000}},{"coinDenom":"atom","coinMinimalDenom":"ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701","coinDecimals":6,"gasPriceStep":{"low":0.00001,"average":0.00001,"high":0.00001}},{"coinDenom":"statom","coinMinimalDenom":"ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C","coinDecimals":6,"gasPriceStep":{"low":0.00001,"average":0.00001,"high":0.00001}},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6,"gasPriceStep":{"low":0.00015,"average":0.00015,"high":0.00015}},{"coinDenom":"usdc","coinMinimalDenom":"usdc.1.2.343151","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.0001}},{"coinDenom":"usdc","coinMinimalDenom":"usdc.1.6.53ff75","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":100000000,"high":100000000}},{"coinDenom":"zil","coinMinimalDenom":"zil.1.18.1a4a06","coinDecimals":12,"gasPriceStep":{"low":6000,"average":6000,"high":6000}}],"stakeCurrency":{"coinDenom":"dswth","coinMinimalDenom":"swth","coinDecimals":8},"bip44":{"coinType":118}},{"chainId":"celestia","currencies":[{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6}],"rest":"https://public-celestia-lcd.numia.xyz","rpc":"https://public-celestia-rpc.numia.xyz","bech32Config":{"bech32PrefixAccAddr":"celestia","bech32PrefixAccPub":"celestiapub","bech32PrefixValAddr":"celestiavaloper","bech32PrefixValPub":"celestiavaloperpub","bech32PrefixConsAddr":"celestiavalcons","bech32PrefixConsPub":"celestiavalconspub"},"chainName":"celestia","feeCurrencies":[{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}}],"stakeCurrency":{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"perun-1","currencies":[{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6}],"rest":"https://lcd.c4e.io/","rpc":"https://rpc.c4e.io/","bech32Config":{"bech32PrefixAccAddr":"c4e","bech32PrefixAccPub":"c4epub","bech32PrefixValAddr":"c4evaloper","bech32PrefixValPub":"c4evaloperpub","bech32PrefixConsAddr":"c4evalcons","bech32PrefixConsPub":"c4evalconspub"},"chainName":"chain4energy","feeCurrencies":[{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cheqd-mainnet-1","currencies":[{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9}],"rest":"https://api.cheqd.net","rpc":"https://rpc.cheqd.net","bech32Config":{"bech32PrefixAccAddr":"cheqd","bech32PrefixAccPub":"cheqdpub","bech32PrefixValAddr":"cheqdvaloper","bech32PrefixValPub":"cheqdvaloperpub","bech32PrefixConsAddr":"cheqdvalcons","bech32PrefixConsPub":"cheqdvalconspub"},"chainName":"cheqd","feeCurrencies":[{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9,"gasPriceStep":{"low":50,"average":75,"high":100}}],"stakeCurrency":{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"chihuahua-1","currencies":[{"coinDenom":"huahua","coinMinimalDenom":"uhuahua","coinDecimals":6},{"coinDenom":"puppy","coinMinimalDenom":"cw20:chihuahua1yl8z39ugle8s02fpwkhh293509q5xcpalmdzc4amvchz8nkexrmsy95gef","coinDecimals":6},{"coinDenom":"achihuahuawifhat","coinMinimalDenom":"factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat","coinDecimals":6},{"coinDenom":"WOOF","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof","coinDecimals":6},{"coinDenom":"TACOS","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos","coinDecimals":6},{"coinDenom":"WEED","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uweed","coinDecimals":6},{"coinDenom":"BDOG","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog","coinDecimals":6},{"coinDenom":"CORSO","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso","coinDecimals":6},{"coinDenom":"bHUAHUA","coinMinimalDenom":"cw20:chihuahua1jz5n4aynhpxx7clf2m8hrv9dp5nz83k67fgaxhy4p9dfwl6zssrq3ymr6w","coinDecimals":6},{"coinDenom":"ashHUAHUA","coinMinimalDenom":"factory/chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0/uhuahua.ash","coinDecimals":6},{"coinDenom":"ampGASH","coinMinimalDenom":"ibc/7D01429FF7542DBC41C261793B480B63FE7A83260C751989CC268BC7E852EB99","coinDecimals":6},{"coinDenom":"GUPPY","coinMinimalDenom":"ibc/DBBDE1753EFA93F09C468DB5E384861BB741D4AA73E9C7032D139BB2C99FDD65","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/FA7112322CE7656DC84D441E49BAEAB9DC0AB3C7618A178A212CDE8B3F17C70B","coinDecimals":6}],"rest":"https://api.chihuahua.wtf","rpc":"https://rpc.chihuahua.wtf","bech32Config":{"bech32PrefixAccAddr":"chihuahua","bech32PrefixAccPub":"chihuahuapub","bech32PrefixValAddr":"chihuahuavaloper","bech32PrefixValPub":"chihuahuavaloperpub","bech32PrefixConsAddr":"chihuahuavalcons","bech32PrefixConsPub":"chihuahuavalconspub"},"chainName":"chihuahua","feeCurrencies":[{"coinDenom":"huahua","coinMinimalDenom":"uhuahua","coinDecimals":6,"gasPriceStep":{"low":500,"average":1250,"high":2000}}],"stakeCurrency":{"coinDenom":"huahua","coinMinimalDenom":"uhuahua","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"chimba","currencies":[{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6}],"rest":"https://mainnet.chimba.ooo","rpc":"https://rpc.mainnet.chimba.ooo","bech32Config":{"bech32PrefixAccAddr":"chimba","bech32PrefixAccPub":"chimbapub","bech32PrefixValAddr":"chimbavaloper","bech32PrefixValPub":"chimbavaloperpub","bech32PrefixConsAddr":"chimbavalcons","bech32PrefixConsPub":"chimbavalconspub"},"chainName":"chimba","feeCurrencies":[{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6,"gasPriceStep":{"low":1,"average":5,"high":10}}],"stakeCurrency":{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cifer-2","currencies":[{"coinDenom":"cif","coinMinimalDenom":"ucif","coinDecimals":6}],"rest":"https://api.cifer.ai","rpc":"http://34.128.114.243:26657","bech32Config":{"bech32PrefixAccAddr":"cife","bech32PrefixAccPub":"cifepub","bech32PrefixValAddr":"cifevaloper","bech32PrefixValPub":"cifevaloperpub","bech32PrefixConsAddr":"cifevalcons","bech32PrefixConsPub":"cifevalconspub"},"chainName":"cifer","feeCurrencies":[{"coinDenom":"cif","coinMinimalDenom":"ucif","coinDecimals":6,"gasPriceStep":{"low":1,"average":5,"high":10}}],"stakeCurrency":{"coinDenom":"cif","coinMinimalDenom":"ucif","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cnho_stables-1","currencies":[{"coinDenom":"CNHO","coinMinimalDenom":"ucnho","coinDecimals":6}],"rest":"https://api.cnho.io","rpc":"https://rpc.cnho.io","bech32Config":{"bech32PrefixAccAddr":"cnho","bech32PrefixAccPub":"cnhopub","bech32PrefixValAddr":"cnhovaloper","bech32PrefixValPub":"cnhovaloperpub","bech32PrefixConsAddr":"cnhovalcons","bech32PrefixConsPub":"cnhovalconspub"},"chainName":"cnhostables","feeCurrencies":[{"coinDenom":"CNHO","coinMinimalDenom":"ucnho","coinDecimals":6,"gasPriceStep":{"low":0.000001,"average":0.00001,"high":0.025}}],"stakeCurrency":{"coinDenom":"CNHO","coinMinimalDenom":"ucnho","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"comdex-1","currencies":[{"coinDenom":"cmdx","coinMinimalDenom":"ucmdx","coinDecimals":6},{"coinDenom":"harbor","coinMinimalDenom":"uharbor","coinDecimals":6},{"coinDenom":"cmst","coinMinimalDenom":"ucmst","coinDecimals":6}],"rest":"https://rest.comdex.one","rpc":"https://rpc.comdex.one","bech32Config":{"bech32PrefixAccAddr":"comdex","bech32PrefixAccPub":"comdexpub","bech32PrefixValAddr":"comdexvaloper","bech32PrefixValPub":"comdexvaloperpub","bech32PrefixConsAddr":"comdexvalcons","bech32PrefixConsPub":"comdexvalconspub"},"chainName":"comdex","feeCurrencies":[{"coinDenom":"cmdx","coinMinimalDenom":"ucmdx","coinDecimals":6}],"stakeCurrency":{"coinDenom":"cmdx","coinMinimalDenom":"ucmdx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"commercio-3","currencies":[{"coinDenom":"commercio","coinMinimalDenom":"ucommercio","coinDecimals":6},{"coinDenom":"ccc","coinMinimalDenom":"uccc","coinDecimals":6}],"rest":"https://lcd-mainnet.commercio.network","rpc":"https://rpc-mainnet.commercio.network","bech32Config":{"bech32PrefixAccAddr":"did:com:","bech32PrefixAccPub":"did:com:pub","bech32PrefixValAddr":"did:com:valoper","bech32PrefixValPub":"did:com:valoperpub","bech32PrefixConsAddr":"did:com:valcons","bech32PrefixConsPub":"did:com:valconspub"},"chainName":"commercionetwork","feeCurrencies":[{"coinDenom":"commercio","coinMinimalDenom":"ucommercio","coinDecimals":6}],"stakeCurrency":{"coinDenom":"commercio","coinMinimalDenom":"ucommercio","coinDecimals":6},"bip44":{"coinType":701}},{"chainId":"centauri-1","currencies":[{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12},{"coinDenom":"ksm","coinMinimalDenom":"ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9","coinDecimals":12},{"coinDenom":"dot","coinMinimalDenom":"ibc/3CC19CEC7E5A3E90E78A5A9ECC5A0E2F8F826A375CF1E096F4515CF09DA3E366","coinDecimals":10},{"coinDenom":"usdt","coinMinimalDenom":"ibc/F3EC9F834E57DF704FA3AEAF14E8391C2E58397FE56960AD70E67562990D8265","coinDecimals":6},{"coinDenom":"tnkr","coinMinimalDenom":"ibc/C58E5D2571042137CB68B1B9851C4E7211C05F7C2C79E21E0966AF0F063961F8","coinDecimals":12},{"coinDenom":"eth","coinMinimalDenom":"ibc/F9D075D4079FC56A9C49B601E54A45292C319D8B0E8CC0F8439041130AA7166C","coinDecimals":18},{"coinDenom":"dai","coinMinimalDenom":"ibc/A342F6F8D1CDE1D934C50E8EAFF91E813D971E1BFEED7E557F1674E01004A533","coinDecimals":18},{"coinDenom":"fxs","coinMinimalDenom":"ibc/5F9BE030FC355733EC79307409FA98398BBFC747C9430B326C144A74F6808B29","coinDecimals":18},{"coinDenom":"frax","coinMinimalDenom":"ibc/4F20D68B51ED559F99C3CD658383E91F45486D884BF546E7B25337A058562CDB","coinDecimals":18},{"coinDenom":"frxeth","coinMinimalDenom":"ibc/458032E654E41DB91EF98F13E2CE4F9E0FE86BA3E0CDBEC074A854E9F5229A90","coinDecimals":18},{"coinDenom":"sfrxeth","coinMinimalDenom":"ibc/4E0ECE7819D77B0F2B49F5C34B5E594A02D2BA8B1B0F103208F847B53EBFB69A","coinDecimals":18},{"coinDenom":"sfrax","coinMinimalDenom":"ibc/5BD7F23FE150D9CF3BCC944DB829380BCC51A4022A131151C4D13B3AFAC2D1D9","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/37CC704EA53E96AB09A9C31D79142DE7DB252420F3AB18015F9870AE219947BD","coinDecimals":6},{"coinDenom":"crv","coinMinimalDenom":"ibc/52C8C6197989684F891076F228F20CD1659AB6E1776E3B85E65CBBEC67DA5DED","coinDecimals":18},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/1507315B0C337368B85A7EC67C3956C508E1106EBD96336B1B092F7B2815B3E5","coinDecimals":18},{"coinDenom":"steth","coinMinimalDenom":"ibc/74F65FE91F672BC2524C039B3CD0211F6D370071209552533DF26D57743D5FFD","coinDecimals":18},{"coinDenom":"reth","coinMinimalDenom":"ibc/207E7F34DFEBF714CED4900C1FD85BAF200230BF431EE8133EB26B98CB535EDC","coinDecimals":18},{"coinDenom":"crvusd","coinMinimalDenom":"ibc/C9D79BE8E3E75CA2DFDC722C77D7B179C39A4802D59019C790A825FDE34B724A","coinDecimals":18},{"coinDenom":"pxeth","coinMinimalDenom":"ibc/36EF1EA47A09689C81D848B08E5240FA9FF13B17DB7DCF48B77D4D0D9B152821","coinDecimals":18},{"coinDenom":"eeth","coinMinimalDenom":"ibc/34C23BA6BAA2EAE0199D85AD1E2E214F76B0BFAD42BF75542D15F71264EEB05B","coinDecimals":18},{"coinDenom":"ena","coinMinimalDenom":"ibc/B089810D5A6316AD5E9C7808733DC4AB11C7BA3033221D28711FC7206BACB929","coinDecimals":18},{"coinDenom":"usde","coinMinimalDenom":"ibc/FFD9EB71B4480ED4D73F7370A2AEBDB48447A0AAE27265F8060A957F0FF71983","coinDecimals":18},{"coinDenom":"ezeth","coinMinimalDenom":"ibc/E317539F148285AAC77E7614101CBE94E20EDF169B233A5E0C867112972F9041","coinDecimals":18},{"coinDenom":"pepe","coinMinimalDenom":"ibc/6367C5AF2E2477FB13DD0C8CB0027FEDDF5AE947EE84C69FB75003E604E29D05","coinDecimals":18},{"coinDenom":"wsol","coinMinimalDenom":"ibc/2CC39C8141F257EBBA250F65B9D0F31DC8D153C225E51EC192DE6E3F65D43F0C","coinDecimals":9},{"coinDenom":"msol","coinMinimalDenom":"ibc/C280CB39B97E7CD33A0BF149CFD392C2A3F95FF896AFF89CFF2FA181479BED8D","coinDecimals":9},{"coinDenom":"jitosol","coinMinimalDenom":"ibc/91A2FE07F8BDFC0552B1C9972FCCBF2CFD067DDE5F496D81E5132CE57762B0F2","coinDecimals":9},{"coinDenom":"bsol","coinMinimalDenom":"ibc/F52A71607B3AA7BBA8A222A9176E9939E92AB3656A094289CD218907D45DB716","coinDecimals":9},{"coinDenom":"lst","coinMinimalDenom":"ibc/55F5B582483FEFA5422794292B079B4D49A5BAB9881E7C801F9F271F1D234F1D","coinDecimals":9},{"coinDenom":"edgesol","coinMinimalDenom":"ibc/BADB5950C4A81AC201696EBCB33CD295137FA86F0AA620CDDE946D3700E0208C","coinDecimals":9},{"coinDenom":"hsol","coinMinimalDenom":"ibc/531C52D572698BCBA29F44D959E73CD2148EE6542A3118F9E56621A28E1FF4C6","coinDecimals":9},{"coinDenom":"jupsol","coinMinimalDenom":"ibc/6976998E24F1CFC373A9F799C9CE901F5EC32C3E33B2B09384A05774D9339626","coinDecimals":9},{"coinDenom":"wif","coinMinimalDenom":"ibc/BA34EAA22BBDA46C228DC70E4ED7E42A0867D5B051D625F953CC7B1CEF58C071","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/D105950618E47CA2AEC314282BC401625025F80A4F812808DEEBB1941C685575","coinDecimals":6},{"coinDenom":"whine","coinMinimalDenom":"ibc/9D5DA3720001F91DD76B8F609A93F96688EC8185B54BF9A1A1450EB34FF2D912","coinDecimals":6},{"coinDenom":"unicorn","coinMinimalDenom":"ibc/586C150919550F6106711C7557DAAAEAB765DDF05648BAC0D96487AE90394BA1","coinDecimals":6}],"rest":"https://api-composable-ia.cosmosia.notional.ventures","rpc":"https://rpc-composable-ia.cosmosia.notional.ventures","bech32Config":{"bech32PrefixAccAddr":"pica","bech32PrefixAccPub":"picapub","bech32PrefixValAddr":"picavaloper","bech32PrefixValPub":"picavaloperpub","bech32PrefixConsAddr":"picavalcons","bech32PrefixConsPub":"picavalconspub"},"chainName":"composable","feeCurrencies":[{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12}],"stakeCurrency":{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12},"bip44":{"coinType":118}},{"chainId":"cvn_2032-1","currencies":[{"coinDenom":"cvnt","coinMinimalDenom":"acvnt","coinDecimals":18}],"rest":"https://api.cvn.io","rpc":"https://rpc.cvn.io/","bech32Config":{"bech32PrefixAccAddr":"cvn","bech32PrefixAccPub":"cvnpub","bech32PrefixValAddr":"cvnvaloper","bech32PrefixValPub":"cvnvaloperpub","bech32PrefixConsAddr":"cvnvalcons","bech32PrefixConsPub":"cvnvalconspub"},"chainName":"conscious","feeCurrencies":[{"coinDenom":"cvnt","coinMinimalDenom":"acvnt","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":200000000,"high":300000000}}],"stakeCurrency":{"coinDenom":"cvnt","coinMinimalDenom":"acvnt","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"coreum-mainnet-1","currencies":[{"coinDenom":"core","coinMinimalDenom":"ucore","coinDecimals":6},{"coinDenom":"xrp","coinMinimalDenom":"drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz","coinDecimals":6}],"rest":"https://rest-coreum.ecostake.com","rpc":"https://full-node.mainnet-1.coreum.dev:26657","bech32Config":{"bech32PrefixAccAddr":"core","bech32PrefixAccPub":"corepub","bech32PrefixValAddr":"corevaloper","bech32PrefixValPub":"corevaloperpub","bech32PrefixConsAddr":"corevalcons","bech32PrefixConsPub":"corevalconspub"},"chainName":"coreum","feeCurrencies":[{"coinDenom":"core","coinMinimalDenom":"ucore","coinDecimals":6,"gasPriceStep":{"low":0.0625,"average":0.0625,"high":62.5}}],"stakeCurrency":{"coinDenom":"core","coinMinimalDenom":"ucore","coinDecimals":6},"bip44":{"coinType":990}},{"chainId":"cosmoshub-4","currencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0","coinDecimals":6},{"coinDenom":"ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729","coinMinimalDenom":"ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729","coinDecimals":0},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/74C4FE1EC3BDD66B02C691496371DDBB86DDE512C5BC072D76262C6C9B4B20D1","coinDecimals":18}],"rest":"https://cosmoshub.lava.build:443","rpc":"https://cosmoshub.tendermintrpc.lava.build:443","bech32Config":{"bech32PrefixAccAddr":"cosmos","bech32PrefixAccPub":"cosmospub","bech32PrefixValAddr":"cosmosvaloper","bech32PrefixValPub":"cosmosvaloperpub","bech32PrefixConsAddr":"cosmosvalcons","bech32PrefixConsPub":"cosmosvalconspub"},"chainName":"cosmoshub","feeCurrencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"coss-1","currencies":[{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6},{"coinDenom":"coss","coinMinimalDenom":"ucoss","coinDecimals":6},{"coinDenom":"cias","coinMinimalDenom":"ucias","coinDecimals":6}],"rest":"https://coss-rest.coss.ink","rpc":"https://coss-rpc.coss.ink","bech32Config":{"bech32PrefixAccAddr":"coss","bech32PrefixAccPub":"cosspub","bech32PrefixValAddr":"cossvaloper","bech32PrefixValPub":"cossvaloperpub","bech32PrefixConsAddr":"cossvalcons","bech32PrefixConsPub":"cossvalconspub"},"chainName":"coss","feeCurrencies":[{"coinDenom":"coss","coinMinimalDenom":"ucoss","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}},{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}},{"coinDenom":"cias","coinMinimalDenom":"ucias","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}}],"stakeCurrency":{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"crescent-1","currencies":[{"coinDenom":"cre","coinMinimalDenom":"ucre","coinDecimals":6},{"coinDenom":"bcre","coinMinimalDenom":"ubcre","coinDecimals":6}],"rest":"https://mainnet.crescent.network:1317","rpc":"https://mainnet.crescent.network:26657","bech32Config":{"bech32PrefixAccAddr":"cre","bech32PrefixAccPub":"crepub","bech32PrefixValAddr":"crevaloper","bech32PrefixValPub":"crevaloperpub","bech32PrefixConsAddr":"crevalcons","bech32PrefixConsPub":"crevalconspub"},"chainName":"crescent","feeCurrencies":[{"coinDenom":"cre","coinMinimalDenom":"ucre","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"cre","coinMinimalDenom":"ucre","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cronosmainnet_25-1","currencies":[{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/9106F2626880DF7FAD30621F355423B2A7523D8E2274475F009644D708A90682","coinDecimals":6}],"rest":"https://rest.cronos.org/","rpc":"https://rpc.cronos.org/","bech32Config":{"bech32PrefixAccAddr":"crc","bech32PrefixAccPub":"crcpub","bech32PrefixValAddr":"crcvaloper","bech32PrefixValPub":"crcvaloperpub","bech32PrefixConsAddr":"crcvalcons","bech32PrefixConsPub":"crcvalconspub"},"chainName":"cronos","feeCurrencies":[{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":18}],"stakeCurrency":{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"crypto-org-chain-mainnet-1","currencies":[{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":8},{"coinDenom":"lumen","coinMinimalDenom":"baseXLM","coinDecimals":7},{"coinDenom":"lumen","coinMinimalDenom":"ibc/34A1D4BF5FFCDB912F64FE71D54426D56970F873F1279983B69C713B3A62D10D","coinDecimals":7}],"rest":"https://rest.mainnet.crypto.org/","rpc":"https://rpc.mainnet.crypto.org/","bech32Config":{"bech32PrefixAccAddr":"cro","bech32PrefixAccPub":"cropub","bech32PrefixValAddr":"crovaloper","bech32PrefixValPub":"crovaloperpub","bech32PrefixConsAddr":"crovalcons","bech32PrefixConsPub":"crovalconspub"},"chainName":"cryptoorgchain","feeCurrencies":[{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":8,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}}],"stakeCurrency":{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":8},"bip44":{"coinType":394}},{"chainId":"mainnet-3","currencies":[{"coinDenom":"dec","coinMinimalDenom":"udec","coinDecimals":6}],"rest":"https://rest.mainnet.decentr.xyz","rpc":"https://poseidon.mainnet.decentr.xyz","bech32Config":{"bech32PrefixAccAddr":"decentr","bech32PrefixAccPub":"decentrpub","bech32PrefixValAddr":"decentrvaloper","bech32PrefixValPub":"decentrvaloperpub","bech32PrefixConsAddr":"decentrvalcons","bech32PrefixConsPub":"decentrvalconspub"},"chainName":"decentr","feeCurrencies":[{"coinDenom":"dec","coinMinimalDenom":"udec","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.025}}],"stakeCurrency":{"coinDenom":"dec","coinMinimalDenom":"udec","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"desmos-mainnet","currencies":[{"coinDenom":"dsm","coinMinimalDenom":"udsm","coinDecimals":6}],"rest":"https://api.mainnet.desmos.network","rpc":"https://rpc.mainnet.desmos.network","bech32Config":{"bech32PrefixAccAddr":"desmos","bech32PrefixAccPub":"desmospub","bech32PrefixValAddr":"desmosvaloper","bech32PrefixValPub":"desmosvaloperpub","bech32PrefixConsAddr":"desmosvalcons","bech32PrefixConsPub":"desmosvalconspub"},"chainName":"desmos","feeCurrencies":[{"coinDenom":"dsm","coinMinimalDenom":"udsm","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.03,"high":0.05}}],"stakeCurrency":{"coinDenom":"dsm","coinMinimalDenom":"udsm","coinDecimals":6},"bip44":{"coinType":852}},{"chainId":"dhealth","currencies":[{"coinDenom":"dhp","coinMinimalDenom":"udhp","coinDecimals":6}],"rest":"https://lcd.dhealth.com","rpc":"https://rpc.dhealth.com","bech32Config":{"bech32PrefixAccAddr":"dh","bech32PrefixAccPub":"dhpub","bech32PrefixValAddr":"dhvaloper","bech32PrefixValPub":"dhvaloperpub","bech32PrefixConsAddr":"dhvalcons","bech32PrefixConsPub":"dhvalconspub"},"chainName":"dhealth","feeCurrencies":[{"coinDenom":"dhp","coinMinimalDenom":"udhp","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}}],"stakeCurrency":{"coinDenom":"dhp","coinMinimalDenom":"udhp","coinDecimals":6},"bip44":{"coinType":10111}},{"chainId":"vota-ash","currencies":[{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18}],"rest":"https://vota-rest.dorafactory.org","rpc":"https://vota-rpc.dorafactory.org/","bech32Config":{"bech32PrefixAccAddr":"dora","bech32PrefixAccPub":"dorapub","bech32PrefixValAddr":"doravaloper","bech32PrefixValPub":"doravaloperpub","bech32PrefixConsAddr":"doravalcons","bech32PrefixConsPub":"doravalconspub"},"chainName":"doravota","feeCurrencies":[{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18,"gasPriceStep":{"low":100000000000,"average":100000000000,"high":100000000000}}],"stakeCurrency":{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"dungeon-1","currencies":[{"coinDenom":"DGN","coinMinimalDenom":"udgn","coinDecimals":6}],"rest":"https://api-dungeon-1.seraphim.zone","rpc":"https://rpc-dungeon-1.seraphim.zone","bech32Config":{"bech32PrefixAccAddr":"dungeon","bech32PrefixAccPub":"dungeonpub","bech32PrefixValAddr":"dungeonvaloper","bech32PrefixValPub":"dungeonvaloperpub","bech32PrefixConsAddr":"dungeonvalcons","bech32PrefixConsPub":"dungeonvalconspub"},"chainName":"dungeon","feeCurrencies":[{"coinDenom":"DGN","coinMinimalDenom":"udgn","coinDecimals":6}],"stakeCurrency":{"coinDenom":"DGN","coinMinimalDenom":"udgn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"dydx-mainnet-1","currencies":[{"coinDenom":"dydx","coinMinimalDenom":"adydx","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","coinDecimals":6}],"rest":"https://community.nuxian-node.ch:6797/dydx/crpc","rpc":"https://dydx-rpc.kingnodes.com:443","bech32Config":{"bech32PrefixAccAddr":"dydx","bech32PrefixAccPub":"dydxpub","bech32PrefixValAddr":"dydxvaloper","bech32PrefixValPub":"dydxvaloperpub","bech32PrefixConsAddr":"dydxvalcons","bech32PrefixConsPub":"dydxvalconspub"},"chainName":"dydx","feeCurrencies":[{"coinDenom":"dydx","coinMinimalDenom":"adydx","coinDecimals":18,"gasPriceStep":{"low":12500000000,"average":12500000000,"high":20000000000}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"dydx","coinMinimalDenom":"adydx","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"dymension_1100-1","currencies":[{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18},{"coinDenom":"nim","coinMinimalDenom":"ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942","coinDecimals":18},{"coinDenom":"mand","coinMinimalDenom":"ibc/5A26C8DC8DA66F4DD94326E67F94510188F5F7AFE2DB3933A0C823670E56EABF","coinDecimals":18}],"rest":"https://dym-m-api.agoranodes.com","rpc":"https://dym-m-rpc.agoranodes.com","bech32Config":{"bech32PrefixAccAddr":"dym","bech32PrefixAccPub":"dympub","bech32PrefixValAddr":"dymvaloper","bech32PrefixValPub":"dymvaloperpub","bech32PrefixConsAddr":"dymvalcons","bech32PrefixConsPub":"dymvalconspub"},"chainName":"dymension","feeCurrencies":[{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18,"gasPriceStep":{"low":5000000000,"average":5000000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"dyson-mainnet-01","currencies":[{"coinDenom":"dys","coinMinimalDenom":"dys","coinDecimals":0},{"coinDenom":"osmo","coinMinimalDenom":"ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B","coinDecimals":6},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/9BF31153F7E37F687C75A2F310E7A4DB6E0512B065F709B5EB69FE828133AFAC","coinDecimals":8},{"coinDenom":"usdc","coinMinimalDenom":"ibc/13DF61376C08483555C6D4C9203612086A1B23218EB5EBDBE609EEC7EFF2D82D","coinDecimals":6}],"rest":"https://dys-api.dysonprotocol.com:443","rpc":"https://dys-tm.dysonprotocol.com:443","bech32Config":{"bech32PrefixAccAddr":"dys","bech32PrefixAccPub":"dyspub","bech32PrefixValAddr":"dysvaloper","bech32PrefixValPub":"dysvaloperpub","bech32PrefixConsAddr":"dysvalcons","bech32PrefixConsPub":"dysvalconspub"},"chainName":"dyson","feeCurrencies":[{"coinDenom":"dys","coinMinimalDenom":"dys","coinDecimals":0,"gasPriceStep":{"low":0.0001,"average":0.0002,"high":0.0003}}],"stakeCurrency":{"coinDenom":"dys","coinMinimalDenom":"dys","coinDecimals":0},"bip44":{"coinType":118}},{"chainId":"echelon_3000-3","currencies":[{"coinDenom":"echelon","coinMinimalDenom":"aechelon","coinDecimals":18}],"rest":"https://ech01api.mindheartsoul.org","rpc":"https://ech01trpc.mindheartsoul.org","bech32Config":{"bech32PrefixAccAddr":"echelon","bech32PrefixAccPub":"echelonpub","bech32PrefixValAddr":"echelonvaloper","bech32PrefixValPub":"echelonvaloperpub","bech32PrefixConsAddr":"echelonvalcons","bech32PrefixConsPub":"echelonvalconspub"},"chainName":"echelon","feeCurrencies":[{"coinDenom":"echelon","coinMinimalDenom":"aechelon","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"echelon","coinMinimalDenom":"aechelon","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"emoney-3","currencies":[{"coinDenom":"ngm","coinMinimalDenom":"ungm","coinDecimals":6},{"coinDenom":"eur","coinMinimalDenom":"eeur","coinDecimals":6},{"coinDenom":"chf","coinMinimalDenom":"echf","coinDecimals":6},{"coinDenom":"nok","coinMinimalDenom":"enok","coinDecimals":6},{"coinDenom":"dkk","coinMinimalDenom":"edkk","coinDecimals":6},{"coinDenom":"sek","coinMinimalDenom":"esek","coinDecimals":6}],"rest":"https://emoney.validator.network/api/","rpc":"https://emoney.validator.network","bech32Config":{"bech32PrefixAccAddr":"emoney","bech32PrefixAccPub":"emoneypub","bech32PrefixValAddr":"emoneyvaloper","bech32PrefixValPub":"emoneyvaloperpub","bech32PrefixConsAddr":"emoneyvalcons","bech32PrefixConsPub":"emoneyvalconspub"},"chainName":"emoney","feeCurrencies":[{"coinDenom":"ngm","coinMinimalDenom":"ungm","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"eur","coinMinimalDenom":"eeur","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"chf","coinMinimalDenom":"echf","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"nok","coinMinimalDenom":"enok","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"sek","coinMinimalDenom":"esek","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"dkk","coinMinimalDenom":"edkk","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}}],"stakeCurrency":{"coinDenom":"ngm","coinMinimalDenom":"ungm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"empowerchain-1","currencies":[{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6}],"rest":"https://rest-empowerchain.ecostake.com:443","rpc":"https://rpc-empowerchain.ecostake.com:443","bech32Config":{"bech32PrefixAccAddr":"empower","bech32PrefixAccPub":"empowerpub","bech32PrefixValAddr":"empowervaloper","bech32PrefixValPub":"empowervaloperpub","bech32PrefixConsAddr":"empowervalcons","bech32PrefixConsPub":"empowervalconspub"},"chainName":"empowerchain","feeCurrencies":[{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"epix_4242-1","currencies":[{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18}],"rest":"https://epix.api.silknodes.io","rpc":"https://epix.rpc.silknodes.io/","bech32Config":{"bech32PrefixAccAddr":"epix","bech32PrefixAccPub":"epixpub","bech32PrefixValAddr":"epixvaloper","bech32PrefixValPub":"epixvaloperpub","bech32PrefixConsAddr":"epixvalcons","bech32PrefixConsPub":"epixvalconspub"},"chainName":"epix","feeCurrencies":[{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18,"gasPriceStep":{"low":1000000000000,"average":2000000000000,"high":3000000000000}}],"stakeCurrency":{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"ethos_7003-1","currencies":[{"coinDenom":"RYT","coinMinimalDenom":"aRYT","coinDecimals":18}],"rest":"https://ethos.provable.dev/rest/","rpc":"https://ethos-rpc.provable.dev:443/","bech32Config":{"bech32PrefixAccAddr":"ethos","bech32PrefixAccPub":"ethospub","bech32PrefixValAddr":"ethosvaloper","bech32PrefixValPub":"ethosvaloperpub","bech32PrefixConsAddr":"ethosvalcons","bech32PrefixConsPub":"ethosvalconspub"},"chainName":"ethos","feeCurrencies":[{"coinDenom":"RYT","coinMinimalDenom":"aRYT","coinDecimals":18}],"stakeCurrency":{"coinDenom":"RYT","coinMinimalDenom":"aRYT","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"evmos_9001-2","currencies":[{"coinDenom":"evmos","coinMinimalDenom":"aevmos","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/95F4898F70B1E3765715808C57E955034419200A7BB6DDECBEAA5FD3AA3DF7D5","coinDecimals":6},{"coinDenom":"neok","coinMinimalDenom":"erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9","coinDecimals":18},{"coinDenom":"berlin-legacy","coinMinimalDenom":"erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280","coinDecimals":18},{"coinDenom":"crowdp","coinMinimalDenom":"erc20/0xfbF4318d24a93753F11d365A6dcF8b830e98Ab0F","coinDecimals":18}],"rest":"https://rest.bd.evmos.org:1317","rpc":"https://rpc.lavenderfive.com:443/evmos","bech32Config":{"bech32PrefixAccAddr":"evmos","bech32PrefixAccPub":"evmospub","bech32PrefixValAddr":"evmosvaloper","bech32PrefixValPub":"evmosvaloperpub","bech32PrefixConsAddr":"evmosvalcons","bech32PrefixConsPub":"evmosvalconspub"},"chainName":"evmos","feeCurrencies":[{"coinDenom":"evmos","coinMinimalDenom":"aevmos","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"evmos","coinMinimalDenom":"aevmos","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"fetchhub-4","currencies":[{"coinDenom":"fet","coinMinimalDenom":"afet","coinDecimals":18},{"coinDenom":"mobx","coinMinimalDenom":"nanomobx","coinDecimals":9}],"rest":"https://rest-fetchhub.fetch.ai","rpc":"https://rpc-fetchhub.fetch.ai:443","bech32Config":{"bech32PrefixAccAddr":"fetch","bech32PrefixAccPub":"fetchpub","bech32PrefixValAddr":"fetchvaloper","bech32PrefixValPub":"fetchvaloperpub","bech32PrefixConsAddr":"fetchvalcons","bech32PrefixConsPub":"fetchvalconspub"},"chainName":"fetchhub","feeCurrencies":[{"coinDenom":"fet","coinMinimalDenom":"afet","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.035}}],"stakeCurrency":{"coinDenom":"fet","coinMinimalDenom":"afet","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"finschia-2","currencies":[{"coinDenom":"fnsa","coinMinimalDenom":"cony","coinDecimals":6}],"rest":"https://finschia-api.finschia.io","rpc":"https://finschia-rpc.finschia.io","bech32Config":{"bech32PrefixAccAddr":"link","bech32PrefixAccPub":"linkpub","bech32PrefixValAddr":"linkvaloper","bech32PrefixValPub":"linkvaloperpub","bech32PrefixConsAddr":"linkvalcons","bech32PrefixConsPub":"linkvalconspub"},"chainName":"finschia","feeCurrencies":[{"coinDenom":"fnsa","coinMinimalDenom":"cony","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.015,"high":0.015}}],"stakeCurrency":{"coinDenom":"fnsa","coinMinimalDenom":"cony","coinDecimals":6},"bip44":{"coinType":438}},{"chainId":"colosseum-1","currencies":[{"coinDenom":"fct","coinMinimalDenom":"ufct","coinDecimals":6}],"rest":"https://lcd-mainnet.firmachain.dev:1317","rpc":"https://lcd-mainnet.firmachain.dev:26657","bech32Config":{"bech32PrefixAccAddr":"firma","bech32PrefixAccPub":"firmapub","bech32PrefixValAddr":"firmavaloper","bech32PrefixValPub":"firmavaloperpub","bech32PrefixConsAddr":"firmavalcons","bech32PrefixConsPub":"firmavalconspub"},"chainName":"firmachain","feeCurrencies":[{"coinDenom":"fct","coinMinimalDenom":"ufct","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.15,"high":0.2}}],"stakeCurrency":{"coinDenom":"fct","coinMinimalDenom":"ufct","coinDecimals":6},"bip44":{"coinType":7777777}},{"chainId":"furya-1","currencies":[{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6}],"rest":"https://furya.api.nodeshub.online","rpc":"https://furya-rpc.synergynodes.com","bech32Config":{"bech32PrefixAccAddr":"furya","bech32PrefixAccPub":"furyapub","bech32PrefixValAddr":"furyavaloper","bech32PrefixValPub":"furyavaloperpub","bech32PrefixConsAddr":"furyavalcons","bech32PrefixConsPub":"furyavalconspub"},"chainName":"furya","feeCurrencies":[{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.5}}],"stakeCurrency":{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"fxcore","currencies":[{"coinDenom":"WFX","coinMinimalDenom":"FX","coinDecimals":18},{"coinDenom":"PUNDIX","coinMinimalDenom":"eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38","coinDecimals":18}],"rest":"https://fx-rest.functionx.io","rpc":"https://fx-json.functionx.io","bech32Config":{"bech32PrefixAccAddr":"fx","bech32PrefixAccPub":"fxpub","bech32PrefixValAddr":"fxvaloper","bech32PrefixValPub":"fxvaloperpub","bech32PrefixConsAddr":"fxvalcons","bech32PrefixConsPub":"fxvalconspub"},"chainName":"fxcore","feeCurrencies":[{"coinDenom":"WFX","coinMinimalDenom":"FX","coinDecimals":18,"gasPriceStep":{"low":4000000000000,"average":4200000000000,"high":5000000000000}}],"stakeCurrency":{"coinDenom":"WFX","coinMinimalDenom":"FX","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"wormchain","currencies":[{"coinDenom":"test","coinMinimalDenom":"utest","coinDecimals":6},{"coinDenom":"worm","coinMinimalDenom":"uworm","coinDecimals":6},{"coinDenom":"wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh","coinDecimals":8},{"coinDenom":"wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp","coinDecimals":8},{"coinDenom":"wormhole/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b","coinDecimals":8},{"coinDenom":"wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r","coinDecimals":8},{"coinDenom":"wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi","coinDecimals":6},{"coinDenom":"wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA","coinDecimals":8},{"coinDenom":"wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR","coinDecimals":5},{"coinDenom":"wormhole/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd","coinDecimals":8},{"coinDenom":"wormhole/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw","coinDecimals":8},{"coinDenom":"wormhole/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1","coinDecimals":8},{"coinDenom":"wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt","coinDecimals":6},{"coinDenom":"wormhole/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4","coinDecimals":6},{"coinDenom":"wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy","coinDecimals":6},{"coinDenom":"wormhole/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3","coinDecimals":6},{"coinDenom":"wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst","coinDecimals":5},{"coinDenom":"w","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/2Wb6ueMFc9WLc2eyYVha6qnwHKbwzUXdooXsg6XXVvos","coinDecimals":6},{"coinDenom":"wormhole/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP","coinDecimals":6}],"rest":"https://tncnt-eu-wormchain-main-01.rpc.p2p.world/lcd/","rpc":"https://tncnt-eu-wormchain-main-01.rpc.p2p.world/","bech32Config":{"bech32PrefixAccAddr":"wormhole","bech32PrefixAccPub":"wormholepub","bech32PrefixValAddr":"wormholevaloper","bech32PrefixValPub":"wormholevaloperpub","bech32PrefixConsAddr":"wormholevalcons","bech32PrefixConsPub":"wormholevalconspub"},"chainName":"gateway","feeCurrencies":[{"coinDenom":"test","coinMinimalDenom":"utest","coinDecimals":6}],"stakeCurrency":{"coinDenom":"test","coinMinimalDenom":"utest","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"genesis_29-2","currencies":[{"coinDenom":"l1","coinMinimalDenom":"el1","coinDecimals":18}],"rest":"https://api.genesisl1.org","rpc":"https://26657.genesisl1.org","bech32Config":{"bech32PrefixAccAddr":"genesis","bech32PrefixAccPub":"genesispub","bech32PrefixValAddr":"genesisvaloper","bech32PrefixValPub":"genesisvaloperpub","bech32PrefixConsAddr":"genesisvalcons","bech32PrefixConsPub":"genesisvalconspub"},"chainName":"genesisl1","feeCurrencies":[{"coinDenom":"l1","coinMinimalDenom":"el1","coinDecimals":18,"gasPriceStep":{"low":51000000000,"average":52000000000,"high":53000000000}}],"stakeCurrency":{"coinDenom":"l1","coinMinimalDenom":"el1","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"gitopia","currencies":[{"coinDenom":"LORE","coinMinimalDenom":"ulore","coinDecimals":6}],"rest":"https://gitopia-api.polkachu.com:443","rpc":"https://gitopia-rpc.polkachu.com:443","bech32Config":{"bech32PrefixAccAddr":"gitopia","bech32PrefixAccPub":"gitopiapub","bech32PrefixValAddr":"gitopiavaloper","bech32PrefixValPub":"gitopiavaloperpub","bech32PrefixConsAddr":"gitopiavalcons","bech32PrefixConsPub":"gitopiavalconspub"},"chainName":"gitopia","feeCurrencies":[{"coinDenom":"LORE","coinMinimalDenom":"ulore","coinDecimals":6,"gasPriceStep":{"low":0.0012,"average":0.0016,"high":0.0024}}],"stakeCurrency":{"coinDenom":"LORE","coinMinimalDenom":"ulore","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"govgen-1","currencies":[{"coinDenom":"govgen","coinMinimalDenom":"ugovgen","coinDecimals":6}],"rest":"https://api.govgen.io/","rpc":"https://rpc.govgen.io:443","bech32Config":{"bech32PrefixAccAddr":"govgen","bech32PrefixAccPub":"govgenpub","bech32PrefixValAddr":"govgenvaloper","bech32PrefixValPub":"govgenvaloperpub","bech32PrefixConsAddr":"govgenvalcons","bech32PrefixConsPub":"govgenvalconspub"},"chainName":"govgen","feeCurrencies":[{"coinDenom":"govgen","coinMinimalDenom":"ugovgen","coinDecimals":6,"gasPriceStep":{"low":0.006,"average":0.006,"high":0.009}}],"stakeCurrency":{"coinDenom":"govgen","coinMinimalDenom":"ugovgen","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"gravity-bridge-3","currencies":[{"coinDenom":"graviton","coinMinimalDenom":"ugraviton","coinDecimals":6},{"coinDenom":"pstake","coinMinimalDenom":"gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006","coinDecimals":18},{"coinDenom":"gweth","coinMinimalDenom":"gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2","coinDecimals":18},{"coinDenom":"gusdc","coinMinimalDenom":"gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","coinDecimals":6},{"coinDenom":"gusdt","coinMinimalDenom":"gravity0xdAC17F958D2ee523a2206206994597C13D831ec7","coinDecimals":6},{"coinDenom":"gwbtc","coinMinimalDenom":"gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599","coinDecimals":8},{"coinDenom":"gdai","coinMinimalDenom":"gravity0x6B175474E89094C44Da98b954EedeAC495271d0F","coinDecimals":18},{"coinDenom":"gsdai","coinMinimalDenom":"gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA","coinDecimals":18},{"coinDenom":"gocc","coinMinimalDenom":"gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207","coinDecimals":18},{"coinDenom":"page","coinMinimalDenom":"gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e","coinDecimals":8},{"coinDenom":"gpaxg","coinMinimalDenom":"gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78","coinDecimals":18}],"rest":"https://gravitychain.io:1317","rpc":"https://gravitychain.io:26657","bech32Config":{"bech32PrefixAccAddr":"gravity","bech32PrefixAccPub":"gravitypub","bech32PrefixValAddr":"gravityvaloper","bech32PrefixValPub":"gravityvaloperpub","bech32PrefixConsAddr":"gravityvalcons","bech32PrefixConsPub":"gravityvalconspub"},"chainName":"gravitybridge","feeCurrencies":[{"coinDenom":"graviton","coinMinimalDenom":"ugraviton","coinDecimals":6},{"coinDenom":"gusdc","coinMinimalDenom":"gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","coinDecimals":6,"gasPriceStep":{"low":0.0002,"average":0.0005,"high":0.0008}},{"coinDenom":"gusdt","coinMinimalDenom":"gravity0xdAC17F958D2ee523a2206206994597C13D831ec7","coinDecimals":6,"gasPriceStep":{"low":0.0002,"average":0.0005,"high":0.0008}}],"stakeCurrency":{"coinDenom":"graviton","coinMinimalDenom":"ugraviton","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"haqq_11235-1","currencies":[{"coinDenom":"ISLM","coinMinimalDenom":"aISLM","coinDecimals":18},{"coinDenom":"DEEN","coinMinimalDenom":"erc20/0x4FEBDDe47Ab9a76200e57eFcC80b212a07b3e6cE","coinDecimals":6}],"rest":"https://rest.cosmos.haqq.network","rpc":"https://rpc.tm.haqq.network","bech32Config":{"bech32PrefixAccAddr":"haqq","bech32PrefixAccPub":"haqqpub","bech32PrefixValAddr":"haqqvaloper","bech32PrefixValPub":"haqqvaloperpub","bech32PrefixConsAddr":"haqqvalcons","bech32PrefixConsPub":"haqqvalconspub"},"chainName":"haqq","feeCurrencies":[{"coinDenom":"ISLM","coinMinimalDenom":"aISLM","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"ISLM","coinMinimalDenom":"aISLM","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"helichain","currencies":[{"coinDenom":"heli","coinMinimalDenom":"uheli","coinDecimals":6}],"rest":"https://lcd.helichain.com/","rpc":"https://rpc.helichain.com/","bech32Config":{"bech32PrefixAccAddr":"heli","bech32PrefixAccPub":"helipub","bech32PrefixValAddr":"helivaloper","bech32PrefixValPub":"helivaloperpub","bech32PrefixConsAddr":"helivalcons","bech32PrefixConsPub":"helivalconspub"},"chainName":"heli","feeCurrencies":[{"coinDenom":"heli","coinMinimalDenom":"uheli","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.0025}}],"stakeCurrency":{"coinDenom":"heli","coinMinimalDenom":"uheli","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"highbury_710-1","currencies":[{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6},{"coinDenom":"JINX","coinMinimalDenom":"jinx","coinDecimals":6},{"coinDenom":"JINXY","coinMinimalDenom":"jinxy","coinDecimals":6}],"rest":"https://api-mainnet.furya.io/","rpc":"https://gridiron.furya.io","bech32Config":{"bech32PrefixAccAddr":"fury","bech32PrefixAccPub":"furypub","bech32PrefixValAddr":"furyvaloper","bech32PrefixValPub":"furyvaloperpub","bech32PrefixConsAddr":"furyvalcons","bech32PrefixConsPub":"furyvalconspub"},"chainName":"highbury","feeCurrencies":[{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.1,"high":0.25}}],"stakeCurrency":{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6},"bip44":{"coinType":459}},{"chainId":"humans_1089-1","currencies":[{"coinDenom":"heart","coinMinimalDenom":"aheart","coinDecimals":18}],"rest":"https://api.humans.nodestake.top","rpc":"https://rpc.humans.nodestake.top","bech32Config":{"bech32PrefixAccAddr":"human","bech32PrefixAccPub":"humanpub","bech32PrefixValAddr":"humanvaloper","bech32PrefixValPub":"humanvaloperpub","bech32PrefixConsAddr":"humanvalcons","bech32PrefixConsPub":"humanvalconspub"},"chainName":"humans","feeCurrencies":[{"coinDenom":"heart","coinMinimalDenom":"aheart","coinDecimals":18,"gasPriceStep":{"low":80000000000,"average":100000000000,"high":160000000000}}],"stakeCurrency":{"coinDenom":"heart","coinMinimalDenom":"aheart","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"ixo-5","currencies":[{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6}],"rest":"https://proxies.sifchain.finance/api/impacthub-3/rest","rpc":"https://proxies.sifchain.finance/api/impacthub-3/rpc","bech32Config":{"bech32PrefixAccAddr":"ixo","bech32PrefixAccPub":"ixopub","bech32PrefixValAddr":"ixovaloper","bech32PrefixValPub":"ixovaloperpub","bech32PrefixConsAddr":"ixovalcons","bech32PrefixConsPub":"ixovalconspub"},"chainName":"impacthub","feeCurrencies":[{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"injective-1","currencies":[{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"peggy0xdAC17F958D2ee523a2206206994597C13D831ec7","coinDecimals":6},{"coinDenom":"ampINJ","coinMinimalDenom":"factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ","coinDecimals":6},{"coinDenom":"autism","coinMinimalDenom":"factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism","coinDecimals":6},{"coinDenom":"bINJ","coinMinimalDenom":"factory/inj1dxp690rd86xltejgfq2fa7f2nxtgmm5cer3hvu/bINJ","coinDecimals":18},{"coinDenom":"NINJA","coinMinimalDenom":"factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja","coinDecimals":6},{"coinDenom":"WGMI","coinMinimalDenom":"factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/DD648F5D3CDA56D0D8D8820CF703D246B9FC4007725D8B38D23A21FF1A1477E3","coinDecimals":6},{"coinDenom":"glto","coinMinimalDenom":"peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2","coinDecimals":6},{"coinDenom":"hava","coinMinimalDenom":"factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava","coinDecimals":6},{"coinDenom":"BADKID","coinMinimalDenom":"ibc/A0C5AD197FECAF6636F589071338DC7ECD6B0809CD3A5AB131EAAA5395E7E5E8","coinDecimals":6},{"coinDenom":"NINPO","coinMinimalDenom":"inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88","coinDecimals":6},{"coinDenom":"JUDO","coinMinimalDenom":"inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h","coinDecimals":6},{"coinDenom":"beast","coinMinimalDenom":"peggy0xA4426666addBE8c4985377d36683D17FB40c31Be","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"ibc/063F4461F7317CFF10F50AB044E44932D22AAD84FA7107082744946E6DB7B7A8","coinDecimals":6},{"coinDenom":"nINJ","coinMinimalDenom":"inj1rmzufd7h09sqfrre5dtvu5d09ta7c0t4jzkr2f","coinDecimals":18},{"coinDenom":"nATOM","coinMinimalDenom":"inj16jf4qkcarp3lan4wl2qkrelf4kduvvujwg0780","coinDecimals":6},{"coinDenom":"nWETH","coinMinimalDenom":"inj1kehk5nvreklhylx22p3x0yjydfsz9fv3fvg5xt","coinDecimals":18},{"coinDenom":"nUSDT","coinMinimalDenom":"inj1cy9hes20vww2yr6crvs75gxy5hpycya2hmjg9s","coinDecimals":6},{"coinDenom":"nTIA","coinMinimalDenom":"inj1fzquxxxam59z6fzewy2hvvreeh3m04x83zg4vv","coinDecimals":6},{"coinDenom":"NBZ","coinMinimalDenom":"ibc/1011E4D6D4800DA9B8F21D7C207C0B0C18E54E614A8576037F066B775210709D","coinDecimals":6},{"coinDenom":"Talis","coinMinimalDenom":"factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/Talis","coinDecimals":6},{"coinDenom":"xTalis","coinMinimalDenom":"factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/xTalis","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/2CBC2EA121AE42563B08028466F37B600F2D7D4282342DE938283CC3FB2BC00E","coinDecimals":6},{"coinDenom":"SYN","coinMinimalDenom":"factory/inj1a6xdezq7a94qwamec6n6cnup02nvewvjtz6h6e/SYN","coinDecimals":6},{"coinDenom":"ashSYN","coinMinimalDenom":"factory/inj1ej2f3lmpxj4djsmmuxvnfuvplrut7zmwrq7zj8/syn.ash","coinDecimals":6},{"coinDenom":"COSMO","coinMinimalDenom":"factory/inj1je6n5sr4qtx2lhpldfxndntmgls9hf38ncmcez/COSMO","coinDecimals":6},{"coinDenom":"XTRUMP","coinMinimalDenom":"ibc/5339B0D20986A7C20C2548ED9D6B8DE47BB64E03ABFD051B7792E713036EA20C","coinDecimals":6},{"coinDenom":"DRUGS","coinMinimalDenom":"cw20:inj19vy83ne9tzta2yqynj8yg7dq9ghca6yqn9hyej","coinDecimals":18},{"coinDenom":"DRUGS","coinMinimalDenom":"factory/inj178zy7myyxewek7ka7v9hru8ycpvfnen6xeps89/DRUGS","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/D6E6A20ABDD600742D22464340A7701558027759CE14D12590F8EA869CCCF445","coinDecimals":6}],"rest":"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz","rpc":"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rpc.newmetric.xyz","bech32Config":{"bech32PrefixAccAddr":"inj","bech32PrefixAccPub":"injpub","bech32PrefixValAddr":"injvaloper","bech32PrefixValPub":"injvaloperpub","bech32PrefixConsAddr":"injvalcons","bech32PrefixConsPub":"injvalconspub"},"chainName":"injective","feeCurrencies":[{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18,"gasPriceStep":{"low":500000000,"average":700000000,"high":900000000}}],"stakeCurrency":{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"int3face-1","currencies":[{"coinDenom":"int3","coinMinimalDenom":"uint3","coinDecimals":6},{"coinDenom":"btc","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc","coinDecimals":8},{"coinDenom":"bch","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch","coinDecimals":8},{"coinDenom":"doge","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge","coinDecimals":8},{"coinDenom":"ltc","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc","coinDecimals":8}],"rest":"https://api.mainnet.int3face.zone","rpc":"https://rpc.mainnet.int3face.zone","bech32Config":{"bech32PrefixAccAddr":"int3","bech32PrefixAccPub":"int3pub","bech32PrefixValAddr":"int3valoper","bech32PrefixValPub":"int3valoperpub","bech32PrefixConsAddr":"int3valcons","bech32PrefixConsPub":"int3valconspub"},"chainName":"int3face","feeCurrencies":[{"coinDenom":"int3","coinMinimalDenom":"uint3","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}},{"coinDenom":"btc","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc","coinDecimals":8,"gasPriceStep":{"low":1e-7,"average":0.0000025,"high":0.000004}},{"coinDenom":"bch","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch","coinDecimals":8,"gasPriceStep":{"low":0.000001,"average":0.000025,"high":0.00004}},{"coinDenom":"ltc","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc","coinDecimals":8,"gasPriceStep":{"low":0.000001,"average":0.000025,"high":0.00004}},{"coinDenom":"doge","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge","coinDecimals":8,"gasPriceStep":{"low":0.001,"average":0.0025,"high":0.004}}],"stakeCurrency":{"coinDenom":"int3","coinMinimalDenom":"uint3","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"irishub-1","currencies":[{"coinDenom":"iris","coinMinimalDenom":"uiris","coinDecimals":6}],"rest":"https://api-irisnet-ia.cosmosia.notional.ventures/","rpc":"https://rpc-irisnet-ia.cosmosia.notional.ventures/","bech32Config":{"bech32PrefixAccAddr":"iaa","bech32PrefixAccPub":"iaapub","bech32PrefixValAddr":"iaavaloper","bech32PrefixValPub":"iaavaloperpub","bech32PrefixConsAddr":"iaavalcons","bech32PrefixConsPub":"iaavalconspub"},"chainName":"irisnet","feeCurrencies":[{"coinDenom":"iris","coinMinimalDenom":"uiris","coinDecimals":6,"gasPriceStep":{"low":0.2,"average":0.3,"high":0.4}}],"stakeCurrency":{"coinDenom":"iris","coinMinimalDenom":"uiris","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"jackal-1","currencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"rest":"https://api.jackalprotocol.com","rpc":"https://rpc.jackalprotocol.com","bech32Config":{"bech32PrefixAccAddr":"jkl","bech32PrefixAccPub":"jklpub","bech32PrefixValAddr":"jklvaloper","bech32PrefixValPub":"jklvaloperpub","bech32PrefixConsAddr":"jklvalcons","bech32PrefixConsPub":"jklvalconspub"},"chainName":"jackal","feeCurrencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6,"gasPriceStep":{"low":0.002,"average":0.002,"high":0.02}}],"stakeCurrency":{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"joltify_1729-1","currencies":[{"coinDenom":"jolt","coinMinimalDenom":"ujolt","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/9117A26BA81E29FA4F78F57DC2BD90CD3D26848101BA880445F119B22A1E254E","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3","coinDecimals":6}],"rest":"https://lcd.joltify.io/","rpc":"https://rpc.joltify.io","bech32Config":{"bech32PrefixAccAddr":"jolt","bech32PrefixAccPub":"joltpub","bech32PrefixValAddr":"joltvaloper","bech32PrefixValPub":"joltvaloperpub","bech32PrefixConsAddr":"joltvalcons","bech32PrefixConsPub":"joltvalconspub"},"chainName":"joltify","feeCurrencies":[{"coinDenom":"jolt","coinMinimalDenom":"ujolt","coinDecimals":6}],"stakeCurrency":{"coinDenom":"jolt","coinMinimalDenom":"ujolt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"juno-1","currencies":[{"coinDenom":"juno","coinMinimalDenom":"ujuno","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6},{"coinDenom":"neta","coinMinimalDenom":"cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr","coinDecimals":6},{"coinDenom":"marble","coinMinimalDenom":"cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl","coinDecimals":3},{"coinDenom":"hope","coinMinimalDenom":"cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z","coinDecimals":6},{"coinDenom":"rac","coinMinimalDenom":"cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa","coinDecimals":6},{"coinDenom":"block","coinMinimalDenom":"cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq","coinDecimals":6},{"coinDenom":"cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49","coinMinimalDenom":"cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49","coinDecimals":0},{"coinDenom":"raw","coinMinimalDenom":"cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g","coinDecimals":6},{"coinDenom":"asvt","coinMinimalDenom":"cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w","coinDecimals":6},{"coinDenom":"hns","coinMinimalDenom":"cw20:juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k","coinDecimals":6},{"coinDenom":"joe","coinMinimalDenom":"cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3","coinDecimals":6},{"coinDenom":"dla","coinMinimalDenom":"cw20:juno1sfwye65qxcfsc837gu5qcprcz7w49gkv3wnat04764ld76hy3arqs779tr","coinDecimals":6},{"coinDenom":"glto","coinMinimalDenom":"cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se","coinDecimals":6},{"coinDenom":"gkey","coinMinimalDenom":"cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh","coinDecimals":6},{"coinDenom":"hole","coinMinimalDenom":"cw20:juno1t46z6hg8vvsena7sue0vg6w85ljar3cundplkre9sz0skeqkap9sxyyy6m","coinDecimals":6},{"coinDenom":"sejuno","coinMinimalDenom":"cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv","coinDecimals":6},{"coinDenom":"bjuno","coinMinimalDenom":"cw20:juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3","coinDecimals":6},{"coinDenom":"solar","coinMinimalDenom":"cw20:juno159q8t5g02744lxq8lfmcn6f78qqulq9wn3y9w7lxjgkz4e0a6kvsfvapse","coinDecimals":6},{"coinDenom":"seasy","coinMinimalDenom":"cw20:juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf","coinDecimals":6},{"coinDenom":"muse","coinMinimalDenom":"cw20:juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3","coinDecimals":6},{"coinDenom":"loop","coinMinimalDenom":"cw20:juno1qsrercqegvs4ye0yqg93knv73ye5dc3prqwd6jcdcuj8ggp6w0us66deup","coinDecimals":6},{"coinDenom":"fury","coinMinimalDenom":"cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz","coinDecimals":6},{"coinDenom":"phmn","coinMinimalDenom":"cw20:juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l","coinDecimals":6},{"coinDenom":"hopers","coinMinimalDenom":"cw20:juno1u45shlp0q4gcckvsj06ss4xuvsu0z24a0d0vr9ce6r24pht4e5xq7q995n","coinDecimals":6},{"coinDenom":"red","coinMinimalDenom":"cw20:juno1g647t78y2ulqlm3lss8rs3d0spzd0teuwhdvnqn92tr79yltk9dq2h24za","coinDecimals":6},{"coinDenom":"blue","coinMinimalDenom":"cw20:juno14q8kk464fafql2fwmlsgvgcdl6h2csqpzv4hr025fmcvgjahpess32k0j7","coinDecimals":6},{"coinDenom":"wynd","coinMinimalDenom":"cw20:juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9","coinDecimals":6},{"coinDenom":"banana","coinMinimalDenom":"cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj","coinDecimals":6},{"coinDenom":"nride","coinMinimalDenom":"cw20:juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq","coinDecimals":6},{"coinDenom":"sgnl","coinMinimalDenom":"cw20:juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k","coinDecimals":6},{"coinDenom":"jape","coinMinimalDenom":"cw20:juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps","coinDecimals":6},{"coinDenom":"catom","coinMinimalDenom":"cw20:juno12wxyvtqe76x2a5jj6ckp2hfq8v32m6rvyyxwwufl2tksqvkt7whqczv6pa","coinDecimals":6},{"coinDenom":"howl","coinMinimalDenom":"cw20:juno1g0wuyu2f49ncf94r65278puxzclf5arse9f3kvffxyv4se4vgdmsk4dvqz","coinDecimals":6},{"coinDenom":"fox","coinMinimalDenom":"cw20:juno1u8cr3hcjvfkzxcaacv9q75uw9hwjmn8pucc93pmy6yvkzz79kh3qncca8x","coinDecimals":6},{"coinDenom":"grdn","coinMinimalDenom":"cw20:juno1xekkh27punj0uxruv3gvuydyt856fax0nu750xns99t2qcxp7xmsqwhfma","coinDecimals":6},{"coinDenom":"mnpu","coinMinimalDenom":"cw20:juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my","coinDecimals":6},{"coinDenom":"kleo","coinMinimalDenom":"cw20:juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy","coinDecimals":6},{"coinDenom":"sikoba","coinMinimalDenom":"cw20:juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp","coinDecimals":6},{"coinDenom":"shibac","coinMinimalDenom":"cw20:juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z","coinDecimals":6},{"coinDenom":"clst","coinMinimalDenom":"cw20:juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg","coinDecimals":6},{"coinDenom":"watr","coinMinimalDenom":"cw20:juno1m4h8q4p305wgy7vkux0w6e5ylhqll3s6pmadhxkhqtuwd5wlxhxs8xklsw","coinDecimals":6},{"coinDenom":"casa","coinMinimalDenom":"cw20:juno1ju8k8sqwsqu5k6umrypmtyqu2wqcpnrkf4w4mntvl0javt4nma7s8lzgss","coinDecimals":6},{"coinDenom":"summit","coinMinimalDenom":"cw20:juno1j4ux0f6gt7e82z7jdpm25v4g2gts880ap64rdwa49989wzhd0dfqed6vqm","coinDecimals":6},{"coinDenom":"manna","coinMinimalDenom":"cw20:juno13ca2g36ng6etcfhr9qxx352uw2n5e92np54thfkm3w3nzlhsgvwsjaqlyq","coinDecimals":6},{"coinDenom":"empwr","coinMinimalDenom":"cw20:juno12etxwkxvms0uy9ak8g3pyq6a53myukufdnx82pakzmjmpm77a0ksr9gs5v","coinDecimals":6},{"coinDenom":"middle","coinMinimalDenom":"cw20:juno1525fuspletvzykpgr2atxpymu9le4mghd7qq4a4u23uwqzc2f3fq7fmafd","coinDecimals":6},{"coinDenom":"sunset","coinMinimalDenom":"cw20:juno17703kcxtsg37hryxnestejyyycuv5yyvnghp2e7w0kqvafnnyetsgzq62w","coinDecimals":6},{"coinDenom":"tree","coinMinimalDenom":"cw20:juno1uu3rxu7w7fpfj4sl4xpxppgymk57mzdzn6kg7492jdxh5dwk7d2qq9429e","coinDecimals":6},{"coinDenom":"invdrs","coinMinimalDenom":"cw20:juno1jwdy7v4egw36pd84aeks3ww6n8k7zhsumd4ac8q5lts83ppxueus4626e8","coinDecimals":6},{"coinDenom":"apemos","coinMinimalDenom":"cw20:juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06","coinDecimals":6},{"coinDenom":"osdoge","coinMinimalDenom":"cw20:juno1ytymtllllsp3hfmndvcp802p2xmy5s8m59ufel8xv9ahyxyfs4hs4kd4je","coinDecimals":6},{"coinDenom":"doga","coinMinimalDenom":"cw20:juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d","coinDecimals":6},{"coinDenom":"pepe","coinMinimalDenom":"cw20:juno1zqrj3ta4u7ylv0wqzd8t8q3jrr9rdmn43zuzp9zemeunecnhy8fss778g7","coinDecimals":6},{"coinDenom":"catmos","coinMinimalDenom":"cw20:juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488","coinDecimals":6},{"coinDenom":"spacer","coinMinimalDenom":"cw20:juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg","coinDecimals":6},{"coinDenom":"light","coinMinimalDenom":"cw20:juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l","coinDecimals":9},{"coinDenom":"mile","coinMinimalDenom":"cw20:juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d","coinDecimals":6},{"coinDenom":"void","coinMinimalDenom":"cw20:juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8","coinDecimals":6},{"coinDenom":"silica","coinMinimalDenom":"cw20:juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux","coinDecimals":6},{"coinDenom":"pepec","coinMinimalDenom":"cw20:juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k","coinDecimals":6},{"coinDenom":"pltn","coinMinimalDenom":"cw20:juno15au4k2jgwd0jnchy0fkg3lm00fpt7jt0j2duuzradn2q7sega2dszyn5pp","coinDecimals":6},{"coinDenom":"yfd","coinMinimalDenom":"cw20:juno12mcwmd6wqhledkjsurlfqtc8j0pedvxlcxw3gs4kh2qf808ehehsen8nmw","coinDecimals":6},{"coinDenom":"nexx","coinMinimalDenom":"factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX","coinDecimals":6},{"coinDenom":"dgl","coinMinimalDenom":"factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL","coinDecimals":6},{"coinDenom":"ampJUNO","coinMinimalDenom":"cw20:juno1a0khag6cfzu5lrwazmyndjgvlsuk7g4vn9jd8ceym8f4jf6v2l9q6d348a","coinDecimals":6},{"coinDenom":"bits","coinMinimalDenom":"cw20:juno14fz92ehqt37e096xr95kmy8nc0kz803uezxtg4fwx7agjjma86sqm8mg3h","coinDecimals":8},{"coinDenom":"poil","coinMinimalDenom":"cw20:juno13epyeat7ef0k7q6kllmyvc8zpfd9xm7cqjrgtk0qkgrk7n5mjfmq8979jw","coinDecimals":6},{"coinDenom":"minerva","coinMinimalDenom":"cw20:juno1h86ut5aevlxuuxrra6wy3dfq6e39zkzzv9eelz678jr6amxlc4gsx46j82","coinDecimals":6},{"coinDenom":"luno","coinMinimalDenom":"cw20:juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk","coinDecimals":6},{"coinDenom":"aten","coinMinimalDenom":"cw20:juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r","coinDecimals":6},{"coinDenom":"hera","coinMinimalDenom":"cw20:juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0","coinDecimals":6},{"coinDenom":"bJUNO","coinMinimalDenom":"cw20:juno1mvkgcr5uce2rnpzr4qrzf50hx4qreuwzlt7fzsjrhjud3xnjmttq5mkh2m","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/4A482FA914A4B9B05801ED81C33713899F322B24F76A06F4B8FE872485EA22FF","coinDecimals":6},{"coinDenom":"rstk","coinMinimalDenom":"ibc/F0C440C8040E2FCCAC621D32D3A00D9B347C989D52CE869A91CB34D07B0021D2","coinDecimals":6},{"coinDenom":"wind","coinMinimalDenom":"factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind","coinDecimals":6},{"coinDenom":"cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg","coinMinimalDenom":"cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg","coinDecimals":0},{"coinDenom":"arena","coinMinimalDenom":"factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA","coinDecimals":6},{"coinDenom":"ashWIND","coinMinimalDenom":"factory/juno16uprl38e4ljj5ctuha9ehpvp2l93z3d5jmwj2cttt6jkhlrhscpqgglalk/wind.ash","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/B4B81727559DC69159ED8BECD4452D555235CA0D11FADD3ADE121395A7E2833E","coinDecimals":18},{"coinDenom":"whale","coinMinimalDenom":"ibc/3A6ADE78FB8169C034C29C4F2E1A61CE596EC8235366F22381D981A98F1F5A5C","coinDecimals":6}],"rest":"https://lcd-juno.itastakers.com","rpc":"https://rpc-juno.itastakers.com","bech32Config":{"bech32PrefixAccAddr":"juno","bech32PrefixAccPub":"junopub","bech32PrefixValAddr":"junovaloper","bech32PrefixValPub":"junovaloperpub","bech32PrefixConsAddr":"junovalcons","bech32PrefixConsPub":"junovalconspub"},"chainName":"juno","feeCurrencies":[{"coinDenom":"juno","coinMinimalDenom":"ujuno","coinDecimals":6,"gasPriceStep":{"low":0.075,"average":0.1,"high":0.125}},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6,"gasPriceStep":{"low":0.003,"average":0.0035,"high":0.004}}],"stakeCurrency":{"coinDenom":"juno","coinMinimalDenom":"ujuno","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kava_2222-10","currencies":[{"coinDenom":"kava","coinMinimalDenom":"ukava","coinDecimals":6},{"coinDenom":"HARD","coinMinimalDenom":"hard","coinDecimals":6},{"coinDenom":"SWP","coinMinimalDenom":"swp","coinDecimals":6},{"coinDenom":"USDX","coinMinimalDenom":"usdx","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"erc20/tether/usdt","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/D4F1F74C6B90168E05B974F2EBB5938D18704B73DE273CAACF7E96F7821B2C3D","coinDecimals":18}],"rest":"https://api.data.kava.io/","rpc":"https://rpc.data.kava.io","bech32Config":{"bech32PrefixAccAddr":"kava","bech32PrefixAccPub":"kavapub","bech32PrefixValAddr":"kavavaloper","bech32PrefixValPub":"kavavaloperpub","bech32PrefixConsAddr":"kavavalcons","bech32PrefixConsPub":"kavavalconspub"},"chainName":"kava","feeCurrencies":[{"coinDenom":"kava","coinMinimalDenom":"ukava","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.1,"high":0.25}}],"stakeCurrency":{"coinDenom":"kava","coinMinimalDenom":"ukava","coinDecimals":6},"bip44":{"coinType":459}},{"chainId":"kichain-2","currencies":[{"coinDenom":"xki","coinMinimalDenom":"uxki","coinDecimals":6},{"coinDenom":"lvn","coinMinimalDenom":"cw20:ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy","coinDecimals":6}],"rest":"https://api-mainnet.blockchain.ki","rpc":"https://rpc-mainnet.blockchain.ki","bech32Config":{"bech32PrefixAccAddr":"ki","bech32PrefixAccPub":"kipub","bech32PrefixValAddr":"kivaloper","bech32PrefixValPub":"kivaloperpub","bech32PrefixConsAddr":"kivalcons","bech32PrefixConsPub":"kivalconspub"},"chainName":"kichain","feeCurrencies":[{"coinDenom":"xki","coinMinimalDenom":"uxki","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.05}}],"stakeCurrency":{"coinDenom":"xki","coinMinimalDenom":"uxki","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kima_network","currencies":[{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6}],"rest":"https://api.kima.network","rpc":"https://rpc.kima.network/","bech32Config":{"bech32PrefixAccAddr":"kima","bech32PrefixAccPub":"kimapub","bech32PrefixValAddr":"kimavaloper","bech32PrefixValPub":"kimavaloperpub","bech32PrefixConsAddr":"kimavalcons","bech32PrefixConsPub":"kimavalconspub"},"chainName":"kimanetwork","feeCurrencies":[{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.05}}],"stakeCurrency":{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"darchub","currencies":[{"coinDenom":"darc","coinMinimalDenom":"udarc","coinDecimals":6}],"rest":"https://api-konstellation-ia.cosmosia.notional.ventures/","rpc":"https://rpc-konstellation-ia.cosmosia.notional.ventures/","bech32Config":{"bech32PrefixAccAddr":"darc","bech32PrefixAccPub":"darcpub","bech32PrefixValAddr":"darcvaloper","bech32PrefixValPub":"darcvaloperpub","bech32PrefixConsAddr":"darcvalcons","bech32PrefixConsPub":"darcvalconspub"},"chainName":"konstellation","feeCurrencies":[{"coinDenom":"darc","coinMinimalDenom":"udarc","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.001,"high":0.01}}],"stakeCurrency":{"coinDenom":"darc","coinMinimalDenom":"udarc","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"luwak-1","currencies":[{"coinDenom":"XKP","coinMinimalDenom":"ukopi","coinDecimals":6},{"coinDenom":"kUSD","coinMinimalDenom":"ukusd","coinDecimals":6},{"coinDenom":"ckUSD","coinMinimalDenom":"uckusd","coinDecimals":6},{"coinDenom":"cUSDC","coinMinimalDenom":"ucusdc","coinDecimals":6},{"coinDenom":"cUSDT.inj","coinMinimalDenom":"ucusdtinj","coinDecimals":6},{"coinDenom":"USDC","coinMinimalDenom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","coinDecimals":6},{"coinDenom":"USDT.inj","coinMinimalDenom":"ibc/D8A36AE90F20FE4843A8D249B1BCF0CCDDE35C4B605C8DED57BED20C639162D0","coinDecimals":6},{"coinDenom":"INJ","coinMinimalDenom":"ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255","coinDecimals":18},{"coinDenom":"Luna","coinMinimalDenom":"ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85","coinDecimals":6},{"coinDenom":"Atom","coinMinimalDenom":"ibc/25418646C017D377ADF3202FF1E43590D0DAE3346E594E8D78176A139A928F88","coinDecimals":6},{"coinDenom":"asusdtinj","coinMinimalDenom":"uasusdtinj","coinDecimals":6},{"coinDenom":"asUSDC","coinMinimalDenom":"uasusdc","coinDecimals":6}],"rest":"https://rest.kopi.money","rpc":"https://rpc.kopi.money","bech32Config":{"bech32PrefixAccAddr":"kopi","bech32PrefixAccPub":"kopipub","bech32PrefixValAddr":"kopivaloper","bech32PrefixValPub":"kopivaloperpub","bech32PrefixConsAddr":"kopivalcons","bech32PrefixConsPub":"kopivalconspub"},"chainName":"kopi","feeCurrencies":[{"coinDenom":"XKP","coinMinimalDenom":"ukopi","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"XKP","coinMinimalDenom":"ukopi","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kaiyo-1","currencies":[{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6},{"coinDenom":"usk","coinMinimalDenom":"factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk","coinDecimals":6},{"coinDenom":"qcKUJI","coinMinimalDenom":"factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt","coinDecimals":6},{"coinDenom":"ampKUJI","coinMinimalDenom":"factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI","coinDecimals":6},{"coinDenom":"mnta","coinMinimalDenom":"factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta","coinDecimals":6},{"coinDenom":"qcMNTA","coinMinimalDenom":"factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt","coinDecimals":6},{"coinDenom":"ampMNTA","coinMinimalDenom":"factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA","coinDecimals":6},{"coinDenom":"wink","coinMinimalDenom":"factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink","coinDecimals":6},{"coinDenom":"blend","coinMinimalDenom":"factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8","coinDecimals":6},{"coinDenom":"fuzn","coinMinimalDenom":"factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn","coinDecimals":6},{"coinDenom":"rfuzn","coinMinimalDenom":"factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn","coinDecimals":6},{"coinDenom":"yfuzn","coinMinimalDenom":"factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn","coinDecimals":6},{"coinDenom":"qcFUZN","coinMinimalDenom":"factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt","coinDecimals":6},{"coinDenom":"qcAQLA","coinMinimalDenom":"factory/kujira1d9fmsgvu3yvvppvqech2s3dhrqdm5ukngcf82ghcl70edfpwcrlsu6yr0u/urcpt","coinDecimals":6},{"coinDenom":"AQLA","coinMinimalDenom":"factory/kujira1xe0awk5planmtsmjel5xtx2hzhqdw5p8z66yqd/uaqla","coinDecimals":6},{"coinDenom":"nstk","coinMinimalDenom":"factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk","coinDecimals":6},{"coinDenom":"local","coinMinimalDenom":"factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local","coinDecimals":6},{"coinDenom":"PLNK","coinMinimalDenom":"factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk","coinDecimals":6},{"coinDenom":"sol","coinMinimalDenom":"ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3","coinDecimals":8},{"coinDenom":"evmos","coinMinimalDenom":"ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10","coinDecimals":18},{"coinDenom":"avax","coinMinimalDenom":"ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F","coinDecimals":6},{"coinDenom":"cmdx","coinMinimalDenom":"ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07","coinDecimals":6},{"coinDenom":"juno","coinMinimalDenom":"ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7","coinDecimals":18},{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986","coinDecimals":6},{"coinDenom":"stars","coinMinimalDenom":"ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602","coinDecimals":6},{"coinDenom":"scrt","coinMinimalDenom":"ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5","coinDecimals":6},{"coinDenom":"stkatom","coinMinimalDenom":"ibc/086C1B2E9E611F23D3C9159C858D3F4C6A911D348DFB916A11AE306A865A77A8","coinDecimals":6},{"coinDenom":"bKUJI","coinMinimalDenom":"factory/kujira15e8q5wzlk5k38gjxlhse3vu6vqnafysncx2ltexd6y9gx50vuj2qpt7dgv/boneKuji","coinDecimals":6},{"coinDenom":"rstk","coinMinimalDenom":"ibc/82B298F9E74A9A211C55C67C7AB0C790836BD43672D5DD830F7AE2C5D010AD7D","coinDecimals":6},{"coinDenom":"xusk","coinMinimalDenom":"factory/kujira1w4yaama77v53fp0f9343t9w2f932z526vj970n2jv5055a7gt92sxgwypf/urcpt","coinDecimals":6},{"coinDenom":"xmnta","coinMinimalDenom":"factory/kujira1ya42knfcsvy6eztegsn3hz7zpjvhzn05ge85xa2dy2zrjeul9hnspp3c06/urcpt","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"ibc/0306D6B66EAA2EDBB7EAD23C0EC9DDFC69BB43E80B398035E90FBCFEF3FD1A87","coinDecimals":6},{"coinDenom":"wbtc.axl","coinMinimalDenom":"ibc/301DAF9CB0A9E247CD478533EF0E21F48FF8118C4A51F77C8BC3EB70E5566DBC","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/F97BDCE220CCB52139C73066E36C45EC7EDCEEF1DAFF891A34F4FBA195A2E6E8","coinDecimals":6},{"coinDenom":"lp-dot-mnta","coinMinimalDenom":"factory/kujira10qyzrqaza0f593cmnl4sc3p3nhqqakn9j56d899u723pznxpn8us6cypuw/ulp","coinDecimals":6},{"coinDenom":"lp-shd-mnta","coinMinimalDenom":"factory/kujira12tpc335t72qtrjh64ccdydzsr9qtswkqn72cyvfj4d5hmtgynphsv4xjtu/ulp","coinDecimals":6},{"coinDenom":"lp-dydx-mnta","coinMinimalDenom":"factory/kujira13g2eelkf9q4md4xx52ylqvlgpccn50f2vyu05eazufd2g4jatmhq2425pq/ulp","coinDecimals":6},{"coinDenom":"lp-wavax-mnta","coinMinimalDenom":"factory/kujira15pk8c09vcsgsdq4xlh2qfqxtu2r8pgdy7nggkqj8p3h2phke80pqwnvtzk/ulp","coinDecimals":6},{"coinDenom":"lp-cheq-mnta","coinMinimalDenom":"factory/kujira15w6jhxsv924mn9cfr0qg9z36hltmw4rzd68x40d9re6hzyhslumqjw9zqd/ulp","coinDecimals":6},{"coinDenom":"lp-fuzn-mnta","coinMinimalDenom":"factory/kujira1622xuv8unv22xzazljvqh8uukcdz3yzmrp6axgerh7vxg4kum5tqcwcqmv/ulp","coinDecimals":6},{"coinDenom":"lp-somm-mnta","coinMinimalDenom":"factory/kujira17djzq5x5e5zm9q9zlp6dtxdt9p8q2zvj0qtmjs0wrxm5g9e2vf5q9d6y2t/ulp","coinDecimals":6},{"coinDenom":"lp-weth-mnta","coinMinimalDenom":"factory/kujira17x2v39aut0paj5d6wc5jxvqqxrdhy9kvca4y5xn6vsfpsxkgc6gq7n4tg0/ulp","coinDecimals":6},{"coinDenom":"lp-ntrn-mnta","coinMinimalDenom":"factory/kujira18lhugzap20ndlqr5j2p86yk4pxpe9jjuac05z0ypxuwn3mm5vjhsjh4etr/ulp","coinDecimals":6},{"coinDenom":"lp-wftm-mnta","coinMinimalDenom":"factory/kujira18mveas6xseaqu3fmukwv2ac6mp4hszk08lvyamedytjs0kxm42yqs9v89x/ulp","coinDecimals":6},{"coinDenom":"lp-stars-mnta","coinMinimalDenom":"factory/kujira1av284rnqh6s0l2lwdqgpgz8wuva3wh9lkmlsupjd9escn5v4fels6kwc7v/ulp","coinDecimals":6},{"coinDenom":"lp-tia-mnta","coinMinimalDenom":"factory/kujira1cpdyhrkwdnz38u45el3zq7007at9dm6h05tc36zpxvs6vrdwzrrskt0tgg/ulp","coinDecimals":6},{"coinDenom":"lp-sol-mnta","coinMinimalDenom":"factory/kujira1eqd96322ec258w7k9n9cfqkusrlvzwv38jkph3qs720egdv0epmq70j2zl/ulp","coinDecimals":6},{"coinDenom":"lp-dym-mnta","coinMinimalDenom":"factory/kujira1fg7wmsde7ygw3pm6hqmd29cdvp947anajmunsvk0guvjta3md25qdqk4fw/ulp","coinDecimals":6},{"coinDenom":"lp-akt-mnta","coinMinimalDenom":"factory/kujira1gnftck9586x0nhsqsj99k9zednl6tx4kezu9hpph0u6jtqnafpyqxha3me/ulp","coinDecimals":6},{"coinDenom":"lp-link-mnta","coinMinimalDenom":"factory/kujira1gnvja05kkmpeh9dnxl0c2p4sde7fpsy2r44njzyqgpsf72nqs78q3gzpzc/ulp","coinDecimals":6},{"coinDenom":"lp-wtao-mnta","coinMinimalDenom":"factory/kujira1gz2kvfw7hpds9fvygwkj64znl3a9pw697g77cspcq5y4vj3ru45s7qc0rd/ulp","coinDecimals":6},{"coinDenom":"lp-mnta-kuji","coinMinimalDenom":"factory/kujira1h75predtjdm2e7u8cuvqs3usc6xs2mxlkcr20zsshvw3qap25frsr4z949/ulp","coinDecimals":6},{"coinDenom":"lp-axl-mnta","coinMinimalDenom":"factory/kujira1h929g9e9vxhc5y8v7uexdrncacxdatjupr67velewafwepfyfaaq6s7l3v/ulp","coinDecimals":6},{"coinDenom":"lp-atom-mnta","coinMinimalDenom":"factory/kujira1h9f3k54j060pzlnea8ep8qfymsmwl5yhwc5hqept5p2esqzve7tq2ghnm4/ulp","coinDecimals":6},{"coinDenom":"lp-arb-mnta","coinMinimalDenom":"factory/kujira1kc90tgn4ucvdv4c9xycktanwz2lna0nfel6244ylqjvhaetfntusnmyu3d/ulp","coinDecimals":6},{"coinDenom":"lp-whale-mnta","coinMinimalDenom":"factory/kujira1jsjygyj8hwa4f0p9wwgct4yzmzzexe5x5u6l40l7ty2qzwwwsemqavhk3x/ulp","coinDecimals":6},{"coinDenom":"lp-scrt-mnta","coinMinimalDenom":"factory/kujira1p7w9ncnnme9yzzhrvzv0hnsa5u5ga06v0ckt7lq9yfap04hc5k9sn2vf6w/ulp","coinDecimals":6},{"coinDenom":"lp-wsteth-mnta","coinMinimalDenom":"factory/kujira1qx3hcr297qmgjt5f6u9peldf4phxqufvmew8d3eey3ns29e8qp3snj6jfu/ulp","coinDecimals":6},{"coinDenom":"lp-wmatic-mnta","coinMinimalDenom":"factory/kujira1smfdnww47xav4nn849xphku3gk3xp7a24fk533dce8masnsz4v8quklajx/ulp","coinDecimals":6},{"coinDenom":"lp-uni-mnta","coinMinimalDenom":"factory/kujira1t4mr2xt4ky4mfwcy752chzlquam3hzs44mt8vwyec8mvypmzxu5s90vamt/ulp","coinDecimals":6},{"coinDenom":"lp-yieldeth-mnta","coinMinimalDenom":"factory/kujira1u8dluwa4a83q7anz0cgpmma605r07a06f0789ajcl8l0xjrplqss005cgn/ulp","coinDecimals":6},{"coinDenom":"lp-wbtc-mnta","coinMinimalDenom":"factory/kujira1vj39mdwekxznxxa97fv5gt957cghfdqhwju8fdv5ysu0x6vsyhps4zmqjl/ulp","coinDecimals":6},{"coinDenom":"lp-paxg-mnta","coinMinimalDenom":"factory/kujira1vqdyup9zxxl9gqy5hwh593vvuc84lstldj7qzt7fylf3q3e3uemqlwpg9y/ulp","coinDecimals":6},{"coinDenom":"lp-wbnb-mnta","coinMinimalDenom":"factory/kujira1y24jwsv84lnuv5j78qeqz5ujjpd058qsft7wfc0nk9jvycugm32sqnq53d/ulp","coinDecimals":6},{"coinDenom":"lp-osmo-mnta","coinMinimalDenom":"factory/kujira1ygperwf0dc9ng2jffj0pwnnray3rscn9el6d78qjtt25qwgqukqszmdwtv/ulp","coinDecimals":6},{"coinDenom":"lp-inj-mnta","coinMinimalDenom":"factory/kujira1znx048dcc6arqfw6kpckl0k4ts2h7cdx20nk22wz2cxh5vle3wxqknk238/ulp","coinDecimals":6},{"coinDenom":"lp-stosmo-osmo","coinMinimalDenom":"factory/kujira18sek950cg92gd0kvpj67dfg6p7kee6hzw92etcf2jgufr3mttvaslt5sal/ulp","coinDecimals":6},{"coinDenom":"lp-wsteth-weth","coinMinimalDenom":"factory/kujira1lyyeyuw4qgan6nz45thw2m0nmxa457uz7cp9dqw5d9a0h7ccek7qavkm6g/ulp","coinDecimals":6},{"coinDenom":"lp-qcmnta-mnta","coinMinimalDenom":"factory/kujira1ul00h0a2kgcg9x2yfa86wj9qguhyv7jmpjpw6ztt24j9mn9xjw3slawyc8/ulp","coinDecimals":6},{"coinDenom":"lp-ampmnta-mnta","coinMinimalDenom":"factory/kujira1vj36ntsqd3msc69lxldcv9dd50jngknmael9e07rz4fpn5kyq0jsglvz2m/ulp","coinDecimals":6},{"coinDenom":"lp-weth-usk","coinMinimalDenom":"factory/kujira1n648rfqqvjxm6c7zgfnfqay85rkapgg0z7da9pnmjazz5m5d7l0qxdtq90/ulp","coinDecimals":6},{"coinDenom":"nami","coinMinimalDenom":"factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/unami","coinDecimals":6},{"coinDenom":"nausd","coinMinimalDenom":"factory/kujira18thffdpuz8tm3mwwun4uhks8a2v7ye0jmw3fllqhklma82lqkpms20gh9c/unausd","coinDecimals":6},{"coinDenom":"mctest","coinMinimalDenom":"factory/kujira1mn2pgkggquqm2m44zqlaq29jxwtad53qkv4xy4/MCTest","coinDecimals":6},{"coinDenom":"auto","coinMinimalDenom":"factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/uauto","coinDecimals":6},{"coinDenom":"qcDYDX","coinMinimalDenom":"factory/kujira1seqq2ekz47uqayshqkg5wqx5vcyrmtwcl9vscnwy2gjh7mz5aapsdfxsd5/urcpt","coinDecimals":18},{"coinDenom":"rkuji","coinMinimalDenom":"factory/kujira1tsekaqv9vmem0zwskmf90gpf0twl6k57e8vdnq/urkuji","coinDecimals":6},{"coinDenom":"lp-atom-usk","coinMinimalDenom":"factory/kujira1yncutssgh2vj9scaymtteg949hwcft07c6qmgarxnaf04yesq3jsn6g2uv/ulp","coinDecimals":6},{"coinDenom":"lp-weth-usk","coinMinimalDenom":"factory/kujira1xwvvjq5w0887v2vz4e83kcu38s0jq8q8lqa3z5hxm295q7y4uejqp24la7/ulp","coinDecimals":6},{"coinDenom":"lp-sol-usk","coinMinimalDenom":"factory/kujira1vcmh95lje5dln782pxckma65eujs4sv960w22whgsp7a2ajsc6lsvnlhgd/ulp","coinDecimals":6},{"coinDenom":"lp-weth-usdc","coinMinimalDenom":"factory/kujira1n4jfv39hzv2dtshzv6gj4hp8rkdy5rrsr7l84lc3x9cahz4v0umq24q3lu/ulp","coinDecimals":6},{"coinDenom":"lp-dydx-usk","coinMinimalDenom":"factory/kujira1lctu7hy65466fxw3tcqf8w45zwrpwgd9chvjqpgyfgcr73k774nsv4ya6t/ulp","coinDecimals":6},{"coinDenom":"lp-akt-usdc","coinMinimalDenom":"factory/kujira1g5st8p6qdyf23zzerjcxgpr2r7a9wzdyaymu79ngg6ve3m9v3n4sdetv4e/ulp","coinDecimals":6},{"coinDenom":"lp-wbtc-usk","coinMinimalDenom":"factory/kujira1d7jt9zwlnpvf7sskfm57c77pm9mtwczqre75t9k80ees0v523kasss9htj/ulp","coinDecimals":6},{"coinDenom":"lp-wbtc-wbtc","coinMinimalDenom":"factory/kujira1c4e2zk4z0anrufjh64gxtse6e4s5g52fe2ja8ke3r9e0pvpd0z0qws8zsp/ulp","coinDecimals":8},{"coinDenom":"lp-inj-usdc","coinMinimalDenom":"factory/kujira14jwhlsg3az20f7keav2axxj205fyv5j8mp6rv5svqwwll3ls9slq6zwleg/ulp","coinDecimals":6},{"coinDenom":"lp-atom-usdc","coinMinimalDenom":"factory/kujira13my0qtm2a8jp0wg8uzg49tyn4zcea8scy3dc7ghn8z9eys08yzls49ymdm/ulp","coinDecimals":6},{"coinDenom":"lp-mnta-usdc","coinMinimalDenom":"factory/kujira1742pe93mxm0cwqjxgxh6th9sspdrluqvw9pha9q69eeatue4x5xs0wdq2d/ulp","coinDecimals":6},{"coinDenom":"lp-mnta-usk","coinMinimalDenom":"factory/kujira1xtaadmh06s8u3z5mypp8qayhrnxgga5wr88s7raram4rz8zu37hquf82wk/ulp","coinDecimals":6},{"coinDenom":"boon","coinMinimalDenom":"factory/kujira1gewwffxhaygxe8tacd3z9h4uyvpd2h7v9qtfmaw8jjhwalxxpd7qlqld4m/boon","coinDecimals":6},{"coinDenom":"yum","coinMinimalDenom":"ibc/507BE7E33F06026652F519AD4D36716251F2D34DF04514A905D3B19A7D8130F7","coinDecimals":18}],"rest":"https://lcd.kaiyo.kujira.setten.io","rpc":"https://rpc.kaiyo.kujira.setten.io","bech32Config":{"bech32PrefixAccAddr":"kujira","bech32PrefixAccPub":"kujirapub","bech32PrefixValAddr":"kujiravaloper","bech32PrefixValPub":"kujiravaloperpub","bech32PrefixConsAddr":"kujiravalcons","bech32PrefixConsPub":"kujiravalconspub"},"chainName":"kujira","feeCurrencies":[{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6,"gasPriceStep":{"low":0.0034,"average":0.0051,"high":0.00681}},{"coinDenom":"usk","coinMinimalDenom":"factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk","coinDecimals":6,"gasPriceStep":{"low":0.01186,"average":0.01779,"high":0.02372}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F","coinDecimals":6,"gasPriceStep":{"low":0.0119,"average":0.01785,"high":0.02379}},{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6,"gasPriceStep":{"low":0.00129,"average":0.00193,"high":0.00258}},{"coinDenom":"osmo","coinMinimalDenom":"ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23","coinDecimals":6,"gasPriceStep":{"low":0.01795,"average":0.02692,"high":0.0359}},{"coinDenom":"cmdx","coinMinimalDenom":"ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07","coinDecimals":6,"gasPriceStep":{"low":0.65943,"average":0.98915,"high":1.31887}},{"coinDenom":"evmos","coinMinimalDenom":"ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10","coinDecimals":18,"gasPriceStep":{"low":160416396197,"average":240624594296,"high":320832792394}},{"coinDenom":"juno","coinMinimalDenom":"ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5","coinDecimals":6,"gasPriceStep":{"low":0.02689,"average":0.04034,"high":0.05379}},{"coinDenom":"luna","coinMinimalDenom":"ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986","coinDecimals":6,"gasPriceStep":{"low":0.01495,"average":0.02243,"high":0.02991}},{"coinDenom":"scrt","coinMinimalDenom":"ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5","coinDecimals":6,"gasPriceStep":{"low":0.03139,"average":0.04709,"high":0.06278}},{"coinDenom":"stars","coinMinimalDenom":"ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602","coinDecimals":6,"gasPriceStep":{"low":0.90403,"average":1.35605,"high":1.80806}},{"coinDenom":"avax","coinMinimalDenom":"ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2","coinDecimals":18,"gasPriceStep":{"low":559196837,"average":838795256,"high":1118393675}},{"coinDenom":"weth","coinMinimalDenom":"ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7","coinDecimals":18,"gasPriceStep":{"low":5772801,"average":8659201,"high":11545602}},{"coinDenom":"mnta","coinMinimalDenom":"factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta","coinDecimals":6,"gasPriceStep":{"low":0.01807,"average":0.02711,"high":0.03615}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9","coinDecimals":6,"gasPriceStep":{"low":0.01194,"average":0.01792,"high":0.02389}},{"coinDenom":"sol","coinMinimalDenom":"ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3","coinDecimals":8,"gasPriceStep":{"low":0.00019,"average":0.00029,"high":0.00039}}],"stakeCurrency":{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kyve-1","currencies":[{"coinDenom":"kyve","coinMinimalDenom":"ukyve","coinDecimals":6}],"rest":"https://api.kyve.network","rpc":"https://rpc.kyve.network","bech32Config":{"bech32PrefixAccAddr":"kyve","bech32PrefixAccPub":"kyvepub","bech32PrefixValAddr":"kyvevaloper","bech32PrefixValPub":"kyvevaloperpub","bech32PrefixConsAddr":"kyvevalcons","bech32PrefixConsPub":"kyvevalconspub"},"chainName":"kyve","feeCurrencies":[{"coinDenom":"kyve","coinMinimalDenom":"ukyve","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.03,"high":0.06}}],"stakeCurrency":{"coinDenom":"kyve","coinMinimalDenom":"ukyve","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"lambda_92000-1","currencies":[{"coinDenom":"lamb","coinMinimalDenom":"ulamb","coinDecimals":18}],"rest":"https://rest.lambda.im","rpc":"https://rpc.lambda.im","bech32Config":{"bech32PrefixAccAddr":"lamb","bech32PrefixAccPub":"lambpub","bech32PrefixValAddr":"lambvaloper","bech32PrefixValPub":"lambvaloperpub","bech32PrefixConsAddr":"lambvalcons","bech32PrefixConsPub":"lambvalconspub"},"chainName":"lambda","feeCurrencies":[{"coinDenom":"lamb","coinMinimalDenom":"ulamb","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"lamb","coinMinimalDenom":"ulamb","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"lava-mainnet-1","currencies":[{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6}],"rest":"https://lava-api.finteh.org:443","rpc":"https://lava.tendermintrpc.lava.build","bech32Config":{"bech32PrefixAccAddr":"lava@","bech32PrefixAccPub":"lava@pub","bech32PrefixValAddr":"lava@valoper","bech32PrefixValPub":"lava@valoperpub","bech32PrefixConsAddr":"lava@valcons","bech32PrefixConsPub":"lava@valconspub"},"chainName":"lava","feeCurrencies":[{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6,"gasPriceStep":{"low":0.00002,"average":0.025,"high":0.05}}],"stakeCurrency":{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"likecoin-mainnet-2","currencies":[{"coinDenom":"like","coinMinimalDenom":"nanolike","coinDecimals":9}],"rest":"https://mainnet-node.like.co","rpc":"https://mainnet-node.like.co/rpc/","bech32Config":{"bech32PrefixAccAddr":"like","bech32PrefixAccPub":"likepub","bech32PrefixValAddr":"likevaloper","bech32PrefixValPub":"likevaloperpub","bech32PrefixConsAddr":"likevalcons","bech32PrefixConsPub":"likevalconspub"},"chainName":"likecoin","feeCurrencies":[{"coinDenom":"like","coinMinimalDenom":"nanolike","coinDecimals":9,"gasPriceStep":{"low":1000,"average":10000,"high":1000000}}],"stakeCurrency":{"coinDenom":"like","coinMinimalDenom":"nanolike","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"logos_7002-1","currencies":[{"coinDenom":"LYT","coinMinimalDenom":"aLYT","coinDecimals":18}],"rest":"https://logos.provable.dev/rest/","rpc":"https://logos-rpc.provable.dev:443/","bech32Config":{"bech32PrefixAccAddr":"logos","bech32PrefixAccPub":"logospub","bech32PrefixValAddr":"logosvaloper","bech32PrefixValPub":"logosvaloperpub","bech32PrefixConsAddr":"logosvalcons","bech32PrefixConsPub":"logosvalconspub"},"chainName":"logos","feeCurrencies":[{"coinDenom":"LYT","coinMinimalDenom":"aLYT","coinDecimals":18}],"stakeCurrency":{"coinDenom":"LYT","coinMinimalDenom":"aLYT","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"loop-1","currencies":[{"coinDenom":"token","coinMinimalDenom":"token","coinDecimals":0},{"coinDenom":"poa","coinMinimalDenom":"upoa","coinDecimals":6}],"rest":"https://api.loop.pfc.zone/","rpc":"https://rpc.loop.pfc.zone/","bech32Config":{"bech32PrefixAccAddr":"loop","bech32PrefixAccPub":"looppub","bech32PrefixValAddr":"loopvaloper","bech32PrefixValPub":"loopvaloperpub","bech32PrefixConsAddr":"loopvalcons","bech32PrefixConsPub":"loopvalconspub"},"chainName":"loop","feeCurrencies":[{"coinDenom":"token","coinMinimalDenom":"token","coinDecimals":0}],"stakeCurrency":{"coinDenom":"token","coinMinimalDenom":"token","coinDecimals":0},"bip44":{"coinType":118}},{"chainId":"loyal-main-02","currencies":[{"coinDenom":"lyl","coinMinimalDenom":"ulyl","coinDecimals":6}],"rest":"https://lcd-main.joinloyal.io/","rpc":"https://rpc-main.joinloyal.io/","bech32Config":{"bech32PrefixAccAddr":"loyal","bech32PrefixAccPub":"loyalpub","bech32PrefixValAddr":"loyalvaloper","bech32PrefixValPub":"loyalvaloperpub","bech32PrefixConsAddr":"loyalvalcons","bech32PrefixConsPub":"loyalvalconspub"},"chainName":"loyal","feeCurrencies":[{"coinDenom":"lyl","coinMinimalDenom":"ulyl","coinDecimals":6}],"stakeCurrency":{"coinDenom":"lyl","coinMinimalDenom":"ulyl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"lum-network-1","currencies":[{"coinDenom":"lum","coinMinimalDenom":"ulum","coinDecimals":6}],"rest":"https://rest.node0.mainnet.lum.network","rpc":"https://rpc.node0.mainnet.lum.network","bech32Config":{"bech32PrefixAccAddr":"lum","bech32PrefixAccPub":"lumpub","bech32PrefixValAddr":"lumvaloper","bech32PrefixValPub":"lumvaloperpub","bech32PrefixConsAddr":"lumvalcons","bech32PrefixConsPub":"lumvalconspub"},"chainName":"lumnetwork","feeCurrencies":[{"coinDenom":"lum","coinMinimalDenom":"ulum","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"lum","coinMinimalDenom":"ulum","coinDecimals":6},"bip44":{"coinType":880}},{"chainId":"mande_18071918-1","currencies":[{"coinDenom":"mand","coinMinimalDenom":"amand","coinDecimals":18}],"rest":"https://mande-mainnet-rest.public.blastapi.io","rpc":"https://mande-mainnet-tendermint.public.blastapi.io","bech32Config":{"bech32PrefixAccAddr":"mande","bech32PrefixAccPub":"mandepub","bech32PrefixValAddr":"mandevaloper","bech32PrefixValPub":"mandevaloperpub","bech32PrefixConsAddr":"mandevalcons","bech32PrefixConsPub":"mandevalconspub"},"chainName":"mande","feeCurrencies":[{"coinDenom":"mand","coinMinimalDenom":"amand","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":20000000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"mand","coinMinimalDenom":"amand","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"mantra-1","currencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6}],"rest":"https://api.mantrachain.io","rpc":"https://rpc.mantrachain.io","bech32Config":{"bech32PrefixAccAddr":"mantra","bech32PrefixAccPub":"mantrapub","bech32PrefixValAddr":"mantravaloper","bech32PrefixValPub":"mantravaloperpub","bech32PrefixConsAddr":"mantravalcons","bech32PrefixConsPub":"mantravalconspub"},"chainName":"mantrachain","feeCurrencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.03}}],"stakeCurrency":{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mars-1","currencies":[{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6}],"rest":"https://rest.marsprotocol.io:443","rpc":"https://rpc.marsprotocol.io:443","bech32Config":{"bech32PrefixAccAddr":"mars","bech32PrefixAccPub":"marspub","bech32PrefixValAddr":"marsvaloper","bech32PrefixValPub":"marsvaloperpub","bech32PrefixConsAddr":"marsvalcons","bech32PrefixConsPub":"marsvalconspub"},"chainName":"mars","feeCurrencies":[{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6}],"stakeCurrency":{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"medasdigital-2","currencies":[{"coinDenom":"medas","coinMinimalDenom":"umedas","coinDecimals":6}],"rest":"https://lcd.medas-digital.io:1317/","rpc":"https://rpc.medas-digital.io:26657/","bech32Config":{"bech32PrefixAccAddr":"medas","bech32PrefixAccPub":"medaspub","bech32PrefixValAddr":"medasvaloper","bech32PrefixValPub":"medasvaloperpub","bech32PrefixConsAddr":"medasvalcons","bech32PrefixConsPub":"medasvalconspub"},"chainName":"medasdigital","feeCurrencies":[{"coinDenom":"medas","coinMinimalDenom":"umedas","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.4}}],"stakeCurrency":{"coinDenom":"medas","coinMinimalDenom":"umedas","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"meme-1","currencies":[{"coinDenom":"meme","coinMinimalDenom":"umeme","coinDecimals":6},{"coinDenom":"planq","coinMinimalDenom":"ibc/FACC1CE598366EA01D86CF1CBE05F1A6C7511F673E91DEFF04342ED8DEFE3A60","coinDecimals":18}],"rest":"https://api-meme-1.meme.sx/","rpc":"https://rpc-meme-1.meme.sx/","bech32Config":{"bech32PrefixAccAddr":"meme","bech32PrefixAccPub":"memepub","bech32PrefixValAddr":"memevaloper","bech32PrefixValPub":"memevaloperpub","bech32PrefixConsAddr":"memevalcons","bech32PrefixConsPub":"memevalconspub"},"chainName":"meme","feeCurrencies":[{"coinDenom":"meme","coinMinimalDenom":"umeme","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.035,"high":0.045}}],"stakeCurrency":{"coinDenom":"meme","coinMinimalDenom":"umeme","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"migaloo-1","currencies":[{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6},{"coinDenom":"ampWHALE","coinMinimalDenom":"factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE","coinDecimals":6},{"coinDenom":"bWHALE","coinMinimalDenom":"factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale","coinDecimals":6},{"coinDenom":"fable","coinMinimalDenom":"factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable","coinDecimals":6},{"coinDenom":"bluna","coinMinimalDenom":"ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708","coinDecimals":6},{"coinDenom":"RAC","coinMinimalDenom":"factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac","coinDecimals":6},{"coinDenom":"ASH","coinMinimalDenom":"factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/86A25A8A327164AE7C68A29B6ED745C7EEDC36E260A6666F33A6407BECEC4737","coinDecimals":6},{"coinDenom":"mUSDC","coinMinimalDenom":"cw20:migaloo10nucfm2zqgzqmy7y7ls398t58pjt9cwjsvpy88y2nvamtl34rgmqt5em2v","coinDecimals":6},{"coinDenom":"GUPPY","coinMinimalDenom":"factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy","coinDecimals":6},{"coinDenom":"OPHIR","coinMinimalDenom":"factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir","coinDecimals":6},{"coinDenom":"SHARK","coinMinimalDenom":"factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark","coinDecimals":6},{"coinDenom":"lsdSHARK","coinMinimalDenom":"factory/migaloo1p3aj9f09d7c4jxhgue0hpdpw370j6gzc59nxxx6l8d0gc9f9rfwsdwetus/lsdSHARK","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/4627AD2524E3E0523047E35BB76CC90E37D9D57ACF14F0FCBCEB2480705F3CB8","coinDecimals":6},{"coinDenom":"Rakoff","coinMinimalDenom":"ibc/44C29C91F202E20C8E28DFB1FA89B725C54171CD77B8948836C72E7A97E4A018","coinDecimals":6},{"coinDenom":"gash","coinMinimalDenom":"factory/migaloo1r9x8fz4alekzr78k42rpmr9unpa7egsldpqeynmwl2nfvzexue9sn8l5rg/gash","coinDecimals":6},{"coinDenom":"rstk","coinMinimalDenom":"factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk","coinDecimals":6},{"coinDenom":"frog","coinMinimalDenom":"ibc/B1BD4EF49A2E051EFC85E8C6A932B559CE62F9519E0E83BE29A8F0BDF89BD1D3","coinDecimals":6},{"coinDenom":"GRAC","coinMinimalDenom":"factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac","coinDecimals":6},{"coinDenom":"wind","coinMinimalDenom":"ibc/721B42229246EEDA7A656DB17E494127F91E84AD63E21852737628321892A928","coinDecimals":6},{"coinDenom":"shitmos","coinMinimalDenom":"ibc/0E1B883A15D5FCA533332CBAB1A672934C3936920399F2A3EB4F438E3EBAD0E9","coinDecimals":6},{"coinDenom":"ampGASH","coinMinimalDenom":"factory/migaloo1nsskhvvh0msm7d5ke2kfg24a8d4jecsnxd28s27h0uz5kf9ap60shlqmcl/ampGASH","coinDecimals":6},{"coinDenom":"SYN","coinMinimalDenom":"ibc/33E97105B5C1F48CB7D6400F4673F9B3699AC59EDB621CCCD57D5D480E0C83B6","coinDecimals":6},{"coinDenom":"DGN","coinMinimalDenom":"ibc/D8C6D71032EC7CC4C9CCD0FF709CF87D34A7311FE5491E70F7EDE2351D189C10","coinDecimals":6}],"rest":"https://migaloo-api.polkachu.com:443","rpc":"https://migaloo-rpc.polkachu.com:443","bech32Config":{"bech32PrefixAccAddr":"migaloo","bech32PrefixAccPub":"migaloopub","bech32PrefixValAddr":"migaloovaloper","bech32PrefixValPub":"migaloovaloperpub","bech32PrefixConsAddr":"migaloovalcons","bech32PrefixConsPub":"migaloovalconspub"},"chainName":"migaloo","feeCurrencies":[{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6,"gasPriceStep":{"low":1,"average":2,"high":3}}],"stakeCurrency":{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"milkyway","currencies":[{"coinDenom":"milk","coinMinimalDenom":"umilk","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6},{"coinDenom":"milkTIA","coinMinimalDenom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","coinDecimals":6},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0","coinDecimals":6}],"rest":"https://lcd.mainnet.milkyway.zone/","rpc":"https://rpc.mainnet.milkyway.zone/","bech32Config":{"bech32PrefixAccAddr":"milk","bech32PrefixAccPub":"milkpub","bech32PrefixValAddr":"milkvaloper","bech32PrefixValPub":"milkvaloperpub","bech32PrefixConsAddr":"milkvalcons","bech32PrefixConsPub":"milkvalconspub"},"chainName":"milkyway","feeCurrencies":[{"coinDenom":"milkTIA","coinMinimalDenom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}},{"coinDenom":"tia","coinMinimalDenom":"ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}}],"stakeCurrency":{"coinDenom":"milk","coinMinimalDenom":"umilk","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mtgbp-1","currencies":[{"coinDenom":"mtgbp","coinMinimalDenom":"mtgbp","coinDecimals":0}],"rest":"https://lcd.mtgbp.com","rpc":"https://rcp.mtgbp.com","bech32Config":{"bech32PrefixAccAddr":"mtgbp","bech32PrefixAccPub":"mtgbppub","bech32PrefixValAddr":"mtgbpvaloper","bech32PrefixValPub":"mtgbpvaloperpub","bech32PrefixConsAddr":"mtgbpvalcons","bech32PrefixConsPub":"mtgbpvalconspub"},"chainName":"mtgbp","feeCurrencies":[{"coinDenom":"mtgbp","coinMinimalDenom":"mtgbp","coinDecimals":0,"gasPriceStep":{"low":0.000001,"average":0.000005,"high":0.0001}}],"stakeCurrency":{"coinDenom":"mtgbp","coinMinimalDenom":"mtgbp","coinDecimals":0},"bip44":{"coinType":1179993441}},{"chainId":"mun-1","currencies":[{"coinDenom":"mun","coinMinimalDenom":"umun","coinDecimals":6}],"rest":"https://mainnet1.mun.money","rpc":"https://mainnet1rpc.mun.money","bech32Config":{"bech32PrefixAccAddr":"mun","bech32PrefixAccPub":"munpub","bech32PrefixValAddr":"munvaloper","bech32PrefixValPub":"munvaloperpub","bech32PrefixConsAddr":"munvalcons","bech32PrefixConsPub":"munvalconspub"},"chainName":"mun","feeCurrencies":[{"coinDenom":"mun","coinMinimalDenom":"umun","coinDecimals":6}],"stakeCurrency":{"coinDenom":"mun","coinMinimalDenom":"umun","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mythos_7001-1","currencies":[{"coinDenom":"MYT","coinMinimalDenom":"aMYT","coinDecimals":18}],"rest":"https://mythos.provable.dev/rest/","rpc":"https://mythos-rpc.provable.dev:443/","bech32Config":{"bech32PrefixAccAddr":"mythos","bech32PrefixAccPub":"mythospub","bech32PrefixValAddr":"mythosvaloper","bech32PrefixValPub":"mythosvaloperpub","bech32PrefixConsAddr":"mythosvalcons","bech32PrefixConsPub":"mythosvalconspub"},"chainName":"mythos","feeCurrencies":[{"coinDenom":"MYT","coinMinimalDenom":"aMYT","coinDecimals":18}],"stakeCurrency":{"coinDenom":"MYT","coinMinimalDenom":"aMYT","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"Neutaro-1","currencies":[{"coinDenom":"neutaro","coinMinimalDenom":"uneutaro","coinDecimals":6}],"rest":"https://api2.neutaro.io:443","rpc":"https://rpc2.neutaro.io:443","bech32Config":{"bech32PrefixAccAddr":"neutaro","bech32PrefixAccPub":"neutaropub","bech32PrefixValAddr":"neutarovaloper","bech32PrefixValPub":"neutarovaloperpub","bech32PrefixConsAddr":"neutarovalcons","bech32PrefixConsPub":"neutarovalconspub"},"chainName":"neutaro","feeCurrencies":[{"coinDenom":"neutaro","coinMinimalDenom":"uneutaro","coinDecimals":6}],"stakeCurrency":{"coinDenom":"neutaro","coinMinimalDenom":"uneutaro","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"neutron-1","currencies":[{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6},{"coinDenom":"axlusdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7","coinDecimals":6},{"coinDenom":"ASTROPEPE","coinMinimalDenom":"factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe","coinDecimals":6},{"coinDenom":"wstETH","coinMinimalDenom":"factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH","coinDecimals":18},{"coinDenom":"sat","coinMinimalDenom":"ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130","coinDecimals":18},{"coinDenom":"newt","coinMinimalDenom":"factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro","coinDecimals":6},{"coinDenom":"xASTRO","coinMinimalDenom":"factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO","coinDecimals":6},{"coinDenom":"astro.cw20","coinMinimalDenom":"ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A","coinDecimals":6},{"coinDenom":"corgi","coinMinimalDenom":"factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi","coinDecimals":6},{"coinDenom":"circus","coinMinimalDenom":"factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus","coinDecimals":6},{"coinDenom":"jimmy","coinMinimalDenom":"factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY","coinDecimals":6},{"coinDenom":"bad","coinMinimalDenom":"factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad","coinDecimals":6},{"coinDenom":"bitcosmos","coinMinimalDenom":"neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj","coinDecimals":6},{"coinDenom":"wtf","coinMinimalDenom":"neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf","coinDecimals":6},{"coinDenom":"nls","coinMinimalDenom":"ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972","coinDecimals":6},{"coinDenom":"goddard","coinMinimalDenom":"factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard","coinDecimals":6},{"coinDenom":"apollo","coinMinimalDenom":"factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO","coinDecimals":6},{"coinDenom":"newtroll","coinMinimalDenom":"factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll","coinDecimals":6},{"coinDenom":"retro","coinMinimalDenom":"factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro","coinDecimals":6},{"coinDenom":"goddard","coinMinimalDenom":"factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958","coinDecimals":6},{"coinDenom":"boy","coinMinimalDenom":"neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv","coinDecimals":6},{"coinDenom":"BADKID","coinMinimalDenom":"ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8","coinDecimals":6},{"coinDenom":"cartel","coinMinimalDenom":"factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel","coinDecimals":6},{"coinDenom":"ATOM1KLFG","coinMinimalDenom":"factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81","coinDecimals":6},{"coinDenom":"WEIRD","coinMinimalDenom":"factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD","coinDecimals":6},{"coinDenom":"takumi","coinMinimalDenom":"factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI","coinDecimals":6},{"coinDenom":"NBZ","coinMinimalDenom":"factory/neutron1a6ydq8urdj0gkvjw9e9e5y9r5ce2qegm9m4xufpt96kcm60kmuass0mqq4/nbz","coinDecimals":6},{"coinDenom":"MARS","coinMinimalDenom":"factory/neutron1ndu2wvkrxtane8se2tr48gv7nsm46y5gcqjhux/MARS","coinDecimals":6},{"coinDenom":"dATOM","coinMinimalDenom":"factory/neutron1k6hr0f83e7un2wjf29cspk7j69jrnskk65k3ek2nj9dztrlzpj6q00rtsa/udatom","coinDecimals":6},{"coinDenom":"SIN","coinMinimalDenom":"factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/sin","coinDecimals":6},{"coinDenom":"GOP","coinMinimalDenom":"factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/GOP","coinDecimals":6},{"coinDenom":"arena","coinMinimalDenom":"factory/neutron129ukd5cwahcjkccujz87rjemjukff7jf6sau72qrhva677xgz9gs4m4jeq/uarena","coinDecimals":6},{"coinDenom":"AXV","coinMinimalDenom":"cw20:neutron10dxyft3nv4vpxh5vrpn0xw8geej8dw3g39g7nqp8mrm307ypssksau29af","coinDecimals":6},{"coinDenom":"axlwbtc","coinMinimalDenom":"ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363","coinDecimals":8},{"coinDenom":"xATOM","coinMinimalDenom":"cw20:neutron1vjl4ze7gr32lar5s4fj776v70j4ml7mlt4aqln2hwgfhqjck8xwqfhx8vj","coinDecimals":6},{"coinDenom":"amATOM","coinMinimalDenom":"factory/neutron1shwxlkpdjd8h5wdtrykypwd2v62z5glr95yp0etdcspkkjwm5meq82ndxs/amatom","coinDecimals":6},{"coinDenom":"JSD","coinMinimalDenom":"factory/neutron1mdy5fhtwdjagp5eallsdhlx6gxylm8rxqk72wjzg6y5d5kt44ysqprkduw/JSD","coinDecimals":6}],"rest":"https://api.novel.remedy.tm.p2p.org","rpc":"https://rpc-voidara.neutron-1.neutron.org","bech32Config":{"bech32PrefixAccAddr":"neutron","bech32PrefixAccPub":"neutronpub","bech32PrefixValAddr":"neutronvaloper","bech32PrefixValPub":"neutronvaloperpub","bech32PrefixConsAddr":"neutronvalcons","bech32PrefixConsPub":"neutronvalconspub"},"chainName":"neutron","feeCurrencies":[{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6,"gasPriceStep":{"low":0.0053,"average":0.0053,"high":0.0053}},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6,"gasPriceStep":{"low":0.0008,"average":0.0008,"high":0.0008}},{"coinDenom":"axlusdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6,"gasPriceStep":{"low":0.008,"average":0.008,"high":0.008}},{"coinDenom":"wstETH","coinMinimalDenom":"factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH","coinDecimals":18,"gasPriceStep":{"low":2903231.6597,"average":2903231.6597,"high":2903231.6597}},{"coinDenom":"dydx","coinMinimalDenom":"ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130","coinDecimals":18,"gasPriceStep":{"low":2564102564.1026,"average":2564102564.1026,"high":2564102564.1026}},{"coinDenom":"tia","coinMinimalDenom":"ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7","coinDecimals":6,"gasPriceStep":{"low":0.0004,"average":0.0004,"high":0.0004}}],"stakeCurrency":{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cataclysm-1","currencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},{"coinDenom":"stNIBI","coinMinimalDenom":"tf/nibi1udqqx30cw8nwjxtl4l28ym9hhrp933zlq8dqxfjzcdhvl8y24zcqpzmh8m/ampNIBI","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6},{"coinDenom":"tf/nibi149m52kn7nvsg5nftvv4fh85scsavpdfxp5nr7zasz97dum89dp5qkyhy0t/uoprek","coinMinimalDenom":"tf/nibi149m52kn7nvsg5nftvv4fh85scsavpdfxp5nr7zasz97dum89dp5qkyhy0t/uoprek","coinDecimals":0},{"coinDenom":"tf/nibi1lp28kx3gz0prsztl024z730ufkg3alahaq3e7a6gae22nk0dqdvsyrrgqw/utestate","coinMinimalDenom":"tf/nibi1lp28kx3gz0prsztl024z730ufkg3alahaq3e7a6gae22nk0dqdvsyrrgqw/utestate","coinDecimals":0},{"coinDenom":"tf/nibi1xpp7yn0tce62ffattws3gpd6v0tah0mlevef3ej3r4pnfvsehcgqk3jvxq/NPP","coinMinimalDenom":"tf/nibi1xpp7yn0tce62ffattws3gpd6v0tah0mlevef3ej3r4pnfvsehcgqk3jvxq/NPP","coinDecimals":0}],"rest":"https://lcd.nibiru.fi","rpc":"https://rpc.nibiru.fi","bech32Config":{"bech32PrefixAccAddr":"nibi","bech32PrefixAccPub":"nibipub","bech32PrefixValAddr":"nibivaloper","bech32PrefixValPub":"nibivaloperpub","bech32PrefixConsAddr":"nibivalcons","bech32PrefixConsPub":"nibivalconspub"},"chainName":"nibiru","feeCurrencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"nim_1122-1","currencies":[{"coinDenom":"nim","coinMinimalDenom":"anim","coinDecimals":18}],"rest":"https://rest.mainnet.nimnet.tech","rpc":"https://rpc.mainnet.nimnet.tech","bech32Config":{"bech32PrefixAccAddr":"nim","bech32PrefixAccPub":"nimpub","bech32PrefixValAddr":"nimvaloper","bech32PrefixValPub":"nimvaloperpub","bech32PrefixConsAddr":"nimvalcons","bech32PrefixConsPub":"nimvalconspub"},"chainName":"nim","feeCurrencies":[{"coinDenom":"nim","coinMinimalDenom":"anim","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":20000000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"nim","coinMinimalDenom":"anim","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"noble-1","currencies":[{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":6},{"coinDenom":"frienzies","coinMinimalDenom":"ufrienzies","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6},{"coinDenom":"usdy","coinMinimalDenom":"ausdy","coinDecimals":18},{"coinDenom":"eure","coinMinimalDenom":"ueure","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/9BE17980291443F276406CFE7368A720676FC06D5805C1A23AE52C2534E705F1","coinDecimals":18}],"rest":"https://noble-api.polkachu.com","rpc":"https://noble-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"noble","bech32PrefixAccPub":"noblepub","bech32PrefixValAddr":"noblevaloper","bech32PrefixValPub":"noblevaloperpub","bech32PrefixConsAddr":"noblevalcons","bech32PrefixConsPub":"noblevalconspub"},"chainName":"noble","feeCurrencies":[{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.1,"high":0.2}},{"coinDenom":"atom","coinMinimalDenom":"ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.01,"high":0.02}}],"stakeCurrency":{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nois-1","currencies":[{"coinDenom":"nois","coinMinimalDenom":"unois","coinDecimals":6}],"rest":"https://m-nois.api.utsa.tech","rpc":"https://nois-rpc.nysa.network","bech32Config":{"bech32PrefixAccAddr":"nois","bech32PrefixAccPub":"noispub","bech32PrefixValAddr":"noisvaloper","bech32PrefixValPub":"noisvaloperpub","bech32PrefixConsAddr":"noisvalcons","bech32PrefixConsPub":"noisvalconspub"},"chainName":"nois","feeCurrencies":[{"coinDenom":"nois","coinMinimalDenom":"unois","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"nois","coinMinimalDenom":"unois","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pirin-1","currencies":[{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/7FBDBEEEBA9C50C4BCDF7BF438EAB99E64360833D240B32655C96E319559E911","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/AF5559D128329B6C753F15481BEC26E533B847A471074703FA4903E7E6F61BA1","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/6CDD4663F2F09CD62285E2D45891FC149A3568E316CE3EBBE201A71A78A69388","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"ibc/FCFF8B19C61677F3B78E2A5AE3B4A34A8D23858D16905F253B8438B3AFD07FF8","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"ibc/A7C4A3FB19E88ABE60416125F9189DA680800F4CDD14E3C10C874E022BEFF04C","coinDecimals":18},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/84E70F4A34FB2DE135FD3A04FDDF53B7DA4206080AA785C8BAB7F8B26299A221","coinDecimals":8},{"coinDenom":"akt","coinMinimalDenom":"ibc/ADC63C00000CA75F909D2BE3ACB5A9980BED3A73B92746E0FCE6C67414055459","coinDecimals":6},{"coinDenom":"axl","coinMinimalDenom":"ibc/1B03A71B8E6F6EF424411DC9326A8E0D25D096E4D2616425CFAF2AF06F0FE717","coinDecimals":6},{"coinDenom":"juno","coinMinimalDenom":"ibc/4F3E83AB35529435E4BFEA001F5D935E7250133347C4E1010A9C77149EF0394C","coinDecimals":6},{"coinDenom":"evmos","coinMinimalDenom":"ibc/A59A9C955F1AB8B76671B00C1A0482C64A6590352944BB5880E5122358F7E1CE","coinDecimals":18},{"coinDenom":"stk/atom","coinMinimalDenom":"ibc/DAAD372DB7DD45BBCFA4DDD40CA9793E9D265D1530083AB41A8A0C53C3EBE865","coinDecimals":6},{"coinDenom":"scrt","coinMinimalDenom":"ibc/EA00FFF0335B07B5CD1530B7EB3D2C710620AE5B168C71AFF7B50532D690E107","coinDecimals":6},{"coinDenom":"cro","coinMinimalDenom":"ibc/E1BCC0F7B932E654B1A930F72B76C0678D55095387E2A4D8F00E941A8F82EE48","coinDecimals":8},{"coinDenom":"stars","coinMinimalDenom":"ibc/11E3CF372E065ACB1A39C531A3C7E7E03F60B5D0653AD2139D31128ACD2772B5","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6},{"coinDenom":"strd","coinMinimalDenom":"ibc/04CA9067228BB51F1C39A506DA00DF07E1496D8308DD21E8EF66AD6169FA722B","coinDecimals":6},{"coinDenom":"cudos","coinMinimalDenom":"ibc/BB9810E7FE8836311126F15BE0B20E7463189751840F8C3FEF3AC8F87D8AB7C8","coinDecimals":18},{"coinDenom":"allBTC","coinMinimalDenom":"ibc/E45CFCB959F4F6D1065B7033EE49A88E606E6AD82E75725219B3D68B0FA89987","coinDecimals":8},{"coinDenom":"allSOL","coinMinimalDenom":"ibc/762E1E45658845A12E214A91C3C05FDFC5951D60404FAADA225A369A96DCD9A9","coinDecimals":9},{"coinDenom":"ntrn","coinMinimalDenom":"ibc/3D6BC6E049CAEB905AC97031A42800588C58FB471EBDC7A3530FFCD0C3DC9E09","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/6DF8CF5C976851D152E2C7270B0AB25C4F9D64C0A46513A68D6CBB2662A98DF4","coinDecimals":18},{"coinDenom":"dATOM","coinMinimalDenom":"ibc/EB08474FFC49B6BB2F03F7D9B08697138F4DA53347CA1AB718C8BCFBB58C1B2B","coinDecimals":6}],"rest":"lcd.nolus.network","rpc":"rpc.nolus.network","bech32Config":{"bech32PrefixAccAddr":"nolus","bech32PrefixAccPub":"noluspub","bech32PrefixValAddr":"nolusvaloper","bech32PrefixValPub":"nolusvaloperpub","bech32PrefixConsAddr":"nolusvalcons","bech32PrefixConsPub":"nolusvalconspub"},"chainName":"nolus","feeCurrencies":[{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.05}}],"stakeCurrency":{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nomic-stakenet-3","currencies":[{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},{"coinDenom":"nbtc","coinMinimalDenom":"usat","coinDecimals":14}],"rest":"https://app.nomic.io:8443","rpc":"https://stakenet-rpc.nomic.io:2096","bech32Config":{"bech32PrefixAccAddr":"nomic","bech32PrefixAccPub":"nomicpub","bech32PrefixValAddr":"nomicvaloper","bech32PrefixValPub":"nomicvaloperpub","bech32PrefixConsAddr":"nomicvalcons","bech32PrefixConsPub":"nomicvalconspub"},"chainName":"nomic","feeCurrencies":[{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},{"coinDenom":"nbtc","coinMinimalDenom":"usat","coinDecimals":14}],"stakeCurrency":{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nyx","currencies":[{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6},{"coinDenom":"nym","coinMinimalDenom":"unym","coinDecimals":6}],"rest":"https://nym-api.polkachu.com/","rpc":"https://rpc.nymtech.net/","bech32Config":{"bech32PrefixAccAddr":"n","bech32PrefixAccPub":"npub","bech32PrefixValAddr":"nvaloper","bech32PrefixValPub":"nvaloperpub","bech32PrefixConsAddr":"nvalcons","bech32PrefixConsPub":"nvalconspub"},"chainName":"nyx","feeCurrencies":[{"coinDenom":"nym","coinMinimalDenom":"unym","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}},{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"odin-mainnet-freya","currencies":[{"coinDenom":"odin","coinMinimalDenom":"loki","coinDecimals":6},{"coinDenom":"geo","coinMinimalDenom":"mGeo","coinDecimals":6},{"coinDenom":"doki","coinMinimalDenom":"udoki","coinDecimals":6},{"coinDenom":"myrk","coinMinimalDenom":"umyrk","coinDecimals":6},{"coinDenom":"O9W","coinMinimalDenom":"mO9W","coinDecimals":6}],"rest":"https://api.odinprotocol.io","rpc":"https://rpc.odinprotocol.io","bech32Config":{"bech32PrefixAccAddr":"odin","bech32PrefixAccPub":"odinpub","bech32PrefixValAddr":"odinvaloper","bech32PrefixValPub":"odinvaloperpub","bech32PrefixConsAddr":"odinvalcons","bech32PrefixConsPub":"odinvalconspub"},"chainName":"odin","feeCurrencies":[{"coinDenom":"odin","coinMinimalDenom":"loki","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.06}}],"stakeCurrency":{"coinDenom":"odin","coinMinimalDenom":"loki","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"omniflixhub-1","currencies":[{"coinDenom":"flix","coinMinimalDenom":"uflix","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/A8C2D23A1E6F95DA4E48BA349667E322BD7A6C996D8A4AAE8BA72E190F3D1477","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B","coinDecimals":6},{"coinDenom":"ist","coinMinimalDenom":"ibc/43D3010F4CA111744AC8B68E460BC95E565C32928A267FA2B30609C04C10B274","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/AC4C84DD7D3732CFA95A420247FAD5179BE4F42E5635E2BF0A62C67E2E2FA4A9","coinDecimals":6},{"coinDenom":"akt","coinMinimalDenom":"ibc/6901B45BC2C5418ED8B3C3C9F9A641A3DAF2D234230AFA9DF32D8F9F9434721C","coinDecimals":6},{"coinDenom":"baddog","coinMinimalDenom":"ibc/9F28238BDB687A86681B30764BA1437E079C3565D04FDD7862055A83F7E5C630","coinDecimals":6},{"coinDenom":"ygata","coinMinimalDenom":"factory/omniflix1fwphj5p6qd8gtkehkzfgac38eur4uqzgz97uwvf6hsc0vjl004gqfj0xnv/ygata","coinDecimals":6}],"rest":"https://api.omniflix.nodestake.top","rpc":"https://omniflix-rpc.kingnodes.com","bech32Config":{"bech32PrefixAccAddr":"omniflix","bech32PrefixAccPub":"omniflixpub","bech32PrefixValAddr":"omniflixvaloper","bech32PrefixValPub":"omniflixvaloperpub","bech32PrefixConsAddr":"omniflixvalcons","bech32PrefixConsPub":"omniflixvalconspub"},"chainName":"omniflixhub","feeCurrencies":[{"coinDenom":"flix","coinMinimalDenom":"uflix","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.0025,"high":0.025}}],"stakeCurrency":{"coinDenom":"flix","coinMinimalDenom":"uflix","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"onex-mainnet-1","currencies":[{"coinDenom":"onex","coinMinimalDenom":"aonex","coinDecimals":18}],"rest":"https://rest.mainnet.onex.onomy.io","rpc":"https://rpc.mainnet.onex.onomy.io","bech32Config":{"bech32PrefixAccAddr":"onomy","bech32PrefixAccPub":"onomypub","bech32PrefixValAddr":"onomyvaloper","bech32PrefixValPub":"onomyvaloperpub","bech32PrefixConsAddr":"onomyvalcons","bech32PrefixConsPub":"onomyvalconspub"},"chainName":"onex","feeCurrencies":[{"coinDenom":"onex","coinMinimalDenom":"aonex","coinDecimals":18}],"stakeCurrency":{"coinDenom":"onex","coinMinimalDenom":"aonex","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"onomy-mainnet-1","currencies":[{"coinDenom":"nom","coinMinimalDenom":"anom","coinDecimals":18}],"rest":"https://rest-mainnet.onomy.io","rpc":"https://rpc-mainnet.onomy.io","bech32Config":{"bech32PrefixAccAddr":"onomy","bech32PrefixAccPub":"onomypub","bech32PrefixValAddr":"onomyvaloper","bech32PrefixValPub":"onomyvaloperpub","bech32PrefixConsAddr":"onomyvalcons","bech32PrefixConsPub":"onomyvalconspub"},"chainName":"onomy","feeCurrencies":[{"coinDenom":"nom","coinMinimalDenom":"anom","coinDecimals":18}],"stakeCurrency":{"coinDenom":"nom","coinMinimalDenom":"anom","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"Oraichain","currencies":[{"coinDenom":"ORAI","coinMinimalDenom":"orai","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/A2E2EEC9057A4A1C2C0A6A4C78B0239118DF5F278830F50B4A6BDD7A66506B78","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/9C4DCD21B48231D0BC2AC3D1B74A864746B37E4292694C93C617324250D002FC","coinDecimals":6},{"coinDenom":"inj","coinMinimalDenom":"ibc/49D820DFDE9F885D7081725A58202ABA2F465CAEE4AFBC683DFB79A8E013E83E","coinDecimals":6},{"coinDenom":"inj","coinMinimalDenom":"cw20:orai19rtmkk6sn4tppvjmp5d5zj6gfsdykrl5rw2euu5gwur3luheuuusesqn49","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"cw20:orai12hzjxfh77wl572gdzct2fxv2arxcwh6gykc7qh","coinDecimals":6},{"coinDenom":"airi","coinMinimalDenom":"cw20:orai10ldgzued6zjp0mkqwsv2mux3ml50l97c74x8sg","coinDecimals":6},{"coinDenom":"oraix","coinMinimalDenom":"cw20:orai1lus0f0rhx8s03gdllx2n6vhkmf0536dv57wfge","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"cw20:orai15un8msx3n5zf9ahlxmfeqd2kwa5wm0nrpxer304m9nd5q6qq0g6sku5pdd","coinDecimals":6},{"coinDenom":"kwt","coinMinimalDenom":"cw20:orai1nd4r053e3kgedgld2ymen8l9yrw8xpjyaal7j5","coinDecimals":6},{"coinDenom":"milky","coinMinimalDenom":"cw20:orai1gzvndtzceqwfymu2kqhta2jn6gmzxvzqwdgvjw","coinDecimals":6},{"coinDenom":"scorai","coinMinimalDenom":"cw20:orai1065qe48g7aemju045aeyprflytemx7kecxkf5m7u5h5mphd0qlcs47pclp","coinDecimals":6},{"coinDenom":"wtrx","coinMinimalDenom":"cw20:orai1c7tpjenafvgjtgm9aqwm7afnke6c56hpdms8jc6md40xs3ugd0es5encn0","coinDecimals":6},{"coinDenom":"scatom","coinMinimalDenom":"cw20:orai19q4qak2g3cj2xc2y3060t0quzn3gfhzx08rjlrdd3vqxhjtat0cq668phq","coinDecimals":6},{"coinDenom":"xoch","coinMinimalDenom":"cw20:orai1lplapmgqnelqn253stz6kmvm3ulgdaytn89a8mz9y85xq8wd684s6xl3lt","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"cw20:orai1dqa52a7hxxuv8ghe7q5v0s36ra0cthea960q2cukznleqhk0wpnshfegez","coinDecimals":6},{"coinDenom":"btc","coinMinimalDenom":"cw20:orai10g6frpysmdgw5tdqke47als6f97aqmr8s3cljsvjce4n5enjftcqtamzsd","coinDecimals":6},{"coinDenom":"och","coinMinimalDenom":"cw20:orai1hn8w33cqvysun2aujk5sv33tku4pgcxhhnsxmvnkfvdxagcx0p8qa4l98q","coinDecimals":6},{"coinDenom":"ton","coinMinimalDenom":"factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/ton","coinDecimals":9},{"coinDenom":"pepe","coinMinimalDenom":"factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/extPEPE","coinDecimals":6},{"coinDenom":"hmstr","coinMinimalDenom":"factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/HMSTR","coinDecimals":9}],"rest":"http://lcd.orai.io","rpc":"https://rpc.orai.io","bech32Config":{"bech32PrefixAccAddr":"orai","bech32PrefixAccPub":"oraipub","bech32PrefixValAddr":"oraivaloper","bech32PrefixValPub":"oraivaloperpub","bech32PrefixConsAddr":"oraivalcons","bech32PrefixConsPub":"oraivalconspub"},"chainName":"oraichain","feeCurrencies":[{"coinDenom":"ORAI","coinMinimalDenom":"orai","coinDecimals":6,"gasPriceStep":{"low":0.003,"average":0.005,"high":0.007}}],"stakeCurrency":{"coinDenom":"ORAI","coinMinimalDenom":"orai","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"osmosis-1","currencies":[{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6},{"coinDenom":"ion","coinMinimalDenom":"uion","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5","coinDecimals":18},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F","coinDecimals":8},{"coinDenom":"usdt","coinMinimalDenom":"ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4","coinDecimals":6},{"coinDenom":"dai","coinMinimalDenom":"ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7","coinDecimals":18},{"coinDenom":"busd","coinMinimalDenom":"ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D","coinDecimals":18},{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6},{"coinDenom":"cro","coinMinimalDenom":"ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1","coinDecimals":8},{"coinDenom":"wbnb","coinMinimalDenom":"ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D","coinDecimals":18},{"coinDenom":"wmatic","coinMinimalDenom":"ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB","coinDecimals":18},{"coinDenom":"avax","coinMinimalDenom":"ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373","coinDecimals":18},{"coinDenom":"luna","coinMinimalDenom":"ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0","coinDecimals":6},{"coinDenom":"juno","coinMinimalDenom":"ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED","coinDecimals":6},{"coinDenom":"dot","coinMinimalDenom":"ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7","coinDecimals":10},{"coinDenom":"evmos","coinMinimalDenom":"ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A","coinDecimals":18},{"coinDenom":"kava","coinMinimalDenom":"ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205","coinDecimals":6},{"coinDenom":"scrt","coinMinimalDenom":"ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A","coinDecimals":6},{"coinDenom":"ust","coinMinimalDenom":"ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC","coinDecimals":6},{"coinDenom":"stars","coinMinimalDenom":"ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4","coinDecimals":6},{"coinDenom":"huahua","coinMinimalDenom":"ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228","coinDecimals":6},{"coinDenom":"xprt","coinMinimalDenom":"ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293","coinDecimals":6},{"coinDenom":"pstake","coinMinimalDenom":"ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961","coinDecimals":18},{"coinDenom":"akt","coinMinimalDenom":"ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4","coinDecimals":6},{"coinDenom":"regen","coinMinimalDenom":"ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076","coinDecimals":6},{"coinDenom":"dvpn","coinMinimalDenom":"ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84","coinDecimals":6},{"coinDenom":"iris","coinMinimalDenom":"ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0","coinDecimals":6},{"coinDenom":"iov","coinMinimalDenom":"ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC","coinDecimals":6},{"coinDenom":"ngm","coinMinimalDenom":"ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59","coinDecimals":6},{"coinDenom":"eur","coinMinimalDenom":"ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F","coinDecimals":6},{"coinDenom":"like","coinMinimalDenom":"ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525","coinDecimals":9},{"coinDenom":"ixo","coinMinimalDenom":"ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B","coinDecimals":6},{"coinDenom":"bcna","coinMinimalDenom":"ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5","coinDecimals":6},{"coinDenom":"btsg","coinMinimalDenom":"ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452","coinDecimals":6},{"coinDenom":"xki","coinMinimalDenom":"ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E","coinDecimals":6},{"coinDenom":"med","coinMinimalDenom":"ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB","coinDecimals":6},{"coinDenom":"ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4","coinMinimalDenom":"ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4","coinDecimals":0},{"coinDenom":"cmdx","coinMinimalDenom":"ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0","coinDecimals":6},{"coinDenom":"cheq","coinMinimalDenom":"ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA","coinDecimals":9},{"coinDenom":"lum","coinMinimalDenom":"ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2","coinDecimals":6},{"coinDenom":"vdl","coinMinimalDenom":"ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD","coinDecimals":6},{"coinDenom":"dsm","coinMinimalDenom":"ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C","coinDecimals":6},{"coinDenom":"dig","coinMinimalDenom":"ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D","coinDecimals":6},{"coinDenom":"somm","coinMinimalDenom":"ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E","coinDecimals":6},{"coinDenom":"band","coinMinimalDenom":"ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE","coinDecimals":6},{"coinDenom":"darc","coinMinimalDenom":"ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593","coinDecimals":6},{"coinDenom":"umee","coinMinimalDenom":"ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C","coinDecimals":6},{"coinDenom":"graviton","coinMinimalDenom":"ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44","coinDecimals":6},{"coinDenom":"dec","coinMinimalDenom":"ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84","coinDecimals":6},{"coinDenom":"marble","coinMinimalDenom":"ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6","coinDecimals":3},{"coinDenom":"dswth","coinMinimalDenom":"ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3","coinDecimals":8},{"coinDenom":"crbrus","coinMinimalDenom":"ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7","coinDecimals":6},{"coinDenom":"fet","coinMinimalDenom":"ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447","coinDecimals":18},{"coinDenom":"mntl","coinMinimalDenom":"ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC","coinDecimals":6},{"coinDenom":"neta","coinMinimalDenom":"ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A","coinDecimals":6},{"coinDenom":"INJ","coinMinimalDenom":"ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273","coinDecimals":18},{"coinDenom":"krt","coinMinimalDenom":"ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780","coinDecimals":6},{"coinDenom":"tick","coinMinimalDenom":"ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8","coinDecimals":6},{"coinDenom":"ROWAN","coinMinimalDenom":"ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB","coinDecimals":18},{"coinDenom":"ctk","coinMinimalDenom":"ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3","coinDecimals":6},{"coinDenom":"hope","coinMinimalDenom":"ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B","coinDecimals":6},{"coinDenom":"rac","coinMinimalDenom":"ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788","coinDecimals":6},{"coinDenom":"frax","coinMinimalDenom":"ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE","coinDecimals":18},{"coinDenom":"gwbtc","coinMinimalDenom":"ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796","coinDecimals":8},{"coinDenom":"gweth","coinMinimalDenom":"ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5","coinDecimals":18},{"coinDenom":"gusdc","coinMinimalDenom":"ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E","coinDecimals":6},{"coinDenom":"gdai","coinMinimalDenom":"ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5","coinDecimals":18},{"coinDenom":"gusdt","coinMinimalDenom":"ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805","coinDecimals":6},{"coinDenom":"block","coinMinimalDenom":"ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3","coinDecimals":6},{"coinDenom":"hash","coinMinimalDenom":"ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2","coinDecimals":9},{"coinDenom":"glx","coinMinimalDenom":"ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2","coinDecimals":6},{"coinDenom":"ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB","coinMinimalDenom":"ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB","coinDecimals":0},{"coinDenom":"raw","coinMinimalDenom":"ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC","coinDecimals":6},{"coinDenom":"meme","coinMinimalDenom":"ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA","coinDecimals":6},{"coinDenom":"asvt","coinMinimalDenom":"ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7","coinDecimals":6},{"coinDenom":"joe","coinMinimalDenom":"ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9","coinDecimals":6},{"coinDenom":"atolo","coinMinimalDenom":"ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219","coinDecimals":6},{"coinDenom":"HARD","coinMinimalDenom":"ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC","coinDecimals":6},{"coinDenom":"SWP","coinMinimalDenom":"ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5","coinDecimals":6},{"coinDenom":"link","coinMinimalDenom":"ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049","coinDecimals":18},{"coinDenom":"l1","coinMinimalDenom":"ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4","coinDecimals":18},{"coinDenom":"aave","coinMinimalDenom":"ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE","coinDecimals":18},{"coinDenom":"ape","coinMinimalDenom":"ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4","coinDecimals":18},{"coinDenom":"mkr","coinMinimalDenom":"ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3","coinDecimals":18},{"coinDenom":"rai","coinMinimalDenom":"ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E","coinDecimals":18},{"coinDenom":"shib","coinMinimalDenom":"ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2","coinDecimals":18},{"coinDenom":"kuji","coinMinimalDenom":"ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE","coinDecimals":6},{"coinDenom":"tgd","coinMinimalDenom":"ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C","coinDecimals":6},{"coinDenom":"echelon","coinMinimalDenom":"ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D","coinDecimals":18},{"coinDenom":"odin","coinMinimalDenom":"ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B","coinDecimals":6},{"coinDenom":"geo","coinMinimalDenom":"ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A","coinDecimals":6},{"coinDenom":"O9W","coinMinimalDenom":"ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D","coinDecimals":6},{"coinDenom":"lvn","coinMinimalDenom":"ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121","coinDecimals":6},{"coinDenom":"wglmr","coinMinimalDenom":"ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49","coinDecimals":18},{"coinDenom":"glto","coinMinimalDenom":"ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E","coinDecimals":6},{"coinDenom":"gkey","coinMinimalDenom":"ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8","coinDecimals":6},{"coinDenom":"cre","coinMinimalDenom":"ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580","coinDecimals":6},{"coinDenom":"lumen","coinMinimalDenom":"ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7","coinDecimals":6},{"coinDenom":"ORAI","coinMinimalDenom":"ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D","coinDecimals":6},{"coinDenom":"cudos","coinMinimalDenom":"ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B","coinDecimals":18},{"coinDenom":"USDX","coinMinimalDenom":"ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE","coinDecimals":6},{"coinDenom":"bld","coinMinimalDenom":"ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604","coinDecimals":6},{"coinDenom":"ist","coinMinimalDenom":"ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5","coinDecimals":6},{"coinDenom":"sejuno","coinMinimalDenom":"ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B","coinDecimals":6},{"coinDenom":"bjuno","coinMinimalDenom":"ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3","coinDecimals":6},{"coinDenom":"strd","coinMinimalDenom":"ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901","coinDecimals":6},{"coinDenom":"ststars","coinMinimalDenom":"ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A","coinDecimals":6},{"coinDenom":"solar","coinMinimalDenom":"ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C","coinDecimals":6},{"coinDenom":"seasy","coinMinimalDenom":"ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6","coinDecimals":6},{"coinDenom":"axl","coinMinimalDenom":"ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E","coinDecimals":6},{"coinDenom":"rebus","coinMinimalDenom":"ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9","coinDecimals":18},{"coinDenom":"tori","coinMinimalDenom":"ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC","coinDecimals":6},{"coinDenom":"stjuno","coinMinimalDenom":"ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC","coinDecimals":6},{"coinDenom":"muse","coinMinimalDenom":"ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F","coinDecimals":6},{"coinDenom":"lamb","coinMinimalDenom":"ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB","coinDecimals":18},{"coinDenom":"usk","coinMinimalDenom":"ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC","coinDecimals":6},{"coinDenom":"FUND","coinMinimalDenom":"ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC","coinDecimals":9},{"coinDenom":"jkl","coinMinimalDenom":"ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA","coinDecimals":6},{"coinDenom":"alter","coinMinimalDenom":"ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3","coinDecimals":6},{"coinDenom":"butt","coinMinimalDenom":"ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8","coinDecimals":6},{"coinDenom":"shd","coinMinimalDenom":"ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C","coinDecimals":8},{"coinDenom":"sienna","coinMinimalDenom":"ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213","coinDecimals":18},{"coinDenom":"stkd-scrt","coinMinimalDenom":"ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4","coinDecimals":6},{"coinDenom":"bze","coinMinimalDenom":"ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88","coinDecimals":6},{"coinDenom":"fury","coinMinimalDenom":"ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF","coinDecimals":6},{"coinDenom":"acre","coinMinimalDenom":"ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06","coinDecimals":18},{"coinDenom":"cmst","coinMinimalDenom":"ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E","coinDecimals":6},{"coinDenom":"imv","coinMinimalDenom":"ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4","coinDecimals":18},{"coinDenom":"medas","coinMinimalDenom":"ibc/FBBC35295AA037DC0A77796B08DC3003EC918E18E75D61D675A0EEAC0643F36C","coinDecimals":6},{"coinDenom":"phmn","coinMinimalDenom":"ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B","coinDecimals":6},{"coinDenom":"amber","coinMinimalDenom":"ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55","coinDecimals":6},{"coinDenom":"nom","coinMinimalDenom":"ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163","coinDecimals":18},{"coinDenom":"stkatom","coinMinimalDenom":"ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC","coinDecimals":6},{"coinDenom":"ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D","coinMinimalDenom":"ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D","coinDecimals":0},{"coinDenom":"hopers","coinMinimalDenom":"ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099","coinDecimals":6},{"coinDenom":"arusd","coinMinimalDenom":"ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F","coinDecimals":18},{"coinDenom":"planq","coinMinimalDenom":"ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF","coinDecimals":18},{"coinDenom":"ftm","coinMinimalDenom":"ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4","coinDecimals":18},{"coinDenom":"canto","coinMinimalDenom":"ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F","coinDecimals":18},{"coinDenom":"qstars","coinMinimalDenom":"ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83","coinDecimals":6},{"coinDenom":"wynd","coinMinimalDenom":"ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3","coinDecimals":6},{"coinDenom":"polygon-usdc","coinMinimalDenom":"ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A","coinDecimals":6},{"coinDenom":"avalanche-usdc","coinMinimalDenom":"ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C","coinDecimals":6},{"coinDenom":"MARS.old","coinMinimalDenom":"ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580","coinDecimals":6},{"coinDenom":"cnto","coinMinimalDenom":"ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5","coinDecimals":18},{"coinDenom":"stluna","coinMinimalDenom":"ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372","coinDecimals":6},{"coinDenom":"stevmos","coinMinimalDenom":"ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01","coinDecimals":18},{"coinDenom":"nride","coinMinimalDenom":"ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C","coinDecimals":6},{"coinDenom":"ebl","coinMinimalDenom":"ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F","coinDecimals":6},{"coinDenom":"qatom","coinMinimalDenom":"ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC","coinDecimals":6},{"coinDenom":"harbor","coinMinimalDenom":"ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A","coinDecimals":6},{"coinDenom":"qregen","coinMinimalDenom":"ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206","coinDecimals":6},{"coinDenom":"fox","coinMinimalDenom":"ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6","coinDecimals":6},{"coinDenom":"qck","coinMinimalDenom":"ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D","coinDecimals":6},{"coinDenom":"ARKH","coinMinimalDenom":"ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28","coinDecimals":6},{"coinDenom":"qosmo","coinMinimalDenom":"ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC","coinDecimals":6},{"coinDenom":"frienzies","coinMinimalDenom":"ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D","coinDecimals":6},{"coinDenom":"grdn","coinMinimalDenom":"ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA","coinDecimals":6},{"coinDenom":"mnpu","coinMinimalDenom":"ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E","coinDecimals":6},{"coinDenom":"shibac","coinMinimalDenom":"ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8","coinDecimals":6},{"coinDenom":"sikoba","coinMinimalDenom":"ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E","coinDecimals":6},{"coinDenom":"nct","coinMinimalDenom":"ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68","coinDecimals":6},{"coinDenom":"clst","coinMinimalDenom":"ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA","coinDecimals":6},{"coinDenom":"osdoge","coinMinimalDenom":"ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156","coinDecimals":6},{"coinDenom":"apemos","coinMinimalDenom":"ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D","coinDecimals":6},{"coinDenom":"invdrs","coinMinimalDenom":"ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54","coinDecimals":6},{"coinDenom":"doga","coinMinimalDenom":"ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250","coinDecimals":6},{"coinDenom":"catmos","coinMinimalDenom":"ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835","coinDecimals":6},{"coinDenom":"summit","coinMinimalDenom":"ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A","coinDecimals":6},{"coinDenom":"flix","coinMinimalDenom":"ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F","coinDecimals":6},{"coinDenom":"spacer","coinMinimalDenom":"ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C","coinDecimals":6},{"coinDenom":"light","coinMinimalDenom":"ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29","coinDecimals":9},{"coinDenom":"silk","coinMinimalDenom":"ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7","coinDecimals":6},{"coinDenom":"mile","coinMinimalDenom":"ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF","coinDecimals":6},{"coinDenom":"manna","coinMinimalDenom":"ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B","coinDecimals":6},{"coinDenom":"fil","coinMinimalDenom":"ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D","coinDecimals":18},{"coinDenom":"void","coinMinimalDenom":"ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960","coinDecimals":6},{"coinDenom":"shd","coinMinimalDenom":"ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A","coinDecimals":8},{"coinDenom":"bnt","coinMinimalDenom":"ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8","coinDecimals":6},{"coinDenom":"arb","coinMinimalDenom":"ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6","coinDecimals":18},{"coinDenom":"silica","coinMinimalDenom":"ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07","coinDecimals":6},{"coinDenom":"pepec","coinMinimalDenom":"ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93","coinDecimals":6},{"coinDenom":"pepe","coinMinimalDenom":"ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B","coinDecimals":18},{"coinDenom":"ibcx","coinMinimalDenom":"factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx","coinDecimals":6},{"coinDenom":"cbeth","coinMinimalDenom":"ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A","coinDecimals":18},{"coinDenom":"reth","coinMinimalDenom":"ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222","coinDecimals":18},{"coinDenom":"sfrxeth","coinMinimalDenom":"ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46","coinDecimals":18},{"coinDenom":"wsteth","coinMinimalDenom":"ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C","coinDecimals":18},{"coinDenom":"LORE","coinMinimalDenom":"ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3","coinDecimals":6},{"coinDenom":"roar","coinMinimalDenom":"ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0","coinDecimals":6},{"coinDenom":"stumee","coinMinimalDenom":"ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F","coinDecimals":6},{"coinDenom":"stibcx","coinMinimalDenom":"factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx","coinDecimals":6},{"coinDenom":"nls","coinMinimalDenom":"ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782","coinDecimals":6},{"coinDenom":"cub","coinMinimalDenom":"ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3","coinDecimals":6},{"coinDenom":"blue","coinMinimalDenom":"ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E","coinDecimals":6},{"coinDenom":"ntrn","coinMinimalDenom":"ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682","coinDecimals":6},{"coinDenom":"casa","coinMinimalDenom":"ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE","coinDecimals":6},{"coinDenom":"pica","coinMinimalDenom":"ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516","coinDecimals":12},{"coinDenom":"ksm","coinMinimalDenom":"ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C","coinDecimals":12},{"coinDenom":"dot","coinMinimalDenom":"ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244","coinDecimals":10},{"coinDenom":"qsr","coinMinimalDenom":"ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477","coinDecimals":6},{"coinDenom":"arch","coinMinimalDenom":"ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85","coinDecimals":18},{"coinDenom":"mpwr","coinMinimalDenom":"ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38","coinDecimals":6},{"coinDenom":"watr","coinMinimalDenom":"ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E","coinDecimals":6},{"coinDenom":"kyve","coinMinimalDenom":"ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB","coinDecimals":6},{"coinDenom":"ampOSMO","coinMinimalDenom":"factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO","coinDecimals":6},{"coinDenom":"sei","coinMinimalDenom":"ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D","coinDecimals":6},{"coinDenom":"qsomm","coinMinimalDenom":"ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208","coinDecimals":6},{"coinDenom":"pasg","coinMinimalDenom":"ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED","coinDecimals":6},{"coinDenom":"stsomm","coinMinimalDenom":"ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B","coinDecimals":6},{"coinDenom":"wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8","coinMinimalDenom":"ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA","coinDecimals":8},{"coinDenom":"wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5","coinMinimalDenom":"ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E","coinDecimals":5},{"coinDenom":"wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6","coinMinimalDenom":"ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C","coinDecimals":6},{"coinDenom":"wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8","coinMinimalDenom":"ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5","coinDecimals":8},{"coinDenom":"wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8","coinMinimalDenom":"ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE","coinDecimals":8},{"coinDenom":"mnta","coinMinimalDenom":"ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B","coinDecimals":6},{"coinDenom":"dgl","coinMinimalDenom":"ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9","coinDecimals":6},{"coinDenom":"wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6","coinMinimalDenom":"ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695","coinDecimals":6},{"coinDenom":"wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8","coinMinimalDenom":"ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC","coinDecimals":8},{"coinDenom":"usdc","coinMinimalDenom":"ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4","coinDecimals":6},{"coinDenom":"YieldETH","coinMinimalDenom":"ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668","coinDecimals":18},{"coinDenom":"xpla","coinMinimalDenom":"ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8","coinDecimals":18},{"coinDenom":"oin","coinMinimalDenom":"ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6","coinDecimals":6},{"coinDenom":"neok","coinMinimalDenom":"ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71","coinDecimals":18},{"coinDenom":"rio","coinMinimalDenom":"ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF","coinDecimals":18},{"coinDenom":"cdt","coinMinimalDenom":"factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt","coinDecimals":6},{"coinDenom":"mbrn","coinMinimalDenom":"factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn","coinDecimals":6},{"coinDenom":"sge","coinMinimalDenom":"ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA","coinDecimals":6},{"coinDenom":"fis","coinMinimalDenom":"ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862","coinDecimals":6},{"coinDenom":"ratom","coinMinimalDenom":"ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7","coinDecimals":6},{"coinDenom":"strdst","coinMinimalDenom":"ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B","coinDecimals":6},{"coinDenom":"DORA","coinMinimalDenom":"ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A","coinDecimals":18},{"coinDenom":"core","coinMinimalDenom":"ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C","coinDecimals":18},{"coinDenom":"WFX","coinMinimalDenom":"ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9","coinDecimals":18},{"coinDenom":"nbtc","coinMinimalDenom":"ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F","coinDecimals":14},{"coinDenom":"nois","coinMinimalDenom":"ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90","coinDecimals":6},{"coinDenom":"sqosmo","coinMinimalDenom":"factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo","coinDecimals":6},{"coinDenom":"nstk","coinMinimalDenom":"ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C","coinDecimals":6},{"coinDenom":"BRNCH","coinMinimalDenom":"ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02","coinDecimals":6},{"coinDenom":"wstETH","coinMinimalDenom":"ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5","coinDecimals":18},{"coinDenom":"sqatom","coinMinimalDenom":"factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom","coinDecimals":6},{"coinDenom":"sqbtc","coinMinimalDenom":"factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc","coinDecimals":6},{"coinDenom":"qwoyn","coinMinimalDenom":"ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D","coinDecimals":6},{"coinDenom":"ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20","coinMinimalDenom":"ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20","coinDecimals":0},{"coinDenom":"ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761","coinMinimalDenom":"ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761","coinDecimals":0},{"coinDenom":"volt","coinMinimalDenom":"ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA","coinDecimals":3},{"coinDenom":"ampere","coinMinimalDenom":"ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424","coinDecimals":3},{"coinDenom":"source","coinMinimalDenom":"ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7","coinDecimals":6},{"coinDenom":"wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6","coinMinimalDenom":"ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5","coinDecimals":6},{"coinDenom":"stkosmo","coinMinimalDenom":"ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E","coinDecimals":6},{"coinDenom":"lvn","coinMinimalDenom":"factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn","coinDecimals":6},{"coinDenom":"puppy","coinMinimalDenom":"ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963","coinDecimals":6},{"coinDenom":"newt","coinMinimalDenom":"ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD","coinDecimals":6},{"coinDenom":"milkTIA","coinMinimalDenom":"factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA","coinDecimals":6},{"coinDenom":"ASH","coinMinimalDenom":"ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC","coinDecimals":6},{"coinDenom":"RAC","coinMinimalDenom":"ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493","coinDecimals":6},{"coinDenom":"GUPPY","coinMinimalDenom":"ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D","coinDecimals":6},{"coinDenom":"ISLM","coinMinimalDenom":"ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA","coinDecimals":18},{"coinDenom":"autism","coinMinimalDenom":"ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D","coinDecimals":6},{"coinDenom":"page","coinMinimalDenom":"ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99","coinDecimals":8},{"coinDenom":"PURSE","coinMinimalDenom":"ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519","coinDecimals":18},{"coinDenom":"NINJA","coinMinimalDenom":"ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3","coinDecimals":6},{"coinDenom":"kleo","coinMinimalDenom":"ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF","coinDecimals":6},{"coinDenom":"nyx","coinMinimalDenom":"ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317","coinDecimals":6},{"coinDenom":"nym","coinMinimalDenom":"ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539","coinDecimals":6},{"coinDenom":"achihuahuawifhat","coinMinimalDenom":"ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7","coinDecimals":6},{"coinDenom":"circus","coinMinimalDenom":"ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C","coinDecimals":6},{"coinDenom":"jape","coinMinimalDenom":"ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE","coinDecimals":6},{"coinDenom":"WOOF","coinMinimalDenom":"ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53","coinDecimals":6},{"coinDenom":"sneaky","coinMinimalDenom":"ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F","coinDecimals":6},{"coinDenom":"wbtc","coinMinimalDenom":"factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc","coinDecimals":8},{"coinDenom":"bad","coinMinimalDenom":"ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23","coinDecimals":6},{"coinDenom":"sgnl","coinMinimalDenom":"ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO","coinDecimals":6},{"coinDenom":"sqtia","coinMinimalDenom":"factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia","coinDecimals":6},{"coinDenom":"apollo","coinMinimalDenom":"ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1","coinDecimals":6},{"coinDenom":"stDYDX","coinMinimalDenom":"ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C","coinDecimals":18},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9","coinDecimals":6},{"coinDenom":"stSAGA","coinMinimalDenom":"ibc/2CD9F8161C3FC332E78EF0C25F6E684D09379FB2F56EF9267E7EC139642EC57B","coinDecimals":6},{"coinDenom":"stINJ","coinMinimalDenom":"ibc/C04DFC9BCD893E57F2BEFE40F63EFD18D2768514DBD5F63ABD2FF7F48FC01D36","coinDecimals":18},{"coinDenom":"glto","coinMinimalDenom":"ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7","coinDecimals":6},{"coinDenom":"dym","coinMinimalDenom":"ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110","coinDecimals":18},{"coinDenom":"RAPTR","coinMinimalDenom":"factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR","coinDecimals":6},{"coinDenom":"astro.cw20","coinMinimalDenom":"ibc/C25A2303FE24B922DAFFDCE377AC5A42E5EF746806D32E2ED4B610DE85C203F7","coinDecimals":6},{"coinDenom":"BADKID","coinMinimalDenom":"factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID","coinDecimals":6},{"coinDenom":"wormhole/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3/6","coinMinimalDenom":"ibc/F08DE332018E8070CC4C68FE06E04E254F527556A614F5F8F9A68AF38D367E45","coinDecimals":6},{"coinDenom":"heart","coinMinimalDenom":"ibc/35CECC330D11DD00FACB555D07687631E0BC7D226260CC5F015F6D7980819533","coinDecimals":18},{"coinDenom":"berlin","coinMinimalDenom":"ibc/2BF9656CAB0384A31167DB9B0254F0FB1CB4346A229BD7E5CBDCBB911C3740F7","coinDecimals":18},{"coinDenom":"scr","coinMinimalDenom":"ibc/178248C262DE2E141EE6287EE7AB0854F05F25B0A3F40C4B912FA1C7E51F466E","coinDecimals":9},{"coinDenom":"c4e","coinMinimalDenom":"ibc/62118FB4D5FEDD5D2B18DC93648A745CD5E5B01D420E9B7A5FED5381CB13A7E8","coinDecimals":6},{"coinDenom":"bitmos","coinMinimalDenom":"ibc/7D389F0ABF1E4D45BE6D7BBE36A2C50EA0559C01E076B02F8E381E685EC1F942","coinDecimals":6},{"coinDenom":"srcx","coinMinimalDenom":"ibc/C97473CD237EBA2F94FDFA6ABA5EC0E22FA140655D73D2A2754F03A347BBA40B","coinDecimals":9},{"coinDenom":"rock","coinMinimalDenom":"ibc/0835781EF3F3ADD053874323AB660C75B50B18B16733CAB783CA6BBD78244EDF","coinDecimals":6},{"coinDenom":"wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5","coinMinimalDenom":"ibc/CDD1E59BD5034C1B2597DD199782204EB397DB93200AA2E99C0AF3A66B2915FA","coinDecimals":5},{"coinDenom":"aioz","coinMinimalDenom":"ibc/BB0AFE2AFBD6E883690DAE4B9168EAC2B306BCC9C9292DACBB4152BBB08DB25F","coinDecimals":18},{"coinDenom":"stDYM","coinMinimalDenom":"ibc/D53E785DC9C5C2CA50CADB1EFE4DE5D0C30418BE0E9C6F2AF9F092A247E8BC22","coinDecimals":18},{"coinDenom":"doki","coinMinimalDenom":"ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B","coinDecimals":6},{"coinDenom":"sail","coinMinimalDenom":"factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail","coinDecimals":6},{"coinDenom":"SHARK","coinMinimalDenom":"ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834","coinDecimals":6},{"coinDenom":"xrp","coinMinimalDenom":"ibc/63A7CA0B6838AD8CAD6B5103998FF9B9B6A6F06FBB9638BFF51E63E0142339F3","coinDecimals":6},{"coinDenom":"allXRP","coinMinimalDenom":"factory/osmo1qnglc04tmhg32uc4kxlxh55a5cmhj88cpa3rmtly484xqu82t79sfv94w0/alloyed/allXRP","coinDecimals":6},{"coinDenom":"SEIYAN","coinMinimalDenom":"ibc/86074B8DF625A75C25D52FA6112E3FD5446BA41FE418880C168CA99D10E22F05","coinDecimals":6},{"coinDenom":"nibi","coinMinimalDenom":"ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF","coinDecimals":6},{"coinDenom":"beast","coinMinimalDenom":"ibc/B84F8CC583A54DA8173711C0B66B22FDC1954FEB1CA8DBC66C89919DAFE02000","coinDecimals":6},{"coinDenom":"cvnt","coinMinimalDenom":"ibc/044B7B28AFE93CEC769CF529ADC626DA09EA0EFA3E0E3284D540E9E00E01E24A","coinDecimals":18},{"coinDenom":"toro","coinMinimalDenom":"factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro","coinDecimals":6},{"coinDenom":"sayve","coinMinimalDenom":"ibc/06EF575844982382F4D1BC3830D294557A30EDB3CD223153AFC8DFEF06349C56","coinDecimals":6},{"coinDenom":"LAB","coinMinimalDenom":"factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB","coinDecimals":6},{"coinDenom":"bOSMO","coinMinimalDenom":"factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/boneOsmo","coinDecimals":6},{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/46D8D1A6E2A80ECCB7CA6663086A2E749C508B68DA56A077CD26E6F4F9691EEE","coinDecimals":18},{"coinDenom":"tnkr","coinMinimalDenom":"ibc/3A0A392E610A8D477851ABFEA74F3D828F36C015AB8E93B0FBB7566A6D13C4D6","coinDecimals":12},{"coinDenom":"w","coinMinimalDenom":"ibc/AC6EE43E608B5A7EEE460C960480BC1C3708010E32B2071C429DA259836E10C3","coinDecimals":6},{"coinDenom":"dhp","coinMinimalDenom":"ibc/FD506CCA1FC574F2A8175FB574C981E9F6351E194AA48AC219BD67FF934E2F33","coinDecimals":6},{"coinDenom":"fury","coinMinimalDenom":"ibc/E4C60B9F95BF54CC085A5E39F6057ABD4DF92793D330EB884A36530F7E6804DE","coinDecimals":6},{"coinDenom":"saga","coinMinimalDenom":"ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2","coinDecimals":6},{"coinDenom":"ATOM1KLFG","coinMinimalDenom":"ibc/0E77E090EC04C476DE2BC0A7056580AC47660DAEB7B0D4701C085E3A046AC7B7","coinDecimals":6},{"coinDenom":"SHIDO","coinMinimalDenom":"ibc/62B50BB1DAEAD2A92D6C6ACAC118F4ED8CBE54265DCF5688E8D0A0A978AA46E7","coinDecimals":18},{"coinDenom":"cif","coinMinimalDenom":"ibc/EFC1776BEFB7842F2DC7BABD9A3050E188145C99007ECC5F3526FED45A68D5F5","coinDecimals":6},{"coinDenom":"hava","coinMinimalDenom":"ibc/884EBC228DFCE8F1304D917A712AA9611427A6C1ECC3179B2E91D7468FB091A2","coinDecimals":6},{"coinDenom":"IBC","coinMinimalDenom":"factory/osmo1kqdw6pvn0xww6tyfv2sqvkkencdz0qw406x54r/IBC","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/5EC896BED3EBCB2CB6F1C167582E4EFA3F6FA3385F28BA5EA92D4A489DA010C5","coinDecimals":18},{"coinDenom":"astro","coinMinimalDenom":"ibc/B8C608CEE08C4F30A15A7955306F2EDAF4A02BB191CABC4185C1A57FD978DA1B","coinDecimals":6},{"coinDenom":"xASTRO","coinMinimalDenom":"ibc/2ED09B03AA396BC2F35B741F4CA4A82D33A24A1007BFC1973299842DD626F564","coinDecimals":6},{"coinDenom":"gpaxg","coinMinimalDenom":"ibc/A5CCD24BA902843B1003A7EEE5F937C632808B9CF4925601241B15C5A0A51A53","coinDecimals":18},{"coinDenom":"rstk","coinMinimalDenom":"ibc/04FAC73DFF7F1DD59395948F2F043B0BBF978AD4533EE37E811340F501A08FFB","coinDecimals":6},{"coinDenom":"BERNESE","coinMinimalDenom":"factory/osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss/BERNESE","coinDecimals":6},{"coinDenom":"eth","coinMinimalDenom":"ibc/A23E590BA7E0D808706FB5085A449B3B9D6864AE4DDE7DAF936243CEBB2A3D43","coinDecimals":18},{"coinDenom":"dai","coinMinimalDenom":"ibc/37DFAFDA529FF7D513B0DB23E9728DF9BF73122D38D46824C78BB7F91E6A736B","coinDecimals":18},{"coinDenom":"fxs","coinMinimalDenom":"ibc/5435437A8C9416B650DDA49C338B63CCFC6465123B715F6BAA9B1B2071E27913","coinDecimals":18},{"coinDenom":"frax","coinMinimalDenom":"ibc/9A8CBC029002DC5170E715F93FBF35011FFC9796371F59B1F3C3094AE1B453A9","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/078AD6F581E8115CDFBD8FFA29D8C71AFE250CE952AFF80040CBC64868D44AD3","coinDecimals":6},{"coinDenom":"sfrax","coinMinimalDenom":"ibc/0EFA07F312E05258A56AE1DD600E39B9151CF7A91C8A94EEBCF4F03ECFE5DD98","coinDecimals":18},{"coinDenom":"frxeth","coinMinimalDenom":"ibc/688E70EF567E5D4BA1CF4C54BAD758C288BC1A6C8B0B12979F911A2AE95E27EC","coinDecimals":18},{"coinDenom":"sfrxeth","coinMinimalDenom":"ibc/F17CCB4F07948CC2D8B72952C2D0A84F2B763962F698774BB121B872AE4611B5","coinDecimals":18},{"coinDenom":"clay","coinMinimalDenom":"ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B","coinDecimals":6},{"coinDenom":"404dr","coinMinimalDenom":"ibc/B797E4F42CD33C50511B341E50C5CC0E8EF0D93B1E1247ABAA071583B8619202","coinDecimals":6},{"coinDenom":"wLIBRA","coinMinimalDenom":"factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA","coinDecimals":6},{"coinDenom":"nim","coinMinimalDenom":"ibc/279D69A6EF8E37456C8D2DC7A7C1C50F7A566EC4758F6DE17472A9FDE36C4426","coinDecimals":18},{"coinDenom":"seda","coinMinimalDenom":"ibc/956AEF1DA92F70584266E87978C3F30A43B91EE6ABC62F03D097E79F6B99C4D8","coinDecimals":18},{"coinDenom":"CAC","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/cac","coinDecimals":6},{"coinDenom":"WEIRD","coinMinimalDenom":"ibc/38ADC6FFDDDB7D70B72AD0322CEA8844CB18FAA0A23400DBA8A99D43E18B3748","coinDecimals":6},{"coinDenom":"PBB","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/pbb","coinDecimals":6},{"coinDenom":"bwh","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bwh","coinDecimals":6},{"coinDenom":"ibc/0D62E47FDEBBC199D4E1853C0708F0F9337AC62D95B719585C9700E466060995","coinMinimalDenom":"ibc/0D62E47FDEBBC199D4E1853C0708F0F9337AC62D95B719585C9700E466060995","coinDecimals":0},{"coinDenom":"SHITMOS","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos","coinDecimals":6},{"coinDenom":"qjuno","coinMinimalDenom":"ibc/B4E18E61E1505C2F371B621E49B09E983F6A138F251A7B5286A6BDF739FD0D54","coinDecimals":6},{"coinDenom":"qsaga","coinMinimalDenom":"ibc/F2D400F2728E9DA06EAE2AFAB289931A69EDDA5A661578C66A3177EDFE3C0D13","coinDecimals":6},{"coinDenom":"qdydx","coinMinimalDenom":"ibc/273C593E51ACE56F1F2BDB3E03A5CB81BB208B894BCAA642676A32C3454E8C27","coinDecimals":18},{"coinDenom":"qbld","coinMinimalDenom":"ibc/C1C106D915C8E8C59E5DC69BF30FEF64729A6F788060B184C86A315DBB762EF7","coinDecimals":6},{"coinDenom":"pepe","coinMinimalDenom":"ibc/5B5BFCC8A9F0D554A4245117F7798E85BE25B6C73DBFA2D6F369BD9DD6CACC6D","coinDecimals":18},{"coinDenom":"crv","coinMinimalDenom":"ibc/080CE38C1E49595F2199E88BE7281F93FAEEF3FE354EECED0640625E8311C9CF","coinDecimals":18},{"coinDenom":"ezeth","coinMinimalDenom":"ibc/39AAE0F5F918B731BEF1E02E9BAED33C242805F668B0A941AC509FB569FE51CB","coinDecimals":18},{"coinDenom":"usde","coinMinimalDenom":"ibc/BFFE212A23384C4EB055CF6F95A1F5EC1BE0F9BD286FAA66C3748F0444E67D63","coinDecimals":18},{"coinDenom":"ena","coinMinimalDenom":"ibc/257FF64F160106F6EE43CEE7C761DA64C1346221895373CC810FFA1BFAC5A7CD","coinDecimals":18},{"coinDenom":"eeth","coinMinimalDenom":"ibc/8D0FFEA4EDB04E3C1738C9599B66AE49683E0540FC4C1214AC84534C200D818B","coinDecimals":18},{"coinDenom":"pxeth","coinMinimalDenom":"ibc/D09BB89B2187EF13EF006B44510749B0F02FD0B34F8BB55C70D812A1FF6148C7","coinDecimals":18},{"coinDenom":"crvusd","coinMinimalDenom":"ibc/63551E7BB24008F0AFC1CB051A423A5104F781F035F8B1A191264B7086A0A0F6","coinDecimals":18},{"coinDenom":"WIHA","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/wiha","coinDecimals":6},{"coinDenom":"CRAZYHORSE","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/crazyhorse","coinDecimals":6},{"coinDenom":"COCA","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/coca","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/0233A3F2541FD43DBCA569B27AF886E97F5C03FC0305E4A8A3FAC6AC26249C7A","coinDecimals":6},{"coinDenom":"edgesol","coinMinimalDenom":"ibc/B83F9E20B4A07FA8846880000BD9D8985D89567A090F5E9390C64E81C39B4607","coinDecimals":9},{"coinDenom":"lst","coinMinimalDenom":"ibc/F618D130A2B8203D169811658BD0361F18DC2453085965FA0E5AEB8018DD54EE","coinDecimals":9},{"coinDenom":"jitosol","coinMinimalDenom":"ibc/9A83BDF4C8C5FFDDE735533BC8CD4363714A6474AED1C2C492FB003BB77C7982","coinDecimals":9},{"coinDenom":"wsol","coinMinimalDenom":"ibc/0F9E9277B61A78CB31014D541ACA5BF6AB06DFC4524C4C836490B131DAAECD78","coinDecimals":9},{"coinDenom":"allUSDT","coinMinimalDenom":"factory/osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek/alloyed/allUSDT","coinDecimals":6},{"coinDenom":"whine","coinMinimalDenom":"ibc/A8C568580D613F16F7E9075EA9FAD69FEBE0CC1F4AF46C60255FEC4459C166F1","coinDecimals":6},{"coinDenom":"BAG","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bag","coinDecimals":6},{"coinDenom":"allBTC","coinMinimalDenom":"factory/osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3/alloyed/allBTC","coinDecimals":8},{"coinDenom":"n43","coinMinimalDenom":"ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58","coinDecimals":6},{"coinDenom":"rakoff","coinMinimalDenom":"ibc/46579C587A0B8CF8B0A1FF6B0EFA2082F11876578E47FC81A9CAAD31F424AF98","coinDecimals":6},{"coinDenom":"arbitrum-weth","coinMinimalDenom":"ibc/64E62451C9A5682FF3047429C6E4714A02CDC0C35DE35CAB01E18D1188004CEB","coinDecimals":18},{"coinDenom":"base-weth","coinMinimalDenom":"ibc/D7D6DEF2A4F7ED0A6F5F0E266C1B2C9726E82F67EBBE49BBB47B3DEC289F8D7B","coinDecimals":18},{"coinDenom":"polygon-weth","coinMinimalDenom":"ibc/F9EB60AC212DBF05F4C5ED0FDE03BB9F08309B0EE9899A406AD4B904CF84968E","coinDecimals":18},{"coinDenom":"stISLM","coinMinimalDenom":"ibc/245C3CA604AAB4BB9EEA5E86F23F52D59253D8722C8FC9C4E3E69F77C5CD3D2F","coinDecimals":18},{"coinDenom":"mand","coinMinimalDenom":"ibc/739D70CB432FE1C6D94AF306B68C14F4CFB0B9EDD1238D3A8718B1B0E84E8547","coinDecimals":18},{"coinDenom":"neutaro","coinMinimalDenom":"ibc/DAED51CBD967A3BE0C467687970AFD97B202AFE4A1718B36936F49178AFE0133","coinDecimals":6},{"coinDenom":"wormhole/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP/6","coinMinimalDenom":"ibc/E0D6A7FFAE26FA90C8F1AA3461A5A21E74DB154F183EAE56C96769F48F81FCA2","coinDecimals":6},{"coinDenom":"usdy","coinMinimalDenom":"ibc/23104D411A6EB6031FA92FB75F227422B84989969E91DCAD56A535DD7FF0A373","coinDecimals":18},{"coinDenom":"TURD","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/turd","coinDecimals":6},{"coinDenom":"fct","coinMinimalDenom":"ibc/E43ABCC7E80E99E4E6E1226AE5695DDE0F83CB5C257CD04D47C36B8B90C1C839","coinDecimals":6},{"coinDenom":"allETH","coinMinimalDenom":"factory/osmo1k6c8jln7ejuqwtqmay3yvzrg3kueaczl96pk067ldg8u835w0yhsw27twm/alloyed/allETH","coinDecimals":18},{"coinDenom":"allSOL","coinMinimalDenom":"factory/osmo1n3n75av8awcnw4jl62n3l48e6e4sxqmaf97w5ua6ddu4s475q5qq9udvx4/alloyed/allSOL","coinDecimals":9},{"coinDenom":"lava","coinMinimalDenom":"ibc/1AEF145C549D4F9847C79E49710B198C294C7F4A107F4610DEE8E725FFC4B378","coinDecimals":6},{"coinDenom":"penumbra","coinMinimalDenom":"ibc/0FA9232B262B89E77D1335D54FB1E1F506A92A7E4B51524B400DC69C68D28372","coinDecimals":6},{"coinDenom":"trx","coinMinimalDenom":"factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/TRX.rt","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/USDT.rt","coinDecimals":6},{"coinDenom":"COSMO","coinMinimalDenom":"ibc/4925733868E7999F5822C961ADE9470A7FC5FA4A560BAE1DE102783C3F64C201","coinDecimals":6},{"coinDenom":"stBAND","coinMinimalDenom":"ibc/603140E681973C7A3A33B06B1D377AAD0F6AC376119735CECC04C9184A1AB080","coinDecimals":6},{"coinDenom":"COOK","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/COOK","coinDecimals":6},{"coinDenom":"trx","coinMinimalDenom":"factory/osmo14mafhhp337yjj2aujplawz0tks6jd2lel4hkwz4agyzhvvztzaqsqzjq8x/alloyed/allTRX","coinDecimals":6},{"coinDenom":"ROUTE","coinMinimalDenom":"ibc/3F8F00094F0F79D17750FF69C5F09B078084018570AAF4F1C92C86D3F73E6488","coinDecimals":18},{"coinDenom":"op","coinMinimalDenom":"factory/osmo1nufyzqlm8qhu2w7lm0l4rrax0ec8rsk69mga4tel8eare7c7ljaqpk2lyg/alloyed/allOP","coinDecimals":12},{"coinDenom":"op","coinMinimalDenom":"ibc/14A291DD362798D6805B7ABCB8D09AEEE02176108F89FA09AA43EA2EE096A2A9","coinDecimals":18},{"coinDenom":"shib","coinMinimalDenom":"factory/osmo1f588gk9dazpsueevdl2w6wfkmfmhg5gdvg2uerdlzl0atkasqhsq59qc6a/alloyed/allSHIB","coinDecimals":12},{"coinDenom":"arb","coinMinimalDenom":"factory/osmo1p7x454ex08s4f9ztmm7wfv7lvtgdkfztj2u7v7fezfcauy85q35qmqrdpk/alloyed/allARB","coinDecimals":12},{"coinDenom":"link","coinMinimalDenom":"factory/osmo18zdw5yvs6gfp95rp74qqwug9yduw2fyr8kplk2xgs726s9axc5usa2vpgw/alloyed/allLINK","coinDecimals":12},{"coinDenom":"pepe","coinMinimalDenom":"factory/osmo1nnlxegt0scm9qkzys9c874t0ntapv4epfjy2w49c0xdrp3dr0v4ssmelzx/alloyed/allPEPE","coinDecimals":12},{"coinDenom":"dot","coinMinimalDenom":"factory/osmo1r53fx9fvcdzncrs7zkn4gw5vfelx5gk8k5wc6wqha2jpkh992rusr5tk02/alloyed/allDOT","coinDecimals":10},{"coinDenom":"unicorn","coinMinimalDenom":"ibc/C91210281CEB708DC6E41A47FC9EC298F45712273DD58C682BEBAD00DCB59DC2","coinDecimals":6},{"coinDenom":"DEEN","coinMinimalDenom":"ibc/108604FDBE97DAEF128FD4ECFEB2A8AFC2D04A7162C97EAA2FD5BCB0869D0BBC","coinDecimals":6},{"coinDenom":"CosmoUSD","coinMinimalDenom":"factory/osmo104jtrwcljnxfljhml8mxrw7qetcsdmqvy3sprw/ucosmousd","coinDecimals":6},{"coinDenom":"XTRUMP","coinMinimalDenom":"factory/osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl/XTRUMP","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/2AD3C64D19ADFBB522CD738B58F421102143F827C1CAFF574A8BF0B81017D53D","coinDecimals":6},{"coinDenom":"fBAD","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBAD","coinDecimals":9},{"coinDenom":"fMAD","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fMAD","coinDecimals":9},{"coinDenom":"fSLOTH","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fSLOTH","coinDecimals":9},{"coinDenom":"fNUT","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fNUT","coinDecimals":9},{"coinDenom":"MARS","coinMinimalDenom":"ibc/B67DF59507B3755EEDE0866C449445BD54B4DA82CCEBA89D775E53DC35664255","coinDecimals":6},{"coinDenom":"ton","coinMinimalDenom":"ibc/905889A7F0B94F1CE1506D9BADF13AE9141E4CBDBCD565E1DFC7AE418B3E3E98","coinDecimals":9},{"coinDenom":"ton","coinMinimalDenom":"factory/osmo12lnwf54yd30p6amzaged2atln8k0l32n7ncxf04ctg7u7ymnsy7qkqgsw4/alloyed/allTON","coinDecimals":9},{"coinDenom":"display_stBTC","coinMinimalDenom":"ibc/453B5B25834A5D4B8FE1E894E69D73F46424F28E8ED3D8E8CA654AEFF1EC5D3B","coinDecimals":18},{"coinDenom":"BVT0","coinMinimalDenom":"factory/osmo1xu0gk9aggv79597xwazyfzaggv2pze9z7cq3p9p72tkkux9a7xaqufa792/BVT","coinDecimals":18},{"coinDenom":"BVT1","coinMinimalDenom":"factory/osmo16nxtnrnl7lctvnhhpcxqmmpv63n93zgg0ukaveyc0jl4dtad79cs53c3an/BVT","coinDecimals":18},{"coinDenom":"AVAIL","coinMinimalDenom":"factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/AVAIL.rt","coinDecimals":18},{"coinDenom":"eure","coinMinimalDenom":"ibc/92AE2F53284505223A1BB80D132F859A00E190C6A738772F0B3EF65E20BA484F","coinDecimals":6},{"coinDenom":"andr","coinMinimalDenom":"ibc/631DB9935E8523BDCF76B55129F5238A14C809CCB3B43AECC157DC19702F3F9E","coinDecimals":6},{"coinDenom":"ckBTC","coinMinimalDenom":"factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-icrc-ckBTC","coinDecimals":8},{"coinDenom":"fWIZ","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWIZ","coinDecimals":9},{"coinDenom":"fWITCH","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWITCH","coinDecimals":9},{"coinDenom":"fCRYPTONIUM","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fCRYPTONIUM","coinDecimals":9},{"coinDenom":"fATLAS","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fATLAS","coinDecimals":9},{"coinDenom":"fGECK","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fGECK","coinDecimals":9},{"coinDenom":"fBULLS","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBULLS","coinDecimals":9},{"coinDenom":"SIN","coinMinimalDenom":"ibc/2BF7FB3908B469FA9672767DC74AF8A18E2F47F8B623B0685DE290B828FCBD23","coinDecimals":6},{"coinDenom":"KIMA","coinMinimalDenom":"ibc/629B5691DE993DCD07AA1B0587AD52A7FA4E8F28B77DE15BCBDF936CA6F76E6C","coinDecimals":6},{"coinDenom":"stos","coinMinimalDenom":"ibc/ABD49F44559CB3E557CC458459CB6A67CEBD66E23C7674A0B2B445230BDA1F6C","coinDecimals":18},{"coinDenom":"uni","coinMinimalDenom":"ibc/AE2719773D6FCDD05AC17B1ED63F672F5F9D84144A61965F348C86C2A83AD161","coinDecimals":18},{"coinDenom":"allUNI","coinMinimalDenom":"factory/osmo1eqjda4pc6e09jtxzxggf6jl3jye2yn453ja58we5gxwzmf5ah28qvlnaz8/alloyed/allUNI","coinDecimals":12},{"coinDenom":"lp:8:osmo","coinMinimalDenom":"ibc/54B2D9DC9602A1CE2A0329D51C6A1C7C4ADE71477186AEAAA549318C4513A453","coinDecimals":6},{"coinDenom":"int3","coinMinimalDenom":"ibc/7D29C888219883C47C623578ACACFC89CC29AA70FBF09C895A1EED911BF90F32","coinDecimals":6},{"coinDenom":"doge","coinMinimalDenom":"ibc/B3DFDC2958A2BE482532DA3B6B5729B469BE7475598F7487D98B1B3E085245DE","coinDecimals":8},{"coinDenom":"btc","coinMinimalDenom":"ibc/2F4258D6E1E01B203D6CA83F2C7E4959615053A21EC2C2FC196F7911CAC832EF","coinDecimals":8},{"coinDenom":"bch","coinMinimalDenom":"ibc/869E01805EBBDDCAEA588666CD5149728B7DC7D69F30D92F77AD67F77CEB3FDA","coinDecimals":8},{"coinDenom":"ltc","coinMinimalDenom":"ibc/905326586AE1C86AC8B1CDB20BE957DE5FB23963EDD2C9ADD3E835CC22115A46","coinDecimals":8},{"coinDenom":"usdt","coinMinimalDenom":"ibc/57B63A0795B6BC0AC4EFD0D4DEE9FE71FCC1D0FFA87F6280C9CDEF4F6727A173","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/EEA21E12A250B7FBBCBBBD1F7AA78984F5C12D684B32EBEEFC585FF596A7BCDA","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/2F6003A92088B989A159C593C551DF7B04FA0A0419CA3ED087E45E0006ECFF6E","coinDecimals":6},{"coinDenom":"cbbtc","coinMinimalDenom":"ibc/616C2EA69BC328F245CE449785CB0B526B462C48F19DCF9B3D30699579B4308A","coinDecimals":8},{"coinDenom":"fbtc","coinMinimalDenom":"ibc/22C342A34DD0189AC2B2697EE76C360A9FBA53748ABA76E12C3A9E9F5F1E130F","coinDecimals":8},{"coinDenom":"lbtc","coinMinimalDenom":"ibc/4AC81C97BBB5482536F6401328E0E10BCCD98F0F471DCF64319A811E25E53CAB","coinDecimals":8},{"coinDenom":"rbtc","coinMinimalDenom":"factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/BTC.rt","coinDecimals":18},{"coinDenom":"allDOGE","coinMinimalDenom":"factory/osmo10pk4crey8fpdyqd62rsau0y02e3rk055w5u005ah6ly7k849k5tsf72x40/alloyed/allDOGE","coinDecimals":8},{"coinDenom":"allLTC","coinMinimalDenom":"factory/osmo1csp8fk353hnq2tmulklecxpex43qmjvrkxjcsh4c3eqcw2vjcslq5jls9v/alloyed/allLTC","coinDecimals":8},{"coinDenom":"allBCH","coinMinimalDenom":"factory/osmo1cranx3twqxfrgeqvgsu262gy54vafpc9xap6scye99v244zl970s7kw2sz/alloyed/allBCH","coinDecimals":8},{"coinDenom":"om","coinMinimalDenom":"ibc/164807F6226F91990F358C6467EEE8B162E437BDCD3DADEC3F0CE20693720795","coinDecimals":6},{"coinDenom":"atone","coinMinimalDenom":"ibc/715283E4A955EB803AB1DD30B488587A4D63BF0B51BADA537053DEE479BA10D6","coinDecimals":6},{"coinDenom":"Spice","coinMinimalDenom":"factory/osmo1n6asrjy9754q8y9jsxqf557zmsv3s3xa5m9eg5/uspice","coinDecimals":6},{"coinDenom":"yum","coinMinimalDenom":"ibc/21D8071EF5B02A86D945430D859A594CBF28287D38104A264BB9FD3B22BBF5DE","coinDecimals":18},{"coinDenom":"ygata","coinMinimalDenom":"ibc/50F886EFA15E1FF3D9226B177083A1EFF944176181C70B6131D74FE5AFB1F2C0","coinDecimals":6},{"coinDenom":"DGN","coinMinimalDenom":"ibc/3B95D63B520C283BCA86F8CD426D57584039463FD684A5CBA31D2780B86A1995","coinDecimals":6},{"coinDenom":"SYNT","coinMinimalDenom":"ibc/1B454982D3746951510D3845145B83628D4ED380D95722C8077776C4689F973A","coinDecimals":6},{"coinDenom":"BOMU","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bomu","coinDecimals":6},{"coinDenom":"dATOM","coinMinimalDenom":"ibc/C1B4D4804EB8F95FFB75E6395A301F0AD6D7DDE5C3A45571B70E46A368DD353E","coinDecimals":6},{"coinDenom":"KIMA","coinMinimalDenom":"ibc/A6712952E566B8A9F29D0A533F043C3CE3CF9870B01A2180E390133119C14A71","coinDecimals":6},{"coinDenom":"fury","coinMinimalDenom":"ibc/42D0FBF9DDC72D7359D309A93A6DF9F6FDEE3987EA1C5B3CDE95C06FCE183F12","coinDecimals":6},{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07","coinDecimals":18},{"coinDenom":"dhp","coinMinimalDenom":"ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9","coinDecimals":6},{"coinDenom":"avalanche-usdc","coinMinimalDenom":"ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43","coinDecimals":6},{"coinDenom":"nom","coinMinimalDenom":"ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C","coinDecimals":6},{"coinDenom":"ymos","coinMinimalDenom":"factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos","coinDecimals":6},{"coinDenom":"factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz","coinMinimalDenom":"factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz","coinDecimals":0},{"coinDenom":"ashLAB","coinMinimalDenom":"factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash","coinDecimals":6},{"coinDenom":"grac","coinMinimalDenom":"ibc/58E4261D2E21FE3A459C290A9F97F3DCD257B28F48AAE828298B38E048804829","coinDecimals":6},{"coinDenom":"earnUSDC","coinMinimalDenom":"factory/osmo1vf6e300hv2qe7r5rln8deft45ewgyytjnwfrdfcv5rgzrfy0s6cswjqf9r/mars-usdc-looped","coinDecimals":6},{"coinDenom":"earnCDT","coinMinimalDenom":"factory/osmo1jw6r68y0uhfmqagc7uhtdddctc7wq95pncvrqnvtd47w4hx46p7se9nju5/earn-cdt","coinDecimals":6},{"coinDenom":"Sherpa","coinMinimalDenom":"factory/osmo1n6asrjy9754q8y9jsxqf557zmsv3s3xa5m9eg5/usherpa","coinDecimals":6},{"coinDenom":"allFIL","coinMinimalDenom":"factory/osmo1ss0n3ghv5rr4z4y54fnkprc69tegmdm3ejlkgr2z4utnyg7eljgs9pztvs/alloyed/allFIL","coinDecimals":12}],"rest":"https://lcd.osmosis.zone/","rpc":"https://rpc.osmosis.zone/","bech32Config":{"bech32PrefixAccAddr":"osmo","bech32PrefixAccPub":"osmopub","bech32PrefixValAddr":"osmovaloper","bech32PrefixValPub":"osmovaloperpub","bech32PrefixConsAddr":"osmovalcons","bech32PrefixConsPub":"osmovalconspub"},"chainName":"osmosis","feeCurrencies":[{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"panacea-3","currencies":[{"coinDenom":"med","coinMinimalDenom":"umed","coinDecimals":6}],"rest":"https://api.gopanacea.org","rpc":"https://rpc.gopanacea.org","bech32Config":{"bech32PrefixAccAddr":"panacea","bech32PrefixAccPub":"panaceapub","bech32PrefixValAddr":"panaceavaloper","bech32PrefixValPub":"panaceavaloperpub","bech32PrefixConsAddr":"panaceavalcons","bech32PrefixConsPub":"panaceavalconspub"},"chainName":"panacea","feeCurrencies":[{"coinDenom":"med","coinMinimalDenom":"umed","coinDecimals":6,"gasPriceStep":{"low":5,"average":7,"high":9}}],"stakeCurrency":{"coinDenom":"med","coinMinimalDenom":"umed","coinDecimals":6},"bip44":{"coinType":371}},{"chainId":"passage-2","currencies":[{"coinDenom":"pasg","coinMinimalDenom":"upasg","coinDecimals":6}],"rest":"https://api.passage.vitwit.com","rpc":"https://rpc.passage.vitwit.com","bech32Config":{"bech32PrefixAccAddr":"pasg","bech32PrefixAccPub":"pasgpub","bech32PrefixValAddr":"pasgvaloper","bech32PrefixValPub":"pasgvaloperpub","bech32PrefixConsAddr":"pasgvalcons","bech32PrefixConsPub":"pasgvalconspub"},"chainName":"passage","feeCurrencies":[{"coinDenom":"pasg","coinMinimalDenom":"upasg","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.0025,"high":0.01}}],"stakeCurrency":{"coinDenom":"pasg","coinMinimalDenom":"upasg","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"core-1","currencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},{"coinDenom":"stkatom","coinMinimalDenom":"stk/uatom","coinDecimals":6},{"coinDenom":"pstake","coinMinimalDenom":"ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444","coinDecimals":18},{"coinDenom":"atom","coinMinimalDenom":"ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E","coinDecimals":18},{"coinDenom":"stkosmo","coinMinimalDenom":"stk/uosmo","coinDecimals":6},{"coinDenom":"stkdydx","coinMinimalDenom":"stk/adydx","coinDecimals":18},{"coinDenom":"stkstars","coinMinimalDenom":"stk/ustars","coinDecimals":6},{"coinDenom":"stars","coinMinimalDenom":"ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B","coinDecimals":6},{"coinDenom":"shd","coinMinimalDenom":"ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B","coinDecimals":8},{"coinDenom":"stkhuahua","coinMinimalDenom":"stk/uhuahua","coinDecimals":6},{"coinDenom":"huahua","coinMinimalDenom":"ibc/B597D779FCDD9021263C98A48F1AFA9D2BCCCE980F397CDE5681CCEDE7DEE1A4","coinDecimals":6},{"coinDenom":"stkxprt","coinMinimalDenom":"stk/uxprt","coinDecimals":6},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/CCA9F9B22D39884C09975D45E1869B73A12B87080EE53CB44905CE2C422CA228","coinDecimals":8}],"rest":"https://rest.core.persistence.one","rpc":"https://rpc.core.persistence.one","bech32Config":{"bech32PrefixAccAddr":"persistence","bech32PrefixAccPub":"persistencepub","bech32PrefixValAddr":"persistencevaloper","bech32PrefixValPub":"persistencevaloperpub","bech32PrefixConsAddr":"persistencevalcons","bech32PrefixConsPub":"persistencevalconspub"},"chainName":"persistence","feeCurrencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6}],"stakeCurrency":{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"planq_7070-2","currencies":[{"coinDenom":"planq","coinMinimalDenom":"aplanq","coinDecimals":18},{"coinDenom":"srcx","coinMinimalDenom":"erc20/0x091F9A57A3F58d758b6572E9d41675918EAC7F09","coinDecimals":9},{"coinDenom":"meme","coinMinimalDenom":"ibc/747FF58D3F211497581252CEBE11D7E785FC1E53AC5C29497A361E3830F1AF4A","coinDecimals":6}],"rest":"https://rest.planq.network","rpc":"https://rpc.planq.network","bech32Config":{"bech32PrefixAccAddr":"plq","bech32PrefixAccPub":"plqpub","bech32PrefixValAddr":"plqvaloper","bech32PrefixValPub":"plqvaloperpub","bech32PrefixConsAddr":"plqvalcons","bech32PrefixConsPub":"plqvalconspub"},"chainName":"planq","feeCurrencies":[{"coinDenom":"planq","coinMinimalDenom":"aplanq","coinDecimals":18,"gasPriceStep":{"low":30000000000,"average":35000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"planq","coinMinimalDenom":"aplanq","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"point_10687-1","currencies":[{"coinDenom":"point","coinMinimalDenom":"apoint","coinDecimals":18}],"rest":"https://rpc-mainnet-1.point.space:1317","rpc":"https://rpc-mainnet-1.point.space:26657","bech32Config":{"bech32PrefixAccAddr":"point","bech32PrefixAccPub":"pointpub","bech32PrefixValAddr":"pointvaloper","bech32PrefixValPub":"pointvaloperpub","bech32PrefixConsAddr":"pointvalcons","bech32PrefixConsPub":"pointvalconspub"},"chainName":"point","feeCurrencies":[{"coinDenom":"point","coinMinimalDenom":"apoint","coinDecimals":18,"gasPriceStep":{"low":5000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"point","coinMinimalDenom":"apoint","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"pio-mainnet-1","currencies":[{"coinDenom":"hash","coinMinimalDenom":"nhash","coinDecimals":9}],"rest":"https://api-provenance.takeshi.team","rpc":"https://rpc-provenance.takeshi.team/","bech32Config":{"bech32PrefixAccAddr":"pb","bech32PrefixAccPub":"pbpub","bech32PrefixValAddr":"pbvaloper","bech32PrefixValPub":"pbvaloperpub","bech32PrefixConsAddr":"pbvalcons","bech32PrefixConsPub":"pbvalconspub"},"chainName":"provenance","feeCurrencies":[{"coinDenom":"hash","coinMinimalDenom":"nhash","coinDecimals":9,"gasPriceStep":{"low":1905,"average":2100,"high":2500}}],"stakeCurrency":{"coinDenom":"hash","coinMinimalDenom":"nhash","coinDecimals":9},"bip44":{"coinType":505}},{"chainId":"pryzm-1","currencies":[{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6},{"coinDenom":"auuu","coinMinimalDenom":"factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6},{"coinDenom":"INJ","coinMinimalDenom":"ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255","coinDecimals":18},{"coinDenom":"osmo","coinMinimalDenom":"ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/BF28D9C17E0306B194D50F51C3B2590BEAD15E04E03ADD34C3A26E62D85C9676","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/B8AF5D92165F35AB31F3FC7C7B444B9D240760FA5D406C49D24862BD0284E395","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/B9E4FD154C92D3A23BEA029906C4C5FF2FE74CB7E3A058290B77197A263CF88B","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/F8CA5236869F819BC006EEF088E67889A26E4140339757878F0F4E229CDDA858","coinDecimals":18},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/FA78980867B7E87F382CDA00275C55DDC248CABC7DEE27AC6868CCF97DD5E02F","coinDecimals":6},{"coinDenom":"stDYDX","coinMinimalDenom":"ibc/120DC39B61CC121E91525C1D51624E41BBE74C537D7B0BE50BBFF9A00E37B6EE","coinDecimals":18},{"coinDenom":"dATOM","coinMinimalDenom":"ibc/EA6E1E8BA2EB9F681C4BD12C8C81A46530A62934F2BD561B120A00F46946CE87","coinDecimals":6},{"coinDenom":"catom","coinMinimalDenom":"c:uatom","coinDecimals":6},{"coinDenom":"cINJ","coinMinimalDenom":"c:inj","coinDecimals":18},{"coinDenom":"cosmo","coinMinimalDenom":"c:uosmo","coinDecimals":6},{"coinDenom":"cluna","coinMinimalDenom":"c:uluna","coinDecimals":6},{"coinDenom":"cauuu","coinMinimalDenom":"factory/pryzm1qg5ega6dykkxc307y25pecuufrjkxkaggkkxh7nad0vhyhtuhw3sk0s70x/cuauuu","coinDecimals":6},{"coinDenom":"ctia","coinMinimalDenom":"c:utia","coinDecimals":6},{"coinDenom":"pATOM30Sep2024","coinMinimalDenom":"p:uatom:30Sep2024","coinDecimals":6},{"coinDenom":"pATOM31Dec2024","coinMinimalDenom":"p:uatom:31Dec2024","coinDecimals":6},{"coinDenom":"pATOM31Dec2025","coinMinimalDenom":"p:uatom:31Dec2025","coinDecimals":6},{"coinDenom":"pATOM31Dec2026","coinMinimalDenom":"p:uatom:31Dec2026","coinDecimals":6},{"coinDenom":"pOSMO30Sep2024","coinMinimalDenom":"p:uosmo:30Sep2024","coinDecimals":6},{"coinDenom":"pOSMO31Dec2024","coinMinimalDenom":"p:uosmo:31Dec2024","coinDecimals":6},{"coinDenom":"pOSMO31Dec2025","coinMinimalDenom":"p:uosmo:31Dec2025","coinDecimals":6},{"coinDenom":"pOSMO31Dec2026","coinMinimalDenom":"p:uosmo:31Dec2026","coinDecimals":6},{"coinDenom":"pINJ30Sep2024","coinMinimalDenom":"p:inj:30Sep2024","coinDecimals":18},{"coinDenom":"pINJ31Dec2024","coinMinimalDenom":"p:inj:31Dec2024","coinDecimals":18},{"coinDenom":"pINJ31Dec2025","coinMinimalDenom":"p:inj:31Dec2025","coinDecimals":18},{"coinDenom":"pINJ31Dec2026","coinMinimalDenom":"p:inj:31Dec2026","coinDecimals":18},{"coinDenom":"pLUNA30Sep2024","coinMinimalDenom":"p:uluna:30Sep2024","coinDecimals":6},{"coinDenom":"pLUNA31Dec2024","coinMinimalDenom":"p:uluna:31Dec2024","coinDecimals":6},{"coinDenom":"pLUNA31Dec2026","coinMinimalDenom":"p:uluna:31Dec2026","coinDecimals":6},{"coinDenom":"pLUNA31Dec2025","coinMinimalDenom":"p:uluna:31Dec2025","coinDecimals":6},{"coinDenom":"pAUUU30Sep2024","coinMinimalDenom":"p:uauuu:30Sep2024","coinDecimals":6},{"coinDenom":"pAUUU31Dec2024","coinMinimalDenom":"p:uauuu:31Dec2024","coinDecimals":6},{"coinDenom":"pAUUU31Dec2025","coinMinimalDenom":"p:uauuu:31Dec2025","coinDecimals":6},{"coinDenom":"pAUUU31Dec2026","coinMinimalDenom":"p:uauuu:31Dec2026","coinDecimals":6},{"coinDenom":"pstTIA30Sep2024","coinMinimalDenom":"p:stutia:30Sep2024","coinDecimals":6},{"coinDenom":"pstTIA31Dec2024","coinMinimalDenom":"p:stutia:31Dec2024","coinDecimals":6},{"coinDenom":"pstTIA31Dec2025","coinMinimalDenom":"p:stutia:31Dec2025","coinDecimals":6},{"coinDenom":"pstTIA31Dec2026","coinMinimalDenom":"p:stutia:31Dec2026","coinDecimals":6},{"coinDenom":"pstDYDX30Sep2024","coinMinimalDenom":"p:stadydx:30Sep2024","coinDecimals":18},{"coinDenom":"pstDYDX31Dec2024","coinMinimalDenom":"p:stadydx:31Dec2024","coinDecimals":18},{"coinDenom":"pstDYDX31Dec2025","coinMinimalDenom":"p:stadydx:31Dec2025","coinDecimals":18},{"coinDenom":"pstDYDX31Dec2026","coinMinimalDenom":"p:stadydx:31Dec2026","coinDecimals":18},{"coinDenom":"pdATOM31Dec2024","coinMinimalDenom":"p:udatom:31Dec2024","coinDecimals":6},{"coinDenom":"pdATOM30Jun2025","coinMinimalDenom":"p:udatom:30Jun2025","coinDecimals":6},{"coinDenom":"pdATOM31Dec2025","coinMinimalDenom":"p:udatom:31Dec2025","coinDecimals":6},{"coinDenom":"pdATOM31Dec2026","coinMinimalDenom":"p:udatom:31Dec2026","coinDecimals":6},{"coinDenom":"pTIA31Dec2024","coinMinimalDenom":"p:utia:31Dec2024","coinDecimals":6},{"coinDenom":"pTIA31Dec2025","coinMinimalDenom":"p:utia:31Dec2025","coinDecimals":6},{"coinDenom":"pTIA31Dec2026","coinMinimalDenom":"p:utia:31Dec2026","coinDecimals":6},{"coinDenom":"yATOM30Sep2024","coinMinimalDenom":"y:uatom:30Sep2024","coinDecimals":6},{"coinDenom":"yATOM31Dec2024","coinMinimalDenom":"y:uatom:31Dec2024","coinDecimals":6},{"coinDenom":"yATOM31Dec2025","coinMinimalDenom":"y:uatom:31Dec2025","coinDecimals":6},{"coinDenom":"yATOM31Dec2026","coinMinimalDenom":"y:uatom:31Dec2026","coinDecimals":6},{"coinDenom":"yOSMO30Sep2024","coinMinimalDenom":"y:uosmo:30Sep2024","coinDecimals":6},{"coinDenom":"yOSMO31Dec2024","coinMinimalDenom":"y:uosmo:31Dec2024","coinDecimals":6},{"coinDenom":"yOSMO31Dec2025","coinMinimalDenom":"y:uosmo:31Dec2025","coinDecimals":6},{"coinDenom":"yOSMO31Dec2026","coinMinimalDenom":"y:uosmo:31Dec2026","coinDecimals":6},{"coinDenom":"yINJ30Sep2024","coinMinimalDenom":"y:inj:30Sep2024","coinDecimals":18},{"coinDenom":"yINJ31Dec2024","coinMinimalDenom":"y:inj:31Dec2024","coinDecimals":18},{"coinDenom":"yINJ31Dec2025","coinMinimalDenom":"y:inj:31Dec2025","coinDecimals":18},{"coinDenom":"yINJ31Dec2026","coinMinimalDenom":"y:inj:31Dec2026","coinDecimals":18},{"coinDenom":"yLUNA30Sep2024","coinMinimalDenom":"y:uluna:30Sep2024","coinDecimals":6},{"coinDenom":"yLUNA31Dec2024","coinMinimalDenom":"y:uluna:31Dec2024","coinDecimals":6},{"coinDenom":"yLUNA31Dec2025","coinMinimalDenom":"y:uluna:31Dec2025","coinDecimals":6},{"coinDenom":"yLUNA31Dec2026","coinMinimalDenom":"y:uluna:31Dec2026","coinDecimals":6},{"coinDenom":"yAUUU30Sep2024","coinMinimalDenom":"y:uauuu:30Sep2024","coinDecimals":6},{"coinDenom":"yAUUU31Dec2024","coinMinimalDenom":"y:uauuu:31Dec2024","coinDecimals":6},{"coinDenom":"yAUUU31Dec2025","coinMinimalDenom":"y:uauuu:31Dec2025","coinDecimals":6},{"coinDenom":"yAUUU31Dec2026","coinMinimalDenom":"y:uauuu:31Dec2026","coinDecimals":6},{"coinDenom":"ystTIA30Sep2024","coinMinimalDenom":"y:stutia:30Sep2024","coinDecimals":6},{"coinDenom":"ystTIA31Dec2024","coinMinimalDenom":"y:stutia:31Dec2024","coinDecimals":6},{"coinDenom":"ystTIA31Dec2025","coinMinimalDenom":"y:stutia:31Dec2025","coinDecimals":6},{"coinDenom":"ystTIA31Dec2026","coinMinimalDenom":"y:stutia:31Dec2026","coinDecimals":6},{"coinDenom":"ystDYDX30Sep2024","coinMinimalDenom":"y:stadydx:30Sep2024","coinDecimals":18},{"coinDenom":"ystDYDX31Dec2024","coinMinimalDenom":"y:stadydx:31Dec2024","coinDecimals":18},{"coinDenom":"ystDYDX31Dec2025","coinMinimalDenom":"y:stadydx:31Dec2025","coinDecimals":18},{"coinDenom":"ystDYDX31Dec2026","coinMinimalDenom":"y:stadydx:31Dec2026","coinDecimals":18},{"coinDenom":"ydATOM31Dec2024","coinMinimalDenom":"y:udatom:31Dec2024","coinDecimals":6},{"coinDenom":"ydATOM30Jun2025","coinMinimalDenom":"y:udatom:30Jun2025","coinDecimals":6},{"coinDenom":"ydATOM31Dec2025","coinMinimalDenom":"y:udatom:31Dec2025","coinDecimals":6},{"coinDenom":"ydATOM31Dec2026","coinMinimalDenom":"y:udatom:31Dec2026","coinDecimals":6},{"coinDenom":"yTIA31Dec2024","coinMinimalDenom":"y:utia:31Dec2024","coinDecimals":6},{"coinDenom":"yTIA31Dec2025","coinMinimalDenom":"y:utia:31Dec2025","coinDecimals":6},{"coinDenom":"yTIA31Dec2026","coinMinimalDenom":"y:utia:31Dec2026","coinDecimals":6},{"coinDenom":"lp:6:usdc.axl-usdc","coinMinimalDenom":"lp:6:uusdc.axl-uusdc","coinDecimals":6},{"coinDenom":"lp:0:atom","coinMinimalDenom":"lp:0:uatom","coinDecimals":6},{"coinDenom":"lp:2:atomypt-atom","coinMinimalDenom":"lp:2:uatomypt-uatom","coinDecimals":6},{"coinDenom":"lp:3:atom-usdc","coinMinimalDenom":"lp:3:uatom-uusdc","coinDecimals":6},{"coinDenom":"lp:1:INJ","coinMinimalDenom":"lp:1:inj","coinDecimals":18},{"coinDenom":"lp:4:INJypt-INJ","coinMinimalDenom":"lp:4:injypt-inj","coinDecimals":18},{"coinDenom":"lp:5:INJ-usdc","coinMinimalDenom":"lp:5:inj-uusdc","coinDecimals":18},{"coinDenom":"lp:8:osmo","coinMinimalDenom":"lp:8:uosmo","coinDecimals":6},{"coinDenom":"lp:10:osmoypt-osmo","coinMinimalDenom":"lp:10:uosmoypt-uosmo","coinDecimals":6},{"coinDenom":"lp:11:osmo-usdc","coinMinimalDenom":"lp:11:uosmo-uusdc","coinDecimals":6},{"coinDenom":"lp:9:luna","coinMinimalDenom":"lp:9:uluna","coinDecimals":6},{"coinDenom":"lp:12:lunaypt-luna","coinMinimalDenom":"lp:12:ulunaypt-uluna","coinDecimals":6},{"coinDenom":"lp:13:luna-usdc","coinMinimalDenom":"lp:13:uluna-uusdc","coinDecimals":6},{"coinDenom":"lp:14:auuu","coinMinimalDenom":"lp:14:uauuu","coinDecimals":6},{"coinDenom":"lp:17:auuuypt-auuu","coinMinimalDenom":"lp:17:uauuuypt-uauuu","coinDecimals":6},{"coinDenom":"lp:7:auuu-usdc","coinMinimalDenom":"lp:7:uauuu-uusdc","coinDecimals":6},{"coinDenom":"lp:15:stdydx","coinMinimalDenom":"lp:15:stadydx","coinDecimals":18},{"coinDenom":"lp:18:stdydxypt-dydx","coinMinimalDenom":"lp:18:stadydxypt-adydx","coinDecimals":18},{"coinDenom":"lp:19:dydx-usdc","coinMinimalDenom":"lp:19:adydx-uusdc","coinDecimals":18},{"coinDenom":"lp:16:sttia","coinMinimalDenom":"lp:16:stutia","coinDecimals":6},{"coinDenom":"lp:20:sttiaypt-tia","coinMinimalDenom":"lp:20:stutiaypt-utia","coinDecimals":6},{"coinDenom":"lp:24:tia","coinMinimalDenom":"lp:24:utia","coinDecimals":6},{"coinDenom":"lp:25:tiaypt-tia","coinMinimalDenom":"lp:25:utiaypt-utia","coinDecimals":6},{"coinDenom":"lp:21:tia-usdc","coinMinimalDenom":"lp:21:utia-uusdc","coinDecimals":6},{"coinDenom":"lp:22:datom","coinMinimalDenom":"lp:22:udatom","coinDecimals":6},{"coinDenom":"lp:23:datomypt-atom","coinMinimalDenom":"lp:23:udatomypt-uatom","coinDecimals":6}],"rest":"https://api.pryzm.zone","rpc":"https://rpc.pryzm.zone","bech32Config":{"bech32PrefixAccAddr":"pryzm","bech32PrefixAccPub":"pryzmpub","bech32PrefixValAddr":"pryzmvaloper","bech32PrefixValPub":"pryzmvaloperpub","bech32PrefixConsAddr":"pryzmvalcons","bech32PrefixConsPub":"pryzmvalconspub"},"chainName":"pryzm","feeCurrencies":[{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.003,"high":0.004}},{"coinDenom":"INJ","coinMinimalDenom":"ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255","coinDecimals":18,"gasPriceStep":{"low":500000000,"average":600000000,"high":700000000}},{"coinDenom":"osmo","coinMinimalDenom":"ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}},{"coinDenom":"tia","coinMinimalDenom":"ibc/BF28D9C17E0306B194D50F51C3B2590BEAD15E04E03ADD34C3A26E62D85C9676","coinDecimals":6,"gasPriceStep":{"low":0.002,"average":0.003,"high":0.004}},{"coinDenom":"luna","coinMinimalDenom":"ibc/B8AF5D92165F35AB31F3FC7C7B444B9D240760FA5D406C49D24862BD0284E395","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.02,"high":0.03}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.03,"high":0.04}},{"coinDenom":"auuu","coinMinimalDenom":"factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.015,"high":0.02}},{"coinDenom":"dydx","coinMinimalDenom":"ibc/F8CA5236869F819BC006EEF088E67889A26E4140339757878F0F4E229CDDA858","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":12000000000,"high":14000000000}},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/FA78980867B7E87F382CDA00275C55DDC248CABC7DEE27AC6868CCF97DD5E02F","coinDecimals":6,"gasPriceStep":{"low":0.002,"average":0.003,"high":0.004}},{"coinDenom":"stDYDX","coinMinimalDenom":"ibc/120DC39B61CC121E91525C1D51624E41BBE74C537D7B0BE50BBFF9A00E37B6EE","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":12000000000,"high":14000000000}},{"coinDenom":"dATOM","coinMinimalDenom":"ibc/EA6E1E8BA2EB9F681C4BD12C8C81A46530A62934F2BD561B120A00F46946CE87","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.003,"high":0.004}}],"stakeCurrency":{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"PUNDIX","currencies":[{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78","coinDecimals":18},{"coinDenom":"PURSE","coinMinimalDenom":"bsc0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C","coinDecimals":18}],"rest":"https://px-rest.pundix.com","rpc":"https://px-json.pundix.com","bech32Config":{"bech32PrefixAccAddr":"px","bech32PrefixAccPub":"pxpub","bech32PrefixValAddr":"pxvaloper","bech32PrefixValPub":"pxvaloperpub","bech32PrefixConsAddr":"pxvalcons","bech32PrefixConsPub":"pxvalconspub"},"chainName":"pundix","feeCurrencies":[{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78","coinDecimals":18,"gasPriceStep":{"low":2000000000000,"average":2500000000000,"high":3000000000000}}],"stakeCurrency":{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"pylons-mainnet-1","currencies":[{"coinDenom":"rock","coinMinimalDenom":"ubedrock","coinDecimals":6}],"rest":"https://rest.nodejumper.io/pylons","rpc":"https://rpc.nodejumper.io:443/pylons","bech32Config":{"bech32PrefixAccAddr":"pylo","bech32PrefixAccPub":"pylopub","bech32PrefixValAddr":"pylovaloper","bech32PrefixValPub":"pylovaloperpub","bech32PrefixConsAddr":"pylovalcons","bech32PrefixConsPub":"pylovalconspub"},"chainName":"pylons","feeCurrencies":[{"coinDenom":"rock","coinMinimalDenom":"ubedrock","coinDecimals":6}],"stakeCurrency":{"coinDenom":"rock","coinMinimalDenom":"ubedrock","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"qfs-1","currencies":[{"coinDenom":"qfs","coinMinimalDenom":"qfs","coinDecimals":0}],"rest":"https://lcd.qfsone.com","rpc":"https://rcp.qfsone.com","bech32Config":{"bech32PrefixAccAddr":"qfs","bech32PrefixAccPub":"qfspub","bech32PrefixValAddr":"qfsvaloper","bech32PrefixValPub":"qfsvaloperpub","bech32PrefixConsAddr":"qfsvalcons","bech32PrefixConsPub":"qfsvalconspub"},"chainName":"qfs","feeCurrencies":[{"coinDenom":"qfs","coinMinimalDenom":"qfs","coinDecimals":0,"gasPriceStep":{"low":0.000001,"average":0.000005,"high":0.0001}}],"stakeCurrency":{"coinDenom":"qfs","coinMinimalDenom":"qfs","coinDecimals":0},"bip44":{"coinType":1179993431}},{"chainId":"quasar-1","currencies":[{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A","coinDecimals":6}],"rest":"https://rest.lavenderfive.com:443/quasar","rpc":"https://rpc.lavenderfive.com:443/quasar","bech32Config":{"bech32PrefixAccAddr":"quasar","bech32PrefixAccPub":"quasarpub","bech32PrefixValAddr":"quasarvaloper","bech32PrefixValPub":"quasarvaloperpub","bech32PrefixConsAddr":"quasarvalcons","bech32PrefixConsPub":"quasarvalconspub"},"chainName":"quasar","feeCurrencies":[{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.3}},{"coinDenom":"osmo","coinMinimalDenom":"ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"atom","coinMinimalDenom":"ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"quicksilver-2","currencies":[{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6},{"coinDenom":"qstars","coinMinimalDenom":"uqstars","coinDecimals":6},{"coinDenom":"qatom","coinMinimalDenom":"uqatom","coinDecimals":6},{"coinDenom":"qregen","coinMinimalDenom":"uqregen","coinDecimals":6},{"coinDenom":"qosmo","coinMinimalDenom":"uqosmo","coinDecimals":6},{"coinDenom":"qsomm","coinMinimalDenom":"uqsomm","coinDecimals":6},{"coinDenom":"qjuno","coinMinimalDenom":"uqjuno","coinDecimals":6},{"coinDenom":"qdydx","coinMinimalDenom":"aqdydx","coinDecimals":18},{"coinDenom":"qsaga","coinMinimalDenom":"uqsaga","coinDecimals":6},{"coinDenom":"qbld","coinMinimalDenom":"uqbld","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/5666A86DCC869C75F69A7938AD6DCFECAC4A09C73522599E7A85B10143E5FBD2","coinDecimals":6}],"rest":"https://api-quicksilver.takeshi.team:443","rpc":"https://rpc-quicksilver.takeshi.team:443","bech32Config":{"bech32PrefixAccAddr":"quick","bech32PrefixAccPub":"quickpub","bech32PrefixValAddr":"quickvaloper","bech32PrefixValPub":"quickvaloperpub","bech32PrefixConsAddr":"quickvalcons","bech32PrefixConsPub":"quickvalconspub"},"chainName":"quicksilver","feeCurrencies":[{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.00025}}],"stakeCurrency":{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"qwoyn-1","currencies":[{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6}],"rest":"https://rest-qwoyn.theamsolutions.info:443","rpc":"https://rpc.qwoyn.studio:443","bech32Config":{"bech32PrefixAccAddr":"qwoyn","bech32PrefixAccPub":"qwoynpub","bech32PrefixValAddr":"qwoynvaloper","bech32PrefixValPub":"qwoynvaloperpub","bech32PrefixConsAddr":"qwoynvalcons","bech32PrefixConsPub":"qwoynvalconspub"},"chainName":"qwoyn","feeCurrencies":[{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.05,"high":0.075}}],"stakeCurrency":{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"realionetwork_3301-1","currencies":[{"coinDenom":"rio","coinMinimalDenom":"ario","coinDecimals":18},{"coinDenom":"rst","coinMinimalDenom":"arst","coinDecimals":18}],"rest":"https://realio-api.genznodes.dev","rpc":"https://realio-rpc.genznodes.dev","bech32Config":{"bech32PrefixAccAddr":"realio","bech32PrefixAccPub":"realiopub","bech32PrefixValAddr":"realiovaloper","bech32PrefixValPub":"realiovaloperpub","bech32PrefixConsAddr":"realiovalcons","bech32PrefixConsPub":"realiovalconspub"},"chainName":"realio","feeCurrencies":[{"coinDenom":"rio","coinMinimalDenom":"ario","coinDecimals":18,"gasPriceStep":{"low":4000000000,"average":5000000000,"high":8000000000}}],"stakeCurrency":{"coinDenom":"rio","coinMinimalDenom":"ario","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"reb_1111-1","currencies":[{"coinDenom":"rebus","coinMinimalDenom":"arebus","coinDecimals":18}],"rest":"https://api.rebuschain.com:1317/","rpc":"https://api.rebuschain.com:26657/","bech32Config":{"bech32PrefixAccAddr":"rebus","bech32PrefixAccPub":"rebuspub","bech32PrefixValAddr":"rebusvaloper","bech32PrefixValPub":"rebusvaloperpub","bech32PrefixConsAddr":"rebusvalcons","bech32PrefixConsPub":"rebusvalconspub"},"chainName":"rebus","feeCurrencies":[{"coinDenom":"rebus","coinMinimalDenom":"arebus","coinDecimals":18,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"rebus","coinMinimalDenom":"arebus","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"regen-1","currencies":[{"coinDenom":"regen","coinMinimalDenom":"uregen","coinDecimals":6},{"coinDenom":"nct","coinMinimalDenom":"eco.uC.NCT","coinDecimals":6}],"rest":"http://public-rpc.regen.vitwit.com:1317","rpc":"https://rpc-regen.ecostake.com","bech32Config":{"bech32PrefixAccAddr":"regen","bech32PrefixAccPub":"regenpub","bech32PrefixValAddr":"regenvaloper","bech32PrefixValPub":"regenvaloperpub","bech32PrefixConsAddr":"regenvalcons","bech32PrefixConsPub":"regenvalconspub"},"chainName":"regen","feeCurrencies":[{"coinDenom":"regen","coinMinimalDenom":"uregen","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"regen","coinMinimalDenom":"uregen","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"titan-1","currencies":[{"coinDenom":"atolo","coinMinimalDenom":"uatolo","coinDecimals":6}],"rest":"https://restapi.rizon.world/","rpc":"https://rpcapi.rizon.world/","bech32Config":{"bech32PrefixAccAddr":"rizon","bech32PrefixAccPub":"rizonpub","bech32PrefixValAddr":"rizonvaloper","bech32PrefixValPub":"rizonvaloperpub","bech32PrefixConsAddr":"rizonvalcons","bech32PrefixConsPub":"rizonvalconspub"},"chainName":"rizon","feeCurrencies":[{"coinDenom":"atolo","coinMinimalDenom":"uatolo","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.035}}],"stakeCurrency":{"coinDenom":"atolo","coinMinimalDenom":"uatolo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"router_9600-1","currencies":[{"coinDenom":"ROUTE","coinMinimalDenom":"route","coinDecimals":18}],"rest":"https://sentry.lcd.routerprotocol.com/","rpc":"https://sentry.tm.rpc.routerprotocol.com/","bech32Config":{"bech32PrefixAccAddr":"router","bech32PrefixAccPub":"routerpub","bech32PrefixValAddr":"routervaloper","bech32PrefixValPub":"routervaloperpub","bech32PrefixConsAddr":"routervalcons","bech32PrefixConsPub":"routervalconspub"},"chainName":"routerchain","feeCurrencies":[{"coinDenom":"ROUTE","coinMinimalDenom":"route","coinDecimals":18,"gasPriceStep":{"low":7,"average":7,"high":10}}],"stakeCurrency":{"coinDenom":"ROUTE","coinMinimalDenom":"route","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"ssc-1","currencies":[{"coinDenom":"saga","coinMinimalDenom":"usaga","coinDecimals":6}],"rest":"https://saga-mainnet-lcd.autostake.com:443","rpc":"https://rpc-saga.keplr.app","bech32Config":{"bech32PrefixAccAddr":"saga","bech32PrefixAccPub":"sagapub","bech32PrefixValAddr":"sagavaloper","bech32PrefixValPub":"sagavaloperpub","bech32PrefixConsAddr":"sagavalcons","bech32PrefixConsPub":"sagavalconspub"},"chainName":"saga","feeCurrencies":[{"coinDenom":"saga","coinMinimalDenom":"usaga","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"saga","coinMinimalDenom":"usaga","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"scorum-1","currencies":[{"coinDenom":"scr","coinMinimalDenom":"nscr","coinDecimals":9},{"coinDenom":"gas","coinMinimalDenom":"gas","coinDecimals":0}],"rest":"https://scorum-blockchain-mainnet-api.scorum.com","rpc":"https://scorum-blockchain-mainnet-rpc.scorum.com","bech32Config":{"bech32PrefixAccAddr":"scorum","bech32PrefixAccPub":"scorumpub","bech32PrefixValAddr":"scorumvaloper","bech32PrefixValPub":"scorumvaloperpub","bech32PrefixConsAddr":"scorumvalcons","bech32PrefixConsPub":"scorumvalconspub"},"chainName":"scorum","feeCurrencies":[{"coinDenom":"gas","coinMinimalDenom":"gas","coinDecimals":0,"gasPriceStep":{"low":1,"average":1,"high":1}}],"stakeCurrency":{"coinDenom":"scr","coinMinimalDenom":"nscr","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"secret-4","currencies":[{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6},{"coinDenom":"sienna","coinMinimalDenom":"cw20:secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4","coinDecimals":18},{"coinDenom":"shd","coinMinimalDenom":"cw20:secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d","coinDecimals":8},{"coinDenom":"shd","coinMinimalDenom":"cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm","coinDecimals":8},{"coinDenom":"silk","coinMinimalDenom":"cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd","coinDecimals":6},{"coinDenom":"stkd-scrt","coinMinimalDenom":"cw20:secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4","coinDecimals":6},{"coinDenom":"butt","coinMinimalDenom":"cw20:secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt","coinDecimals":6},{"coinDenom":"alter","coinMinimalDenom":"cw20:secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej","coinDecimals":6},{"coinDenom":"amber","coinMinimalDenom":"cw20:secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852","coinDecimals":6},{"coinDenom":"shill","coinMinimalDenom":"cw20:secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse","coinDecimals":6}],"rest":"https://rest.lavenderfive.com:443/secretnetwork","rpc":"https://scrt.public-rpc.com","bech32Config":{"bech32PrefixAccAddr":"secret","bech32PrefixAccPub":"secretpub","bech32PrefixValAddr":"secretvaloper","bech32PrefixValPub":"secretvaloperpub","bech32PrefixConsAddr":"secretvalcons","bech32PrefixConsPub":"secretvalconspub"},"chainName":"secretnetwork","feeCurrencies":[{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.1,"high":0.25}}],"stakeCurrency":{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6},"bip44":{"coinType":529}},{"chainId":"seda-1","currencies":[{"coinDenom":"seda","coinMinimalDenom":"aseda","coinDecimals":18}],"rest":"https://lcd.mainnet.seda.xyz/","rpc":"https://rpc.mainnet.seda.xyz/","bech32Config":{"bech32PrefixAccAddr":"seda","bech32PrefixAccPub":"sedapub","bech32PrefixValAddr":"sedavaloper","bech32PrefixValPub":"sedavaloperpub","bech32PrefixConsAddr":"sedavalcons","bech32PrefixConsPub":"sedavalconspub"},"chainName":"seda","feeCurrencies":[{"coinDenom":"seda","coinMinimalDenom":"aseda","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":10000000000,"high":14000000000}}],"stakeCurrency":{"coinDenom":"seda","coinMinimalDenom":"aseda","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"pacific-1","currencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6},{"coinDenom":"oin","coinMinimalDenom":"factory/sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w/OIN","coinDecimals":6},{"coinDenom":"ampSEI","coinMinimalDenom":"factory/sei1x2fgaaqecvk8kwuqkjqcj27clw5p5g99uawdzy9sc4rku8avumcq3cky4k/ampSEI","coinDecimals":6},{"coinDenom":"popeye","coinMinimalDenom":"factory/sei1fl8pg59wfsgw2wp4aruk38zqccfnc2g8ptrm24/popeye","coinDecimals":6},{"coinDenom":"sensei","coinMinimalDenom":"factory/sei1ta5rkr6y2qlkj7px8w2cvear7m2822q4f4ea0m/sensei","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/B023C57727A38A9CF87238F9008477C3761AD4774D528BFA458DD707D90B553A","coinDecimals":6},{"coinDenom":"oozaru","coinMinimalDenom":"sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda","coinDecimals":6},{"coinDenom":"SEIYAN","coinMinimalDenom":"cw20:sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"ibc/063F4461F7317CFF10F50AB044E44932D22AAD84FA7107082744946E6DB7B7A8","coinDecimals":6}],"rest":"https://rest.sei-apis.com","rpc":"https://rpc.sei-apis.com","bech32Config":{"bech32PrefixAccAddr":"sei","bech32PrefixAccPub":"seipub","bech32PrefixValAddr":"seivaloper","bech32PrefixValPub":"seivaloperpub","bech32PrefixConsAddr":"seivalcons","bech32PrefixConsPub":"seivalconspub"},"chainName":"sei","feeCurrencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.02,"high":0.04}}],"stakeCurrency":{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"self-1","currencies":[{"coinDenom":"slf","coinMinimalDenom":"uslf","coinDecimals":6}],"rest":"https://api.selfchain.io","rpc":"https://rpc.selfchain.io:26657","bech32Config":{"bech32PrefixAccAddr":"self","bech32PrefixAccPub":"selfpub","bech32PrefixValAddr":"selfvaloper","bech32PrefixValPub":"selfvaloperpub","bech32PrefixConsAddr":"selfvalcons","bech32PrefixConsPub":"selfvalconspub"},"chainName":"self","feeCurrencies":[{"coinDenom":"slf","coinMinimalDenom":"uslf","coinDecimals":6,"gasPriceStep":{"low":0.005,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"slf","coinMinimalDenom":"uslf","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sentinelhub-2","currencies":[{"coinDenom":"dvpn","coinMinimalDenom":"udvpn","coinDecimals":6}],"rest":"https://api-sentinel.busurnode.com","rpc":"https://rpc-sentinel.busurnode.com","bech32Config":{"bech32PrefixAccAddr":"sent","bech32PrefixAccPub":"sentpub","bech32PrefixValAddr":"sentvaloper","bech32PrefixValPub":"sentvaloperpub","bech32PrefixConsAddr":"sentvalcons","bech32PrefixConsPub":"sentvalconspub"},"chainName":"sentinel","feeCurrencies":[{"coinDenom":"dvpn","coinMinimalDenom":"udvpn","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.4}}],"stakeCurrency":{"coinDenom":"dvpn","coinMinimalDenom":"udvpn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sgenet-1","currencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"rest":"https://rest.lavenderfive.com:443/sge","rpc":"https://rpc.lavenderfive.com:443/sge","bech32Config":{"bech32PrefixAccAddr":"sge","bech32PrefixAccPub":"sgepub","bech32PrefixValAddr":"sgevaloper","bech32PrefixValPub":"sgevaloperpub","bech32PrefixConsAddr":"sgevalcons","bech32PrefixConsPub":"sgevalconspub"},"chainName":"sge","feeCurrencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.5}}],"stakeCurrency":{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"ShareRing-VoyagerNet","currencies":[{"coinDenom":"shr","coinMinimalDenom":"nshr","coinDecimals":9}],"rest":"https://lcd.explorer.shareri.ng/","rpc":"https://rpc.explorer.shareri.ng","bech32Config":{"bech32PrefixAccAddr":"shareledger","bech32PrefixAccPub":"shareledgerpub","bech32PrefixValAddr":"shareledgervaloper","bech32PrefixValPub":"shareledgervaloperpub","bech32PrefixConsAddr":"shareledgervalcons","bech32PrefixConsPub":"shareledgervalconspub"},"chainName":"shareledger","feeCurrencies":[{"coinDenom":"shr","coinMinimalDenom":"nshr","coinDecimals":9,"gasPriceStep":{"low":2000,"average":3000,"high":4000}}],"stakeCurrency":{"coinDenom":"shr","coinMinimalDenom":"nshr","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"shentu-2.2","currencies":[{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6}],"rest":"https://rest.shentu.org/","rpc":"https://rpc.shentu.org:443","bech32Config":{"bech32PrefixAccAddr":"shentu","bech32PrefixAccPub":"shentupub","bech32PrefixValAddr":"shentuvaloper","bech32PrefixValPub":"shentuvaloperpub","bech32PrefixConsAddr":"shentuvalcons","bech32PrefixConsPub":"shentuvalconspub"},"chainName":"shentu","feeCurrencies":[{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"shido_9008-1","currencies":[{"coinDenom":"SHIDO","coinMinimalDenom":"shido","coinDecimals":18}],"rest":"https://swagger.shidoscan.com","rpc":"https://tendermint.shidoscan.com","bech32Config":{"bech32PrefixAccAddr":"shido","bech32PrefixAccPub":"shidopub","bech32PrefixValAddr":"shidovaloper","bech32PrefixValPub":"shidovaloperpub","bech32PrefixConsAddr":"shidovalcons","bech32PrefixConsPub":"shidovalconspub"},"chainName":"shido","feeCurrencies":[{"coinDenom":"SHIDO","coinMinimalDenom":"shido","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"SHIDO","coinMinimalDenom":"shido","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"sifchain-1","currencies":[{"coinDenom":"ROWAN","coinMinimalDenom":"rowan","coinDecimals":18}],"rest":"https://api-sifchain-ia.cosmosia.notional.ventures/","rpc":"https://sifchain-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"sif","bech32PrefixAccPub":"sifpub","bech32PrefixValAddr":"sifvaloper","bech32PrefixValPub":"sifvaloperpub","bech32PrefixConsAddr":"sifvalcons","bech32PrefixConsPub":"sifvalconspub"},"chainName":"sifchain","feeCurrencies":[{"coinDenom":"ROWAN","coinMinimalDenom":"rowan","coinDecimals":18,"gasPriceStep":{"low":1000000000000,"average":1500000000000,"high":2000000000000}}],"stakeCurrency":{"coinDenom":"ROWAN","coinMinimalDenom":"rowan","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"sixnet","currencies":[{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6}],"rest":"https://sixnet-api.sixprotocol.net:443","rpc":"https://sixnet-rpc.sixprotocol.net:443","bech32Config":{"bech32PrefixAccAddr":"6x","bech32PrefixAccPub":"6xpub","bech32PrefixValAddr":"6xvaloper","bech32PrefixValPub":"6xvaloperpub","bech32PrefixConsAddr":"6xvalcons","bech32PrefixConsPub":"6xvalconspub"},"chainName":"six","feeCurrencies":[{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6,"gasPriceStep":{"low":1.25,"average":1.5,"high":1.75}}],"stakeCurrency":{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sommelier-3","currencies":[{"coinDenom":"somm","coinMinimalDenom":"usomm","coinDecimals":6}],"rest":"https://api-sommelier.pupmos.network","rpc":"https://sommelier-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"somm","bech32PrefixAccPub":"sommpub","bech32PrefixValAddr":"sommvaloper","bech32PrefixValPub":"sommvaloperpub","bech32PrefixConsAddr":"sommvalcons","bech32PrefixConsPub":"sommvalconspub"},"chainName":"sommelier","feeCurrencies":[{"coinDenom":"somm","coinMinimalDenom":"usomm","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"somm","coinMinimalDenom":"usomm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"source-1","currencies":[{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6},{"coinDenom":"srcx","coinMinimalDenom":"ibc/FC5A7360EEED0713AE3E83E9D55A69AF873056A172AC495890ACE4582FF9685A","coinDecimals":9}],"rest":"https://api.source.nodestake.top","rpc":"https://rpc.source.nodestake.top","bech32Config":{"bech32PrefixAccAddr":"source","bech32PrefixAccPub":"sourcepub","bech32PrefixValAddr":"sourcevaloper","bech32PrefixValPub":"sourcevaloperpub","bech32PrefixConsAddr":"sourcevalcons","bech32PrefixConsPub":"sourcevalconspub"},"chainName":"source","feeCurrencies":[{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.075,"high":0.1}}],"stakeCurrency":{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"stafihub-1","currencies":[{"coinDenom":"fis","coinMinimalDenom":"ufis","coinDecimals":6},{"coinDenom":"ratom","coinMinimalDenom":"uratom","coinDecimals":6},{"coinDenom":"riris","coinMinimalDenom":"uriris","coinDecimals":6},{"coinDenom":"rhuahua","coinMinimalDenom":"urhuahua","coinDecimals":6},{"coinDenom":"rswth","coinMinimalDenom":"urswth","coinDecimals":8}],"rest":"https://public-rest-rpc1.stafihub.io","rpc":"https://public-rpc1.stafihub.io:443","bech32Config":{"bech32PrefixAccAddr":"stafi","bech32PrefixAccPub":"stafipub","bech32PrefixValAddr":"stafivaloper","bech32PrefixValPub":"stafivaloperpub","bech32PrefixConsAddr":"stafivalcons","bech32PrefixConsPub":"stafivalconspub"},"chainName":"stafihub","feeCurrencies":[{"coinDenom":"fis","coinMinimalDenom":"ufis","coinDecimals":6}],"stakeCurrency":{"coinDenom":"fis","coinMinimalDenom":"ufis","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"stargaze-1","currencies":[{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6},{"coinDenom":"strdst","coinMinimalDenom":"factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust","coinDecimals":6},{"coinDenom":"GAZE","coinMinimalDenom":"factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/mGAZE","coinDecimals":6},{"coinDenom":"BRNCH","coinMinimalDenom":"factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uBRNCH","coinDecimals":6},{"coinDenom":"OHH","coinMinimalDenom":"factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uOHH","coinDecimals":6},{"coinDenom":"sneaky","coinMinimalDenom":"factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky","coinDecimals":6},{"coinDenom":"LAB","coinMinimalDenom":"ibc/93B1AE0AD5E88242745B245064A2A51DDA1319C18176A966D5F8F9E02ED5373E","coinDecimals":6},{"coinDenom":"CDT","coinMinimalDenom":"ibc/B0263C28B6F44651F4596413B41FDB749EA010BD1220816DAC0ABF9947C1E806","coinDecimals":6},{"coinDenom":"MBRN","coinMinimalDenom":"ibc/E94BB144B818CB8061F43E202BEA1E9273B87D6326C8C6F4E6AE71C62FD37854","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"ibc/C9C8D88917374F27F03CBCEAF4F1B85F45A62F9F2316CBAADAAC5FDB3675DD3F","coinDecimals":6},{"coinDenom":"PLEB","coinMinimalDenom":"factory/stars1k7qsxdxh8calmt4txk75e6hdntefslegwddqnlwjjqgjkmcfqy0qa97sn8/pleb","coinDecimals":6},{"coinDenom":"KINGSHIT","coinMinimalDenom":"factory/stars133a6mnkp9d3pkt48y699hy0tvq5xngpz7cwak0qr4suq0cj9zpfslvt0em/kingshit","coinDecimals":6},{"coinDenom":"BOTZ","coinMinimalDenom":"factory/stars132jrwxjps93usq3ejy7cq6qqc7j3gtx3mu8jhaj5nnk3p0ste2ssqsndvj/botz","coinDecimals":6},{"coinDenom":"COCKS","coinMinimalDenom":"factory/stars14mfk0sd6rlajkvgpgrvfk9lfhjwmkrzvednekvcn32jzy3drjy5sfem9p7/cocks","coinDecimals":6},{"coinDenom":"XTRUMP","coinMinimalDenom":"ibc/4982C47384F003FCCB02490F92CE2F23DBEC9A7A0C1F440BDB12D24357E6703D","coinDecimals":6},{"coinDenom":"WOLFSHIT","coinMinimalDenom":"factory/stars167y92c2fe690l0lrqyk9tahpqvu97au0cmpayh3j9455r2f6f06s78emw4/wolfshit","coinDecimals":6},{"coinDenom":"VLT","coinMinimalDenom":"factory/stars1t6fyr84hn6lyjdvk3e3c697cptfn5cwat2jxqyzuvuesaypznslshy6x9v/vlt","coinDecimals":6},{"coinDenom":"bglSTARS","coinMinimalDenom":"factory/stars1ur79p98rmpn456esgzjernaxy7v25mlwqsv8uhymzxahfw77427syk2h9j/bglSTARS","coinDecimals":6},{"coinDenom":"bglUSDC","coinMinimalDenom":"factory/stars1ur79p98rmpn456esgzjernaxy7v25mlwqsv8uhymzxahfw77427syk2h9j/bglUSDC","coinDecimals":6},{"coinDenom":"SHITMOS","coinMinimalDenom":"ibc/8577E98BDDD2758FD5647A53563DAAC89921326F964EBF899B945ED05A66CA5F","coinDecimals":6},{"coinDenom":"ygata","coinMinimalDenom":"ibc/2A56F95E2B74AB769816403D384E2199C7BC510BFD2F8352FAC6DF0294B83EBA","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/D29FF5FFE7B9A5C6CE595FF963F7C93F2B8603586645C39B13E1D336847863C3","coinDecimals":18}],"rest":"https://rest.stargaze-apis.com/","rpc":"https://rpc.stargaze-apis.com/","bech32Config":{"bech32PrefixAccAddr":"stars","bech32PrefixAccPub":"starspub","bech32PrefixValAddr":"starsvaloper","bech32PrefixValPub":"starsvaloperpub","bech32PrefixConsAddr":"starsvalcons","bech32PrefixConsPub":"starsvalconspub"},"chainName":"stargaze","feeCurrencies":[{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6,"gasPriceStep":{"low":1,"average":1.1,"high":1.2}}],"stakeCurrency":{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"iov-mainnet-ibc","currencies":[{"coinDenom":"iov","coinMinimalDenom":"uiov","coinDecimals":6}],"rest":"https://api-starname-ia.cosmosia.notional.ventures/","rpc":"https://rpc-starname-ia.cosmosia.notional.ventures/","bech32Config":{"bech32PrefixAccAddr":"star","bech32PrefixAccPub":"starpub","bech32PrefixValAddr":"starvaloper","bech32PrefixValPub":"starvaloperpub","bech32PrefixConsAddr":"starvalcons","bech32PrefixConsPub":"starvalconspub"},"chainName":"starname","feeCurrencies":[{"coinDenom":"iov","coinMinimalDenom":"uiov","coinDecimals":6,"gasPriceStep":{"low":1,"average":2,"high":3}}],"stakeCurrency":{"coinDenom":"iov","coinMinimalDenom":"uiov","coinDecimals":6},"bip44":{"coinType":234}},{"chainId":"stratos-1","currencies":[{"coinDenom":"stos","coinMinimalDenom":"wei","coinDecimals":18}],"rest":"https://rest.thestratos.org","rpc":"https://rpc.thestratos.org","bech32Config":{"bech32PrefixAccAddr":"st","bech32PrefixAccPub":"stpub","bech32PrefixValAddr":"stvaloper","bech32PrefixValPub":"stvaloperpub","bech32PrefixConsAddr":"stvalcons","bech32PrefixConsPub":"stvalconspub"},"chainName":"stratos","feeCurrencies":[{"coinDenom":"stos","coinMinimalDenom":"wei","coinDecimals":18,"gasPriceStep":{"low":1000000000,"average":1200000000,"high":1600000000}}],"stakeCurrency":{"coinDenom":"stos","coinMinimalDenom":"wei","coinDecimals":18},"bip44":{"coinType":606}},{"chainId":"stride-1","currencies":[{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"stuatom","coinDecimals":6},{"coinDenom":"ststars","coinMinimalDenom":"stustars","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"stuosmo","coinDecimals":6},{"coinDenom":"stjuno","coinMinimalDenom":"stujuno","coinDecimals":6},{"coinDenom":"stluna","coinMinimalDenom":"stuluna","coinDecimals":6},{"coinDenom":"stINJ","coinMinimalDenom":"stinj","coinDecimals":18},{"coinDenom":"stevmos","coinMinimalDenom":"staevmos","coinDecimals":18},{"coinDenom":"stDYDX","coinMinimalDenom":"stadydx","coinDecimals":18},{"coinDenom":"stTIA","coinMinimalDenom":"stutia","coinDecimals":6},{"coinDenom":"stDYM","coinMinimalDenom":"stadym","coinDecimals":18},{"coinDenom":"stumee","coinMinimalDenom":"stuumee","coinDecimals":6},{"coinDenom":"stcmdx","coinMinimalDenom":"stucmdx","coinDecimals":6},{"coinDenom":"stsomm","coinMinimalDenom":"stusomm","coinDecimals":6},{"coinDenom":"stSAGA","coinMinimalDenom":"stusaga","coinDecimals":6},{"coinDenom":"TIA","coinMinimalDenom":"ibc/BF3B4F53F3694B66E13C23107C84B6485BD2B96296BB7EC680EA77BBA75B4801","coinDecimals":6},{"coinDenom":"stISLM","coinMinimalDenom":"staISLM","coinDecimals":18},{"coinDenom":"stBAND","coinMinimalDenom":"stuband","coinDecimals":6}],"rest":"https://stride-api.polkachu.com/","rpc":"https://stride-rpc.polkachu.com/","bech32Config":{"bech32PrefixAccAddr":"stride","bech32PrefixAccPub":"stridepub","bech32PrefixValAddr":"stridevaloper","bech32PrefixValPub":"stridevaloperpub","bech32PrefixConsAddr":"stridevalcons","bech32PrefixConsPub":"stridevalconspub"},"chainName":"stride","feeCurrencies":[{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6,"gasPriceStep":{"low":0.005,"average":0.005,"high":0.05}},{"coinDenom":"statom","coinMinimalDenom":"stuatom","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0002,"high":0.0005}},{"coinDenom":"stosmo","coinMinimalDenom":"stuosmo","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.004}},{"coinDenom":"ststars","coinMinimalDenom":"stustars","coinDecimals":6,"gasPriceStep":{"low":1,"average":1.1,"high":1.2}},{"coinDenom":"stjuno","coinMinimalDenom":"stujuno","coinDecimals":6,"gasPriceStep":{"low":0.075,"average":0.1,"high":0.125}},{"coinDenom":"stluna","coinMinimalDenom":"stuluna","coinDecimals":6,"gasPriceStep":{"low":0.0125,"average":0.015,"high":0.04}},{"coinDenom":"stevmos","coinMinimalDenom":"staevmos","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}},{"coinDenom":"stINJ","coinMinimalDenom":"stinj","coinDecimals":18,"gasPriceStep":{"low":500000000,"average":700000000,"high":900000000}},{"coinDenom":"stcmdx","coinMinimalDenom":"stucmdx","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.025,"high":0.04}},{"coinDenom":"stumee","coinMinimalDenom":"stuumee","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.12,"high":0.2}},{"coinDenom":"stTIA","coinMinimalDenom":"stutia","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}},{"coinDenom":"stDYDX","coinMinimalDenom":"stadydx","coinDecimals":18,"gasPriceStep":{"low":15000000000,"average":15000000000,"high":20000000000}},{"coinDenom":"stDYM","coinMinimalDenom":"stadym","coinDecimals":18,"gasPriceStep":{"low":15000000000,"average":15000000000,"high":20000000000}},{"coinDenom":"stSAGA","coinMinimalDenom":"stusaga","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.015,"high":0.03}},{"coinDenom":"TIA","coinMinimalDenom":"ibc/BF3B4F53F3694B66E13C23107C84B6485BD2B96296BB7EC680EA77BBA75B4801","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}}],"stakeCurrency":{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"synternet-1","currencies":[{"coinDenom":"SYNT","coinMinimalDenom":"usynt","coinDecimals":6}],"rest":"https://api.synternet.com/","rpc":"https://rpc.synternet.com/","bech32Config":{"bech32PrefixAccAddr":"synt","bech32PrefixAccPub":"syntpub","bech32PrefixValAddr":"syntvaloper","bech32PrefixValPub":"syntvaloperpub","bech32PrefixConsAddr":"syntvalcons","bech32PrefixConsPub":"syntvalconspub"},"chainName":"synternet","feeCurrencies":[{"coinDenom":"SYNT","coinMinimalDenom":"usynt","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"SYNT","coinMinimalDenom":"usynt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"taketitan-12","currencies":[{"coinDenom":"ttnc","coinMinimalDenom":"ttnc","coinDecimals":0}],"rest":"https://lcdttnc.taketitan.com","rpc":"https://rcpttnc.taketitan.com","bech32Config":{"bech32PrefixAccAddr":"taketitan","bech32PrefixAccPub":"taketitanpub","bech32PrefixValAddr":"taketitanvaloper","bech32PrefixValPub":"taketitanvaloperpub","bech32PrefixConsAddr":"taketitanvalcons","bech32PrefixConsPub":"taketitanvalconspub"},"chainName":"taketitan","feeCurrencies":[{"coinDenom":"ttnc","coinMinimalDenom":"ttnc","coinDecimals":0,"gasPriceStep":{"low":0.000001,"average":0.000005,"high":0.0001}}],"stakeCurrency":{"coinDenom":"ttnc","coinMinimalDenom":"ttnc","coinDecimals":0},"bip44":{"coinType":1179993421}},{"chainId":"tenet_1559-1","currencies":[{"coinDenom":"tenet","coinMinimalDenom":"atenet","coinDecimals":18}],"rest":"https://app.rpc.tenet.org","rpc":"https://tendermint-1.rpc.tenet.org","bech32Config":{"bech32PrefixAccAddr":"tenet","bech32PrefixAccPub":"tenetpub","bech32PrefixValAddr":"tenetvaloper","bech32PrefixValPub":"tenetvaloperpub","bech32PrefixConsAddr":"tenetvalcons","bech32PrefixConsPub":"tenetvalconspub"},"chainName":"tenet","feeCurrencies":[{"coinDenom":"tenet","coinMinimalDenom":"atenet","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"tenet","coinMinimalDenom":"atenet","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"teritori-1","currencies":[{"coinDenom":"tori","coinMinimalDenom":"utori","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/A670D9568B3E399316EEDE40C1181B7AA4BD0695F0B37513CE9B95B977DFC12E","coinDecimals":6},{"coinDenom":"kuji","coinMinimalDenom":"ibc/1FECA3491D88F4AD24DE0948ED96718CA6D93F6730CEE7708E621B953594BB5E","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9","coinDecimals":6},{"coinDenom":"scrt","coinMinimalDenom":"ibc/F3F6BDEE1A79664B169D742651107BF4E03FA67E931452E27380B75F5917B7E9","coinDecimals":6}],"rest":"https://teritori-api.polkachu.com","rpc":"https://teritori-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"tori","bech32PrefixAccPub":"toripub","bech32PrefixValAddr":"torivaloper","bech32PrefixValPub":"torivaloperpub","bech32PrefixConsAddr":"torivalcons","bech32PrefixConsPub":"torivalconspub"},"chainName":"teritori","feeCurrencies":[{"coinDenom":"tori","coinMinimalDenom":"utori","coinDecimals":6}],"stakeCurrency":{"coinDenom":"tori","coinMinimalDenom":"utori","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"morocco-1","currencies":[{"coinDenom":"terp","coinMinimalDenom":"uterp","coinDecimals":6},{"coinDenom":"thiol","coinMinimalDenom":"uthiol","coinDecimals":6}],"rest":"https://api-terp.zenchainlabs.io:443","rpc":"https://rpc-terp.zenchainlabs.io/","bech32Config":{"bech32PrefixAccAddr":"terp","bech32PrefixAccPub":"terppub","bech32PrefixValAddr":"terpvaloper","bech32PrefixValPub":"terpvaloperpub","bech32PrefixConsAddr":"terpvalcons","bech32PrefixConsPub":"terpvalconspub"},"chainName":"terpnetwork","feeCurrencies":[{"coinDenom":"thiol","coinMinimalDenom":"uthiol","coinDecimals":6}],"stakeCurrency":{"coinDenom":"terp","coinMinimalDenom":"uterp","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"columbus-5","currencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},{"coinDenom":"ust","coinMinimalDenom":"uusd","coinDecimals":6},{"coinDenom":"krt","coinMinimalDenom":"ukrw","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"cw20:terra1php5m8a6qd68z02t3zpw4jv2pj4vgw4wz0t8mz","coinDecimals":6},{"coinDenom":"bluna","coinMinimalDenom":"cw20:terra1kc87mu460fwkqte29rquh4hc20m54fxwtsx7gp","coinDecimals":6},{"coinDenom":"beth","coinMinimalDenom":"cw20:terra1dzhzukyezv0etz22ud940z7adyv7xgcjkahuun","coinDecimals":6},{"coinDenom":"aust","coinMinimalDenom":"cw20:terra1hzh9vpxhsk8253se0vv5jj6etdvxu3nv8z07zu","coinDecimals":6},{"coinDenom":"anc","coinMinimalDenom":"cw20:terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76","coinDecimals":6},{"coinDenom":"mir","coinMinimalDenom":"cw20:terra15gwkyepfc6xgca5t5zefzwy42uts8l2m4g40k6","coinDecimals":6},{"coinDenom":"maapl","coinMinimalDenom":"cw20:terra1vxtwu4ehgzz77mnfwrntyrmgl64qjs75mpwqaz","coinDecimals":6},{"coinDenom":"mabnb","coinMinimalDenom":"cw20:terra1g4x2pzmkc9z3mseewxf758rllg08z3797xly0n","coinDecimals":6},{"coinDenom":"mamc","coinMinimalDenom":"cw20:terra1qelfthdanju7wavc5tq0k5r0rhsyzyyrsn09qy","coinDecimals":6},{"coinDenom":"mamd","coinMinimalDenom":"cw20:terra18ej5nsuu867fkx4tuy2aglpvqjrkcrjjslap3z","coinDecimals":6},{"coinDenom":"mamzn","coinMinimalDenom":"cw20:terra165nd2qmrtszehcfrntlplzern7zl4ahtlhd5t2","coinDecimals":6},{"coinDenom":"markk","coinMinimalDenom":"cw20:terra1qqfx5jph0rsmkur2zgzyqnfucra45rtjae5vh6","coinDecimals":6},{"coinDenom":"mbaba","coinMinimalDenom":"cw20:terra1w7zgkcyt7y4zpct9dw8mw362ywvdlydnum2awa","coinDecimals":6},{"coinDenom":"mbtc","coinMinimalDenom":"cw20:terra1rhhvx8nzfrx5fufkuft06q5marfkucdqwq5sjw","coinDecimals":6},{"coinDenom":"mcoin","coinMinimalDenom":"cw20:terra18wayjpyq28gd970qzgjfmsjj7dmgdk039duhph","coinDecimals":6},{"coinDenom":"mdis","coinMinimalDenom":"cw20:terra149755r3y0rve30e209awkhn5cxgkn5c8ju9pm5","coinDecimals":6},{"coinDenom":"mdot","coinMinimalDenom":"cw20:terra19ya4jpvjvvtggepvmmj6ftmwly3p7way0tt08r","coinDecimals":6},{"coinDenom":"meth","coinMinimalDenom":"cw20:terra1dk3g53js3034x4v5c3vavhj2738une880yu6kx","coinDecimals":6},{"coinDenom":"mfb","coinMinimalDenom":"cw20:terra1mqsjugsugfprn3cvgxsrr8akkvdxv2pzc74us7","coinDecimals":6},{"coinDenom":"mglxy","coinMinimalDenom":"cw20:terra1l5lrxtwd98ylfy09fn866au6dp76gu8ywnudls","coinDecimals":6},{"coinDenom":"mgme","coinMinimalDenom":"cw20:terra1m6j6j9gw728n82k78s0j9kq8l5p6ne0xcc820p","coinDecimals":6},{"coinDenom":"mgoogl","coinMinimalDenom":"cw20:terra1h8arz2k547uvmpxctuwush3jzc8fun4s96qgwt","coinDecimals":6},{"coinDenom":"mgs","coinMinimalDenom":"cw20:terra137drsu8gce5thf6jr5mxlfghw36rpljt3zj73v","coinDecimals":6},{"coinDenom":"mhood","coinMinimalDenom":"cw20:terra18yqdfzfhnguerz9du5mnvxsh5kxlknqhcxzjfr","coinDecimals":6},{"coinDenom":"miau","coinMinimalDenom":"cw20:terra10h7ry7apm55h4ez502dqdv9gr53juu85nkd4aq","coinDecimals":6},{"coinDenom":"miau","coinMinimalDenom":"cw20:terra15hp9pr8y4qsvqvxf3m4xeptlk7l8h60634gqec","coinDecimals":6},{"coinDenom":"mjnj","coinMinimalDenom":"cw20:terra1ptdxmj3xmmljzx02nr4auwfuelmj0cnkh8egs2","coinDecimals":6},{"coinDenom":"mko","coinMinimalDenom":"cw20:terra1qsnj5gvq8rgs7yws8x5u02gwd5wvtu4tks0hjm","coinDecimals":6},{"coinDenom":"mmsft","coinMinimalDenom":"cw20:terra1227ppwxxj3jxz8cfgq00jgnxqcny7ryenvkwj6","coinDecimals":6},{"coinDenom":"mnflx","coinMinimalDenom":"cw20:terra1jsxngqasf2zynj5kyh0tgq9mj3zksa5gk35j4k","coinDecimals":6},{"coinDenom":"mnio","coinMinimalDenom":"cw20:terra1dj2cj02zak0nvwy3uj9r9dhhxhdwxnw6psse6p","coinDecimals":6},{"coinDenom":"mnke","coinMinimalDenom":"cw20:terra17ana8hvzea0q7w367dm0dw48sxwql39qekpt7g","coinDecimals":6},{"coinDenom":"mnvda","coinMinimalDenom":"cw20:terra1drsjzvzej4h4qlehcfwclxg4w5l3h5tuvd3jd8","coinDecimals":6},{"coinDenom":"mpypl","coinMinimalDenom":"cw20:terra1rh2907984nudl7vh56qjdtvv7947z4dujj92sx","coinDecimals":6},{"coinDenom":"mqqq","coinMinimalDenom":"cw20:terra1csk6tc7pdmpr782w527hwhez6gfv632tyf72cp","coinDecimals":6},{"coinDenom":"msbux","coinMinimalDenom":"cw20:terra1246zy658dfgtausf0c4a6ly8sc2e285q4kxqga","coinDecimals":6},{"coinDenom":"mslv","coinMinimalDenom":"cw20:terra1kscs6uhrqwy6rx5kuw5lwpuqvm3t6j2d6uf2lp","coinDecimals":6},{"coinDenom":"mspy","coinMinimalDenom":"cw20:terra1aa00lpfexyycedfg5k2p60l9djcmw0ue5l8fhc","coinDecimals":6},{"coinDenom":"msq","coinMinimalDenom":"cw20:terra1u43zu5amjlsgty5j64445fr9yglhm53m576ugh","coinDecimals":6},{"coinDenom":"mtsla","coinMinimalDenom":"cw20:terra14y5affaarufk3uscy2vr6pe6w6zqf2wpjzn5sh","coinDecimals":6},{"coinDenom":"mtwtr","coinMinimalDenom":"cw20:terra1cc3enj9qgchlrj34cnzhwuclc4vl2z3jl7tkqg","coinDecimals":6},{"coinDenom":"muso","coinMinimalDenom":"cw20:terra1lvmx8fsagy70tv0fhmfzdw9h6s3sy4prz38ugf","coinDecimals":6},{"coinDenom":"mvixy","coinMinimalDenom":"cw20:terra19cmt6vzvhnnnfsmccaaxzy2uaj06zjktu6yzjx","coinDecimals":6},{"coinDenom":"mvixy","coinMinimalDenom":"cw20:terra1zp3a6q6q4953cz376906g5qfmxnlg77hx3te45","coinDecimals":6},{"coinDenom":"lota","coinMinimalDenom":"cw20:terra1ez46kxtulsdv07538fh5ra5xj8l68mu8eg24vr","coinDecimals":6},{"coinDenom":"dph","coinMinimalDenom":"cw20:terra17jnhankdfl8vyzj6vejt7ag8uz0cjc9crkl2h7","coinDecimals":6},{"coinDenom":"mine","coinMinimalDenom":"cw20:terra1kcthelkax4j9x8d3ny6sdag0qmxxynl3qtcrpy","coinDecimals":6},{"coinDenom":"bpsidp-24m","coinMinimalDenom":"cw20:terra1zsaswh926ey8qa5x4vj93kzzlfnef0pstuca0y","coinDecimals":6},{"coinDenom":"spec","coinMinimalDenom":"cw20:terra1s5eczhe0h0jutf46re52x5z4r03c8hupacxmdr","coinDecimals":6},{"coinDenom":"loop","coinMinimalDenom":"cw20:terra1nef5jf6c7js9x6gkntlehgywvjlpytm7pcgkn4","coinDecimals":6},{"coinDenom":"loopr","coinMinimalDenom":"cw20:terra1jx4lmmke2srcvpjeereetc9hgegp4g5j0p9r2q","coinDecimals":6},{"coinDenom":"stt","coinMinimalDenom":"cw20:terra13xujxcrc9dqft4p9a8ls0w3j0xnzm6y2uvve8n","coinDecimals":6},{"coinDenom":"twd","coinMinimalDenom":"cw20:terra19djkaepjjswucys4npd5ltaxgsntl7jf0xz7w6","coinDecimals":6},{"coinDenom":"xtra","coinMinimalDenom":"cw20:terra1kvjscdgwuvwc6uzm4rqfjl6nlmuhj28tequlnc","coinDecimals":6},{"coinDenom":"miaw","coinMinimalDenom":"cw20:terra1vtr50tw0pgqpes34zqu60n554p9x4950wk8f63","coinDecimals":6},{"coinDenom":"psi","coinMinimalDenom":"cw20:terra12897djskt9rge8dtmm86w654g7kzckkd698608","coinDecimals":6},{"coinDenom":"nluna","coinMinimalDenom":"cw20:terra10f2mt82kjnkxqj2gepgwl637u2w4ue2z5nhz5j","coinDecimals":6},{"coinDenom":"neth","coinMinimalDenom":"cw20:terra178v546c407pdnx5rer3hu8s2c0fc924k74ymnn","coinDecimals":6},{"coinDenom":"cnluna","coinMinimalDenom":"cw20:terra1u553zk43jd4rwzc53qrdrq4jc2p8rextyq09dj","coinDecimals":6},{"coinDenom":"cneth","coinMinimalDenom":"cw20:terra1nagqpmyw55yjphea4rhntlfv87ugmeaj8ym756","coinDecimals":6},{"coinDenom":"navax","coinMinimalDenom":"cw20:terra13k62n0285wj8ug0ngcgpf7dgnkzqeu279tz636","coinDecimals":6},{"coinDenom":"natom","coinMinimalDenom":"cw20:terra1jtdc6zpf95tvh9peuaxwp3v0yqszcnwl8j5ade","coinDecimals":6},{"coinDenom":"vkr","coinMinimalDenom":"cw20:terra1dy9kmlm4anr92e42mrkjwzyvfqwz66un00rwr5","coinDecimals":6},{"coinDenom":"orion","coinMinimalDenom":"cw20:terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03","coinDecimals":8},{"coinDenom":"tland","coinMinimalDenom":"cw20:terra1r5506ckw5tfr3z52jwlek8vg9sn3yflrqrzfsc","coinDecimals":6},{"coinDenom":"vust","coinMinimalDenom":"cw20:terra1w0p5zre38ecdy3ez8efd5h9fvgum5s206xknrg","coinDecimals":6},{"coinDenom":"eth","coinMinimalDenom":"cw20:terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r","coinDecimals":8},{"coinDenom":"wbtc","coinMinimalDenom":"cw20:terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55","coinDecimals":8},{"coinDenom":"sol","coinMinimalDenom":"cw20:terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk","coinDecimals":8},{"coinDenom":"maticet","coinMinimalDenom":"cw20:terra1dfasranqm4uyaz72r960umxy0w8t6zewqlnkuq","coinDecimals":8},{"coinDenom":"bnb","coinMinimalDenom":"cw20:terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8","coinDecimals":8},{"coinDenom":"cake","coinMinimalDenom":"cw20:terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av","coinDecimals":8},{"coinDenom":"link","coinMinimalDenom":"cw20:terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym","coinDecimals":8},{"coinDenom":"sushi","coinMinimalDenom":"cw20:terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a","coinDecimals":8},{"coinDenom":"uni","coinMinimalDenom":"cw20:terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf","coinDecimals":8},{"coinDenom":"usdtet","coinMinimalDenom":"cw20:terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva","coinDecimals":6},{"coinDenom":"usdcet","coinMinimalDenom":"cw20:terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06","coinDecimals":6},{"coinDenom":"kuji","coinMinimalDenom":"cw20:terra1xfsdgcemqwxp4hhnyk4rle6wr22sseq7j07dnn","coinDecimals":6},{"coinDenom":"skuji","coinMinimalDenom":"cw20:terra188w26t95tf4dz77raftme8p75rggatxjxfeknw","coinDecimals":6},{"coinDenom":"wsteth","coinMinimalDenom":"cw20:terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur","coinDecimals":8},{"coinDenom":"wstsol","coinMinimalDenom":"cw20:terra1t9ul45l7m6jw6sxgvnp8e5hj8xzkjsg82g84ap","coinDecimals":8},{"coinDenom":"wsbsol","coinMinimalDenom":"cw20:terra1c3xd5s2j3ejx2d94tvcjfkrdeu6rmz48ghzznj","coinDecimals":8},{"coinDenom":"ldo","coinMinimalDenom":"cw20:terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z","coinDecimals":8},{"coinDenom":"webeth","coinMinimalDenom":"cw20:terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz","coinDecimals":8},{"coinDenom":"stluna","coinMinimalDenom":"cw20:terra1yg3j2s986nyp5z7r2lvt0hx3r0lnd7kwvwwtsc","coinDecimals":6},{"coinDenom":"xdefi","coinMinimalDenom":"cw20:terra169edevav3pdrtjcx35j6pvzuv54aevewar4nlh","coinDecimals":8},{"coinDenom":"btl","coinMinimalDenom":"cw20:terra193c42lfwmlkasvcw22l9qqzc5q2dx208tkd7wl","coinDecimals":6},{"coinDenom":"lunax","coinMinimalDenom":"cw20:terra17y9qkl8dfkeg4py7n0g5407emqnemc3yqk5rup","coinDecimals":6},{"coinDenom":"luni","coinMinimalDenom":"cw20:terra1m3tdguf59xq3pa2twk5fjte5g6szj5y9x5npy7","coinDecimals":6},{"coinDenom":"ply","coinMinimalDenom":"cw20:terra13awdgcx40tz5uygkgm79dytez3x87rpg4uhnvu","coinDecimals":6},{"coinDenom":"tfloki","coinMinimalDenom":"cw20:terra1u2k0nkenw0p25ljsr4ksh7rxm65y466vkdewwj","coinDecimals":6},{"coinDenom":"tftic","coinMinimalDenom":"cw20:terra1a8k3jyv3wf6k3zngza5h6srrxcckdf7zv90p6u","coinDecimals":6},{"coinDenom":"tfticii","coinMinimalDenom":"cw20:terra1xt9fgu7965kgvunnjts9zkprd8986kcc444q86","coinDecimals":6},{"coinDenom":"tfticiii","coinMinimalDenom":"cw20:terra1vte2xv7dr8sfnrnwdf9arcyprqgr0hty5ads28","coinDecimals":6},{"coinDenom":"moon","coinMinimalDenom":"cw20:terra1hmxxq0y8h79f3228vs0czc4uz5jdgjt0appp26","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"cw20:terra1xj49zyqrwpv5k928jwfpfy2ha668nwdgkwlrg3","coinDecimals":6},{"coinDenom":"xastro.cw20","coinMinimalDenom":"cw20:terra14lpnyzc9z4g3ugr4lhm8s4nle0tq8vcltkhzh7","coinDecimals":6},{"coinDenom":"halo","coinMinimalDenom":"cw20:terra1w8kvd6cqpsthupsk4l0clwnmek4l3zr7c84kwq","coinDecimals":6},{"coinDenom":"pug","coinMinimalDenom":"cw20:terra1kdfsdm3c4reun9j3m4mk3nmyw4a4ns7mj24q3j","coinDecimals":6},{"coinDenom":"orne","coinMinimalDenom":"cw20:terra1hnezwjqlhzawcrfysczcxs6xqxu2jawn729kkf","coinDecimals":6},{"coinDenom":"tns","coinMinimalDenom":"cw20:terra14vz4v8adanzph278xyeggll4tfww7teh0xtw2y","coinDecimals":6},{"coinDenom":"xrune","coinMinimalDenom":"cw20:terra1td743l5k5cmfy7tqq202g7vkmdvq35q48u2jfm","coinDecimals":6},{"coinDenom":"alot","coinMinimalDenom":"cw20:terra1366wmr8t8rrkh6mag8fagqxntmf2qe4kyte784","coinDecimals":6},{"coinDenom":"sity","coinMinimalDenom":"cw20:terra1z09gnzufuflz6ckd9k0u456l9dnpgsynu0yyhe","coinDecimals":6},{"coinDenom":"glow","coinMinimalDenom":"cw20:terra13zx49nk8wjavedjzu8xkk95r3t0ta43c9ptul7","coinDecimals":6},{"coinDenom":"apollo","coinMinimalDenom":"cw20:terra100yeqvww74h4yaejj6h733thgcafdaukjtw397","coinDecimals":6},{"coinDenom":"abr","coinMinimalDenom":"cw20:terra1a7ye2splpfzyenu0yrdu8t83uzgusx2malkc7u","coinDecimals":6},{"coinDenom":"whgtps","coinMinimalDenom":"cw20:terra1y3d5qexmyac0fg53pfglh2pjk0664ymfvcq9mc","coinDecimals":8},{"coinDenom":"prism","coinMinimalDenom":"cw20:terra1dh9478k2qvqhqeajhn75a2a7dsnf74y5ukregw","coinDecimals":6},{"coinDenom":"sdollar","coinMinimalDenom":"cw20:terra1l0y8yg0s86x299nqw0p6fhh7ngex3r4phtjeuq","coinDecimals":2},{"coinDenom":"whsail","coinMinimalDenom":"cw20:terra1ku5e0dhutxhuxudsmsn5647wwcz6ndr3rsh90k","coinDecimals":6},{"coinDenom":"whgsail","coinMinimalDenom":"cw20:terra1rl0cpwgtwl4utnaynugevdje37fnmsea7rv4uu","coinDecimals":8},{"coinDenom":"xprism","coinMinimalDenom":"cw20:terra1042wzrwg2uk6jqxjm34ysqquyr9esdgm5qyswz","coinDecimals":6},{"coinDenom":"cde","coinMinimalDenom":"cw20:terra13fs83g5atgjwuh7c5ydzh6n7gecel6xyhhy2t5","coinDecimals":9},{"coinDenom":"ctx","coinMinimalDenom":"cw20:terra1rl20t79ffsrqfa29rke48tj05gj9jxumm92vg8","coinDecimals":6},{"coinDenom":"cluna","coinMinimalDenom":"cw20:terra13zaagrrrxj47qjwczsczujlvnnntde7fdt0mau","coinDecimals":6},{"coinDenom":"pluna","coinMinimalDenom":"cw20:terra1tlgelulz9pdkhls6uglfn5lmxarx7f2gxtdzh2","coinDecimals":6},{"coinDenom":"yluna","coinMinimalDenom":"cw20:terra17wkadg0tah554r35x6wvff0y5s7ve8npcjfuhz","coinDecimals":6},{"coinDenom":"atlo","coinMinimalDenom":"cw20:terra1cl7whtrqmz5ldr553q69qahck8xvk80fm33qjx","coinDecimals":6},{"coinDenom":"local","coinMinimalDenom":"cw20:terra1vchw83qt25j89zqwdpmdzj722sqxthnckqzxxp","coinDecimals":6},{"coinDenom":"luv","coinMinimalDenom":"cw20:terra15k5r9r8dl8r7xlr29pry8a9w7sghehcnv5mgp6","coinDecimals":6},{"coinDenom":"robo","coinMinimalDenom":"cw20:terra1f62tqesptvmhtzr8sudru00gsdtdz24srgm7wp","coinDecimals":6},{"coinDenom":"luart","coinMinimalDenom":"cw20:terra1vwz7t30q76s7xx6qgtxdqnu6vpr3ak3vw62ygk","coinDecimals":6},{"coinDenom":"mars","coinMinimalDenom":"cw20:terra12hgwnpupflfpuual532wgrxu2gjp0tcagzgx4n","coinDecimals":6},{"coinDenom":"xmars","coinMinimalDenom":"cw20:terra1a04v570f9cxp49mk06vjsm8axsswndpwwt67k4","coinDecimals":6},{"coinDenom":"dfiat","coinMinimalDenom":"cw20:terra1vpws4hmpmpsqwnz3gljn8zj42rv7rkpc5atgt4","coinDecimals":8},{"coinDenom":"ceres","coinMinimalDenom":"cw20:terra1hppnw4jppmrzzga4yvd8s87y3dwkhe27xwwl5d","coinDecimals":6},{"coinDenom":"wasavax","coinMinimalDenom":"cw20:terra1z3e2e4jpk4n0xzzwlkgcfvc95pc5ldq0xcny58","coinDecimals":8},{"coinDenom":"mint","coinMinimalDenom":"cw20:terra1zd6let0zg0xjn2sestagxv4ax24a4ml6j40qdr","coinDecimals":6},{"coinDenom":"sd","coinMinimalDenom":"cw20:terra1ustvnmngueq0p4jd7gfnutgvdc6ujpsjhsjd02","coinDecimals":8},{"coinDenom":"xsd","coinMinimalDenom":"cw20:terra1ln2z938phz0nc2wepxpzfkwp6ezn9yrz9zv9ep","coinDecimals":8},{"coinDenom":"paxg","coinMinimalDenom":"cw20:terra1uux6gwd6pzr0gfzrru5kne55cxex9d0700c72r","coinDecimals":8},{"coinDenom":"whdao","coinMinimalDenom":"cw20:terra1efjugpjc50d8sha7lr8s48cr7wmsthz94eevcl","coinDecimals":8},{"coinDenom":"link","coinMinimalDenom":"cw20:terra1su6g4t4vwx7y0uh3ksancyaurj4l6w9pfs40qt","coinDecimals":18},{"coinDenom":"sayve","coinMinimalDenom":"cw20:terra14v9wrjs55qsn9lkvylsqela3w2ytwxzkycqzcr","coinDecimals":6},{"coinDenom":"guides","coinMinimalDenom":"cw20:terra1z55rhw0ut70jxdmpvge98mvj0rkwcz74q77z0u","coinDecimals":6},{"coinDenom":"bro","coinMinimalDenom":"cw20:terra1mt2ytlrxhvd5c4d4fshxxs3zcus3fkdmuv4mk2","coinDecimals":6},{"coinDenom":"bbro","coinMinimalDenom":"cw20:terra1qryq5wreecx2wd3cdtzz94syr4z0a92l60asds","coinDecimals":6},{"coinDenom":"gtps","coinMinimalDenom":"cw20:terra15zvyhmv6gwddht7kt4q6w5nasn4tcpgzcdfmgr","coinDecimals":18},{"coinDenom":"gfi","coinMinimalDenom":"cw20:terra15pkdjxv2ewjzn9x665y26pfz2h6ymak4d4e8se","coinDecimals":18},{"coinDenom":"ulc","coinMinimalDenom":"cw20:terra1fyjsxx73jrufw8ufgtuswa773dvdkny92k70wa","coinDecimals":18},{"coinDenom":"sst","coinMinimalDenom":"cw20:terra1689ys6p6gfu0q6xrjqkzfn80sdyhurjqn0jfdl","coinDecimals":6},{"coinDenom":"atlas","coinMinimalDenom":"cw20:terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc","coinDecimals":8},{"coinDenom":"audio","coinMinimalDenom":"cw20:terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp","coinDecimals":8},{"coinDenom":"avax","coinMinimalDenom":"cw20:terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m","coinDecimals":8},{"coinDenom":"bat","coinMinimalDenom":"cw20:terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2","coinDecimals":8},{"coinDenom":"busdbs","coinMinimalDenom":"cw20:terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd","coinDecimals":8},{"coinDenom":"dai","coinMinimalDenom":"cw20:terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95","coinDecimals":8},{"coinDenom":"maticpo","coinMinimalDenom":"cw20:terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8","coinDecimals":8},{"coinDenom":"mimet","coinMinimalDenom":"cw20:terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y","coinDecimals":8},{"coinDenom":"ray","coinMinimalDenom":"cw20:terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q","coinDecimals":6},{"coinDenom":"sbr","coinMinimalDenom":"cw20:terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc","coinDecimals":6},{"coinDenom":"shib","coinMinimalDenom":"cw20:terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd","coinDecimals":8},{"coinDenom":"srmso","coinMinimalDenom":"cw20:terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c","coinDecimals":6},{"coinDenom":"usdcav","coinMinimalDenom":"cw20:terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w","coinDecimals":6},{"coinDenom":"usdcbs","coinMinimalDenom":"cw20:terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu","coinDecimals":8},{"coinDenom":"usdcpo","coinMinimalDenom":"cw20:terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x","coinDecimals":6},{"coinDenom":"usdcso","coinMinimalDenom":"cw20:terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4","coinDecimals":6},{"coinDenom":"usdtav","coinMinimalDenom":"cw20:terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx","coinDecimals":6},{"coinDenom":"usdtbs","coinMinimalDenom":"cw20:terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd","coinDecimals":8},{"coinDenom":"usdtso","coinMinimalDenom":"cw20:terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5","coinDecimals":6},{"coinDenom":"gohm","coinMinimalDenom":"cw20:terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3","coinDecimals":8},{"coinDenom":"msol","coinMinimalDenom":"cw20:terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y","coinDecimals":8},{"coinDenom":"steth","coinMinimalDenom":"cw20:terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d","coinDecimals":8},{"coinDenom":"lct","coinMinimalDenom":"cw20:terra1srp2u95kxps35nvan88gn96nfqhukqya2d0ffc","coinDecimals":6},{"coinDenom":"batom","coinMinimalDenom":"cw20:terra18zqcnl83z98tf6lly37gghm7238k7lh79u4z9a","coinDecimals":6},{"coinDenom":"webatom","coinMinimalDenom":"cw20:terra128pe5jpempxu0nws5lw28se9zknhsr78626cpn","coinDecimals":6},{"coinDenom":"wcoin","coinMinimalDenom":"cw20:terra1laczhlpxlgmrwr9un9ds74qxd2fj4754nf82dn","coinDecimals":6},{"coinDenom":"lctfancard","coinMinimalDenom":"cw20:terra1thhm2u93m2stytzynhsxh5h3jrtg540x4punqy","coinDecimals":6},{"coinDenom":"kntc","coinMinimalDenom":"cw20:terra1yeyr6taynkwdl85ppaggr3zr8txhf66cny2ang","coinDecimals":6},{"coinDenom":"kust","coinMinimalDenom":"cw20:terra1g53pyke8jtmt4lwvk4yl0xaqc4u0qlsl8dz3ex","coinDecimals":6},{"coinDenom":"steak","coinMinimalDenom":"cw20:terra1rl4zyexjphwgx6v3ytyljkkc4mrje2pyznaclv","coinDecimals":6},{"coinDenom":"cst","coinMinimalDenom":"cw20:terra1jkkt5638cd5pur0u5jnr2juw0v6hz5d6z8xu8m","coinDecimals":6},{"coinDenom":"cstfancard","coinMinimalDenom":"cw20:terra1kz7qszu7p4dg9lts7m9m7lpuarsnan47jh3fam","coinDecimals":6},{"coinDenom":"nwld","coinMinimalDenom":"cw20:terra1amz5c45l34n7w8m5a3z7rd7u0k037x4nnsemwj","coinDecimals":9},{"coinDenom":"fury","coinMinimalDenom":"cw20:terra1cdc6nlsx0l6jmt3nnx7gxjggf902wge3n2z76k","coinDecimals":6},{"coinDenom":"rct","coinMinimalDenom":"cw20:terra17n223dxpkypc5c48la7aqjvverczg82ga3cr93","coinDecimals":6},{"coinDenom":"vitc","coinMinimalDenom":"cw20:terra14vw4sfqwe7jw8ppcc7u44vq7hy9qa2nlstnxmu","coinDecimals":6},{"coinDenom":"sb","coinMinimalDenom":"cw20:terra1948uvsah8aw40dhsa9mhl3htq8lraj0smlh77g","coinDecimals":6},{"coinDenom":"toad","coinMinimalDenom":"cw20:terra1rz964297kvt86rteajhtp4hsffhcum0ye8eljh","coinDecimals":6},{"coinDenom":"orionastro","coinMinimalDenom":"cw20:terra1yhlhrea3rgyx2xdnsswsfakn28qa8z7yp5gmhd","coinDecimals":6},{"coinDenom":"retro","coinMinimalDenom":"cw20:terra1j4hwavavmtsafa6zr0npalfz3tk9gf3p4787mp","coinDecimals":6},{"coinDenom":"tnd","coinMinimalDenom":"cw20:terra16wggm67a34msdxasg2vergm2pt289y7930wv7d","coinDecimals":6},{"coinDenom":"stnd","coinMinimalDenom":"cw20:terra1n9k2he20h5vpyn4mgv7pg4pzvw2n3wc4a86v3g","coinDecimals":6},{"coinDenom":"nwt","coinMinimalDenom":"cw20:terra1ezz5xply2v3xdyv32gy5tcd7zq4k235q4xtzwe","coinDecimals":9},{"coinDenom":"aut","coinMinimalDenom":"uaud","coinDecimals":6},{"coinDenom":"cat","coinMinimalDenom":"ucad","coinDecimals":6},{"coinDenom":"cht","coinMinimalDenom":"uchf","coinDecimals":6},{"coinDenom":"cnt","coinMinimalDenom":"ucny","coinDecimals":6},{"coinDenom":"dkt","coinMinimalDenom":"udkk","coinDecimals":6},{"coinDenom":"eut","coinMinimalDenom":"ueur","coinDecimals":6},{"coinDenom":"gbt","coinMinimalDenom":"ugbp","coinDecimals":6},{"coinDenom":"hkt","coinMinimalDenom":"uhkd","coinDecimals":6},{"coinDenom":"idt","coinMinimalDenom":"uidr","coinDecimals":6},{"coinDenom":"int","coinMinimalDenom":"uinr","coinDecimals":6},{"coinDenom":"jpt","coinMinimalDenom":"ujpy","coinDecimals":6},{"coinDenom":"mnt","coinMinimalDenom":"umnt","coinDecimals":6},{"coinDenom":"myt","coinMinimalDenom":"umyr","coinDecimals":6},{"coinDenom":"not","coinMinimalDenom":"unok","coinDecimals":6},{"coinDenom":"pht","coinMinimalDenom":"uphp","coinDecimals":6},{"coinDenom":"sdt","coinMinimalDenom":"usdr","coinDecimals":6},{"coinDenom":"set","coinMinimalDenom":"usek","coinDecimals":6},{"coinDenom":"sgt","coinMinimalDenom":"usgd","coinDecimals":6},{"coinDenom":"tht","coinMinimalDenom":"uthb","coinDecimals":6},{"coinDenom":"twt","coinMinimalDenom":"utwd","coinDecimals":6},{"coinDenom":"neb","coinMinimalDenom":"cw20:terra1mpq5zkkm39nmjrjg9raknpfrfmcfwv0nh0whvn","coinDecimals":6},{"coinDenom":"trit","coinMinimalDenom":"cw20:terra1g6fm3yu79gv0rc8067n2nnfpf0vks6n0wpzaf4u7w48tdrmj98zsy7uu00","coinDecimals":6},{"coinDenom":"juris","coinMinimalDenom":"cw20:terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2","coinDecimals":6},{"coinDenom":"tadf","coinMinimalDenom":"cw20:terra19gzvkw5hft3ulp8n6ws3p9yradhc802axqal59lzxau6rqxktj9q0dwf9c","coinDecimals":6},{"coinDenom":"frog","coinMinimalDenom":"cw20:terra1wez9puj43v4s25vrex7cv3ut3w75w4h6j5e537sujyuxj0r5ne2qp9uwl9","coinDecimals":6}],"rest":"https://terra-classic-lcd.publicnode.com","rpc":"https://terra-classic-rpc.publicnode.com:443","bech32Config":{"bech32PrefixAccAddr":"terra","bech32PrefixAccPub":"terrapub","bech32PrefixValAddr":"terravaloper","bech32PrefixValPub":"terravaloperpub","bech32PrefixConsAddr":"terravalcons","bech32PrefixConsPub":"terravalconspub"},"chainName":"terra","feeCurrencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6,"gasPriceStep":{"low":28.325,"average":28.325,"high":50}},{"coinDenom":"sdt","coinMinimalDenom":"usdr","coinDecimals":6,"gasPriceStep":{"low":0.52469,"average":0.52469,"high":0.52469}},{"coinDenom":"ust","coinMinimalDenom":"uusd","coinDecimals":6,"gasPriceStep":{"low":0.75,"average":0.75,"high":0.75}},{"coinDenom":"krt","coinMinimalDenom":"ukrw","coinDecimals":6,"gasPriceStep":{"low":850,"average":850,"high":850}},{"coinDenom":"mnt","coinMinimalDenom":"umnt","coinDecimals":6,"gasPriceStep":{"low":2142.855,"average":2142.855,"high":2142.855}},{"coinDenom":"eut","coinMinimalDenom":"ueur","coinDecimals":6,"gasPriceStep":{"low":0.625,"average":0.625,"high":0.625}},{"coinDenom":"cnt","coinMinimalDenom":"ucny","coinDecimals":6,"gasPriceStep":{"low":4.9,"average":4.9,"high":4.9}},{"coinDenom":"jpt","coinMinimalDenom":"ujpy","coinDecimals":6,"gasPriceStep":{"low":81.85,"average":81.85,"high":81.85}},{"coinDenom":"gbt","coinMinimalDenom":"ugbp","coinDecimals":6,"gasPriceStep":{"low":0.55,"average":0.55,"high":0.55}},{"coinDenom":"int","coinMinimalDenom":"uinr","coinDecimals":6,"gasPriceStep":{"low":54.4,"average":54.4,"high":54.4}},{"coinDenom":"cat","coinMinimalDenom":"ucad","coinDecimals":6,"gasPriceStep":{"low":0.95,"average":0.95,"high":0.95}},{"coinDenom":"cht","coinMinimalDenom":"uchf","coinDecimals":6,"gasPriceStep":{"low":0.7,"average":0.7,"high":0.7}},{"coinDenom":"aut","coinMinimalDenom":"uaud","coinDecimals":6,"gasPriceStep":{"low":0.95,"average":0.95,"high":0.95}},{"coinDenom":"sgt","coinMinimalDenom":"usgd","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"tht","coinMinimalDenom":"uthb","coinDecimals":6,"gasPriceStep":{"low":23.1,"average":23.1,"high":23.1}},{"coinDenom":"set","coinMinimalDenom":"usek","coinDecimals":6,"gasPriceStep":{"low":6.25,"average":6.25,"high":6.25}},{"coinDenom":"not","coinMinimalDenom":"unok","coinDecimals":6,"gasPriceStep":{"low":6.25,"average":6.25,"high":6.25}},{"coinDenom":"dkt","coinMinimalDenom":"udkk","coinDecimals":6,"gasPriceStep":{"low":4.5,"average":4.5,"high":4.5}},{"coinDenom":"idt","coinMinimalDenom":"uidr","coinDecimals":6,"gasPriceStep":{"low":10900,"average":10900,"high":10900}},{"coinDenom":"pht","coinMinimalDenom":"uphp","coinDecimals":6,"gasPriceStep":{"low":38,"average":38,"high":38}},{"coinDenom":"hkt","coinMinimalDenom":"uhkd","coinDecimals":6,"gasPriceStep":{"low":5.85,"average":5.85,"high":5.85}},{"coinDenom":"myt","coinMinimalDenom":"umyr","coinDecimals":6,"gasPriceStep":{"low":3,"average":3,"high":3}},{"coinDenom":"twt","coinMinimalDenom":"utwd","coinDecimals":6,"gasPriceStep":{"low":20,"average":20,"high":20}}],"stakeCurrency":{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},"bip44":{"coinType":330}},{"chainId":"phoenix-1","currencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},{"coinDenom":"astro.cw20","coinMinimalDenom":"cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"ibc/8D8A7F7253615E5F76CB6252A1E1BD921D5EDB7BBAAF8913FB1C77FF125D9995","coinDecimals":6},{"coinDenom":"cw20:terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k","coinMinimalDenom":"cw20:terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k","coinDecimals":0},{"coinDenom":"Reis","coinMinimalDenom":"cw20:terra1sdglum2dt4f3fmq7jrt2phf2tegmnudc7qqqqujkpqcm9ujuxxkqakv5u8","coinDecimals":6},{"coinDenom":"Escudos","coinMinimalDenom":"cw20:terra1qj5hs3e86qn4vm9dvtgtlkdp550r0rayk9wpay44mfw3gn3tr8nq5jw3dg","coinDecimals":6},{"coinDenom":"Alem","coinMinimalDenom":"cw20:terra1cmf8ytutcwrjrv08zskj9phuh46a3w3nkjax7en4hxezsrdr58lqvzy05q","coinDecimals":6},{"coinDenom":"AMG","coinMinimalDenom":"cw20:terra1en42e2vsvtdsvrcqg5s5e5e4djejjaed6fxmvtpweg3tu33h6k5qkg9c40","coinDecimals":6},{"coinDenom":"ARK","coinMinimalDenom":"cw20:terra1ysd87nayjuelxj4wvp4wnp9as0mwszzkje6a9z6f3xx2903ghnsq4hm50y","coinDecimals":6},{"coinDenom":"DANU","coinMinimalDenom":"cw20:terra1vj68f2ntauaj5dfvy5z4tq4we3hsyg363k63js5sae2t7th9aacqan89sr","coinDecimals":6},{"coinDenom":"TRS","coinMinimalDenom":"cw20:terra1swzpenwh39f8aa7qht34r05f8ew6k2vehvqt2aw4fjy0fgghhheqs9l6h7","coinDecimals":6},{"coinDenom":"PLASMA","coinMinimalDenom":"cw20:terra1mqs6mdx0ak7qvjzs6efhg65g4j5pzwpdkcgdsv5tpekln3qhggrq3qzvdp","coinDecimals":6},{"coinDenom":"DMT","coinMinimalDenom":"cw20:terra1xfkkgwxychgrnq0vcp82u32mecrzj8s64s03cxtmf46k6j2n2wssc7rzjf","coinDecimals":6},{"coinDenom":"ampluna","coinMinimalDenom":"cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct","coinDecimals":6},{"coinDenom":"roar","coinMinimalDenom":"cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv","coinDecimals":6},{"coinDenom":"gem","coinMinimalDenom":"cw20:terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv","coinDecimals":6},{"coinDenom":"cub","coinMinimalDenom":"cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t","coinDecimals":6},{"coinDenom":"blue","coinMinimalDenom":"cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584","coinDecimals":6},{"coinDenom":"xxx","coinMinimalDenom":"cw20:terra10se906awphtccf4vd83m0ulpmpt9v4msuakmpy0pwvmtxmup3kdq25rayn","coinDecimals":10},{"coinDenom":"GUGU","coinMinimalDenom":"cw20:terra19nu4q2y0xe3vza6ve5ymup33uzm049pnrqq5ddeuulmrg279t57qstcces","coinDecimals":6},{"coinDenom":"bLUNA","coinMinimalDenom":"cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml","coinDecimals":6},{"coinDenom":"sayve","coinMinimalDenom":"cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3","coinDecimals":6},{"coinDenom":"ampWHALEt","coinMinimalDenom":"factory/terra1j35ta0llaxcf55auv2cjqau5a7aee6g8fz7md7my7005cvh23jfsaw83dy/ampWHALEt","coinDecimals":6},{"coinDenom":"boneWHALEt","coinMinimalDenom":"factory/terra10j3zrymfrkta2pxe0gklc79gu06tqyuy8c3kh6tqdsrrprsjqkrqzfl4df/boneWHALEt","coinDecimals":6},{"coinDenom":"ampROAR","coinMinimalDenom":"factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR","coinDecimals":6},{"coinDenom":"nico","coinMinimalDenom":"cw20:terra1e0efrrrj8d55pflme3dmtyuj7klzcef5cfmz6r2jyqz77kk2jz3qa6drg3","coinDecimals":18},{"coinDenom":"seas","coinMinimalDenom":"cw20:terra1rc6ssp5rym7a0hg29xpj4cc9e67tl56kg5jyzgl9qrhfxxc2ugvsnrkala","coinDecimals":6},{"coinDenom":"bitz","coinMinimalDenom":"cw20:terra18vp5s0r7keezm35hdxsgw8zgfnyn8wejdkk893ag2kqncgpqxhjqwjpc0v","coinDecimals":6},{"coinDenom":"factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH","coinMinimalDenom":"ibc/A356EC90DC3AE43D485514DA7260EDC7ABB5CFAA0654CE2524C739392975AD3C","coinDecimals":18},{"coinDenom":"seul","coinMinimalDenom":"cw20:terra13s5pxw5j2p4ssvzwvxd8l7h30vke8vjgtng75vqgv6p9vddfk3hskfka0l","coinDecimals":6},{"coinDenom":"xseul","coinMinimalDenom":"cw20:terra1q328gl40az3cf9x67cgudn8e8w2az9vsmhtkwsgdu7a43rhy5caqc82yr5","coinDecimals":6},{"coinDenom":"ito","coinMinimalDenom":"cw20:terra1c77xqv746m7ghxayrge79dxr4kcezev8g6cnrfled4f3n4ufj0vs5gz28s","coinDecimals":6},{"coinDenom":"ARMANI","coinMinimalDenom":"cw20:terra1aa7stl3fytvave9xtcexgv0kne4k7ks068dcljkrfj37hy8q270sjadav8","coinDecimals":6},{"coinDenom":"DROGO","coinMinimalDenom":"cw20:terra1cl273523kmr2uwjhhznq54je69mted2u3ljffm8kp2ap4z3drdksftwqun","coinDecimals":6},{"coinDenom":"ADO","coinMinimalDenom":"cw20:terra1w8xk6rtu40st6lvl3yv7ynw5urm2n686u9cchvrzltmnktzwdesqcwy0nu","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/E18C0D303957867A164DE2863D1C3F83135936E6F17CADF4D241FBC12B0F23B2","coinDecimals":6},{"coinDenom":"DNA","coinMinimalDenom":"cw20:terra1epka8wevu90rxlvt6g5x9veevd800a760vtuftc5kqdfmrh47qds9f0m8h","coinDecimals":6},{"coinDenom":"bitmos","coinMinimalDenom":"cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq","coinDecimals":6},{"coinDenom":"lads","coinMinimalDenom":"cw20:terra1eh8eq60cjy997w5dc3a6exfzanlaurupav8klx7m9u9ddfgh25mqjwl5vj","coinDecimals":6},{"coinDenom":"rstk","coinMinimalDenom":"ibc/F709DF4969CD26174C1A53AA95F3D98BE643C1A52C9981487766F96A1811F6A4","coinDecimals":6},{"coinDenom":"CLON","coinMinimalDenom":"cw20:terra164ssz60yvsxey0ku9mtcaegdeyxwzuwwqyrp238nvflwqve0pvxsra7fa2","coinDecimals":6},{"coinDenom":"MOAR","coinMinimalDenom":"factory/terra1dndhtdr2v7ca8rrn67chlqw3cl3xhm3m2uxls62vghcg3fsh5tpss5xmcu/MOAR","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/9B19062D46CAB50361CE9B0A3E6D0A7A53AC9E7CB361F32A73CC733144A9A9E5","coinDecimals":6},{"coinDenom":"atom-luna-lp","coinMinimalDenom":"factory/terra1djk2zl83dspt696ex5crhfacu8vm6934576t4zdd2592fzyahr2qma6guq/ULUN-IBC/-LP","coinDecimals":6},{"coinDenom":"luna-usdc-lp","coinMinimalDenom":"factory/terra12jxfw2vg4cu6mxlgf39dp5ccxtuwm468w8eh9cnh2qsxc9t0sffs7ekhft/ULUN-IBC/-LP","coinDecimals":6},{"coinDenom":"luna-usdt-lp","coinMinimalDenom":"factory/terra1w9spejtuac5dt0gympq576uhwde39exhh7hdxwl99rjvaphfukkq6y4cv7/ULUN-IBC/-LP","coinDecimals":6},{"coinDenom":"ashLUNA","coinMinimalDenom":"factory/terra1f5cfm48gcezl3cx25l64ngc4yktnmx7rcpj3kggu6v273742sqqs5yn5ks/luna.ash","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/2C962DAB9F57FE0921435426AE75196009FAA1981BF86991203C8411F8980FDB","coinDecimals":6},{"coinDenom":"COSMO","coinMinimalDenom":"ibc/4925733868E7999F5822C961ADE9470A7FC5FA4A560BAE1DE102783C3F64C201","coinDecimals":6},{"coinDenom":"DGN","coinMinimalDenom":"ibc/B2AA4C3CD19954859C3B537EC0705640AFC01075F52993D9AC5E73F07F0386CC","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/36A02FFC4E74DF4F64305130C3DFA1B06BEAC775648927AA44467C76A77AB8DB","coinDecimals":6}],"rest":"https://lcd-terra.wildsage.io","rpc":"https://rpc.lavenderfive.com:443/terra2","bech32Config":{"bech32PrefixAccAddr":"terra","bech32PrefixAccPub":"terrapub","bech32PrefixValAddr":"terravaloper","bech32PrefixValPub":"terravaloperpub","bech32PrefixConsAddr":"terravalcons","bech32PrefixConsPub":"terravalconspub"},"chainName":"terra2","feeCurrencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.015,"high":0.04}}],"stakeCurrency":{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},"bip44":{"coinType":330}},{"chainId":"tgrade-mainnet-1","currencies":[{"coinDenom":"tgd","coinMinimalDenom":"utgd","coinDecimals":6}],"rest":"https://api.mainnet-1.tgrade.confio.run","rpc":"https://rpc.mainnet-1.tgrade.confio.run","bech32Config":{"bech32PrefixAccAddr":"tgrade","bech32PrefixAccPub":"tgradepub","bech32PrefixValAddr":"tgradevaloper","bech32PrefixValPub":"tgradevaloperpub","bech32PrefixConsAddr":"tgradevalcons","bech32PrefixConsPub":"tgradevalconspub"},"chainName":"tgrade","feeCurrencies":[{"coinDenom":"tgd","coinMinimalDenom":"utgd","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.075,"high":0.1}}],"stakeCurrency":{"coinDenom":"tgd","coinMinimalDenom":"utgd","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"titan_18888-1","currencies":[{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","coinDecimals":6}],"rest":"https://titan-lcd.titanlab.io:443","rpc":"https://titan-rpc.titanlab.io:443","bech32Config":{"bech32PrefixAccAddr":"titan","bech32PrefixAccPub":"titanpub","bech32PrefixValAddr":"titanvaloper","bech32PrefixValPub":"titanvaloperpub","bech32PrefixConsAddr":"titanvalcons","bech32PrefixConsPub":"titanvalconspub"},"chainName":"titan","feeCurrencies":[{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18,"gasPriceStep":{"low":100000000000,"average":110000000000,"high":200000000000}}],"stakeCurrency":{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"umee-1","currencies":[{"coinDenom":"umee","coinMinimalDenom":"uumee","coinDecimals":6}],"rest":"https://api-umee-ia.cosmosia.notional.ventures/","rpc":"https://umee-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"umee","bech32PrefixAccPub":"umeepub","bech32PrefixValAddr":"umeevaloper","bech32PrefixValPub":"umeevaloperpub","bech32PrefixConsAddr":"umeevalcons","bech32PrefixConsPub":"umeevalconspub"},"chainName":"umee","feeCurrencies":[{"coinDenom":"umee","coinMinimalDenom":"uumee","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.12,"high":0.2}}],"stakeCurrency":{"coinDenom":"umee","coinMinimalDenom":"uumee","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"FUND-MainNet-2","currencies":[{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9}],"rest":"https://rest.unification.io","rpc":"https://rpc.unification.io:443","bech32Config":{"bech32PrefixAccAddr":"und","bech32PrefixAccPub":"undpub","bech32PrefixValAddr":"undvaloper","bech32PrefixValPub":"undvaloperpub","bech32PrefixConsAddr":"undvalcons","bech32PrefixConsPub":"undvalconspub"},"chainName":"unification","feeCurrencies":[{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9,"gasPriceStep":{"low":100,"average":200,"high":300}}],"stakeCurrency":{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9},"bip44":{"coinType":5555}},{"chainId":"ununifi-beta-v1","currencies":[{"coinDenom":"guu","coinMinimalDenom":"uguu","coinDecimals":6}],"rest":"https://a.lcd.ununifi.cauchye.net:1318","rpc":"http://a.lcd.ununifi.cauchye.net:26657","bech32Config":{"bech32PrefixAccAddr":"ununifi","bech32PrefixAccPub":"ununifipub","bech32PrefixValAddr":"ununifivaloper","bech32PrefixValPub":"ununifivaloperpub","bech32PrefixConsAddr":"ununifivalcons","bech32PrefixConsPub":"ununifivalconspub"},"chainName":"ununifi","feeCurrencies":[{"coinDenom":"guu","coinMinimalDenom":"uguu","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"guu","coinMinimalDenom":"uguu","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"uptick_117-1","currencies":[{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18}],"rest":"https://uptick-rest.brocha.in:443","rpc":"https://uptick-rpc.brocha.in:443","bech32Config":{"bech32PrefixAccAddr":"uptick","bech32PrefixAccPub":"uptickpub","bech32PrefixValAddr":"uptickvaloper","bech32PrefixValPub":"uptickvaloperpub","bech32PrefixConsAddr":"uptickvalcons","bech32PrefixConsPub":"uptickvalconspub"},"chainName":"uptick","feeCurrencies":[{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18,"gasPriceStep":{"low":13000000000,"average":16000000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"xion-mainnet-1","currencies":[{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6}],"rest":"https://api.xion-mainnet-1.burnt.com","rpc":"https://rpc.xion-mainnet-1.burnt.com","bech32Config":{"bech32PrefixAccAddr":"xion","bech32PrefixAccPub":"xionpub","bech32PrefixValAddr":"xionvaloper","bech32PrefixValPub":"xionvaloperpub","bech32PrefixConsAddr":"xionvalcons","bech32PrefixConsPub":"xionvalconspub"},"chainName":"xion","feeCurrencies":[{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.001,"high":0.01}}],"stakeCurrency":{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"dimension_37-1","currencies":[{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18}],"rest":"https://dimension-lcd.xpla.io","rpc":"https://dimension-rpc.xpla.dev","bech32Config":{"bech32PrefixAccAddr":"xpla","bech32PrefixAccPub":"xplapub","bech32PrefixValAddr":"xplavaloper","bech32PrefixValPub":"xplavaloperpub","bech32PrefixConsAddr":"xplavalcons","bech32PrefixConsPub":"xplavalconspub"},"chainName":"xpla","feeCurrencies":[{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18,"gasPriceStep":{"low":850000000000,"average":1147500000000,"high":1487500000000}}],"stakeCurrency":{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"zetachain_7000-1","currencies":[{"coinDenom":"zeta","coinMinimalDenom":"azeta","coinDecimals":18}],"rest":"https://zetachain.blockpi.network/lcd/v1/public","rpc":"https://zetachain.blockpi.network/rpc/v1/public","bech32Config":{"bech32PrefixAccAddr":"zeta","bech32PrefixAccPub":"zetapub","bech32PrefixValAddr":"zetavaloper","bech32PrefixValPub":"zetavaloperpub","bech32PrefixConsAddr":"zetavalcons","bech32PrefixConsPub":"zetavalconspub"},"chainName":"zetachain","feeCurrencies":[{"coinDenom":"zeta","coinMinimalDenom":"azeta","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"zeta","coinMinimalDenom":"azeta","coinDecimals":18},"bip44":{"coinType":60}}] \ No newline at end of file +[{"chainId":"aaronetwork","currencies":[{"coinDenom":"AARON","coinMinimalDenom":"uaaron","coinDecimals":6}],"rest":"https://mainnet-api.aaronetwork.xyz","rpc":"https://mainnet-rpc.aaronetwork.xyz","bech32Config":{"bech32PrefixAccAddr":"aaron","bech32PrefixAccPub":"aaronpub","bech32PrefixValAddr":"aaronvaloper","bech32PrefixValPub":"aaronvaloperpub","bech32PrefixConsAddr":"aaronvalcons","bech32PrefixConsPub":"aaronvalconspub"},"chainName":"aaronetwork","feeCurrencies":[{"coinDenom":"AARON","coinMinimalDenom":"uaaron","coinDecimals":6}],"stakeCurrency":{"coinDenom":"AARON","coinMinimalDenom":"uaaron","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"acre_9052-1","currencies":[{"coinDenom":"acre","coinMinimalDenom":"aacre","coinDecimals":18},{"coinDenom":"arusd","coinMinimalDenom":"erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c","coinDecimals":18},{"coinDenom":"cnto","coinMinimalDenom":"erc20/0xAE6D3334989a22A65228732446731438672418F2","coinDecimals":18}],"rest":"https://lcd-acre.synergynodes.com","rpc":"https://rpc-acre.synergynodes.com","bech32Config":{"bech32PrefixAccAddr":"acre","bech32PrefixAccPub":"acrepub","bech32PrefixValAddr":"acrevaloper","bech32PrefixValPub":"acrevaloperpub","bech32PrefixConsAddr":"acrevalcons","bech32PrefixConsPub":"acrevalconspub"},"chainName":"acrechain","feeCurrencies":[{"coinDenom":"acre","coinMinimalDenom":"aacre","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"acre","coinMinimalDenom":"aacre","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"agoric-3","currencies":[{"coinDenom":"bld","coinMinimalDenom":"ubld","coinDecimals":6},{"coinDenom":"ist","coinMinimalDenom":"uist","coinDecimals":6}],"rest":"https://main.api.agoric.net:443","rpc":"https://main.rpc.agoric.net:443","bech32Config":{"bech32PrefixAccAddr":"agoric","bech32PrefixAccPub":"agoricpub","bech32PrefixValAddr":"agoricvaloper","bech32PrefixValPub":"agoricvaloperpub","bech32PrefixConsAddr":"agoricvalcons","bech32PrefixConsPub":"agoricvalconspub"},"chainName":"agoric","feeCurrencies":[{"coinDenom":"bld","coinMinimalDenom":"ubld","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.05,"high":0.07}},{"coinDenom":"ist","coinMinimalDenom":"uist","coinDecimals":6,"gasPriceStep":{"low":0.0034,"average":0.007,"high":0.02}}],"stakeCurrency":{"coinDenom":"bld","coinMinimalDenom":"ubld","coinDecimals":6},"bip44":{"coinType":564}},{"chainId":"aioz_168-1","currencies":[{"coinDenom":"aioz","coinMinimalDenom":"attoaioz","coinDecimals":18}],"rest":"https://lcd-dataseed.aioz.network","rpc":"https://rpc-dataseed.aioz.network:443","bech32Config":{"bech32PrefixAccAddr":"aioz","bech32PrefixAccPub":"aiozpub","bech32PrefixValAddr":"aiozvaloper","bech32PrefixValPub":"aiozvaloperpub","bech32PrefixConsAddr":"aiozvalcons","bech32PrefixConsPub":"aiozvalconspub"},"chainName":"aioz","feeCurrencies":[{"coinDenom":"aioz","coinMinimalDenom":"attoaioz","coinDecimals":18,"gasPriceStep":{"low":7000000000,"average":7000000000,"high":10000000000}}],"stakeCurrency":{"coinDenom":"aioz","coinMinimalDenom":"attoaioz","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"akashnet-2","currencies":[{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/05DB6975261B805B6F6A157A4386C627F8A70BF8118D411655EFEDCA82BFABA5","coinDecimals":6}],"rest":"https://api.akash.forbole.com:443","rpc":"https://rpc.akash.forbole.com:443","bech32Config":{"bech32PrefixAccAddr":"akash","bech32PrefixAccPub":"akashpub","bech32PrefixValAddr":"akashvaloper","bech32PrefixValPub":"akashvaloperpub","bech32PrefixConsAddr":"akashvalcons","bech32PrefixConsPub":"akashvalconspub"},"chainName":"akash","feeCurrencies":[{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6,"gasPriceStep":{"low":0.00025,"average":0.0025,"high":0.025}}],"stakeCurrency":{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"althea_258432-1","currencies":[{"coinDenom":"althea","coinMinimalDenom":"aalthea","coinDecimals":18}],"rest":"https://nodes.chandrastation.com/api/althea/","rpc":"https://nodes.chandrastation.com/rpc/althea/","bech32Config":{"bech32PrefixAccAddr":"althea","bech32PrefixAccPub":"altheapub","bech32PrefixValAddr":"altheavaloper","bech32PrefixValPub":"altheavaloperpub","bech32PrefixConsAddr":"altheavalcons","bech32PrefixConsPub":"altheavalconspub"},"chainName":"althea","feeCurrencies":[{"coinDenom":"althea","coinMinimalDenom":"aalthea","coinDecimals":18,"gasPriceStep":{"low":100000000000,"average":100000000000,"high":300000000000}}],"stakeCurrency":{"coinDenom":"althea","coinMinimalDenom":"aalthea","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"andromeda-1","currencies":[{"coinDenom":"andr","coinMinimalDenom":"uandr","coinDecimals":6}],"rest":"https://api.andromeda-1.andromeda.aviaone.com","rpc":"https://rpc.andromeda-1.andromeda.aviaone.com","bech32Config":{"bech32PrefixAccAddr":"andr","bech32PrefixAccPub":"andrpub","bech32PrefixValAddr":"andrvaloper","bech32PrefixValPub":"andrvaloperpub","bech32PrefixConsAddr":"andrvalcons","bech32PrefixConsPub":"andrvalconspub"},"chainName":"andromeda","feeCurrencies":[{"coinDenom":"andr","coinMinimalDenom":"uandr","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.05,"high":0.075}}],"stakeCurrency":{"coinDenom":"andr","coinMinimalDenom":"uandr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"archway-1","currencies":[{"coinDenom":"arch","coinMinimalDenom":"aarch","coinDecimals":18},{"coinDenom":"bARCH","coinMinimalDenom":"archway12yurzx8zynv3ck7uh4tucre48tqsm4fac4hfk9p3l24qs2cn08dqr684cg","coinDecimals":18},{"coinDenom":"TOKN","coinMinimalDenom":"archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu","coinDecimals":18},{"coinDenom":"ampARCH","coinMinimalDenom":"cw20:archway1fwurjg7ah4v7hhs6xsc3wutqpvmahrfhns285s0lt34tgfdhplxq6m8xg5","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/D2BCFE34F35AF2968C8E1F84557D8A2058BB56F739EB553206EFC2AD8C6EDAF0","coinDecimals":6},{"coinDenom":"vdl","coinMinimalDenom":"ibc/1BCF1FCAFE3568E234787EDFDA12460BD8931B17FE6A729DCD60FAD845558DA1","coinDecimals":6},{"coinDenom":"AXV","coinMinimalDenom":"cw20:archway1ecjefhcf8r60wtfnhwefrxhj9caeqa90fj58cqsaafqveawn6cjs5znd2n","coinDecimals":6},{"coinDenom":"wARCH","coinMinimalDenom":"cw20:archway1msc3fa4e2mh73y760qmjd3wfkzr98nl26f36xgt2xnhuw6ay3scs42zeue","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/43897B9739BD63E3A08A88191999C632E052724AB96BD4C74AE31375C991F48D","coinDecimals":6},{"coinDenom":"wUSDC","coinMinimalDenom":"cw20:archway1gaf9nw7n8v5lpjz9caxjpps006kxfcrzcuc8y5qp4clslhven2ns2g0ule","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/3F882513A0CCD1C4110ACB7C6C761AC7B48974C9D2D439CD6F652F9B44362518","coinDecimals":6}],"rest":"https://api.mainnet.archway.io","rpc":"https://rpc.mainnet.archway.io","bech32Config":{"bech32PrefixAccAddr":"archway","bech32PrefixAccPub":"archwaypub","bech32PrefixValAddr":"archwayvaloper","bech32PrefixValPub":"archwayvaloperpub","bech32PrefixConsAddr":"archwayvalcons","bech32PrefixConsPub":"archwayvalconspub"},"chainName":"archway","feeCurrencies":[{"coinDenom":"arch","coinMinimalDenom":"aarch","coinDecimals":18,"gasPriceStep":{"low":196000000000,"average":225400000000,"high":254800000000}}],"stakeCurrency":{"coinDenom":"arch","coinMinimalDenom":"aarch","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"arkh","currencies":[{"coinDenom":"ARKH","coinMinimalDenom":"arkh","coinDecimals":6}],"rest":"https://asc-blockchain-api.arkhadian.com/","rpc":"https://asc-dataseed.arkhadian.com/","bech32Config":{"bech32PrefixAccAddr":"arkh","bech32PrefixAccPub":"arkhpub","bech32PrefixValAddr":"arkhvaloper","bech32PrefixValPub":"arkhvaloperpub","bech32PrefixConsAddr":"arkhvalcons","bech32PrefixConsPub":"arkhvalconspub"},"chainName":"arkh","feeCurrencies":[{"coinDenom":"ARKH","coinMinimalDenom":"arkh","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"ARKH","coinMinimalDenom":"arkh","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mantle-1","currencies":[{"coinDenom":"mntl","coinMinimalDenom":"umntl","coinDecimals":6}],"rest":"https://rest.assetmantle.one","rpc":"https://rpc.assetmantle.one","bech32Config":{"bech32PrefixAccAddr":"mantle","bech32PrefixAccPub":"mantlepub","bech32PrefixValAddr":"mantlevaloper","bech32PrefixValPub":"mantlevaloperpub","bech32PrefixConsAddr":"mantlevalcons","bech32PrefixConsPub":"mantlevalconspub"},"chainName":"assetmantle","feeCurrencies":[{"coinDenom":"mntl","coinMinimalDenom":"umntl","coinDecimals":6}],"stakeCurrency":{"coinDenom":"mntl","coinMinimalDenom":"umntl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"atomone-1","currencies":[{"coinDenom":"atone","coinMinimalDenom":"uatone","coinDecimals":6}],"rest":"https://atomone-api.allinbits.com","rpc":"https://atomone-rpc.allinbits.com:443","bech32Config":{"bech32PrefixAccAddr":"atone","bech32PrefixAccPub":"atonepub","bech32PrefixValAddr":"atonevaloper","bech32PrefixValPub":"atonevaloperpub","bech32PrefixConsAddr":"atonevalcons","bech32PrefixConsPub":"atonevalconspub"},"chainName":"atomone","feeCurrencies":[{"coinDenom":"atone","coinMinimalDenom":"uatone","coinDecimals":6,"gasPriceStep":{"low":0.006,"average":0.006,"high":0.009}}],"stakeCurrency":{"coinDenom":"atone","coinMinimalDenom":"uatone","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"aura_6322-2","currencies":[{"coinDenom":"aura","coinMinimalDenom":"uaura","coinDecimals":6}],"rest":"https://lcd.aura.network/","rpc":"https://rpc.aura.network/","bech32Config":{"bech32PrefixAccAddr":"aura","bech32PrefixAccPub":"aurapub","bech32PrefixValAddr":"auravaloper","bech32PrefixValPub":"auravaloperpub","bech32PrefixConsAddr":"auravalcons","bech32PrefixConsPub":"auravalconspub"},"chainName":"aura","feeCurrencies":[{"coinDenom":"aura","coinMinimalDenom":"uaura","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.0025}}],"stakeCurrency":{"coinDenom":"aura","coinMinimalDenom":"uaura","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"axelar-dojo-1","currencies":[{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6},{"coinDenom":"frax","coinMinimalDenom":"frax-wei","coinDecimals":18},{"coinDenom":"dai","coinMinimalDenom":"dai-wei","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"uusdt","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"weth-wei","coinDecimals":18},{"coinDenom":"wbtc","coinMinimalDenom":"wbtc-satoshi","coinDecimals":8},{"coinDenom":"aave","coinMinimalDenom":"aave-wei","coinDecimals":18},{"coinDenom":"ape","coinMinimalDenom":"ape-wei","coinDecimals":18},{"coinDenom":"axs","coinMinimalDenom":"axs-wei","coinDecimals":18},{"coinDenom":"link","coinMinimalDenom":"link-wei","coinDecimals":18},{"coinDenom":"mkr","coinMinimalDenom":"mkr-wei","coinDecimals":18},{"coinDenom":"rai","coinMinimalDenom":"rai-wei","coinDecimals":18},{"coinDenom":"shib","coinMinimalDenom":"shib-wei","coinDecimals":18},{"coinDenom":"steth","coinMinimalDenom":"steth-wei","coinDecimals":18},{"coinDenom":"uni","coinMinimalDenom":"uni-wei","coinDecimals":18},{"coinDenom":"xcn","coinMinimalDenom":"xcn-wei","coinDecimals":18},{"coinDenom":"dot","coinMinimalDenom":"dot-planck","coinDecimals":10},{"coinDenom":"wglmr","coinMinimalDenom":"wglmr-wei","coinDecimals":18},{"coinDenom":"wmatic","coinMinimalDenom":"wmatic-wei","coinDecimals":18},{"coinDenom":"wbnb","coinMinimalDenom":"wbnb-wei","coinDecimals":18},{"coinDenom":"busd","coinMinimalDenom":"busd-wei","coinDecimals":18},{"coinDenom":"avax","coinMinimalDenom":"wavax-wei","coinDecimals":18},{"coinDenom":"ftm","coinMinimalDenom":"wftm-wei","coinDecimals":18},{"coinDenom":"polygon-usdc","coinMinimalDenom":"polygon-uusdc","coinDecimals":6},{"coinDenom":"avalanche-usdc","coinMinimalDenom":"avalanche-uusdc","coinDecimals":6},{"coinDenom":"fil","coinMinimalDenom":"wfil-wei","coinDecimals":18},{"coinDenom":"arb","coinMinimalDenom":"arb-wei","coinDecimals":18},{"coinDenom":"pepe","coinMinimalDenom":"pepe-wei","coinDecimals":18},{"coinDenom":"cbeth","coinMinimalDenom":"cbeth-wei","coinDecimals":18},{"coinDenom":"reth","coinMinimalDenom":"reth-wei","coinDecimals":18},{"coinDenom":"sfrxeth","coinMinimalDenom":"sfrxeth-wei","coinDecimals":18},{"coinDenom":"wsteth","coinMinimalDenom":"wsteth-wei","coinDecimals":18},{"coinDenom":"YieldETH","coinMinimalDenom":"yieldeth-wei","coinDecimals":18},{"coinDenom":"ox","coinMinimalDenom":"ox-wei","coinDecimals":18},{"coinDenom":"yum","coinMinimalDenom":"yum-wei","coinDecimals":18},{"coinDenom":"arbitrum-weth","coinMinimalDenom":"arbitrum-weth-wei","coinDecimals":18},{"coinDenom":"base-weth","coinMinimalDenom":"base-weth-wei","coinDecimals":18},{"coinDenom":"polygon-weth","coinMinimalDenom":"polygon-weth-wei","coinDecimals":18},{"coinDenom":"op","coinMinimalDenom":"op-wei","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"arbitrum-uusdt","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"optimism-uusdt","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"polygon-uusdt","coinDecimals":6},{"coinDenom":"cbbtc","coinMinimalDenom":"cbbtc-satoshi","coinDecimals":8},{"coinDenom":"fbtc","coinMinimalDenom":"fbtc-satoshi","coinDecimals":8},{"coinDenom":"lbtc","coinMinimalDenom":"lbtc-satoshi","coinDecimals":8},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/53046FFF6CAD109D8F9B2C7C9913853AD241928CD05CDDE419343D176025DA74","coinDecimals":18}],"rest":"https://lcd-axelar.imperator.co:443","rpc":"https://rpc-axelar.imperator.co:443","bech32Config":{"bech32PrefixAccAddr":"axelar","bech32PrefixAccPub":"axelarpub","bech32PrefixValAddr":"axelarvaloper","bech32PrefixValPub":"axelarvaloperpub","bech32PrefixConsAddr":"axelarvalcons","bech32PrefixConsPub":"axelarvalconspub"},"chainName":"axelar","feeCurrencies":[{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6,"gasPriceStep":{"low":0.007,"average":0.007,"high":0.01}}],"stakeCurrency":{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"laozi-mainnet","currencies":[{"coinDenom":"band","coinMinimalDenom":"uband","coinDecimals":6}],"rest":"https://laozi1.bandchain.org/api","rpc":"http://rpc.laozi1.bandchain.org:80","bech32Config":{"bech32PrefixAccAddr":"band","bech32PrefixAccPub":"bandpub","bech32PrefixValAddr":"bandvaloper","bech32PrefixValPub":"bandvaloperpub","bech32PrefixConsAddr":"bandvalcons","bech32PrefixConsPub":"bandvalconspub"},"chainName":"bandchain","feeCurrencies":[{"coinDenom":"band","coinMinimalDenom":"uband","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.003,"high":0.005}}],"stakeCurrency":{"coinDenom":"band","coinMinimalDenom":"uband","coinDecimals":6},"bip44":{"coinType":494}},{"chainId":"beezee-1","currencies":[{"coinDenom":"bze","coinMinimalDenom":"ubze","coinDecimals":6},{"coinDenom":"vdl","coinMinimalDenom":"factory/bze13gzq40che93tgfm9kzmkpjamah5nj0j73pyhqk/uvdl","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6},{"coinDenom":"C2M","coinMinimalDenom":"factory/bze15pqjgk4la0mfphwddce00d05n3th3u66n3ptcv/2MARS","coinDecimals":6},{"coinDenom":"arch","coinMinimalDenom":"ibc/C00D101A3572A5374E23F11944463D1325319E255D7C824B33AF2F927F532348","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/6490A7EAB61059BFC1CDDEB05917DD70BDF3A611654162A1A47DB930D40D8AF4","coinDecimals":6},{"coinDenom":"Spice","coinMinimalDenom":"ibc/08EAEAB525E59C611D5BD8FAC4BE65DF65A69E62874377F6889BBD01A33F385F","coinDecimals":6},{"coinDenom":"jkl","coinMinimalDenom":"ibc/4AA3B163580B4377250CD4486FB6AD098EB27822EE056949EC4A39B09C5E3B4E","coinDecimals":6},{"coinDenom":"flix","coinMinimalDenom":"ibc/FF39851E73089ACBD0B09BDF62FA3C67FBD77A2CD97CD159DBCE9C770561F8AF","coinDecimals":6}],"rest":"https://rest.getbze.com","rpc":"https://rpc.getbze.com","bech32Config":{"bech32PrefixAccAddr":"bze","bech32PrefixAccPub":"bzepub","bech32PrefixValAddr":"bzevaloper","bech32PrefixValPub":"bzevaloperpub","bech32PrefixConsAddr":"bzevalcons","bech32PrefixConsPub":"bzevalconspub"},"chainName":"beezee","feeCurrencies":[{"coinDenom":"bze","coinMinimalDenom":"ubze","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"bze","coinMinimalDenom":"ubze","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"bitbadges-1","currencies":[{"coinDenom":"badge","coinMinimalDenom":"ubadge","coinDecimals":9},{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":9}],"rest":"http://134.122.12.165:1317","rpc":"http://134.122.12.165:26657","bech32Config":{"bech32PrefixAccAddr":"bb","bech32PrefixAccPub":"bbpub","bech32PrefixValAddr":"bbvaloper","bech32PrefixValPub":"bbvaloperpub","bech32PrefixConsAddr":"bbvalcons","bech32PrefixConsPub":"bbvalconspub"},"chainName":"bitbadges","feeCurrencies":[{"coinDenom":"badge","coinMinimalDenom":"ubadge","coinDecimals":9,"gasPriceStep":{"low":0.00025,"average":0.0025,"high":0.025}}],"stakeCurrency":{"coinDenom":"badge","coinMinimalDenom":"ubadge","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"bitcanna-1","currencies":[{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6}],"rest":"https://lcd.bitcanna.io","rpc":"https://rpc.bitcanna.io/","bech32Config":{"bech32PrefixAccAddr":"bcna","bech32PrefixAccPub":"bcnapub","bech32PrefixValAddr":"bcnavaloper","bech32PrefixValPub":"bcnavaloperpub","bech32PrefixConsAddr":"bcnavalcons","bech32PrefixConsPub":"bcnavalconspub"},"chainName":"bitcanna","feeCurrencies":[{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.0025,"high":0.01}}],"stakeCurrency":{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"bitsong-2b","currencies":[{"coinDenom":"btsg","coinMinimalDenom":"ubtsg","coinDecimals":6},{"coinDenom":"clay","coinMinimalDenom":"ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09","coinDecimals":6},{"coinDenom":"fasano","coinMinimalDenom":"ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7","coinDecimals":6},{"coinDenom":"d9x","coinMinimalDenom":"ft575B10B0CEE2C164D9ED6A96313496F164A9607C","coinDecimals":6},{"coinDenom":"fonti","coinMinimalDenom":"ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305","coinDecimals":6},{"coinDenom":"bjks","coinMinimalDenom":"ft52EEB0EE509AC546ED92EAC8591F731F213DDD16","coinDecimals":6},{"coinDenom":"rwne","coinMinimalDenom":"ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A","coinDecimals":6},{"coinDenom":"enmoda","coinMinimalDenom":"ft85AE1716C5E39EA6D64BBD7898C3899A7B500626","coinDecimals":6},{"coinDenom":"404dr","coinMinimalDenom":"ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A","coinDecimals":6},{"coinDenom":"n43","coinMinimalDenom":"ft387C1C279D962ED80C09C1D592A92C4275FD7C5D","coinDecimals":6},{"coinDenom":"lobo","coinMinimalDenom":"ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB","coinDecimals":6},{"coinDenom":"vibra","coinMinimalDenom":"ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B","coinDecimals":6},{"coinDenom":"karina","coinMinimalDenom":"ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE","coinDecimals":6},{"coinDenom":"testa","coinMinimalDenom":"ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12","coinDecimals":6},{"coinDenom":"cmqz","coinMinimalDenom":"ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3","coinDecimals":6},{"coinDenom":"ft347B1612A2B7659913679CF6CD45B8B130C50A00/6","coinMinimalDenom":"ft347B1612A2B7659913679CF6CD45B8B130C50A00","coinDecimals":6}],"rest":"https://api-bitsong-ia.cosmosia.notional.ventures/","rpc":"https://rpc-bitsong-ia.cosmosia.notional.ventures/","bech32Config":{"bech32PrefixAccAddr":"bitsong","bech32PrefixAccPub":"bitsongpub","bech32PrefixValAddr":"bitsongvaloper","bech32PrefixValPub":"bitsongvaloperpub","bech32PrefixConsAddr":"bitsongvalcons","bech32PrefixConsPub":"bitsongvalconspub"},"chainName":"bitsong","feeCurrencies":[{"coinDenom":"btsg","coinMinimalDenom":"ubtsg","coinDecimals":6,"gasPriceStep":{"low":3,"average":10,"high":20}}],"stakeCurrency":{"coinDenom":"btsg","coinMinimalDenom":"ubtsg","coinDecimals":6},"bip44":{"coinType":639}},{"chainId":"bluzelle-9","currencies":[{"coinDenom":"bnt","coinMinimalDenom":"ubnt","coinDecimals":6},{"coinDenom":"elt","coinMinimalDenom":"uelt","coinDecimals":6},{"coinDenom":"g4","coinMinimalDenom":"ug4","coinDecimals":6}],"rest":"https://a.client.sentry.net.bluzelle.com:1317","rpc":"https://a.client.sentry.net.bluzelle.com:26657","bech32Config":{"bech32PrefixAccAddr":"bluzelle","bech32PrefixAccPub":"bluzellepub","bech32PrefixValAddr":"bluzellevaloper","bech32PrefixValPub":"bluzellevaloperpub","bech32PrefixConsAddr":"bluzellevalcons","bech32PrefixConsPub":"bluzellevalconspub"},"chainName":"bluzelle","feeCurrencies":[{"coinDenom":"bnt","coinMinimalDenom":"ubnt","coinDecimals":6,"gasPriceStep":{"low":0.002,"average":0.002,"high":0.025}}],"stakeCurrency":{"coinDenom":"bnt","coinMinimalDenom":"ubnt","coinDecimals":6},"bip44":{"coinType":483}},{"chainId":"bostrom","currencies":[{"coinDenom":"boot","coinMinimalDenom":"boot","coinDecimals":0},{"coinDenom":"hydrogen","coinMinimalDenom":"hydrogen","coinDecimals":0},{"coinDenom":"ampere","coinMinimalDenom":"milliampere","coinDecimals":3},{"coinDenom":"volt","coinMinimalDenom":"millivolt","coinDecimals":3},{"coinDenom":"tocyb","coinMinimalDenom":"tocyb","coinDecimals":0}],"rest":"https://lcd.bostrom.cybernode.ai","rpc":"https://rpc.bostrom.cybernode.ai","bech32Config":{"bech32PrefixAccAddr":"bostrom","bech32PrefixAccPub":"bostrompub","bech32PrefixValAddr":"bostromvaloper","bech32PrefixValPub":"bostromvaloperpub","bech32PrefixConsAddr":"bostromvalcons","bech32PrefixConsPub":"bostromvalconspub"},"chainName":"bostrom","feeCurrencies":[{"coinDenom":"boot","coinMinimalDenom":"boot","coinDecimals":0}],"stakeCurrency":{"coinDenom":"boot","coinMinimalDenom":"boot","coinDecimals":0},"bip44":{"coinType":118}},{"chainId":"bouachain","currencies":[{"coinDenom":"bouacoin","coinMinimalDenom":"ubouacoin","coinDecimals":8}],"rest":"https://lcd.bouachain.com","rpc":"https://rpc.bouachain.com","bech32Config":{"bech32PrefixAccAddr":"boua","bech32PrefixAccPub":"bouapub","bech32PrefixValAddr":"bouavaloper","bech32PrefixValPub":"bouavaloperpub","bech32PrefixConsAddr":"bouavalcons","bech32PrefixConsPub":"bouavalconspub"},"chainName":"bouachain","feeCurrencies":[{"coinDenom":"bouacoin","coinMinimalDenom":"ubouacoin","coinDecimals":8,"gasPriceStep":{"low":0.0006,"average":0.012,"high":0.04}}],"stakeCurrency":{"coinDenom":"bouacoin","coinMinimalDenom":"ubouacoin","coinDecimals":8},"bip44":{"coinType":118}},{"chainId":"canto_7700-1","currencies":[{"coinDenom":"canto","coinMinimalDenom":"acanto","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/FAFF3F7B2FE30447544A27910DF77069763CF25472BFCF63A9E7C81F0AD545AC","coinDecimals":6}],"rest":"https://api.canto.nodestake.top","rpc":"https://rpc.canto.nodestake.top","bech32Config":{"bech32PrefixAccAddr":"canto","bech32PrefixAccPub":"cantopub","bech32PrefixValAddr":"cantovaloper","bech32PrefixValPub":"cantovaloperpub","bech32PrefixConsAddr":"cantovalcons","bech32PrefixConsPub":"cantovalconspub"},"chainName":"canto","feeCurrencies":[{"coinDenom":"canto","coinMinimalDenom":"acanto","coinDecimals":18,"gasPriceStep":{"low":1000000000000,"average":2000000000000,"high":3000000000000}}],"stakeCurrency":{"coinDenom":"canto","coinMinimalDenom":"acanto","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"carbon-1","currencies":[{"coinDenom":"dswth","coinMinimalDenom":"swth","coinDecimals":8},{"coinDenom":"dusc","coinMinimalDenom":"usc","coinDecimals":8},{"coinDenom":"bnb","coinMinimalDenom":"bnb.1.6.773edb","coinDecimals":18},{"coinDenom":"bneo","coinMinimalDenom":"bneo.1.14.e2e5f6","coinDecimals":8},{"coinDenom":"busd","coinMinimalDenom":"busd.1.6.754a80","coinDecimals":18},{"coinDenom":"cglp","coinMinimalDenom":"cglp.1.19.1698d3","coinDecimals":18},{"coinDenom":"usd","coinMinimalDenom":"cgt/1","coinDecimals":18},{"coinDenom":"eth","coinMinimalDenom":"eth.1.19.c3b805","coinDecimals":18},{"coinDenom":"eth","coinMinimalDenom":"eth.1.2.942d87","coinDecimals":18},{"coinDenom":"stars","coinMinimalDenom":"ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6},{"coinDenom":"milkTIA","coinMinimalDenom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","coinDecimals":6},{"coinDenom":"strd","coinMinimalDenom":"ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5","coinDecimals":6},{"coinDenom":"evmos","coinMinimalDenom":"ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364","coinDecimals":18},{"coinDenom":"iris","coinMinimalDenom":"ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118","coinDecimals":6},{"coinDenom":"kuji","coinMinimalDenom":"ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93","coinDecimals":6},{"coinDenom":"canto","coinMinimalDenom":"ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861","coinDecimals":18},{"coinDenom":"atom","coinMinimalDenom":"ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"usdc.1.2.343151","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"usdc.1.6.53ff75","coinDecimals":18},{"coinDenom":"zil","coinMinimalDenom":"zil.1.18.1a4a06","coinDecimals":12}],"rest":"https://api.carbon.network","rpc":"https://tm-api.carbon.network","bech32Config":{"bech32PrefixAccAddr":"swth","bech32PrefixAccPub":"swthpub","bech32PrefixValAddr":"swthvaloper","bech32PrefixValPub":"swthvaloperpub","bech32PrefixConsAddr":"swthvalcons","bech32PrefixConsPub":"swthvalconspub"},"chainName":"carbon","feeCurrencies":[{"coinDenom":"dswth","coinMinimalDenom":"swth","coinDecimals":8,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"dusc","coinMinimalDenom":"usc","coinDecimals":8,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.0001}},{"coinDenom":"bnb","coinMinimalDenom":"bnb.1.6.773edb","coinDecimals":18,"gasPriceStep":{"low":1000000,"average":1000000,"high":1000000}},{"coinDenom":"bneo","coinMinimalDenom":"bneo.1.14.e2e5f6","coinDecimals":8,"gasPriceStep":{"low":0.0015,"average":0.0015,"high":0.0015}},{"coinDenom":"busd","coinMinimalDenom":"busd.1.6.754a80","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":100000000,"high":100000000}},{"coinDenom":"cglp","coinMinimalDenom":"cglp.1.19.1698d3","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":100000000,"high":100000000}},{"coinDenom":"usd","coinMinimalDenom":"cgt/1","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":100000000,"high":100000000}},{"coinDenom":"eth","coinMinimalDenom":"eth.1.19.c3b805","coinDecimals":18,"gasPriceStep":{"low":100000,"average":100000,"high":100000}},{"coinDenom":"eth","coinMinimalDenom":"eth.1.2.942d87","coinDecimals":18,"gasPriceStep":{"low":100000,"average":100000,"high":100000}},{"coinDenom":"stars","coinMinimalDenom":"ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C","coinDecimals":6,"gasPriceStep":{"low":0.0035,"average":0.0035,"high":0.0035}},{"coinDenom":"milkTIA","coinMinimalDenom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","coinDecimals":6,"gasPriceStep":{"low":0.0000075,"average":0.0000075,"high":0.0000075}},{"coinDenom":"luna","coinMinimalDenom":"ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5","coinDecimals":6,"gasPriceStep":{"low":0.00005,"average":0.00005,"high":0.00005}},{"coinDenom":"strd","coinMinimalDenom":"ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5","coinDecimals":6,"gasPriceStep":{"low":0.00032,"average":0.00032,"high":0.00032}},{"coinDenom":"evmos","coinMinimalDenom":"ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364","coinDecimals":18,"gasPriceStep":{"low":300000000,"average":300000000,"high":300000000}},{"coinDenom":"iris","coinMinimalDenom":"ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118","coinDecimals":6,"gasPriceStep":{"low":0.0006,"average":0.0006,"high":0.0006}},{"coinDenom":"kuji","coinMinimalDenom":"ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5","coinDecimals":6,"gasPriceStep":{"low":0.00015,"average":0.00015,"high":0.00015}},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6,"gasPriceStep":{"low":0.0000075,"average":0.0000075,"high":0.0000075}},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93","coinDecimals":6,"gasPriceStep":{"low":0.00015,"average":0.00015,"high":0.00015}},{"coinDenom":"canto","coinMinimalDenom":"ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861","coinDecimals":18,"gasPriceStep":{"low":200000000,"average":200000000,"high":200000000}},{"coinDenom":"atom","coinMinimalDenom":"ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701","coinDecimals":6,"gasPriceStep":{"low":0.00001,"average":0.00001,"high":0.00001}},{"coinDenom":"statom","coinMinimalDenom":"ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C","coinDecimals":6,"gasPriceStep":{"low":0.00001,"average":0.00001,"high":0.00001}},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6,"gasPriceStep":{"low":0.00015,"average":0.00015,"high":0.00015}},{"coinDenom":"usdc","coinMinimalDenom":"usdc.1.2.343151","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.0001}},{"coinDenom":"usdc","coinMinimalDenom":"usdc.1.6.53ff75","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":100000000,"high":100000000}},{"coinDenom":"zil","coinMinimalDenom":"zil.1.18.1a4a06","coinDecimals":12,"gasPriceStep":{"low":6000,"average":6000,"high":6000}}],"stakeCurrency":{"coinDenom":"dswth","coinMinimalDenom":"swth","coinDecimals":8},"bip44":{"coinType":118}},{"chainId":"celestia","currencies":[{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6}],"rest":"https://public-celestia-lcd.numia.xyz","rpc":"https://public-celestia-rpc.numia.xyz","bech32Config":{"bech32PrefixAccAddr":"celestia","bech32PrefixAccPub":"celestiapub","bech32PrefixValAddr":"celestiavaloper","bech32PrefixValPub":"celestiavaloperpub","bech32PrefixConsAddr":"celestiavalcons","bech32PrefixConsPub":"celestiavalconspub"},"chainName":"celestia","feeCurrencies":[{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}}],"stakeCurrency":{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"perun-1","currencies":[{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6}],"rest":"https://lcd.c4e.io/","rpc":"https://rpc.c4e.io/","bech32Config":{"bech32PrefixAccAddr":"c4e","bech32PrefixAccPub":"c4epub","bech32PrefixValAddr":"c4evaloper","bech32PrefixValPub":"c4evaloperpub","bech32PrefixConsAddr":"c4evalcons","bech32PrefixConsPub":"c4evalconspub"},"chainName":"chain4energy","feeCurrencies":[{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cheqd-mainnet-1","currencies":[{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9}],"rest":"https://api.cheqd.net","rpc":"https://rpc.cheqd.net","bech32Config":{"bech32PrefixAccAddr":"cheqd","bech32PrefixAccPub":"cheqdpub","bech32PrefixValAddr":"cheqdvaloper","bech32PrefixValPub":"cheqdvaloperpub","bech32PrefixConsAddr":"cheqdvalcons","bech32PrefixConsPub":"cheqdvalconspub"},"chainName":"cheqd","feeCurrencies":[{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9,"gasPriceStep":{"low":50,"average":75,"high":100}}],"stakeCurrency":{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"chihuahua-1","currencies":[{"coinDenom":"huahua","coinMinimalDenom":"uhuahua","coinDecimals":6},{"coinDenom":"puppy","coinMinimalDenom":"cw20:chihuahua1yl8z39ugle8s02fpwkhh293509q5xcpalmdzc4amvchz8nkexrmsy95gef","coinDecimals":6},{"coinDenom":"achihuahuawifhat","coinMinimalDenom":"factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat","coinDecimals":6},{"coinDenom":"WOOF","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof","coinDecimals":6},{"coinDenom":"TACOS","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos","coinDecimals":6},{"coinDenom":"WEED","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uweed","coinDecimals":6},{"coinDenom":"BDOG","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog","coinDecimals":6},{"coinDenom":"CORSO","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso","coinDecimals":6},{"coinDenom":"bHUAHUA","coinMinimalDenom":"cw20:chihuahua1jz5n4aynhpxx7clf2m8hrv9dp5nz83k67fgaxhy4p9dfwl6zssrq3ymr6w","coinDecimals":6},{"coinDenom":"ashHUAHUA","coinMinimalDenom":"factory/chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0/uhuahua.ash","coinDecimals":6},{"coinDenom":"ampGASH","coinMinimalDenom":"ibc/7D01429FF7542DBC41C261793B480B63FE7A83260C751989CC268BC7E852EB99","coinDecimals":6},{"coinDenom":"GUPPY","coinMinimalDenom":"ibc/DBBDE1753EFA93F09C468DB5E384861BB741D4AA73E9C7032D139BB2C99FDD65","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/FA7112322CE7656DC84D441E49BAEAB9DC0AB3C7618A178A212CDE8B3F17C70B","coinDecimals":6}],"rest":"https://api.chihuahua.wtf","rpc":"https://rpc.chihuahua.wtf","bech32Config":{"bech32PrefixAccAddr":"chihuahua","bech32PrefixAccPub":"chihuahuapub","bech32PrefixValAddr":"chihuahuavaloper","bech32PrefixValPub":"chihuahuavaloperpub","bech32PrefixConsAddr":"chihuahuavalcons","bech32PrefixConsPub":"chihuahuavalconspub"},"chainName":"chihuahua","feeCurrencies":[{"coinDenom":"huahua","coinMinimalDenom":"uhuahua","coinDecimals":6,"gasPriceStep":{"low":500,"average":1250,"high":2000}}],"stakeCurrency":{"coinDenom":"huahua","coinMinimalDenom":"uhuahua","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"chimba","currencies":[{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6}],"rest":"https://mainnet.chimba.ooo","rpc":"https://rpc.mainnet.chimba.ooo","bech32Config":{"bech32PrefixAccAddr":"chimba","bech32PrefixAccPub":"chimbapub","bech32PrefixValAddr":"chimbavaloper","bech32PrefixValPub":"chimbavaloperpub","bech32PrefixConsAddr":"chimbavalcons","bech32PrefixConsPub":"chimbavalconspub"},"chainName":"chimba","feeCurrencies":[{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6,"gasPriceStep":{"low":1,"average":5,"high":10}}],"stakeCurrency":{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cifer-2","currencies":[{"coinDenom":"cif","coinMinimalDenom":"ucif","coinDecimals":6}],"rest":"https://api.cifer.ai","rpc":"http://34.128.114.243:26657","bech32Config":{"bech32PrefixAccAddr":"cife","bech32PrefixAccPub":"cifepub","bech32PrefixValAddr":"cifevaloper","bech32PrefixValPub":"cifevaloperpub","bech32PrefixConsAddr":"cifevalcons","bech32PrefixConsPub":"cifevalconspub"},"chainName":"cifer","feeCurrencies":[{"coinDenom":"cif","coinMinimalDenom":"ucif","coinDecimals":6,"gasPriceStep":{"low":1,"average":5,"high":10}}],"stakeCurrency":{"coinDenom":"cif","coinMinimalDenom":"ucif","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cnho_stables-1","currencies":[{"coinDenom":"CNHO","coinMinimalDenom":"ucnho","coinDecimals":6}],"rest":"https://api.cnho.io","rpc":"https://rpc.cnho.io","bech32Config":{"bech32PrefixAccAddr":"cnho","bech32PrefixAccPub":"cnhopub","bech32PrefixValAddr":"cnhovaloper","bech32PrefixValPub":"cnhovaloperpub","bech32PrefixConsAddr":"cnhovalcons","bech32PrefixConsPub":"cnhovalconspub"},"chainName":"cnhostables","feeCurrencies":[{"coinDenom":"CNHO","coinMinimalDenom":"ucnho","coinDecimals":6,"gasPriceStep":{"low":0.000001,"average":0.00001,"high":0.025}}],"stakeCurrency":{"coinDenom":"CNHO","coinMinimalDenom":"ucnho","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"comdex-1","currencies":[{"coinDenom":"cmdx","coinMinimalDenom":"ucmdx","coinDecimals":6},{"coinDenom":"harbor","coinMinimalDenom":"uharbor","coinDecimals":6},{"coinDenom":"cmst","coinMinimalDenom":"ucmst","coinDecimals":6}],"rest":"https://rest.comdex.one","rpc":"https://rpc.comdex.one","bech32Config":{"bech32PrefixAccAddr":"comdex","bech32PrefixAccPub":"comdexpub","bech32PrefixValAddr":"comdexvaloper","bech32PrefixValPub":"comdexvaloperpub","bech32PrefixConsAddr":"comdexvalcons","bech32PrefixConsPub":"comdexvalconspub"},"chainName":"comdex","feeCurrencies":[{"coinDenom":"cmdx","coinMinimalDenom":"ucmdx","coinDecimals":6}],"stakeCurrency":{"coinDenom":"cmdx","coinMinimalDenom":"ucmdx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"commercio-3","currencies":[{"coinDenom":"commercio","coinMinimalDenom":"ucommercio","coinDecimals":6},{"coinDenom":"ccc","coinMinimalDenom":"uccc","coinDecimals":6}],"rest":"https://lcd-mainnet.commercio.network","rpc":"https://rpc-mainnet.commercio.network","bech32Config":{"bech32PrefixAccAddr":"did:com:","bech32PrefixAccPub":"did:com:pub","bech32PrefixValAddr":"did:com:valoper","bech32PrefixValPub":"did:com:valoperpub","bech32PrefixConsAddr":"did:com:valcons","bech32PrefixConsPub":"did:com:valconspub"},"chainName":"commercionetwork","feeCurrencies":[{"coinDenom":"commercio","coinMinimalDenom":"ucommercio","coinDecimals":6}],"stakeCurrency":{"coinDenom":"commercio","coinMinimalDenom":"ucommercio","coinDecimals":6},"bip44":{"coinType":701}},{"chainId":"centauri-1","currencies":[{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12},{"coinDenom":"ksm","coinMinimalDenom":"ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9","coinDecimals":12},{"coinDenom":"dot","coinMinimalDenom":"ibc/3CC19CEC7E5A3E90E78A5A9ECC5A0E2F8F826A375CF1E096F4515CF09DA3E366","coinDecimals":10},{"coinDenom":"usdt","coinMinimalDenom":"ibc/F3EC9F834E57DF704FA3AEAF14E8391C2E58397FE56960AD70E67562990D8265","coinDecimals":6},{"coinDenom":"tnkr","coinMinimalDenom":"ibc/C58E5D2571042137CB68B1B9851C4E7211C05F7C2C79E21E0966AF0F063961F8","coinDecimals":12},{"coinDenom":"eth","coinMinimalDenom":"ibc/F9D075D4079FC56A9C49B601E54A45292C319D8B0E8CC0F8439041130AA7166C","coinDecimals":18},{"coinDenom":"dai","coinMinimalDenom":"ibc/A342F6F8D1CDE1D934C50E8EAFF91E813D971E1BFEED7E557F1674E01004A533","coinDecimals":18},{"coinDenom":"fxs","coinMinimalDenom":"ibc/5F9BE030FC355733EC79307409FA98398BBFC747C9430B326C144A74F6808B29","coinDecimals":18},{"coinDenom":"frax","coinMinimalDenom":"ibc/4F20D68B51ED559F99C3CD658383E91F45486D884BF546E7B25337A058562CDB","coinDecimals":18},{"coinDenom":"frxeth","coinMinimalDenom":"ibc/458032E654E41DB91EF98F13E2CE4F9E0FE86BA3E0CDBEC074A854E9F5229A90","coinDecimals":18},{"coinDenom":"sfrxeth","coinMinimalDenom":"ibc/4E0ECE7819D77B0F2B49F5C34B5E594A02D2BA8B1B0F103208F847B53EBFB69A","coinDecimals":18},{"coinDenom":"sfrax","coinMinimalDenom":"ibc/5BD7F23FE150D9CF3BCC944DB829380BCC51A4022A131151C4D13B3AFAC2D1D9","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/37CC704EA53E96AB09A9C31D79142DE7DB252420F3AB18015F9870AE219947BD","coinDecimals":6},{"coinDenom":"crv","coinMinimalDenom":"ibc/52C8C6197989684F891076F228F20CD1659AB6E1776E3B85E65CBBEC67DA5DED","coinDecimals":18},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/1507315B0C337368B85A7EC67C3956C508E1106EBD96336B1B092F7B2815B3E5","coinDecimals":18},{"coinDenom":"steth","coinMinimalDenom":"ibc/74F65FE91F672BC2524C039B3CD0211F6D370071209552533DF26D57743D5FFD","coinDecimals":18},{"coinDenom":"reth","coinMinimalDenom":"ibc/207E7F34DFEBF714CED4900C1FD85BAF200230BF431EE8133EB26B98CB535EDC","coinDecimals":18},{"coinDenom":"crvusd","coinMinimalDenom":"ibc/C9D79BE8E3E75CA2DFDC722C77D7B179C39A4802D59019C790A825FDE34B724A","coinDecimals":18},{"coinDenom":"pxeth","coinMinimalDenom":"ibc/36EF1EA47A09689C81D848B08E5240FA9FF13B17DB7DCF48B77D4D0D9B152821","coinDecimals":18},{"coinDenom":"eeth","coinMinimalDenom":"ibc/34C23BA6BAA2EAE0199D85AD1E2E214F76B0BFAD42BF75542D15F71264EEB05B","coinDecimals":18},{"coinDenom":"ena","coinMinimalDenom":"ibc/B089810D5A6316AD5E9C7808733DC4AB11C7BA3033221D28711FC7206BACB929","coinDecimals":18},{"coinDenom":"usde","coinMinimalDenom":"ibc/FFD9EB71B4480ED4D73F7370A2AEBDB48447A0AAE27265F8060A957F0FF71983","coinDecimals":18},{"coinDenom":"ezeth","coinMinimalDenom":"ibc/E317539F148285AAC77E7614101CBE94E20EDF169B233A5E0C867112972F9041","coinDecimals":18},{"coinDenom":"pepe","coinMinimalDenom":"ibc/6367C5AF2E2477FB13DD0C8CB0027FEDDF5AE947EE84C69FB75003E604E29D05","coinDecimals":18},{"coinDenom":"wsol","coinMinimalDenom":"ibc/2CC39C8141F257EBBA250F65B9D0F31DC8D153C225E51EC192DE6E3F65D43F0C","coinDecimals":9},{"coinDenom":"msol","coinMinimalDenom":"ibc/C280CB39B97E7CD33A0BF149CFD392C2A3F95FF896AFF89CFF2FA181479BED8D","coinDecimals":9},{"coinDenom":"jitosol","coinMinimalDenom":"ibc/91A2FE07F8BDFC0552B1C9972FCCBF2CFD067DDE5F496D81E5132CE57762B0F2","coinDecimals":9},{"coinDenom":"bsol","coinMinimalDenom":"ibc/F52A71607B3AA7BBA8A222A9176E9939E92AB3656A094289CD218907D45DB716","coinDecimals":9},{"coinDenom":"lst","coinMinimalDenom":"ibc/55F5B582483FEFA5422794292B079B4D49A5BAB9881E7C801F9F271F1D234F1D","coinDecimals":9},{"coinDenom":"edgesol","coinMinimalDenom":"ibc/BADB5950C4A81AC201696EBCB33CD295137FA86F0AA620CDDE946D3700E0208C","coinDecimals":9},{"coinDenom":"hsol","coinMinimalDenom":"ibc/531C52D572698BCBA29F44D959E73CD2148EE6542A3118F9E56621A28E1FF4C6","coinDecimals":9},{"coinDenom":"jupsol","coinMinimalDenom":"ibc/6976998E24F1CFC373A9F799C9CE901F5EC32C3E33B2B09384A05774D9339626","coinDecimals":9},{"coinDenom":"wif","coinMinimalDenom":"ibc/BA34EAA22BBDA46C228DC70E4ED7E42A0867D5B051D625F953CC7B1CEF58C071","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/D105950618E47CA2AEC314282BC401625025F80A4F812808DEEBB1941C685575","coinDecimals":6},{"coinDenom":"whine","coinMinimalDenom":"ibc/9D5DA3720001F91DD76B8F609A93F96688EC8185B54BF9A1A1450EB34FF2D912","coinDecimals":6},{"coinDenom":"unicorn","coinMinimalDenom":"ibc/586C150919550F6106711C7557DAAAEAB765DDF05648BAC0D96487AE90394BA1","coinDecimals":6}],"rest":"https://api-composable-ia.cosmosia.notional.ventures","rpc":"https://rpc-composable-ia.cosmosia.notional.ventures","bech32Config":{"bech32PrefixAccAddr":"pica","bech32PrefixAccPub":"picapub","bech32PrefixValAddr":"picavaloper","bech32PrefixValPub":"picavaloperpub","bech32PrefixConsAddr":"picavalcons","bech32PrefixConsPub":"picavalconspub"},"chainName":"composable","feeCurrencies":[{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12}],"stakeCurrency":{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12},"bip44":{"coinType":118}},{"chainId":"cvn_2032-1","currencies":[{"coinDenom":"cvnt","coinMinimalDenom":"acvnt","coinDecimals":18}],"rest":"https://api.cvn.io","rpc":"https://rpc.cvn.io/","bech32Config":{"bech32PrefixAccAddr":"cvn","bech32PrefixAccPub":"cvnpub","bech32PrefixValAddr":"cvnvaloper","bech32PrefixValPub":"cvnvaloperpub","bech32PrefixConsAddr":"cvnvalcons","bech32PrefixConsPub":"cvnvalconspub"},"chainName":"conscious","feeCurrencies":[{"coinDenom":"cvnt","coinMinimalDenom":"acvnt","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":200000000,"high":300000000}}],"stakeCurrency":{"coinDenom":"cvnt","coinMinimalDenom":"acvnt","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"coreum-mainnet-1","currencies":[{"coinDenom":"core","coinMinimalDenom":"ucore","coinDecimals":6},{"coinDenom":"xrp","coinMinimalDenom":"drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz","coinDecimals":6}],"rest":"https://rest-coreum.ecostake.com","rpc":"https://full-node.mainnet-1.coreum.dev:26657","bech32Config":{"bech32PrefixAccAddr":"core","bech32PrefixAccPub":"corepub","bech32PrefixValAddr":"corevaloper","bech32PrefixValPub":"corevaloperpub","bech32PrefixConsAddr":"corevalcons","bech32PrefixConsPub":"corevalconspub"},"chainName":"coreum","feeCurrencies":[{"coinDenom":"core","coinMinimalDenom":"ucore","coinDecimals":6,"gasPriceStep":{"low":0.0625,"average":0.0625,"high":62.5}}],"stakeCurrency":{"coinDenom":"core","coinMinimalDenom":"ucore","coinDecimals":6},"bip44":{"coinType":990}},{"chainId":"cosmoshub-4","currencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0","coinDecimals":6},{"coinDenom":"ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729","coinMinimalDenom":"ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729","coinDecimals":0},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/74C4FE1EC3BDD66B02C691496371DDBB86DDE512C5BC072D76262C6C9B4B20D1","coinDecimals":18}],"rest":"https://cosmoshub.lava.build:443","rpc":"https://cosmoshub.tendermintrpc.lava.build:443","bech32Config":{"bech32PrefixAccAddr":"cosmos","bech32PrefixAccPub":"cosmospub","bech32PrefixValAddr":"cosmosvaloper","bech32PrefixValPub":"cosmosvaloperpub","bech32PrefixConsAddr":"cosmosvalcons","bech32PrefixConsPub":"cosmosvalconspub"},"chainName":"cosmoshub","feeCurrencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"coss-1","currencies":[{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6},{"coinDenom":"coss","coinMinimalDenom":"ucoss","coinDecimals":6},{"coinDenom":"cias","coinMinimalDenom":"ucias","coinDecimals":6}],"rest":"https://coss-rest.coss.ink","rpc":"https://coss-rpc.coss.ink","bech32Config":{"bech32PrefixAccAddr":"coss","bech32PrefixAccPub":"cosspub","bech32PrefixValAddr":"cossvaloper","bech32PrefixValPub":"cossvaloperpub","bech32PrefixConsAddr":"cossvalcons","bech32PrefixConsPub":"cossvalconspub"},"chainName":"coss","feeCurrencies":[{"coinDenom":"coss","coinMinimalDenom":"ucoss","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}},{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}},{"coinDenom":"cias","coinMinimalDenom":"ucias","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}}],"stakeCurrency":{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"crescent-1","currencies":[{"coinDenom":"cre","coinMinimalDenom":"ucre","coinDecimals":6},{"coinDenom":"bcre","coinMinimalDenom":"ubcre","coinDecimals":6}],"rest":"https://mainnet.crescent.network:1317","rpc":"https://mainnet.crescent.network:26657","bech32Config":{"bech32PrefixAccAddr":"cre","bech32PrefixAccPub":"crepub","bech32PrefixValAddr":"crevaloper","bech32PrefixValPub":"crevaloperpub","bech32PrefixConsAddr":"crevalcons","bech32PrefixConsPub":"crevalconspub"},"chainName":"crescent","feeCurrencies":[{"coinDenom":"cre","coinMinimalDenom":"ucre","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"cre","coinMinimalDenom":"ucre","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cronosmainnet_25-1","currencies":[{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/9106F2626880DF7FAD30621F355423B2A7523D8E2274475F009644D708A90682","coinDecimals":6}],"rest":"https://rest.cronos.org/","rpc":"https://rpc.cronos.org/","bech32Config":{"bech32PrefixAccAddr":"crc","bech32PrefixAccPub":"crcpub","bech32PrefixValAddr":"crcvaloper","bech32PrefixValPub":"crcvaloperpub","bech32PrefixConsAddr":"crcvalcons","bech32PrefixConsPub":"crcvalconspub"},"chainName":"cronos","feeCurrencies":[{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":18}],"stakeCurrency":{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"crypto-org-chain-mainnet-1","currencies":[{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":8},{"coinDenom":"lumen","coinMinimalDenom":"baseXLM","coinDecimals":7},{"coinDenom":"lumen","coinMinimalDenom":"ibc/34A1D4BF5FFCDB912F64FE71D54426D56970F873F1279983B69C713B3A62D10D","coinDecimals":7}],"rest":"https://rest.mainnet.crypto.org/","rpc":"https://rpc.mainnet.crypto.org/","bech32Config":{"bech32PrefixAccAddr":"cro","bech32PrefixAccPub":"cropub","bech32PrefixValAddr":"crovaloper","bech32PrefixValPub":"crovaloperpub","bech32PrefixConsAddr":"crovalcons","bech32PrefixConsPub":"crovalconspub"},"chainName":"cryptoorgchain","feeCurrencies":[{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":8,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}}],"stakeCurrency":{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":8},"bip44":{"coinType":394}},{"chainId":"mainnet-3","currencies":[{"coinDenom":"dec","coinMinimalDenom":"udec","coinDecimals":6}],"rest":"https://rest.mainnet.decentr.xyz","rpc":"https://poseidon.mainnet.decentr.xyz","bech32Config":{"bech32PrefixAccAddr":"decentr","bech32PrefixAccPub":"decentrpub","bech32PrefixValAddr":"decentrvaloper","bech32PrefixValPub":"decentrvaloperpub","bech32PrefixConsAddr":"decentrvalcons","bech32PrefixConsPub":"decentrvalconspub"},"chainName":"decentr","feeCurrencies":[{"coinDenom":"dec","coinMinimalDenom":"udec","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.025}}],"stakeCurrency":{"coinDenom":"dec","coinMinimalDenom":"udec","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"desmos-mainnet","currencies":[{"coinDenom":"dsm","coinMinimalDenom":"udsm","coinDecimals":6}],"rest":"https://api.mainnet.desmos.network","rpc":"https://rpc.mainnet.desmos.network","bech32Config":{"bech32PrefixAccAddr":"desmos","bech32PrefixAccPub":"desmospub","bech32PrefixValAddr":"desmosvaloper","bech32PrefixValPub":"desmosvaloperpub","bech32PrefixConsAddr":"desmosvalcons","bech32PrefixConsPub":"desmosvalconspub"},"chainName":"desmos","feeCurrencies":[{"coinDenom":"dsm","coinMinimalDenom":"udsm","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.03,"high":0.05}}],"stakeCurrency":{"coinDenom":"dsm","coinMinimalDenom":"udsm","coinDecimals":6},"bip44":{"coinType":852}},{"chainId":"dhealth","currencies":[{"coinDenom":"dhp","coinMinimalDenom":"udhp","coinDecimals":6}],"rest":"https://lcd.dhealth.com","rpc":"https://rpc.dhealth.com","bech32Config":{"bech32PrefixAccAddr":"dh","bech32PrefixAccPub":"dhpub","bech32PrefixValAddr":"dhvaloper","bech32PrefixValPub":"dhvaloperpub","bech32PrefixConsAddr":"dhvalcons","bech32PrefixConsPub":"dhvalconspub"},"chainName":"dhealth","feeCurrencies":[{"coinDenom":"dhp","coinMinimalDenom":"udhp","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}}],"stakeCurrency":{"coinDenom":"dhp","coinMinimalDenom":"udhp","coinDecimals":6},"bip44":{"coinType":10111}},{"chainId":"vota-ash","currencies":[{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18}],"rest":"https://vota-rest.dorafactory.org","rpc":"https://vota-rpc.dorafactory.org/","bech32Config":{"bech32PrefixAccAddr":"dora","bech32PrefixAccPub":"dorapub","bech32PrefixValAddr":"doravaloper","bech32PrefixValPub":"doravaloperpub","bech32PrefixConsAddr":"doravalcons","bech32PrefixConsPub":"doravalconspub"},"chainName":"doravota","feeCurrencies":[{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18,"gasPriceStep":{"low":100000000000,"average":100000000000,"high":100000000000}}],"stakeCurrency":{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"dungeon-1","currencies":[{"coinDenom":"DGN","coinMinimalDenom":"udgn","coinDecimals":6}],"rest":"https://dungeon.api.quasarstaking.ai","rpc":"https://dungeon.rpc.quasarstaking.ai","bech32Config":{"bech32PrefixAccAddr":"dungeon","bech32PrefixAccPub":"dungeonpub","bech32PrefixValAddr":"dungeonvaloper","bech32PrefixValPub":"dungeonvaloperpub","bech32PrefixConsAddr":"dungeonvalcons","bech32PrefixConsPub":"dungeonvalconspub"},"chainName":"dungeon","feeCurrencies":[{"coinDenom":"DGN","coinMinimalDenom":"udgn","coinDecimals":6}],"stakeCurrency":{"coinDenom":"DGN","coinMinimalDenom":"udgn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"dydx-mainnet-1","currencies":[{"coinDenom":"dydx","coinMinimalDenom":"adydx","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","coinDecimals":6}],"rest":"https://community.nuxian-node.ch:6797/dydx/crpc","rpc":"https://dydx-rpc.kingnodes.com:443","bech32Config":{"bech32PrefixAccAddr":"dydx","bech32PrefixAccPub":"dydxpub","bech32PrefixValAddr":"dydxvaloper","bech32PrefixValPub":"dydxvaloperpub","bech32PrefixConsAddr":"dydxvalcons","bech32PrefixConsPub":"dydxvalconspub"},"chainName":"dydx","feeCurrencies":[{"coinDenom":"dydx","coinMinimalDenom":"adydx","coinDecimals":18,"gasPriceStep":{"low":12500000000,"average":12500000000,"high":20000000000}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"dydx","coinMinimalDenom":"adydx","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"dymension_1100-1","currencies":[{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18},{"coinDenom":"nim","coinMinimalDenom":"ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942","coinDecimals":18},{"coinDenom":"mand","coinMinimalDenom":"ibc/5A26C8DC8DA66F4DD94326E67F94510188F5F7AFE2DB3933A0C823670E56EABF","coinDecimals":18}],"rest":"https://dym-m-api.agoranodes.com","rpc":"https://dym-m-rpc.agoranodes.com","bech32Config":{"bech32PrefixAccAddr":"dym","bech32PrefixAccPub":"dympub","bech32PrefixValAddr":"dymvaloper","bech32PrefixValPub":"dymvaloperpub","bech32PrefixConsAddr":"dymvalcons","bech32PrefixConsPub":"dymvalconspub"},"chainName":"dymension","feeCurrencies":[{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18,"gasPriceStep":{"low":5000000000,"average":5000000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"dyson-mainnet-01","currencies":[{"coinDenom":"dys","coinMinimalDenom":"dys","coinDecimals":0},{"coinDenom":"osmo","coinMinimalDenom":"ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B","coinDecimals":6},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/9BF31153F7E37F687C75A2F310E7A4DB6E0512B065F709B5EB69FE828133AFAC","coinDecimals":8},{"coinDenom":"usdc","coinMinimalDenom":"ibc/13DF61376C08483555C6D4C9203612086A1B23218EB5EBDBE609EEC7EFF2D82D","coinDecimals":6}],"rest":"https://dys-api.dysonprotocol.com:443","rpc":"https://dys-tm.dysonprotocol.com:443","bech32Config":{"bech32PrefixAccAddr":"dys","bech32PrefixAccPub":"dyspub","bech32PrefixValAddr":"dysvaloper","bech32PrefixValPub":"dysvaloperpub","bech32PrefixConsAddr":"dysvalcons","bech32PrefixConsPub":"dysvalconspub"},"chainName":"dyson","feeCurrencies":[{"coinDenom":"dys","coinMinimalDenom":"dys","coinDecimals":0,"gasPriceStep":{"low":0.0001,"average":0.0002,"high":0.0003}}],"stakeCurrency":{"coinDenom":"dys","coinMinimalDenom":"dys","coinDecimals":0},"bip44":{"coinType":118}},{"chainId":"echelon_3000-3","currencies":[{"coinDenom":"echelon","coinMinimalDenom":"aechelon","coinDecimals":18}],"rest":"https://ech01api.mindheartsoul.org","rpc":"https://ech01trpc.mindheartsoul.org","bech32Config":{"bech32PrefixAccAddr":"echelon","bech32PrefixAccPub":"echelonpub","bech32PrefixValAddr":"echelonvaloper","bech32PrefixValPub":"echelonvaloperpub","bech32PrefixConsAddr":"echelonvalcons","bech32PrefixConsPub":"echelonvalconspub"},"chainName":"echelon","feeCurrencies":[{"coinDenom":"echelon","coinMinimalDenom":"aechelon","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"echelon","coinMinimalDenom":"aechelon","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"elys-1","currencies":[{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6},{"coinDenom":"eden","coinMinimalDenom":"ueden","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6},{"coinDenom":"axl","coinMinimalDenom":"ibc/9463E39D230614B313B487836D13A392BD1731928713D4C8427A083627048DB3","coinDecimals":6}],"rest":"https://api.elys.network","rpc":"https://rpc.elys.network:443","bech32Config":{"bech32PrefixAccAddr":"elys","bech32PrefixAccPub":"elyspub","bech32PrefixValAddr":"elysvaloper","bech32PrefixValPub":"elysvaloperpub","bech32PrefixConsAddr":"elysvalcons","bech32PrefixConsPub":"elysvalconspub"},"chainName":"elys","feeCurrencies":[{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"emoney-3","currencies":[{"coinDenom":"ngm","coinMinimalDenom":"ungm","coinDecimals":6},{"coinDenom":"eur","coinMinimalDenom":"eeur","coinDecimals":6},{"coinDenom":"chf","coinMinimalDenom":"echf","coinDecimals":6},{"coinDenom":"nok","coinMinimalDenom":"enok","coinDecimals":6},{"coinDenom":"dkk","coinMinimalDenom":"edkk","coinDecimals":6},{"coinDenom":"sek","coinMinimalDenom":"esek","coinDecimals":6}],"rest":"https://emoney.validator.network/api/","rpc":"https://emoney.validator.network","bech32Config":{"bech32PrefixAccAddr":"emoney","bech32PrefixAccPub":"emoneypub","bech32PrefixValAddr":"emoneyvaloper","bech32PrefixValPub":"emoneyvaloperpub","bech32PrefixConsAddr":"emoneyvalcons","bech32PrefixConsPub":"emoneyvalconspub"},"chainName":"emoney","feeCurrencies":[{"coinDenom":"ngm","coinMinimalDenom":"ungm","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"eur","coinMinimalDenom":"eeur","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"chf","coinMinimalDenom":"echf","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"nok","coinMinimalDenom":"enok","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"sek","coinMinimalDenom":"esek","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"dkk","coinMinimalDenom":"edkk","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}}],"stakeCurrency":{"coinDenom":"ngm","coinMinimalDenom":"ungm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"empowerchain-1","currencies":[{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6}],"rest":"https://rest-empowerchain.ecostake.com:443","rpc":"https://rpc-empowerchain.ecostake.com:443","bech32Config":{"bech32PrefixAccAddr":"empower","bech32PrefixAccPub":"empowerpub","bech32PrefixValAddr":"empowervaloper","bech32PrefixValPub":"empowervaloperpub","bech32PrefixConsAddr":"empowervalcons","bech32PrefixConsPub":"empowervalconspub"},"chainName":"empowerchain","feeCurrencies":[{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"epix_4242-1","currencies":[{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18}],"rest":"https://epix.api.silknodes.io","rpc":"https://epix.rpc.silknodes.io/","bech32Config":{"bech32PrefixAccAddr":"epix","bech32PrefixAccPub":"epixpub","bech32PrefixValAddr":"epixvaloper","bech32PrefixValPub":"epixvaloperpub","bech32PrefixConsAddr":"epixvalcons","bech32PrefixConsPub":"epixvalconspub"},"chainName":"epix","feeCurrencies":[{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18,"gasPriceStep":{"low":1000000000000,"average":2000000000000,"high":3000000000000}}],"stakeCurrency":{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"ethos_7003-1","currencies":[{"coinDenom":"RYT","coinMinimalDenom":"aRYT","coinDecimals":18}],"rest":"https://ethos.provable.dev/rest/","rpc":"https://ethos-rpc.provable.dev:443/","bech32Config":{"bech32PrefixAccAddr":"ethos","bech32PrefixAccPub":"ethospub","bech32PrefixValAddr":"ethosvaloper","bech32PrefixValPub":"ethosvaloperpub","bech32PrefixConsAddr":"ethosvalcons","bech32PrefixConsPub":"ethosvalconspub"},"chainName":"ethos","feeCurrencies":[{"coinDenom":"RYT","coinMinimalDenom":"aRYT","coinDecimals":18}],"stakeCurrency":{"coinDenom":"RYT","coinMinimalDenom":"aRYT","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"evmos_9001-2","currencies":[{"coinDenom":"evmos","coinMinimalDenom":"aevmos","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/95F4898F70B1E3765715808C57E955034419200A7BB6DDECBEAA5FD3AA3DF7D5","coinDecimals":6},{"coinDenom":"neok","coinMinimalDenom":"erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9","coinDecimals":18},{"coinDenom":"berlin-legacy","coinMinimalDenom":"erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280","coinDecimals":18},{"coinDenom":"crowdp","coinMinimalDenom":"erc20/0xfbF4318d24a93753F11d365A6dcF8b830e98Ab0F","coinDecimals":18}],"rest":"https://rest.bd.evmos.org:1317","rpc":"https://rpc.lavenderfive.com:443/evmos","bech32Config":{"bech32PrefixAccAddr":"evmos","bech32PrefixAccPub":"evmospub","bech32PrefixValAddr":"evmosvaloper","bech32PrefixValPub":"evmosvaloperpub","bech32PrefixConsAddr":"evmosvalcons","bech32PrefixConsPub":"evmosvalconspub"},"chainName":"evmos","feeCurrencies":[{"coinDenom":"evmos","coinMinimalDenom":"aevmos","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"evmos","coinMinimalDenom":"aevmos","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"fetchhub-4","currencies":[{"coinDenom":"fet","coinMinimalDenom":"afet","coinDecimals":18},{"coinDenom":"mobx","coinMinimalDenom":"nanomobx","coinDecimals":9}],"rest":"https://rest-fetchhub.fetch.ai","rpc":"https://rpc-fetchhub.fetch.ai:443","bech32Config":{"bech32PrefixAccAddr":"fetch","bech32PrefixAccPub":"fetchpub","bech32PrefixValAddr":"fetchvaloper","bech32PrefixValPub":"fetchvaloperpub","bech32PrefixConsAddr":"fetchvalcons","bech32PrefixConsPub":"fetchvalconspub"},"chainName":"fetchhub","feeCurrencies":[{"coinDenom":"fet","coinMinimalDenom":"afet","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.035}}],"stakeCurrency":{"coinDenom":"fet","coinMinimalDenom":"afet","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"finschia-2","currencies":[{"coinDenom":"fnsa","coinMinimalDenom":"cony","coinDecimals":6}],"rest":"https://finschia-api.finschia.io","rpc":"https://finschia-rpc.finschia.io","bech32Config":{"bech32PrefixAccAddr":"link","bech32PrefixAccPub":"linkpub","bech32PrefixValAddr":"linkvaloper","bech32PrefixValPub":"linkvaloperpub","bech32PrefixConsAddr":"linkvalcons","bech32PrefixConsPub":"linkvalconspub"},"chainName":"finschia","feeCurrencies":[{"coinDenom":"fnsa","coinMinimalDenom":"cony","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.015,"high":0.015}}],"stakeCurrency":{"coinDenom":"fnsa","coinMinimalDenom":"cony","coinDecimals":6},"bip44":{"coinType":438}},{"chainId":"colosseum-1","currencies":[{"coinDenom":"fct","coinMinimalDenom":"ufct","coinDecimals":6}],"rest":"https://lcd-mainnet.firmachain.dev:1317","rpc":"https://lcd-mainnet.firmachain.dev:26657","bech32Config":{"bech32PrefixAccAddr":"firma","bech32PrefixAccPub":"firmapub","bech32PrefixValAddr":"firmavaloper","bech32PrefixValPub":"firmavaloperpub","bech32PrefixConsAddr":"firmavalcons","bech32PrefixConsPub":"firmavalconspub"},"chainName":"firmachain","feeCurrencies":[{"coinDenom":"fct","coinMinimalDenom":"ufct","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.15,"high":0.2}}],"stakeCurrency":{"coinDenom":"fct","coinMinimalDenom":"ufct","coinDecimals":6},"bip44":{"coinType":7777777}},{"chainId":"furya-1","currencies":[{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6}],"rest":"https://furya.api.nodeshub.online","rpc":"https://furya-rpc.synergynodes.com","bech32Config":{"bech32PrefixAccAddr":"furya","bech32PrefixAccPub":"furyapub","bech32PrefixValAddr":"furyavaloper","bech32PrefixValPub":"furyavaloperpub","bech32PrefixConsAddr":"furyavalcons","bech32PrefixConsPub":"furyavalconspub"},"chainName":"furya","feeCurrencies":[{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.5}}],"stakeCurrency":{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"fxcore","currencies":[{"coinDenom":"WFX","coinMinimalDenom":"FX","coinDecimals":18},{"coinDenom":"PUNDIX","coinMinimalDenom":"eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38","coinDecimals":18}],"rest":"https://fx-rest.functionx.io","rpc":"https://fx-json.functionx.io","bech32Config":{"bech32PrefixAccAddr":"fx","bech32PrefixAccPub":"fxpub","bech32PrefixValAddr":"fxvaloper","bech32PrefixValPub":"fxvaloperpub","bech32PrefixConsAddr":"fxvalcons","bech32PrefixConsPub":"fxvalconspub"},"chainName":"fxcore","feeCurrencies":[{"coinDenom":"WFX","coinMinimalDenom":"FX","coinDecimals":18,"gasPriceStep":{"low":4000000000000,"average":4200000000000,"high":5000000000000}}],"stakeCurrency":{"coinDenom":"WFX","coinMinimalDenom":"FX","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"wormchain","currencies":[{"coinDenom":"test","coinMinimalDenom":"utest","coinDecimals":6},{"coinDenom":"worm","coinMinimalDenom":"uworm","coinDecimals":6},{"coinDenom":"wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh","coinDecimals":8},{"coinDenom":"wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp","coinDecimals":8},{"coinDenom":"wormhole/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b","coinDecimals":8},{"coinDenom":"wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r","coinDecimals":8},{"coinDenom":"wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi","coinDecimals":6},{"coinDenom":"wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA","coinDecimals":8},{"coinDenom":"wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR","coinDecimals":5},{"coinDenom":"wormhole/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd","coinDecimals":8},{"coinDenom":"wormhole/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw","coinDecimals":8},{"coinDenom":"wormhole/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1","coinDecimals":8},{"coinDenom":"wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt","coinDecimals":6},{"coinDenom":"wormhole/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4","coinDecimals":6},{"coinDenom":"wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy","coinDecimals":6},{"coinDenom":"wormhole/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3","coinDecimals":6},{"coinDenom":"wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst","coinDecimals":5},{"coinDenom":"w","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/2Wb6ueMFc9WLc2eyYVha6qnwHKbwzUXdooXsg6XXVvos","coinDecimals":6},{"coinDenom":"wormhole/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP","coinDecimals":6}],"rest":"https://tncnt-eu-wormchain-main-01.rpc.p2p.world/lcd/","rpc":"https://tncnt-eu-wormchain-main-01.rpc.p2p.world/","bech32Config":{"bech32PrefixAccAddr":"wormhole","bech32PrefixAccPub":"wormholepub","bech32PrefixValAddr":"wormholevaloper","bech32PrefixValPub":"wormholevaloperpub","bech32PrefixConsAddr":"wormholevalcons","bech32PrefixConsPub":"wormholevalconspub"},"chainName":"gateway","feeCurrencies":[{"coinDenom":"test","coinMinimalDenom":"utest","coinDecimals":6}],"stakeCurrency":{"coinDenom":"test","coinMinimalDenom":"utest","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"genesis_29-2","currencies":[{"coinDenom":"l1","coinMinimalDenom":"el1","coinDecimals":18}],"rest":"https://api.genesisl1.org","rpc":"https://26657.genesisl1.org","bech32Config":{"bech32PrefixAccAddr":"genesis","bech32PrefixAccPub":"genesispub","bech32PrefixValAddr":"genesisvaloper","bech32PrefixValPub":"genesisvaloperpub","bech32PrefixConsAddr":"genesisvalcons","bech32PrefixConsPub":"genesisvalconspub"},"chainName":"genesisl1","feeCurrencies":[{"coinDenom":"l1","coinMinimalDenom":"el1","coinDecimals":18,"gasPriceStep":{"low":51000000000,"average":52000000000,"high":53000000000}}],"stakeCurrency":{"coinDenom":"l1","coinMinimalDenom":"el1","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"gitopia","currencies":[{"coinDenom":"LORE","coinMinimalDenom":"ulore","coinDecimals":6}],"rest":"https://gitopia-api.polkachu.com:443","rpc":"https://gitopia-rpc.polkachu.com:443","bech32Config":{"bech32PrefixAccAddr":"gitopia","bech32PrefixAccPub":"gitopiapub","bech32PrefixValAddr":"gitopiavaloper","bech32PrefixValPub":"gitopiavaloperpub","bech32PrefixConsAddr":"gitopiavalcons","bech32PrefixConsPub":"gitopiavalconspub"},"chainName":"gitopia","feeCurrencies":[{"coinDenom":"LORE","coinMinimalDenom":"ulore","coinDecimals":6,"gasPriceStep":{"low":0.0012,"average":0.0016,"high":0.0024}}],"stakeCurrency":{"coinDenom":"LORE","coinMinimalDenom":"ulore","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"govgen-1","currencies":[{"coinDenom":"govgen","coinMinimalDenom":"ugovgen","coinDecimals":6}],"rest":"https://api.govgen.io/","rpc":"https://rpc.govgen.io:443","bech32Config":{"bech32PrefixAccAddr":"govgen","bech32PrefixAccPub":"govgenpub","bech32PrefixValAddr":"govgenvaloper","bech32PrefixValPub":"govgenvaloperpub","bech32PrefixConsAddr":"govgenvalcons","bech32PrefixConsPub":"govgenvalconspub"},"chainName":"govgen","feeCurrencies":[{"coinDenom":"govgen","coinMinimalDenom":"ugovgen","coinDecimals":6,"gasPriceStep":{"low":0.006,"average":0.006,"high":0.009}}],"stakeCurrency":{"coinDenom":"govgen","coinMinimalDenom":"ugovgen","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"gravity-bridge-3","currencies":[{"coinDenom":"graviton","coinMinimalDenom":"ugraviton","coinDecimals":6},{"coinDenom":"pstake","coinMinimalDenom":"gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006","coinDecimals":18},{"coinDenom":"gweth","coinMinimalDenom":"gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2","coinDecimals":18},{"coinDenom":"gusdc","coinMinimalDenom":"gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","coinDecimals":6},{"coinDenom":"gusdt","coinMinimalDenom":"gravity0xdAC17F958D2ee523a2206206994597C13D831ec7","coinDecimals":6},{"coinDenom":"gwbtc","coinMinimalDenom":"gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599","coinDecimals":8},{"coinDenom":"gdai","coinMinimalDenom":"gravity0x6B175474E89094C44Da98b954EedeAC495271d0F","coinDecimals":18},{"coinDenom":"gsdai","coinMinimalDenom":"gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA","coinDecimals":18},{"coinDenom":"gocc","coinMinimalDenom":"gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207","coinDecimals":18},{"coinDenom":"page","coinMinimalDenom":"gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e","coinDecimals":8},{"coinDenom":"gpaxg","coinMinimalDenom":"gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78","coinDecimals":18}],"rest":"https://gravitychain.io:1317","rpc":"https://gravitychain.io:26657","bech32Config":{"bech32PrefixAccAddr":"gravity","bech32PrefixAccPub":"gravitypub","bech32PrefixValAddr":"gravityvaloper","bech32PrefixValPub":"gravityvaloperpub","bech32PrefixConsAddr":"gravityvalcons","bech32PrefixConsPub":"gravityvalconspub"},"chainName":"gravitybridge","feeCurrencies":[{"coinDenom":"graviton","coinMinimalDenom":"ugraviton","coinDecimals":6},{"coinDenom":"gusdc","coinMinimalDenom":"gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","coinDecimals":6,"gasPriceStep":{"low":0.0002,"average":0.0005,"high":0.0008}},{"coinDenom":"gusdt","coinMinimalDenom":"gravity0xdAC17F958D2ee523a2206206994597C13D831ec7","coinDecimals":6,"gasPriceStep":{"low":0.0002,"average":0.0005,"high":0.0008}}],"stakeCurrency":{"coinDenom":"graviton","coinMinimalDenom":"ugraviton","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"haqq_11235-1","currencies":[{"coinDenom":"ISLM","coinMinimalDenom":"aISLM","coinDecimals":18},{"coinDenom":"DEEN","coinMinimalDenom":"erc20/0x4FEBDDe47Ab9a76200e57eFcC80b212a07b3e6cE","coinDecimals":6}],"rest":"https://rest.cosmos.haqq.network","rpc":"https://rpc.tm.haqq.network","bech32Config":{"bech32PrefixAccAddr":"haqq","bech32PrefixAccPub":"haqqpub","bech32PrefixValAddr":"haqqvaloper","bech32PrefixValPub":"haqqvaloperpub","bech32PrefixConsAddr":"haqqvalcons","bech32PrefixConsPub":"haqqvalconspub"},"chainName":"haqq","feeCurrencies":[{"coinDenom":"ISLM","coinMinimalDenom":"aISLM","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"ISLM","coinMinimalDenom":"aISLM","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"helichain","currencies":[{"coinDenom":"heli","coinMinimalDenom":"uheli","coinDecimals":6}],"rest":"https://lcd.helichain.com/","rpc":"https://rpc.helichain.com/","bech32Config":{"bech32PrefixAccAddr":"heli","bech32PrefixAccPub":"helipub","bech32PrefixValAddr":"helivaloper","bech32PrefixValPub":"helivaloperpub","bech32PrefixConsAddr":"helivalcons","bech32PrefixConsPub":"helivalconspub"},"chainName":"heli","feeCurrencies":[{"coinDenom":"heli","coinMinimalDenom":"uheli","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.0025}}],"stakeCurrency":{"coinDenom":"heli","coinMinimalDenom":"uheli","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"highbury_710-1","currencies":[{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6},{"coinDenom":"JINX","coinMinimalDenom":"jinx","coinDecimals":6},{"coinDenom":"JINXY","coinMinimalDenom":"jinxy","coinDecimals":6}],"rest":"https://api-mainnet.furya.io/","rpc":"https://gridiron.furya.io","bech32Config":{"bech32PrefixAccAddr":"fury","bech32PrefixAccPub":"furypub","bech32PrefixValAddr":"furyvaloper","bech32PrefixValPub":"furyvaloperpub","bech32PrefixConsAddr":"furyvalcons","bech32PrefixConsPub":"furyvalconspub"},"chainName":"highbury","feeCurrencies":[{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.1,"high":0.25}}],"stakeCurrency":{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6},"bip44":{"coinType":459}},{"chainId":"humans_1089-1","currencies":[{"coinDenom":"heart","coinMinimalDenom":"aheart","coinDecimals":18}],"rest":"https://api.humans.nodestake.org","rpc":"https://rpc.humans.nodestake.org","bech32Config":{"bech32PrefixAccAddr":"human","bech32PrefixAccPub":"humanpub","bech32PrefixValAddr":"humanvaloper","bech32PrefixValPub":"humanvaloperpub","bech32PrefixConsAddr":"humanvalcons","bech32PrefixConsPub":"humanvalconspub"},"chainName":"humans","feeCurrencies":[{"coinDenom":"heart","coinMinimalDenom":"aheart","coinDecimals":18,"gasPriceStep":{"low":80000000000,"average":100000000000,"high":160000000000}}],"stakeCurrency":{"coinDenom":"heart","coinMinimalDenom":"aheart","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"ixo-5","currencies":[{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6}],"rest":"https://proxies.sifchain.finance/api/impacthub-3/rest","rpc":"https://proxies.sifchain.finance/api/impacthub-3/rpc","bech32Config":{"bech32PrefixAccAddr":"ixo","bech32PrefixAccPub":"ixopub","bech32PrefixValAddr":"ixovaloper","bech32PrefixValPub":"ixovaloperpub","bech32PrefixConsAddr":"ixovalcons","bech32PrefixConsPub":"ixovalconspub"},"chainName":"impacthub","feeCurrencies":[{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"injective-1","currencies":[{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"peggy0xdAC17F958D2ee523a2206206994597C13D831ec7","coinDecimals":6},{"coinDenom":"ampINJ","coinMinimalDenom":"factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ","coinDecimals":6},{"coinDenom":"autism","coinMinimalDenom":"factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism","coinDecimals":6},{"coinDenom":"bINJ","coinMinimalDenom":"factory/inj1dxp690rd86xltejgfq2fa7f2nxtgmm5cer3hvu/bINJ","coinDecimals":18},{"coinDenom":"NINJA","coinMinimalDenom":"factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja","coinDecimals":6},{"coinDenom":"WGMI","coinMinimalDenom":"factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/DD648F5D3CDA56D0D8D8820CF703D246B9FC4007725D8B38D23A21FF1A1477E3","coinDecimals":6},{"coinDenom":"glto","coinMinimalDenom":"peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2","coinDecimals":6},{"coinDenom":"hava","coinMinimalDenom":"factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava","coinDecimals":6},{"coinDenom":"BADKID","coinMinimalDenom":"ibc/A0C5AD197FECAF6636F589071338DC7ECD6B0809CD3A5AB131EAAA5395E7E5E8","coinDecimals":6},{"coinDenom":"NINPO","coinMinimalDenom":"inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88","coinDecimals":6},{"coinDenom":"JUDO","coinMinimalDenom":"inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h","coinDecimals":6},{"coinDenom":"beast","coinMinimalDenom":"peggy0xA4426666addBE8c4985377d36683D17FB40c31Be","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"ibc/063F4461F7317CFF10F50AB044E44932D22AAD84FA7107082744946E6DB7B7A8","coinDecimals":6},{"coinDenom":"nINJ","coinMinimalDenom":"inj1rmzufd7h09sqfrre5dtvu5d09ta7c0t4jzkr2f","coinDecimals":18},{"coinDenom":"nATOM","coinMinimalDenom":"inj16jf4qkcarp3lan4wl2qkrelf4kduvvujwg0780","coinDecimals":6},{"coinDenom":"nWETH","coinMinimalDenom":"inj1kehk5nvreklhylx22p3x0yjydfsz9fv3fvg5xt","coinDecimals":18},{"coinDenom":"nUSDT","coinMinimalDenom":"inj1cy9hes20vww2yr6crvs75gxy5hpycya2hmjg9s","coinDecimals":6},{"coinDenom":"nTIA","coinMinimalDenom":"inj1fzquxxxam59z6fzewy2hvvreeh3m04x83zg4vv","coinDecimals":6},{"coinDenom":"NBZ","coinMinimalDenom":"ibc/1011E4D6D4800DA9B8F21D7C207C0B0C18E54E614A8576037F066B775210709D","coinDecimals":6},{"coinDenom":"Talis","coinMinimalDenom":"factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/Talis","coinDecimals":6},{"coinDenom":"xTalis","coinMinimalDenom":"factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/xTalis","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/2CBC2EA121AE42563B08028466F37B600F2D7D4282342DE938283CC3FB2BC00E","coinDecimals":6},{"coinDenom":"SYN","coinMinimalDenom":"factory/inj1a6xdezq7a94qwamec6n6cnup02nvewvjtz6h6e/SYN","coinDecimals":6},{"coinDenom":"ashSYN","coinMinimalDenom":"factory/inj1ej2f3lmpxj4djsmmuxvnfuvplrut7zmwrq7zj8/syn.ash","coinDecimals":6},{"coinDenom":"COSMO","coinMinimalDenom":"factory/inj1je6n5sr4qtx2lhpldfxndntmgls9hf38ncmcez/COSMO","coinDecimals":6},{"coinDenom":"XTRUMP","coinMinimalDenom":"ibc/5339B0D20986A7C20C2548ED9D6B8DE47BB64E03ABFD051B7792E713036EA20C","coinDecimals":6},{"coinDenom":"DRUGS","coinMinimalDenom":"cw20:inj19vy83ne9tzta2yqynj8yg7dq9ghca6yqn9hyej","coinDecimals":18},{"coinDenom":"DRUGS","coinMinimalDenom":"factory/inj178zy7myyxewek7ka7v9hru8ycpvfnen6xeps89/DRUGS","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/D6E6A20ABDD600742D22464340A7701558027759CE14D12590F8EA869CCCF445","coinDecimals":6}],"rest":"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz","rpc":"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rpc.newmetric.xyz","bech32Config":{"bech32PrefixAccAddr":"inj","bech32PrefixAccPub":"injpub","bech32PrefixValAddr":"injvaloper","bech32PrefixValPub":"injvaloperpub","bech32PrefixConsAddr":"injvalcons","bech32PrefixConsPub":"injvalconspub"},"chainName":"injective","feeCurrencies":[{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18,"gasPriceStep":{"low":500000000,"average":700000000,"high":900000000}}],"stakeCurrency":{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"int3face-1","currencies":[{"coinDenom":"int3","coinMinimalDenom":"uint3","coinDecimals":6},{"coinDenom":"btc","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc","coinDecimals":8},{"coinDenom":"bch","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch","coinDecimals":8},{"coinDenom":"doge","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge","coinDecimals":8},{"coinDenom":"ltc","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc","coinDecimals":8},{"coinDenom":"ton","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/ton-ton","coinDecimals":9}],"rest":"https://api.mainnet.int3face.zone","rpc":"https://rpc.mainnet.int3face.zone","bech32Config":{"bech32PrefixAccAddr":"int3","bech32PrefixAccPub":"int3pub","bech32PrefixValAddr":"int3valoper","bech32PrefixValPub":"int3valoperpub","bech32PrefixConsAddr":"int3valcons","bech32PrefixConsPub":"int3valconspub"},"chainName":"int3face","feeCurrencies":[{"coinDenom":"int3","coinMinimalDenom":"uint3","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}},{"coinDenom":"btc","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc","coinDecimals":8,"gasPriceStep":{"low":1e-7,"average":0.0000025,"high":0.000004}},{"coinDenom":"bch","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch","coinDecimals":8,"gasPriceStep":{"low":0.000001,"average":0.000025,"high":0.00004}},{"coinDenom":"ltc","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc","coinDecimals":8,"gasPriceStep":{"low":0.000001,"average":0.000025,"high":0.00004}},{"coinDenom":"doge","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge","coinDecimals":8,"gasPriceStep":{"low":0.001,"average":0.0025,"high":0.004}},{"coinDenom":"ton","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/ton-ton","coinDecimals":9,"gasPriceStep":{"low":0.0001,"average":0.00025,"high":0.0004}}],"stakeCurrency":{"coinDenom":"int3","coinMinimalDenom":"uint3","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"irishub-1","currencies":[{"coinDenom":"iris","coinMinimalDenom":"uiris","coinDecimals":6}],"rest":"https://api-irisnet-ia.cosmosia.notional.ventures/","rpc":"https://rpc-irisnet-ia.cosmosia.notional.ventures/","bech32Config":{"bech32PrefixAccAddr":"iaa","bech32PrefixAccPub":"iaapub","bech32PrefixValAddr":"iaavaloper","bech32PrefixValPub":"iaavaloperpub","bech32PrefixConsAddr":"iaavalcons","bech32PrefixConsPub":"iaavalconspub"},"chainName":"irisnet","feeCurrencies":[{"coinDenom":"iris","coinMinimalDenom":"uiris","coinDecimals":6,"gasPriceStep":{"low":0.2,"average":0.3,"high":0.4}}],"stakeCurrency":{"coinDenom":"iris","coinMinimalDenom":"uiris","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"jackal-1","currencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"rest":"https://api.jackalprotocol.com","rpc":"https://rpc.jackalprotocol.com","bech32Config":{"bech32PrefixAccAddr":"jkl","bech32PrefixAccPub":"jklpub","bech32PrefixValAddr":"jklvaloper","bech32PrefixValPub":"jklvaloperpub","bech32PrefixConsAddr":"jklvalcons","bech32PrefixConsPub":"jklvalconspub"},"chainName":"jackal","feeCurrencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6,"gasPriceStep":{"low":0.002,"average":0.002,"high":0.02}}],"stakeCurrency":{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"joltify_1729-1","currencies":[{"coinDenom":"jolt","coinMinimalDenom":"ujolt","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/9117A26BA81E29FA4F78F57DC2BD90CD3D26848101BA880445F119B22A1E254E","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3","coinDecimals":6}],"rest":"https://lcd.joltify.io/","rpc":"https://rpc.joltify.io","bech32Config":{"bech32PrefixAccAddr":"jolt","bech32PrefixAccPub":"joltpub","bech32PrefixValAddr":"joltvaloper","bech32PrefixValPub":"joltvaloperpub","bech32PrefixConsAddr":"joltvalcons","bech32PrefixConsPub":"joltvalconspub"},"chainName":"joltify","feeCurrencies":[{"coinDenom":"jolt","coinMinimalDenom":"ujolt","coinDecimals":6}],"stakeCurrency":{"coinDenom":"jolt","coinMinimalDenom":"ujolt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"juno-1","currencies":[{"coinDenom":"juno","coinMinimalDenom":"ujuno","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6},{"coinDenom":"neta","coinMinimalDenom":"cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr","coinDecimals":6},{"coinDenom":"marble","coinMinimalDenom":"cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl","coinDecimals":3},{"coinDenom":"hope","coinMinimalDenom":"cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z","coinDecimals":6},{"coinDenom":"rac","coinMinimalDenom":"cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa","coinDecimals":6},{"coinDenom":"block","coinMinimalDenom":"cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq","coinDecimals":6},{"coinDenom":"cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49","coinMinimalDenom":"cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49","coinDecimals":0},{"coinDenom":"raw","coinMinimalDenom":"cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g","coinDecimals":6},{"coinDenom":"asvt","coinMinimalDenom":"cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w","coinDecimals":6},{"coinDenom":"hns","coinMinimalDenom":"cw20:juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k","coinDecimals":6},{"coinDenom":"joe","coinMinimalDenom":"cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3","coinDecimals":6},{"coinDenom":"dla","coinMinimalDenom":"cw20:juno1sfwye65qxcfsc837gu5qcprcz7w49gkv3wnat04764ld76hy3arqs779tr","coinDecimals":6},{"coinDenom":"glto","coinMinimalDenom":"cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se","coinDecimals":6},{"coinDenom":"gkey","coinMinimalDenom":"cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh","coinDecimals":6},{"coinDenom":"hole","coinMinimalDenom":"cw20:juno1t46z6hg8vvsena7sue0vg6w85ljar3cundplkre9sz0skeqkap9sxyyy6m","coinDecimals":6},{"coinDenom":"sejuno","coinMinimalDenom":"cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv","coinDecimals":6},{"coinDenom":"bjuno","coinMinimalDenom":"cw20:juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3","coinDecimals":6},{"coinDenom":"solar","coinMinimalDenom":"cw20:juno159q8t5g02744lxq8lfmcn6f78qqulq9wn3y9w7lxjgkz4e0a6kvsfvapse","coinDecimals":6},{"coinDenom":"seasy","coinMinimalDenom":"cw20:juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf","coinDecimals":6},{"coinDenom":"muse","coinMinimalDenom":"cw20:juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3","coinDecimals":6},{"coinDenom":"loop","coinMinimalDenom":"cw20:juno1qsrercqegvs4ye0yqg93knv73ye5dc3prqwd6jcdcuj8ggp6w0us66deup","coinDecimals":6},{"coinDenom":"fury","coinMinimalDenom":"cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz","coinDecimals":6},{"coinDenom":"phmn","coinMinimalDenom":"cw20:juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l","coinDecimals":6},{"coinDenom":"hopers","coinMinimalDenom":"cw20:juno1u45shlp0q4gcckvsj06ss4xuvsu0z24a0d0vr9ce6r24pht4e5xq7q995n","coinDecimals":6},{"coinDenom":"red","coinMinimalDenom":"cw20:juno1g647t78y2ulqlm3lss8rs3d0spzd0teuwhdvnqn92tr79yltk9dq2h24za","coinDecimals":6},{"coinDenom":"blue","coinMinimalDenom":"cw20:juno14q8kk464fafql2fwmlsgvgcdl6h2csqpzv4hr025fmcvgjahpess32k0j7","coinDecimals":6},{"coinDenom":"wynd","coinMinimalDenom":"cw20:juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9","coinDecimals":6},{"coinDenom":"banana","coinMinimalDenom":"cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj","coinDecimals":6},{"coinDenom":"nride","coinMinimalDenom":"cw20:juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq","coinDecimals":6},{"coinDenom":"sgnl","coinMinimalDenom":"cw20:juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k","coinDecimals":6},{"coinDenom":"jape","coinMinimalDenom":"cw20:juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps","coinDecimals":6},{"coinDenom":"catom","coinMinimalDenom":"cw20:juno12wxyvtqe76x2a5jj6ckp2hfq8v32m6rvyyxwwufl2tksqvkt7whqczv6pa","coinDecimals":6},{"coinDenom":"howl","coinMinimalDenom":"cw20:juno1g0wuyu2f49ncf94r65278puxzclf5arse9f3kvffxyv4se4vgdmsk4dvqz","coinDecimals":6},{"coinDenom":"fox","coinMinimalDenom":"cw20:juno1u8cr3hcjvfkzxcaacv9q75uw9hwjmn8pucc93pmy6yvkzz79kh3qncca8x","coinDecimals":6},{"coinDenom":"grdn","coinMinimalDenom":"cw20:juno1xekkh27punj0uxruv3gvuydyt856fax0nu750xns99t2qcxp7xmsqwhfma","coinDecimals":6},{"coinDenom":"mnpu","coinMinimalDenom":"cw20:juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my","coinDecimals":6},{"coinDenom":"kleo","coinMinimalDenom":"cw20:juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy","coinDecimals":6},{"coinDenom":"sikoba","coinMinimalDenom":"cw20:juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp","coinDecimals":6},{"coinDenom":"shibac","coinMinimalDenom":"cw20:juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z","coinDecimals":6},{"coinDenom":"clst","coinMinimalDenom":"cw20:juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg","coinDecimals":6},{"coinDenom":"watr","coinMinimalDenom":"cw20:juno1m4h8q4p305wgy7vkux0w6e5ylhqll3s6pmadhxkhqtuwd5wlxhxs8xklsw","coinDecimals":6},{"coinDenom":"casa","coinMinimalDenom":"cw20:juno1ju8k8sqwsqu5k6umrypmtyqu2wqcpnrkf4w4mntvl0javt4nma7s8lzgss","coinDecimals":6},{"coinDenom":"summit","coinMinimalDenom":"cw20:juno1j4ux0f6gt7e82z7jdpm25v4g2gts880ap64rdwa49989wzhd0dfqed6vqm","coinDecimals":6},{"coinDenom":"manna","coinMinimalDenom":"cw20:juno13ca2g36ng6etcfhr9qxx352uw2n5e92np54thfkm3w3nzlhsgvwsjaqlyq","coinDecimals":6},{"coinDenom":"empwr","coinMinimalDenom":"cw20:juno12etxwkxvms0uy9ak8g3pyq6a53myukufdnx82pakzmjmpm77a0ksr9gs5v","coinDecimals":6},{"coinDenom":"middle","coinMinimalDenom":"cw20:juno1525fuspletvzykpgr2atxpymu9le4mghd7qq4a4u23uwqzc2f3fq7fmafd","coinDecimals":6},{"coinDenom":"sunset","coinMinimalDenom":"cw20:juno17703kcxtsg37hryxnestejyyycuv5yyvnghp2e7w0kqvafnnyetsgzq62w","coinDecimals":6},{"coinDenom":"tree","coinMinimalDenom":"cw20:juno1uu3rxu7w7fpfj4sl4xpxppgymk57mzdzn6kg7492jdxh5dwk7d2qq9429e","coinDecimals":6},{"coinDenom":"invdrs","coinMinimalDenom":"cw20:juno1jwdy7v4egw36pd84aeks3ww6n8k7zhsumd4ac8q5lts83ppxueus4626e8","coinDecimals":6},{"coinDenom":"apemos","coinMinimalDenom":"cw20:juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06","coinDecimals":6},{"coinDenom":"osdoge","coinMinimalDenom":"cw20:juno1ytymtllllsp3hfmndvcp802p2xmy5s8m59ufel8xv9ahyxyfs4hs4kd4je","coinDecimals":6},{"coinDenom":"doga","coinMinimalDenom":"cw20:juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d","coinDecimals":6},{"coinDenom":"pepe","coinMinimalDenom":"cw20:juno1zqrj3ta4u7ylv0wqzd8t8q3jrr9rdmn43zuzp9zemeunecnhy8fss778g7","coinDecimals":6},{"coinDenom":"catmos","coinMinimalDenom":"cw20:juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488","coinDecimals":6},{"coinDenom":"spacer","coinMinimalDenom":"cw20:juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg","coinDecimals":6},{"coinDenom":"light","coinMinimalDenom":"cw20:juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l","coinDecimals":9},{"coinDenom":"mile","coinMinimalDenom":"cw20:juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d","coinDecimals":6},{"coinDenom":"void","coinMinimalDenom":"cw20:juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8","coinDecimals":6},{"coinDenom":"silica","coinMinimalDenom":"cw20:juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux","coinDecimals":6},{"coinDenom":"pepec","coinMinimalDenom":"cw20:juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k","coinDecimals":6},{"coinDenom":"pltn","coinMinimalDenom":"cw20:juno15au4k2jgwd0jnchy0fkg3lm00fpt7jt0j2duuzradn2q7sega2dszyn5pp","coinDecimals":6},{"coinDenom":"yfd","coinMinimalDenom":"cw20:juno12mcwmd6wqhledkjsurlfqtc8j0pedvxlcxw3gs4kh2qf808ehehsen8nmw","coinDecimals":6},{"coinDenom":"nexx","coinMinimalDenom":"factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX","coinDecimals":6},{"coinDenom":"dgl","coinMinimalDenom":"factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL","coinDecimals":6},{"coinDenom":"ampJUNO","coinMinimalDenom":"cw20:juno1a0khag6cfzu5lrwazmyndjgvlsuk7g4vn9jd8ceym8f4jf6v2l9q6d348a","coinDecimals":6},{"coinDenom":"bits","coinMinimalDenom":"cw20:juno14fz92ehqt37e096xr95kmy8nc0kz803uezxtg4fwx7agjjma86sqm8mg3h","coinDecimals":8},{"coinDenom":"poil","coinMinimalDenom":"cw20:juno13epyeat7ef0k7q6kllmyvc8zpfd9xm7cqjrgtk0qkgrk7n5mjfmq8979jw","coinDecimals":6},{"coinDenom":"minerva","coinMinimalDenom":"cw20:juno1h86ut5aevlxuuxrra6wy3dfq6e39zkzzv9eelz678jr6amxlc4gsx46j82","coinDecimals":6},{"coinDenom":"luno","coinMinimalDenom":"cw20:juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk","coinDecimals":6},{"coinDenom":"aten","coinMinimalDenom":"cw20:juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r","coinDecimals":6},{"coinDenom":"hera","coinMinimalDenom":"cw20:juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0","coinDecimals":6},{"coinDenom":"bJUNO","coinMinimalDenom":"cw20:juno1mvkgcr5uce2rnpzr4qrzf50hx4qreuwzlt7fzsjrhjud3xnjmttq5mkh2m","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/4A482FA914A4B9B05801ED81C33713899F322B24F76A06F4B8FE872485EA22FF","coinDecimals":6},{"coinDenom":"rstk","coinMinimalDenom":"ibc/F0C440C8040E2FCCAC621D32D3A00D9B347C989D52CE869A91CB34D07B0021D2","coinDecimals":6},{"coinDenom":"wind","coinMinimalDenom":"factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind","coinDecimals":6},{"coinDenom":"cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg","coinMinimalDenom":"cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg","coinDecimals":0},{"coinDenom":"arena","coinMinimalDenom":"factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA","coinDecimals":6},{"coinDenom":"ashWIND","coinMinimalDenom":"factory/juno16uprl38e4ljj5ctuha9ehpvp2l93z3d5jmwj2cttt6jkhlrhscpqgglalk/wind.ash","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/B4B81727559DC69159ED8BECD4452D555235CA0D11FADD3ADE121395A7E2833E","coinDecimals":18},{"coinDenom":"whale","coinMinimalDenom":"ibc/3A6ADE78FB8169C034C29C4F2E1A61CE596EC8235366F22381D981A98F1F5A5C","coinDecimals":6}],"rest":"https://lcd-juno.itastakers.com","rpc":"https://rpc-juno.itastakers.com","bech32Config":{"bech32PrefixAccAddr":"juno","bech32PrefixAccPub":"junopub","bech32PrefixValAddr":"junovaloper","bech32PrefixValPub":"junovaloperpub","bech32PrefixConsAddr":"junovalcons","bech32PrefixConsPub":"junovalconspub"},"chainName":"juno","feeCurrencies":[{"coinDenom":"juno","coinMinimalDenom":"ujuno","coinDecimals":6,"gasPriceStep":{"low":0.075,"average":0.1,"high":0.125}},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6,"gasPriceStep":{"low":0.003,"average":0.0035,"high":0.004}}],"stakeCurrency":{"coinDenom":"juno","coinMinimalDenom":"ujuno","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kava_2222-10","currencies":[{"coinDenom":"kava","coinMinimalDenom":"ukava","coinDecimals":6},{"coinDenom":"HARD","coinMinimalDenom":"hard","coinDecimals":6},{"coinDenom":"SWP","coinMinimalDenom":"swp","coinDecimals":6},{"coinDenom":"USDX","coinMinimalDenom":"usdx","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"erc20/tether/usdt","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/D4F1F74C6B90168E05B974F2EBB5938D18704B73DE273CAACF7E96F7821B2C3D","coinDecimals":18}],"rest":"https://api.data.kava.io/","rpc":"https://rpc.data.kava.io","bech32Config":{"bech32PrefixAccAddr":"kava","bech32PrefixAccPub":"kavapub","bech32PrefixValAddr":"kavavaloper","bech32PrefixValPub":"kavavaloperpub","bech32PrefixConsAddr":"kavavalcons","bech32PrefixConsPub":"kavavalconspub"},"chainName":"kava","feeCurrencies":[{"coinDenom":"kava","coinMinimalDenom":"ukava","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.1,"high":0.25}}],"stakeCurrency":{"coinDenom":"kava","coinMinimalDenom":"ukava","coinDecimals":6},"bip44":{"coinType":459}},{"chainId":"kichain-2","currencies":[{"coinDenom":"xki","coinMinimalDenom":"uxki","coinDecimals":6},{"coinDenom":"lvn","coinMinimalDenom":"cw20:ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy","coinDecimals":6}],"rest":"https://api-mainnet.blockchain.ki","rpc":"https://rpc-mainnet.blockchain.ki","bech32Config":{"bech32PrefixAccAddr":"ki","bech32PrefixAccPub":"kipub","bech32PrefixValAddr":"kivaloper","bech32PrefixValPub":"kivaloperpub","bech32PrefixConsAddr":"kivalcons","bech32PrefixConsPub":"kivalconspub"},"chainName":"kichain","feeCurrencies":[{"coinDenom":"xki","coinMinimalDenom":"uxki","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.05}}],"stakeCurrency":{"coinDenom":"xki","coinMinimalDenom":"uxki","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kima_network","currencies":[{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6}],"rest":"https://api.kima.network","rpc":"https://rpc.kima.network/","bech32Config":{"bech32PrefixAccAddr":"kima","bech32PrefixAccPub":"kimapub","bech32PrefixValAddr":"kimavaloper","bech32PrefixValPub":"kimavaloperpub","bech32PrefixConsAddr":"kimavalcons","bech32PrefixConsPub":"kimavalconspub"},"chainName":"kimanetwork","feeCurrencies":[{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.05}}],"stakeCurrency":{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"darchub","currencies":[{"coinDenom":"darc","coinMinimalDenom":"udarc","coinDecimals":6}],"rest":"https://api-konstellation-ia.cosmosia.notional.ventures/","rpc":"https://rpc-konstellation-ia.cosmosia.notional.ventures/","bech32Config":{"bech32PrefixAccAddr":"darc","bech32PrefixAccPub":"darcpub","bech32PrefixValAddr":"darcvaloper","bech32PrefixValPub":"darcvaloperpub","bech32PrefixConsAddr":"darcvalcons","bech32PrefixConsPub":"darcvalconspub"},"chainName":"konstellation","feeCurrencies":[{"coinDenom":"darc","coinMinimalDenom":"udarc","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.001,"high":0.01}}],"stakeCurrency":{"coinDenom":"darc","coinMinimalDenom":"udarc","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"luwak-1","currencies":[{"coinDenom":"XKP","coinMinimalDenom":"ukopi","coinDecimals":6},{"coinDenom":"kUSD","coinMinimalDenom":"ukusd","coinDecimals":6},{"coinDenom":"ckUSD","coinMinimalDenom":"uckusd","coinDecimals":6},{"coinDenom":"cUSDC","coinMinimalDenom":"ucusdc","coinDecimals":6},{"coinDenom":"cUSDT.inj","coinMinimalDenom":"ucusdtinj","coinDecimals":6},{"coinDenom":"USDC","coinMinimalDenom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","coinDecimals":6},{"coinDenom":"USDT.inj","coinMinimalDenom":"ibc/D8A36AE90F20FE4843A8D249B1BCF0CCDDE35C4B605C8DED57BED20C639162D0","coinDecimals":6},{"coinDenom":"INJ","coinMinimalDenom":"ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255","coinDecimals":18},{"coinDenom":"Luna","coinMinimalDenom":"ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85","coinDecimals":6},{"coinDenom":"Atom","coinMinimalDenom":"ibc/25418646C017D377ADF3202FF1E43590D0DAE3346E594E8D78176A139A928F88","coinDecimals":6},{"coinDenom":"asusdtinj","coinMinimalDenom":"uasusdtinj","coinDecimals":6},{"coinDenom":"asUSDC","coinMinimalDenom":"uasusdc","coinDecimals":6}],"rest":"https://rest.kopi.money","rpc":"https://rpc.kopi.money","bech32Config":{"bech32PrefixAccAddr":"kopi","bech32PrefixAccPub":"kopipub","bech32PrefixValAddr":"kopivaloper","bech32PrefixValPub":"kopivaloperpub","bech32PrefixConsAddr":"kopivalcons","bech32PrefixConsPub":"kopivalconspub"},"chainName":"kopi","feeCurrencies":[{"coinDenom":"XKP","coinMinimalDenom":"ukopi","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"XKP","coinMinimalDenom":"ukopi","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kaiyo-1","currencies":[{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6},{"coinDenom":"usk","coinMinimalDenom":"factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk","coinDecimals":6},{"coinDenom":"qcKUJI","coinMinimalDenom":"factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt","coinDecimals":6},{"coinDenom":"ampKUJI","coinMinimalDenom":"factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI","coinDecimals":6},{"coinDenom":"mnta","coinMinimalDenom":"factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta","coinDecimals":6},{"coinDenom":"qcMNTA","coinMinimalDenom":"factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt","coinDecimals":6},{"coinDenom":"ampMNTA","coinMinimalDenom":"factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA","coinDecimals":6},{"coinDenom":"wink","coinMinimalDenom":"factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink","coinDecimals":6},{"coinDenom":"blend","coinMinimalDenom":"factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8","coinDecimals":6},{"coinDenom":"fuzn","coinMinimalDenom":"factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn","coinDecimals":6},{"coinDenom":"rfuzn","coinMinimalDenom":"factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn","coinDecimals":6},{"coinDenom":"yfuzn","coinMinimalDenom":"factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn","coinDecimals":6},{"coinDenom":"qcFUZN","coinMinimalDenom":"factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt","coinDecimals":6},{"coinDenom":"qcAQLA","coinMinimalDenom":"factory/kujira1d9fmsgvu3yvvppvqech2s3dhrqdm5ukngcf82ghcl70edfpwcrlsu6yr0u/urcpt","coinDecimals":6},{"coinDenom":"AQLA","coinMinimalDenom":"factory/kujira1xe0awk5planmtsmjel5xtx2hzhqdw5p8z66yqd/uaqla","coinDecimals":6},{"coinDenom":"nstk","coinMinimalDenom":"factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk","coinDecimals":6},{"coinDenom":"local","coinMinimalDenom":"factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local","coinDecimals":6},{"coinDenom":"PLNK","coinMinimalDenom":"factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk","coinDecimals":6},{"coinDenom":"sol","coinMinimalDenom":"ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3","coinDecimals":8},{"coinDenom":"evmos","coinMinimalDenom":"ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10","coinDecimals":18},{"coinDenom":"avax","coinMinimalDenom":"ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F","coinDecimals":6},{"coinDenom":"cmdx","coinMinimalDenom":"ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07","coinDecimals":6},{"coinDenom":"juno","coinMinimalDenom":"ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7","coinDecimals":18},{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986","coinDecimals":6},{"coinDenom":"stars","coinMinimalDenom":"ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602","coinDecimals":6},{"coinDenom":"scrt","coinMinimalDenom":"ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5","coinDecimals":6},{"coinDenom":"stkatom","coinMinimalDenom":"ibc/086C1B2E9E611F23D3C9159C858D3F4C6A911D348DFB916A11AE306A865A77A8","coinDecimals":6},{"coinDenom":"bKUJI","coinMinimalDenom":"factory/kujira15e8q5wzlk5k38gjxlhse3vu6vqnafysncx2ltexd6y9gx50vuj2qpt7dgv/boneKuji","coinDecimals":6},{"coinDenom":"rstk","coinMinimalDenom":"ibc/82B298F9E74A9A211C55C67C7AB0C790836BD43672D5DD830F7AE2C5D010AD7D","coinDecimals":6},{"coinDenom":"xusk","coinMinimalDenom":"factory/kujira1w4yaama77v53fp0f9343t9w2f932z526vj970n2jv5055a7gt92sxgwypf/urcpt","coinDecimals":6},{"coinDenom":"xmnta","coinMinimalDenom":"factory/kujira1ya42knfcsvy6eztegsn3hz7zpjvhzn05ge85xa2dy2zrjeul9hnspp3c06/urcpt","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"ibc/0306D6B66EAA2EDBB7EAD23C0EC9DDFC69BB43E80B398035E90FBCFEF3FD1A87","coinDecimals":6},{"coinDenom":"wbtc.axl","coinMinimalDenom":"ibc/301DAF9CB0A9E247CD478533EF0E21F48FF8118C4A51F77C8BC3EB70E5566DBC","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/F97BDCE220CCB52139C73066E36C45EC7EDCEEF1DAFF891A34F4FBA195A2E6E8","coinDecimals":6},{"coinDenom":"lp-dot-mnta","coinMinimalDenom":"factory/kujira10qyzrqaza0f593cmnl4sc3p3nhqqakn9j56d899u723pznxpn8us6cypuw/ulp","coinDecimals":6},{"coinDenom":"lp-shd-mnta","coinMinimalDenom":"factory/kujira12tpc335t72qtrjh64ccdydzsr9qtswkqn72cyvfj4d5hmtgynphsv4xjtu/ulp","coinDecimals":6},{"coinDenom":"lp-dydx-mnta","coinMinimalDenom":"factory/kujira13g2eelkf9q4md4xx52ylqvlgpccn50f2vyu05eazufd2g4jatmhq2425pq/ulp","coinDecimals":6},{"coinDenom":"lp-wavax-mnta","coinMinimalDenom":"factory/kujira15pk8c09vcsgsdq4xlh2qfqxtu2r8pgdy7nggkqj8p3h2phke80pqwnvtzk/ulp","coinDecimals":6},{"coinDenom":"lp-cheq-mnta","coinMinimalDenom":"factory/kujira15w6jhxsv924mn9cfr0qg9z36hltmw4rzd68x40d9re6hzyhslumqjw9zqd/ulp","coinDecimals":6},{"coinDenom":"lp-fuzn-mnta","coinMinimalDenom":"factory/kujira1622xuv8unv22xzazljvqh8uukcdz3yzmrp6axgerh7vxg4kum5tqcwcqmv/ulp","coinDecimals":6},{"coinDenom":"lp-somm-mnta","coinMinimalDenom":"factory/kujira17djzq5x5e5zm9q9zlp6dtxdt9p8q2zvj0qtmjs0wrxm5g9e2vf5q9d6y2t/ulp","coinDecimals":6},{"coinDenom":"lp-weth-mnta","coinMinimalDenom":"factory/kujira17x2v39aut0paj5d6wc5jxvqqxrdhy9kvca4y5xn6vsfpsxkgc6gq7n4tg0/ulp","coinDecimals":6},{"coinDenom":"lp-ntrn-mnta","coinMinimalDenom":"factory/kujira18lhugzap20ndlqr5j2p86yk4pxpe9jjuac05z0ypxuwn3mm5vjhsjh4etr/ulp","coinDecimals":6},{"coinDenom":"lp-wftm-mnta","coinMinimalDenom":"factory/kujira18mveas6xseaqu3fmukwv2ac6mp4hszk08lvyamedytjs0kxm42yqs9v89x/ulp","coinDecimals":6},{"coinDenom":"lp-stars-mnta","coinMinimalDenom":"factory/kujira1av284rnqh6s0l2lwdqgpgz8wuva3wh9lkmlsupjd9escn5v4fels6kwc7v/ulp","coinDecimals":6},{"coinDenom":"lp-tia-mnta","coinMinimalDenom":"factory/kujira1cpdyhrkwdnz38u45el3zq7007at9dm6h05tc36zpxvs6vrdwzrrskt0tgg/ulp","coinDecimals":6},{"coinDenom":"lp-sol-mnta","coinMinimalDenom":"factory/kujira1eqd96322ec258w7k9n9cfqkusrlvzwv38jkph3qs720egdv0epmq70j2zl/ulp","coinDecimals":6},{"coinDenom":"lp-dym-mnta","coinMinimalDenom":"factory/kujira1fg7wmsde7ygw3pm6hqmd29cdvp947anajmunsvk0guvjta3md25qdqk4fw/ulp","coinDecimals":6},{"coinDenom":"lp-akt-mnta","coinMinimalDenom":"factory/kujira1gnftck9586x0nhsqsj99k9zednl6tx4kezu9hpph0u6jtqnafpyqxha3me/ulp","coinDecimals":6},{"coinDenom":"lp-link-mnta","coinMinimalDenom":"factory/kujira1gnvja05kkmpeh9dnxl0c2p4sde7fpsy2r44njzyqgpsf72nqs78q3gzpzc/ulp","coinDecimals":6},{"coinDenom":"lp-wtao-mnta","coinMinimalDenom":"factory/kujira1gz2kvfw7hpds9fvygwkj64znl3a9pw697g77cspcq5y4vj3ru45s7qc0rd/ulp","coinDecimals":6},{"coinDenom":"lp-mnta-kuji","coinMinimalDenom":"factory/kujira1h75predtjdm2e7u8cuvqs3usc6xs2mxlkcr20zsshvw3qap25frsr4z949/ulp","coinDecimals":6},{"coinDenom":"lp-axl-mnta","coinMinimalDenom":"factory/kujira1h929g9e9vxhc5y8v7uexdrncacxdatjupr67velewafwepfyfaaq6s7l3v/ulp","coinDecimals":6},{"coinDenom":"lp-atom-mnta","coinMinimalDenom":"factory/kujira1h9f3k54j060pzlnea8ep8qfymsmwl5yhwc5hqept5p2esqzve7tq2ghnm4/ulp","coinDecimals":6},{"coinDenom":"lp-arb-mnta","coinMinimalDenom":"factory/kujira1kc90tgn4ucvdv4c9xycktanwz2lna0nfel6244ylqjvhaetfntusnmyu3d/ulp","coinDecimals":6},{"coinDenom":"lp-whale-mnta","coinMinimalDenom":"factory/kujira1jsjygyj8hwa4f0p9wwgct4yzmzzexe5x5u6l40l7ty2qzwwwsemqavhk3x/ulp","coinDecimals":6},{"coinDenom":"lp-scrt-mnta","coinMinimalDenom":"factory/kujira1p7w9ncnnme9yzzhrvzv0hnsa5u5ga06v0ckt7lq9yfap04hc5k9sn2vf6w/ulp","coinDecimals":6},{"coinDenom":"lp-wsteth-mnta","coinMinimalDenom":"factory/kujira1qx3hcr297qmgjt5f6u9peldf4phxqufvmew8d3eey3ns29e8qp3snj6jfu/ulp","coinDecimals":6},{"coinDenom":"lp-wmatic-mnta","coinMinimalDenom":"factory/kujira1smfdnww47xav4nn849xphku3gk3xp7a24fk533dce8masnsz4v8quklajx/ulp","coinDecimals":6},{"coinDenom":"lp-uni-mnta","coinMinimalDenom":"factory/kujira1t4mr2xt4ky4mfwcy752chzlquam3hzs44mt8vwyec8mvypmzxu5s90vamt/ulp","coinDecimals":6},{"coinDenom":"lp-yieldeth-mnta","coinMinimalDenom":"factory/kujira1u8dluwa4a83q7anz0cgpmma605r07a06f0789ajcl8l0xjrplqss005cgn/ulp","coinDecimals":6},{"coinDenom":"lp-wbtc-mnta","coinMinimalDenom":"factory/kujira1vj39mdwekxznxxa97fv5gt957cghfdqhwju8fdv5ysu0x6vsyhps4zmqjl/ulp","coinDecimals":6},{"coinDenom":"lp-paxg-mnta","coinMinimalDenom":"factory/kujira1vqdyup9zxxl9gqy5hwh593vvuc84lstldj7qzt7fylf3q3e3uemqlwpg9y/ulp","coinDecimals":6},{"coinDenom":"lp-wbnb-mnta","coinMinimalDenom":"factory/kujira1y24jwsv84lnuv5j78qeqz5ujjpd058qsft7wfc0nk9jvycugm32sqnq53d/ulp","coinDecimals":6},{"coinDenom":"lp-osmo-mnta","coinMinimalDenom":"factory/kujira1ygperwf0dc9ng2jffj0pwnnray3rscn9el6d78qjtt25qwgqukqszmdwtv/ulp","coinDecimals":6},{"coinDenom":"lp-inj-mnta","coinMinimalDenom":"factory/kujira1znx048dcc6arqfw6kpckl0k4ts2h7cdx20nk22wz2cxh5vle3wxqknk238/ulp","coinDecimals":6},{"coinDenom":"lp-stosmo-osmo","coinMinimalDenom":"factory/kujira18sek950cg92gd0kvpj67dfg6p7kee6hzw92etcf2jgufr3mttvaslt5sal/ulp","coinDecimals":6},{"coinDenom":"lp-wsteth-weth","coinMinimalDenom":"factory/kujira1lyyeyuw4qgan6nz45thw2m0nmxa457uz7cp9dqw5d9a0h7ccek7qavkm6g/ulp","coinDecimals":6},{"coinDenom":"lp-qcmnta-mnta","coinMinimalDenom":"factory/kujira1ul00h0a2kgcg9x2yfa86wj9qguhyv7jmpjpw6ztt24j9mn9xjw3slawyc8/ulp","coinDecimals":6},{"coinDenom":"lp-ampmnta-mnta","coinMinimalDenom":"factory/kujira1vj36ntsqd3msc69lxldcv9dd50jngknmael9e07rz4fpn5kyq0jsglvz2m/ulp","coinDecimals":6},{"coinDenom":"lp-weth-usk","coinMinimalDenom":"factory/kujira1n648rfqqvjxm6c7zgfnfqay85rkapgg0z7da9pnmjazz5m5d7l0qxdtq90/ulp","coinDecimals":6},{"coinDenom":"nami","coinMinimalDenom":"factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/unami","coinDecimals":6},{"coinDenom":"nausd","coinMinimalDenom":"factory/kujira18thffdpuz8tm3mwwun4uhks8a2v7ye0jmw3fllqhklma82lqkpms20gh9c/unausd","coinDecimals":6},{"coinDenom":"mctest","coinMinimalDenom":"factory/kujira1mn2pgkggquqm2m44zqlaq29jxwtad53qkv4xy4/MCTest","coinDecimals":6},{"coinDenom":"auto","coinMinimalDenom":"factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/uauto","coinDecimals":6},{"coinDenom":"qcDYDX","coinMinimalDenom":"factory/kujira1seqq2ekz47uqayshqkg5wqx5vcyrmtwcl9vscnwy2gjh7mz5aapsdfxsd5/urcpt","coinDecimals":18},{"coinDenom":"rkuji","coinMinimalDenom":"factory/kujira1tsekaqv9vmem0zwskmf90gpf0twl6k57e8vdnq/urkuji","coinDecimals":6},{"coinDenom":"lp-atom-usk","coinMinimalDenom":"factory/kujira1yncutssgh2vj9scaymtteg949hwcft07c6qmgarxnaf04yesq3jsn6g2uv/ulp","coinDecimals":6},{"coinDenom":"lp-weth-usk","coinMinimalDenom":"factory/kujira1xwvvjq5w0887v2vz4e83kcu38s0jq8q8lqa3z5hxm295q7y4uejqp24la7/ulp","coinDecimals":6},{"coinDenom":"lp-sol-usk","coinMinimalDenom":"factory/kujira1vcmh95lje5dln782pxckma65eujs4sv960w22whgsp7a2ajsc6lsvnlhgd/ulp","coinDecimals":6},{"coinDenom":"lp-weth-usdc","coinMinimalDenom":"factory/kujira1n4jfv39hzv2dtshzv6gj4hp8rkdy5rrsr7l84lc3x9cahz4v0umq24q3lu/ulp","coinDecimals":6},{"coinDenom":"lp-dydx-usk","coinMinimalDenom":"factory/kujira1lctu7hy65466fxw3tcqf8w45zwrpwgd9chvjqpgyfgcr73k774nsv4ya6t/ulp","coinDecimals":6},{"coinDenom":"lp-akt-usdc","coinMinimalDenom":"factory/kujira1g5st8p6qdyf23zzerjcxgpr2r7a9wzdyaymu79ngg6ve3m9v3n4sdetv4e/ulp","coinDecimals":6},{"coinDenom":"lp-wbtc-usk","coinMinimalDenom":"factory/kujira1d7jt9zwlnpvf7sskfm57c77pm9mtwczqre75t9k80ees0v523kasss9htj/ulp","coinDecimals":6},{"coinDenom":"lp-wbtc-wbtc","coinMinimalDenom":"factory/kujira1c4e2zk4z0anrufjh64gxtse6e4s5g52fe2ja8ke3r9e0pvpd0z0qws8zsp/ulp","coinDecimals":8},{"coinDenom":"lp-inj-usdc","coinMinimalDenom":"factory/kujira14jwhlsg3az20f7keav2axxj205fyv5j8mp6rv5svqwwll3ls9slq6zwleg/ulp","coinDecimals":6},{"coinDenom":"lp-atom-usdc","coinMinimalDenom":"factory/kujira13my0qtm2a8jp0wg8uzg49tyn4zcea8scy3dc7ghn8z9eys08yzls49ymdm/ulp","coinDecimals":6},{"coinDenom":"lp-mnta-usdc","coinMinimalDenom":"factory/kujira1742pe93mxm0cwqjxgxh6th9sspdrluqvw9pha9q69eeatue4x5xs0wdq2d/ulp","coinDecimals":6},{"coinDenom":"lp-mnta-usk","coinMinimalDenom":"factory/kujira1xtaadmh06s8u3z5mypp8qayhrnxgga5wr88s7raram4rz8zu37hquf82wk/ulp","coinDecimals":6},{"coinDenom":"boon","coinMinimalDenom":"factory/kujira1gewwffxhaygxe8tacd3z9h4uyvpd2h7v9qtfmaw8jjhwalxxpd7qlqld4m/boon","coinDecimals":6},{"coinDenom":"yum","coinMinimalDenom":"ibc/507BE7E33F06026652F519AD4D36716251F2D34DF04514A905D3B19A7D8130F7","coinDecimals":18}],"rest":"https://lcd.kaiyo.kujira.setten.io","rpc":"https://rpc.kaiyo.kujira.setten.io","bech32Config":{"bech32PrefixAccAddr":"kujira","bech32PrefixAccPub":"kujirapub","bech32PrefixValAddr":"kujiravaloper","bech32PrefixValPub":"kujiravaloperpub","bech32PrefixConsAddr":"kujiravalcons","bech32PrefixConsPub":"kujiravalconspub"},"chainName":"kujira","feeCurrencies":[{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6,"gasPriceStep":{"low":0.0034,"average":0.0051,"high":0.00681}},{"coinDenom":"usk","coinMinimalDenom":"factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk","coinDecimals":6,"gasPriceStep":{"low":0.01186,"average":0.01779,"high":0.02372}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F","coinDecimals":6,"gasPriceStep":{"low":0.0119,"average":0.01785,"high":0.02379}},{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6,"gasPriceStep":{"low":0.00129,"average":0.00193,"high":0.00258}},{"coinDenom":"osmo","coinMinimalDenom":"ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23","coinDecimals":6,"gasPriceStep":{"low":0.01795,"average":0.02692,"high":0.0359}},{"coinDenom":"cmdx","coinMinimalDenom":"ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07","coinDecimals":6,"gasPriceStep":{"low":0.65943,"average":0.98915,"high":1.31887}},{"coinDenom":"evmos","coinMinimalDenom":"ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10","coinDecimals":18,"gasPriceStep":{"low":160416396197,"average":240624594296,"high":320832792394}},{"coinDenom":"juno","coinMinimalDenom":"ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5","coinDecimals":6,"gasPriceStep":{"low":0.02689,"average":0.04034,"high":0.05379}},{"coinDenom":"luna","coinMinimalDenom":"ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986","coinDecimals":6,"gasPriceStep":{"low":0.01495,"average":0.02243,"high":0.02991}},{"coinDenom":"scrt","coinMinimalDenom":"ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5","coinDecimals":6,"gasPriceStep":{"low":0.03139,"average":0.04709,"high":0.06278}},{"coinDenom":"stars","coinMinimalDenom":"ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602","coinDecimals":6,"gasPriceStep":{"low":0.90403,"average":1.35605,"high":1.80806}},{"coinDenom":"avax","coinMinimalDenom":"ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2","coinDecimals":18,"gasPriceStep":{"low":559196837,"average":838795256,"high":1118393675}},{"coinDenom":"weth","coinMinimalDenom":"ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7","coinDecimals":18,"gasPriceStep":{"low":5772801,"average":8659201,"high":11545602}},{"coinDenom":"mnta","coinMinimalDenom":"factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta","coinDecimals":6,"gasPriceStep":{"low":0.01807,"average":0.02711,"high":0.03615}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9","coinDecimals":6,"gasPriceStep":{"low":0.01194,"average":0.01792,"high":0.02389}},{"coinDenom":"sol","coinMinimalDenom":"ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3","coinDecimals":8,"gasPriceStep":{"low":0.00019,"average":0.00029,"high":0.00039}}],"stakeCurrency":{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kyve-1","currencies":[{"coinDenom":"kyve","coinMinimalDenom":"ukyve","coinDecimals":6}],"rest":"https://api.kyve.network","rpc":"https://rpc.kyve.network","bech32Config":{"bech32PrefixAccAddr":"kyve","bech32PrefixAccPub":"kyvepub","bech32PrefixValAddr":"kyvevaloper","bech32PrefixValPub":"kyvevaloperpub","bech32PrefixConsAddr":"kyvevalcons","bech32PrefixConsPub":"kyvevalconspub"},"chainName":"kyve","feeCurrencies":[{"coinDenom":"kyve","coinMinimalDenom":"ukyve","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.03,"high":0.06}}],"stakeCurrency":{"coinDenom":"kyve","coinMinimalDenom":"ukyve","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"lambda_92000-1","currencies":[{"coinDenom":"lamb","coinMinimalDenom":"ulamb","coinDecimals":18}],"rest":"https://rest.lambda.im","rpc":"https://rpc.lambda.im","bech32Config":{"bech32PrefixAccAddr":"lamb","bech32PrefixAccPub":"lambpub","bech32PrefixValAddr":"lambvaloper","bech32PrefixValPub":"lambvaloperpub","bech32PrefixConsAddr":"lambvalcons","bech32PrefixConsPub":"lambvalconspub"},"chainName":"lambda","feeCurrencies":[{"coinDenom":"lamb","coinMinimalDenom":"ulamb","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"lamb","coinMinimalDenom":"ulamb","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"lava-mainnet-1","currencies":[{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6}],"rest":"https://lava-api.finteh.org:443","rpc":"https://lava.tendermintrpc.lava.build","bech32Config":{"bech32PrefixAccAddr":"lava@","bech32PrefixAccPub":"lava@pub","bech32PrefixValAddr":"lava@valoper","bech32PrefixValPub":"lava@valoperpub","bech32PrefixConsAddr":"lava@valcons","bech32PrefixConsPub":"lava@valconspub"},"chainName":"lava","feeCurrencies":[{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6,"gasPriceStep":{"low":0.00002,"average":0.025,"high":0.05}}],"stakeCurrency":{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"likecoin-mainnet-2","currencies":[{"coinDenom":"like","coinMinimalDenom":"nanolike","coinDecimals":9}],"rest":"https://mainnet-node.like.co","rpc":"https://mainnet-node.like.co/rpc/","bech32Config":{"bech32PrefixAccAddr":"like","bech32PrefixAccPub":"likepub","bech32PrefixValAddr":"likevaloper","bech32PrefixValPub":"likevaloperpub","bech32PrefixConsAddr":"likevalcons","bech32PrefixConsPub":"likevalconspub"},"chainName":"likecoin","feeCurrencies":[{"coinDenom":"like","coinMinimalDenom":"nanolike","coinDecimals":9,"gasPriceStep":{"low":1000,"average":10000,"high":1000000}}],"stakeCurrency":{"coinDenom":"like","coinMinimalDenom":"nanolike","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"logos_7002-1","currencies":[{"coinDenom":"LYT","coinMinimalDenom":"aLYT","coinDecimals":18}],"rest":"https://logos.provable.dev/rest/","rpc":"https://logos-rpc.provable.dev:443/","bech32Config":{"bech32PrefixAccAddr":"logos","bech32PrefixAccPub":"logospub","bech32PrefixValAddr":"logosvaloper","bech32PrefixValPub":"logosvaloperpub","bech32PrefixConsAddr":"logosvalcons","bech32PrefixConsPub":"logosvalconspub"},"chainName":"logos","feeCurrencies":[{"coinDenom":"LYT","coinMinimalDenom":"aLYT","coinDecimals":18}],"stakeCurrency":{"coinDenom":"LYT","coinMinimalDenom":"aLYT","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"loop-1","currencies":[{"coinDenom":"token","coinMinimalDenom":"token","coinDecimals":0},{"coinDenom":"poa","coinMinimalDenom":"upoa","coinDecimals":6}],"rest":"https://api.loop.pfc.zone/","rpc":"https://rpc.loop.pfc.zone/","bech32Config":{"bech32PrefixAccAddr":"loop","bech32PrefixAccPub":"looppub","bech32PrefixValAddr":"loopvaloper","bech32PrefixValPub":"loopvaloperpub","bech32PrefixConsAddr":"loopvalcons","bech32PrefixConsPub":"loopvalconspub"},"chainName":"loop","feeCurrencies":[{"coinDenom":"token","coinMinimalDenom":"token","coinDecimals":0}],"stakeCurrency":{"coinDenom":"token","coinMinimalDenom":"token","coinDecimals":0},"bip44":{"coinType":118}},{"chainId":"loyal-main-02","currencies":[{"coinDenom":"lyl","coinMinimalDenom":"ulyl","coinDecimals":6}],"rest":"https://lcd-main.joinloyal.io/","rpc":"https://rpc-main.joinloyal.io/","bech32Config":{"bech32PrefixAccAddr":"loyal","bech32PrefixAccPub":"loyalpub","bech32PrefixValAddr":"loyalvaloper","bech32PrefixValPub":"loyalvaloperpub","bech32PrefixConsAddr":"loyalvalcons","bech32PrefixConsPub":"loyalvalconspub"},"chainName":"loyal","feeCurrencies":[{"coinDenom":"lyl","coinMinimalDenom":"ulyl","coinDecimals":6}],"stakeCurrency":{"coinDenom":"lyl","coinMinimalDenom":"ulyl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"lum-network-1","currencies":[{"coinDenom":"lum","coinMinimalDenom":"ulum","coinDecimals":6}],"rest":"https://rest.node0.mainnet.lum.network","rpc":"https://rpc.node0.mainnet.lum.network","bech32Config":{"bech32PrefixAccAddr":"lum","bech32PrefixAccPub":"lumpub","bech32PrefixValAddr":"lumvaloper","bech32PrefixValPub":"lumvaloperpub","bech32PrefixConsAddr":"lumvalcons","bech32PrefixConsPub":"lumvalconspub"},"chainName":"lumnetwork","feeCurrencies":[{"coinDenom":"lum","coinMinimalDenom":"ulum","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"lum","coinMinimalDenom":"ulum","coinDecimals":6},"bip44":{"coinType":880}},{"chainId":"mande_18071918-1","currencies":[{"coinDenom":"mand","coinMinimalDenom":"amand","coinDecimals":18}],"rest":"https://mande-mainnet-rest.public.blastapi.io","rpc":"https://mande-mainnet-tendermint.public.blastapi.io","bech32Config":{"bech32PrefixAccAddr":"mande","bech32PrefixAccPub":"mandepub","bech32PrefixValAddr":"mandevaloper","bech32PrefixValPub":"mandevaloperpub","bech32PrefixConsAddr":"mandevalcons","bech32PrefixConsPub":"mandevalconspub"},"chainName":"mande","feeCurrencies":[{"coinDenom":"mand","coinMinimalDenom":"amand","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":20000000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"mand","coinMinimalDenom":"amand","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"mantra-1","currencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6}],"rest":"https://api.mantrachain.io","rpc":"https://rpc.mantrachain.io","bech32Config":{"bech32PrefixAccAddr":"mantra","bech32PrefixAccPub":"mantrapub","bech32PrefixValAddr":"mantravaloper","bech32PrefixValPub":"mantravaloperpub","bech32PrefixConsAddr":"mantravalcons","bech32PrefixConsPub":"mantravalconspub"},"chainName":"mantrachain","feeCurrencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.03}}],"stakeCurrency":{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mars-1","currencies":[{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6}],"rest":"https://rest.marsprotocol.io:443","rpc":"https://rpc.marsprotocol.io:443","bech32Config":{"bech32PrefixAccAddr":"mars","bech32PrefixAccPub":"marspub","bech32PrefixValAddr":"marsvaloper","bech32PrefixValPub":"marsvaloperpub","bech32PrefixConsAddr":"marsvalcons","bech32PrefixConsPub":"marsvalconspub"},"chainName":"mars","feeCurrencies":[{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6}],"stakeCurrency":{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"medasdigital-2","currencies":[{"coinDenom":"medas","coinMinimalDenom":"umedas","coinDecimals":6}],"rest":"https://lcd.medas-digital.io:1317/","rpc":"https://rpc.medas-digital.io:26657/","bech32Config":{"bech32PrefixAccAddr":"medas","bech32PrefixAccPub":"medaspub","bech32PrefixValAddr":"medasvaloper","bech32PrefixValPub":"medasvaloperpub","bech32PrefixConsAddr":"medasvalcons","bech32PrefixConsPub":"medasvalconspub"},"chainName":"medasdigital","feeCurrencies":[{"coinDenom":"medas","coinMinimalDenom":"umedas","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.4}}],"stakeCurrency":{"coinDenom":"medas","coinMinimalDenom":"umedas","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"meme-1","currencies":[{"coinDenom":"meme","coinMinimalDenom":"umeme","coinDecimals":6},{"coinDenom":"planq","coinMinimalDenom":"ibc/FACC1CE598366EA01D86CF1CBE05F1A6C7511F673E91DEFF04342ED8DEFE3A60","coinDecimals":18}],"rest":"https://api-meme-1.meme.sx/","rpc":"https://rpc-meme-1.meme.sx/","bech32Config":{"bech32PrefixAccAddr":"meme","bech32PrefixAccPub":"memepub","bech32PrefixValAddr":"memevaloper","bech32PrefixValPub":"memevaloperpub","bech32PrefixConsAddr":"memevalcons","bech32PrefixConsPub":"memevalconspub"},"chainName":"meme","feeCurrencies":[{"coinDenom":"meme","coinMinimalDenom":"umeme","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.035,"high":0.045}}],"stakeCurrency":{"coinDenom":"meme","coinMinimalDenom":"umeme","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"migaloo-1","currencies":[{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6},{"coinDenom":"ampWHALE","coinMinimalDenom":"factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE","coinDecimals":6},{"coinDenom":"bWHALE","coinMinimalDenom":"factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale","coinDecimals":6},{"coinDenom":"fable","coinMinimalDenom":"factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable","coinDecimals":6},{"coinDenom":"bluna","coinMinimalDenom":"ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708","coinDecimals":6},{"coinDenom":"RAC","coinMinimalDenom":"factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac","coinDecimals":6},{"coinDenom":"ASH","coinMinimalDenom":"factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/86A25A8A327164AE7C68A29B6ED745C7EEDC36E260A6666F33A6407BECEC4737","coinDecimals":6},{"coinDenom":"mUSDC","coinMinimalDenom":"cw20:migaloo10nucfm2zqgzqmy7y7ls398t58pjt9cwjsvpy88y2nvamtl34rgmqt5em2v","coinDecimals":6},{"coinDenom":"GUPPY","coinMinimalDenom":"factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy","coinDecimals":6},{"coinDenom":"OPHIR","coinMinimalDenom":"factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir","coinDecimals":6},{"coinDenom":"SHARK","coinMinimalDenom":"factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark","coinDecimals":6},{"coinDenom":"lsdSHARK","coinMinimalDenom":"factory/migaloo1p3aj9f09d7c4jxhgue0hpdpw370j6gzc59nxxx6l8d0gc9f9rfwsdwetus/lsdSHARK","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/4627AD2524E3E0523047E35BB76CC90E37D9D57ACF14F0FCBCEB2480705F3CB8","coinDecimals":6},{"coinDenom":"Rakoff","coinMinimalDenom":"ibc/44C29C91F202E20C8E28DFB1FA89B725C54171CD77B8948836C72E7A97E4A018","coinDecimals":6},{"coinDenom":"gash","coinMinimalDenom":"factory/migaloo1r9x8fz4alekzr78k42rpmr9unpa7egsldpqeynmwl2nfvzexue9sn8l5rg/gash","coinDecimals":6},{"coinDenom":"rstk","coinMinimalDenom":"factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk","coinDecimals":6},{"coinDenom":"frog","coinMinimalDenom":"ibc/B1BD4EF49A2E051EFC85E8C6A932B559CE62F9519E0E83BE29A8F0BDF89BD1D3","coinDecimals":6},{"coinDenom":"GRAC","coinMinimalDenom":"factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac","coinDecimals":6},{"coinDenom":"wind","coinMinimalDenom":"ibc/721B42229246EEDA7A656DB17E494127F91E84AD63E21852737628321892A928","coinDecimals":6},{"coinDenom":"shitmos","coinMinimalDenom":"ibc/0E1B883A15D5FCA533332CBAB1A672934C3936920399F2A3EB4F438E3EBAD0E9","coinDecimals":6},{"coinDenom":"ampGASH","coinMinimalDenom":"factory/migaloo1nsskhvvh0msm7d5ke2kfg24a8d4jecsnxd28s27h0uz5kf9ap60shlqmcl/ampGASH","coinDecimals":6},{"coinDenom":"SYN","coinMinimalDenom":"ibc/33E97105B5C1F48CB7D6400F4673F9B3699AC59EDB621CCCD57D5D480E0C83B6","coinDecimals":6},{"coinDenom":"DGN","coinMinimalDenom":"ibc/D8C6D71032EC7CC4C9CCD0FF709CF87D34A7311FE5491E70F7EDE2351D189C10","coinDecimals":6}],"rest":"https://migaloo-api.polkachu.com:443","rpc":"https://migaloo-rpc.polkachu.com:443","bech32Config":{"bech32PrefixAccAddr":"migaloo","bech32PrefixAccPub":"migaloopub","bech32PrefixValAddr":"migaloovaloper","bech32PrefixValPub":"migaloovaloperpub","bech32PrefixConsAddr":"migaloovalcons","bech32PrefixConsPub":"migaloovalconspub"},"chainName":"migaloo","feeCurrencies":[{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6,"gasPriceStep":{"low":1,"average":2,"high":3}}],"stakeCurrency":{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"milkyway","currencies":[{"coinDenom":"milk","coinMinimalDenom":"umilk","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6},{"coinDenom":"milkTIA","coinMinimalDenom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","coinDecimals":6},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0","coinDecimals":6}],"rest":"https://lcd.mainnet.milkyway.zone/","rpc":"https://rpc.mainnet.milkyway.zone/","bech32Config":{"bech32PrefixAccAddr":"milk","bech32PrefixAccPub":"milkpub","bech32PrefixValAddr":"milkvaloper","bech32PrefixValPub":"milkvaloperpub","bech32PrefixConsAddr":"milkvalcons","bech32PrefixConsPub":"milkvalconspub"},"chainName":"milkyway","feeCurrencies":[{"coinDenom":"milkTIA","coinMinimalDenom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}},{"coinDenom":"tia","coinMinimalDenom":"ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}}],"stakeCurrency":{"coinDenom":"milk","coinMinimalDenom":"umilk","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mtgbp-1","currencies":[{"coinDenom":"mtgbp","coinMinimalDenom":"mtgbp","coinDecimals":0}],"rest":"https://lcd.mtgbp.com","rpc":"https://rcp.mtgbp.com","bech32Config":{"bech32PrefixAccAddr":"mtgbp","bech32PrefixAccPub":"mtgbppub","bech32PrefixValAddr":"mtgbpvaloper","bech32PrefixValPub":"mtgbpvaloperpub","bech32PrefixConsAddr":"mtgbpvalcons","bech32PrefixConsPub":"mtgbpvalconspub"},"chainName":"mtgbp","feeCurrencies":[{"coinDenom":"mtgbp","coinMinimalDenom":"mtgbp","coinDecimals":0,"gasPriceStep":{"low":0.000001,"average":0.000005,"high":0.0001}}],"stakeCurrency":{"coinDenom":"mtgbp","coinMinimalDenom":"mtgbp","coinDecimals":0},"bip44":{"coinType":1179993441}},{"chainId":"mun-1","currencies":[{"coinDenom":"mun","coinMinimalDenom":"umun","coinDecimals":6}],"rest":"https://mainnet1.mun.money","rpc":"https://mainnet1rpc.mun.money","bech32Config":{"bech32PrefixAccAddr":"mun","bech32PrefixAccPub":"munpub","bech32PrefixValAddr":"munvaloper","bech32PrefixValPub":"munvaloperpub","bech32PrefixConsAddr":"munvalcons","bech32PrefixConsPub":"munvalconspub"},"chainName":"mun","feeCurrencies":[{"coinDenom":"mun","coinMinimalDenom":"umun","coinDecimals":6}],"stakeCurrency":{"coinDenom":"mun","coinMinimalDenom":"umun","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mythos_7001-1","currencies":[{"coinDenom":"MYT","coinMinimalDenom":"aMYT","coinDecimals":18}],"rest":"https://mythos.provable.dev/rest/","rpc":"https://mythos-rpc.provable.dev:443/","bech32Config":{"bech32PrefixAccAddr":"mythos","bech32PrefixAccPub":"mythospub","bech32PrefixValAddr":"mythosvaloper","bech32PrefixValPub":"mythosvaloperpub","bech32PrefixConsAddr":"mythosvalcons","bech32PrefixConsPub":"mythosvalconspub"},"chainName":"mythos","feeCurrencies":[{"coinDenom":"MYT","coinMinimalDenom":"aMYT","coinDecimals":18}],"stakeCurrency":{"coinDenom":"MYT","coinMinimalDenom":"aMYT","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"Neutaro-1","currencies":[{"coinDenom":"neutaro","coinMinimalDenom":"uneutaro","coinDecimals":6}],"rest":"https://api2.neutaro.io:443","rpc":"https://rpc2.neutaro.io:443","bech32Config":{"bech32PrefixAccAddr":"neutaro","bech32PrefixAccPub":"neutaropub","bech32PrefixValAddr":"neutarovaloper","bech32PrefixValPub":"neutarovaloperpub","bech32PrefixConsAddr":"neutarovalcons","bech32PrefixConsPub":"neutarovalconspub"},"chainName":"neutaro","feeCurrencies":[{"coinDenom":"neutaro","coinMinimalDenom":"uneutaro","coinDecimals":6}],"stakeCurrency":{"coinDenom":"neutaro","coinMinimalDenom":"uneutaro","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"neutron-1","currencies":[{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6},{"coinDenom":"axlusdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7","coinDecimals":6},{"coinDenom":"ASTROPEPE","coinMinimalDenom":"factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe","coinDecimals":6},{"coinDenom":"wstETH","coinMinimalDenom":"factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH","coinDecimals":18},{"coinDenom":"sat","coinMinimalDenom":"ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130","coinDecimals":18},{"coinDenom":"newt","coinMinimalDenom":"factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro","coinDecimals":6},{"coinDenom":"xASTRO","coinMinimalDenom":"factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO","coinDecimals":6},{"coinDenom":"astro.cw20","coinMinimalDenom":"ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A","coinDecimals":6},{"coinDenom":"corgi","coinMinimalDenom":"factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi","coinDecimals":6},{"coinDenom":"circus","coinMinimalDenom":"factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus","coinDecimals":6},{"coinDenom":"jimmy","coinMinimalDenom":"factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY","coinDecimals":6},{"coinDenom":"bad","coinMinimalDenom":"factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad","coinDecimals":6},{"coinDenom":"bitcosmos","coinMinimalDenom":"neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj","coinDecimals":6},{"coinDenom":"wtf","coinMinimalDenom":"neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf","coinDecimals":6},{"coinDenom":"nls","coinMinimalDenom":"ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972","coinDecimals":6},{"coinDenom":"goddard","coinMinimalDenom":"factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard","coinDecimals":6},{"coinDenom":"apollo","coinMinimalDenom":"factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO","coinDecimals":6},{"coinDenom":"newtroll","coinMinimalDenom":"factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll","coinDecimals":6},{"coinDenom":"retro","coinMinimalDenom":"factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro","coinDecimals":6},{"coinDenom":"goddard","coinMinimalDenom":"factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958","coinDecimals":6},{"coinDenom":"boy","coinMinimalDenom":"neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv","coinDecimals":6},{"coinDenom":"BADKID","coinMinimalDenom":"ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8","coinDecimals":6},{"coinDenom":"cartel","coinMinimalDenom":"factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel","coinDecimals":6},{"coinDenom":"ATOM1KLFG","coinMinimalDenom":"factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81","coinDecimals":6},{"coinDenom":"WEIRD","coinMinimalDenom":"factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD","coinDecimals":6},{"coinDenom":"takumi","coinMinimalDenom":"factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI","coinDecimals":6},{"coinDenom":"NBZ","coinMinimalDenom":"factory/neutron1a6ydq8urdj0gkvjw9e9e5y9r5ce2qegm9m4xufpt96kcm60kmuass0mqq4/nbz","coinDecimals":6},{"coinDenom":"MARS","coinMinimalDenom":"factory/neutron1ndu2wvkrxtane8se2tr48gv7nsm46y5gcqjhux/MARS","coinDecimals":6},{"coinDenom":"dATOM","coinMinimalDenom":"factory/neutron1k6hr0f83e7un2wjf29cspk7j69jrnskk65k3ek2nj9dztrlzpj6q00rtsa/udatom","coinDecimals":6},{"coinDenom":"SIN","coinMinimalDenom":"factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/sin","coinDecimals":6},{"coinDenom":"GOP","coinMinimalDenom":"factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/GOP","coinDecimals":6},{"coinDenom":"arena","coinMinimalDenom":"factory/neutron129ukd5cwahcjkccujz87rjemjukff7jf6sau72qrhva677xgz9gs4m4jeq/uarena","coinDecimals":6},{"coinDenom":"AXV","coinMinimalDenom":"cw20:neutron10dxyft3nv4vpxh5vrpn0xw8geej8dw3g39g7nqp8mrm307ypssksau29af","coinDecimals":6},{"coinDenom":"axlwbtc","coinMinimalDenom":"ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363","coinDecimals":8},{"coinDenom":"xATOM","coinMinimalDenom":"cw20:neutron1vjl4ze7gr32lar5s4fj776v70j4ml7mlt4aqln2hwgfhqjck8xwqfhx8vj","coinDecimals":6},{"coinDenom":"amATOM","coinMinimalDenom":"factory/neutron1shwxlkpdjd8h5wdtrykypwd2v62z5glr95yp0etdcspkkjwm5meq82ndxs/amatom","coinDecimals":6},{"coinDenom":"JSD","coinMinimalDenom":"factory/neutron1mdy5fhtwdjagp5eallsdhlx6gxylm8rxqk72wjzg6y5d5kt44ysqprkduw/JSD","coinDecimals":6}],"rest":"https://api.novel.remedy.tm.p2p.org","rpc":"https://rpc-voidara.neutron-1.neutron.org","bech32Config":{"bech32PrefixAccAddr":"neutron","bech32PrefixAccPub":"neutronpub","bech32PrefixValAddr":"neutronvaloper","bech32PrefixValPub":"neutronvaloperpub","bech32PrefixConsAddr":"neutronvalcons","bech32PrefixConsPub":"neutronvalconspub"},"chainName":"neutron","feeCurrencies":[{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6,"gasPriceStep":{"low":0.0053,"average":0.0053,"high":0.0053}},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6,"gasPriceStep":{"low":0.0008,"average":0.0008,"high":0.0008}},{"coinDenom":"axlusdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6,"gasPriceStep":{"low":0.008,"average":0.008,"high":0.008}},{"coinDenom":"wstETH","coinMinimalDenom":"factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH","coinDecimals":18,"gasPriceStep":{"low":2903231.6597,"average":2903231.6597,"high":2903231.6597}},{"coinDenom":"dydx","coinMinimalDenom":"ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130","coinDecimals":18,"gasPriceStep":{"low":2564102564.1026,"average":2564102564.1026,"high":2564102564.1026}},{"coinDenom":"tia","coinMinimalDenom":"ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7","coinDecimals":6,"gasPriceStep":{"low":0.0004,"average":0.0004,"high":0.0004}}],"stakeCurrency":{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cataclysm-1","currencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},{"coinDenom":"stNIBI","coinMinimalDenom":"tf/nibi1udqqx30cw8nwjxtl4l28ym9hhrp933zlq8dqxfjzcdhvl8y24zcqpzmh8m/ampNIBI","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6},{"coinDenom":"AXV","coinMinimalDenom":"tf/nibi1vetfuua65frvf6f458xgtjerf0ra7wwjykrdpuyn0jur5x07awxsfka0ga/axv","coinDecimals":6},{"coinDenom":"tf/nibi149m52kn7nvsg5nftvv4fh85scsavpdfxp5nr7zasz97dum89dp5qkyhy0t/uoprek","coinMinimalDenom":"tf/nibi149m52kn7nvsg5nftvv4fh85scsavpdfxp5nr7zasz97dum89dp5qkyhy0t/uoprek","coinDecimals":0},{"coinDenom":"tf/nibi1lp28kx3gz0prsztl024z730ufkg3alahaq3e7a6gae22nk0dqdvsyrrgqw/utestate","coinMinimalDenom":"tf/nibi1lp28kx3gz0prsztl024z730ufkg3alahaq3e7a6gae22nk0dqdvsyrrgqw/utestate","coinDecimals":0},{"coinDenom":"tf/nibi1xpp7yn0tce62ffattws3gpd6v0tah0mlevef3ej3r4pnfvsehcgqk3jvxq/NPP","coinMinimalDenom":"tf/nibi1xpp7yn0tce62ffattws3gpd6v0tah0mlevef3ej3r4pnfvsehcgqk3jvxq/NPP","coinDecimals":0}],"rest":"https://lcd.nibiru.fi","rpc":"https://rpc.nibiru.fi","bech32Config":{"bech32PrefixAccAddr":"nibi","bech32PrefixAccPub":"nibipub","bech32PrefixValAddr":"nibivaloper","bech32PrefixValPub":"nibivaloperpub","bech32PrefixConsAddr":"nibivalcons","bech32PrefixConsPub":"nibivalconspub"},"chainName":"nibiru","feeCurrencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"nim_1122-1","currencies":[{"coinDenom":"nim","coinMinimalDenom":"anim","coinDecimals":18}],"rest":"https://rest.mainnet.nimnet.tech","rpc":"https://rpc.mainnet.nimnet.tech","bech32Config":{"bech32PrefixAccAddr":"nim","bech32PrefixAccPub":"nimpub","bech32PrefixValAddr":"nimvaloper","bech32PrefixValPub":"nimvaloperpub","bech32PrefixConsAddr":"nimvalcons","bech32PrefixConsPub":"nimvalconspub"},"chainName":"nim","feeCurrencies":[{"coinDenom":"nim","coinMinimalDenom":"anim","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":20000000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"nim","coinMinimalDenom":"anim","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"noble-1","currencies":[{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":6},{"coinDenom":"frienzies","coinMinimalDenom":"ufrienzies","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6},{"coinDenom":"usdy","coinMinimalDenom":"ausdy","coinDecimals":18},{"coinDenom":"eure","coinMinimalDenom":"ueure","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/9BE17980291443F276406CFE7368A720676FC06D5805C1A23AE52C2534E705F1","coinDecimals":18}],"rest":"https://noble-api.polkachu.com","rpc":"https://noble-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"noble","bech32PrefixAccPub":"noblepub","bech32PrefixValAddr":"noblevaloper","bech32PrefixValPub":"noblevaloperpub","bech32PrefixConsAddr":"noblevalcons","bech32PrefixConsPub":"noblevalconspub"},"chainName":"noble","feeCurrencies":[{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.1,"high":0.2}},{"coinDenom":"atom","coinMinimalDenom":"ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.01,"high":0.02}}],"stakeCurrency":{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pirin-1","currencies":[{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/7FBDBEEEBA9C50C4BCDF7BF438EAB99E64360833D240B32655C96E319559E911","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/AF5559D128329B6C753F15481BEC26E533B847A471074703FA4903E7E6F61BA1","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/6CDD4663F2F09CD62285E2D45891FC149A3568E316CE3EBBE201A71A78A69388","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"ibc/FCFF8B19C61677F3B78E2A5AE3B4A34A8D23858D16905F253B8438B3AFD07FF8","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"ibc/A7C4A3FB19E88ABE60416125F9189DA680800F4CDD14E3C10C874E022BEFF04C","coinDecimals":18},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/84E70F4A34FB2DE135FD3A04FDDF53B7DA4206080AA785C8BAB7F8B26299A221","coinDecimals":8},{"coinDenom":"akt","coinMinimalDenom":"ibc/ADC63C00000CA75F909D2BE3ACB5A9980BED3A73B92746E0FCE6C67414055459","coinDecimals":6},{"coinDenom":"axl","coinMinimalDenom":"ibc/1B03A71B8E6F6EF424411DC9326A8E0D25D096E4D2616425CFAF2AF06F0FE717","coinDecimals":6},{"coinDenom":"juno","coinMinimalDenom":"ibc/4F3E83AB35529435E4BFEA001F5D935E7250133347C4E1010A9C77149EF0394C","coinDecimals":6},{"coinDenom":"evmos","coinMinimalDenom":"ibc/A59A9C955F1AB8B76671B00C1A0482C64A6590352944BB5880E5122358F7E1CE","coinDecimals":18},{"coinDenom":"stk/atom","coinMinimalDenom":"ibc/DAAD372DB7DD45BBCFA4DDD40CA9793E9D265D1530083AB41A8A0C53C3EBE865","coinDecimals":6},{"coinDenom":"scrt","coinMinimalDenom":"ibc/EA00FFF0335B07B5CD1530B7EB3D2C710620AE5B168C71AFF7B50532D690E107","coinDecimals":6},{"coinDenom":"cro","coinMinimalDenom":"ibc/E1BCC0F7B932E654B1A930F72B76C0678D55095387E2A4D8F00E941A8F82EE48","coinDecimals":8},{"coinDenom":"stars","coinMinimalDenom":"ibc/11E3CF372E065ACB1A39C531A3C7E7E03F60B5D0653AD2139D31128ACD2772B5","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6},{"coinDenom":"strd","coinMinimalDenom":"ibc/04CA9067228BB51F1C39A506DA00DF07E1496D8308DD21E8EF66AD6169FA722B","coinDecimals":6},{"coinDenom":"cudos","coinMinimalDenom":"ibc/BB9810E7FE8836311126F15BE0B20E7463189751840F8C3FEF3AC8F87D8AB7C8","coinDecimals":18},{"coinDenom":"allBTC","coinMinimalDenom":"ibc/E45CFCB959F4F6D1065B7033EE49A88E606E6AD82E75725219B3D68B0FA89987","coinDecimals":8},{"coinDenom":"allSOL","coinMinimalDenom":"ibc/762E1E45658845A12E214A91C3C05FDFC5951D60404FAADA225A369A96DCD9A9","coinDecimals":9},{"coinDenom":"ntrn","coinMinimalDenom":"ibc/3D6BC6E049CAEB905AC97031A42800588C58FB471EBDC7A3530FFCD0C3DC9E09","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/6DF8CF5C976851D152E2C7270B0AB25C4F9D64C0A46513A68D6CBB2662A98DF4","coinDecimals":18},{"coinDenom":"dATOM","coinMinimalDenom":"ibc/EB08474FFC49B6BB2F03F7D9B08697138F4DA53347CA1AB718C8BCFBB58C1B2B","coinDecimals":6}],"rest":"lcd.nolus.network","rpc":"rpc.nolus.network","bech32Config":{"bech32PrefixAccAddr":"nolus","bech32PrefixAccPub":"noluspub","bech32PrefixValAddr":"nolusvaloper","bech32PrefixValPub":"nolusvaloperpub","bech32PrefixConsAddr":"nolusvalcons","bech32PrefixConsPub":"nolusvalconspub"},"chainName":"nolus","feeCurrencies":[{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.05}}],"stakeCurrency":{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nomic-stakenet-3","currencies":[{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},{"coinDenom":"nbtc","coinMinimalDenom":"usat","coinDecimals":14}],"rest":"https://app.nomic.io:8443","rpc":"https://stakenet-rpc.nomic.io:2096","bech32Config":{"bech32PrefixAccAddr":"nomic","bech32PrefixAccPub":"nomicpub","bech32PrefixValAddr":"nomicvaloper","bech32PrefixValPub":"nomicvaloperpub","bech32PrefixConsAddr":"nomicvalcons","bech32PrefixConsPub":"nomicvalconspub"},"chainName":"nomic","feeCurrencies":[{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},{"coinDenom":"nbtc","coinMinimalDenom":"usat","coinDecimals":14}],"stakeCurrency":{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nyx","currencies":[{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6},{"coinDenom":"nym","coinMinimalDenom":"unym","coinDecimals":6}],"rest":"https://nym-api.polkachu.com/","rpc":"https://rpc.nymtech.net/","bech32Config":{"bech32PrefixAccAddr":"n","bech32PrefixAccPub":"npub","bech32PrefixValAddr":"nvaloper","bech32PrefixValPub":"nvaloperpub","bech32PrefixConsAddr":"nvalcons","bech32PrefixConsPub":"nvalconspub"},"chainName":"nyx","feeCurrencies":[{"coinDenom":"nym","coinMinimalDenom":"unym","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}},{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"odin-mainnet-freya","currencies":[{"coinDenom":"odin","coinMinimalDenom":"loki","coinDecimals":6},{"coinDenom":"geo","coinMinimalDenom":"mGeo","coinDecimals":6},{"coinDenom":"doki","coinMinimalDenom":"udoki","coinDecimals":6},{"coinDenom":"myrk","coinMinimalDenom":"umyrk","coinDecimals":6},{"coinDenom":"O9W","coinMinimalDenom":"mO9W","coinDecimals":6}],"rest":"https://api.odinprotocol.io","rpc":"https://rpc.odinprotocol.io","bech32Config":{"bech32PrefixAccAddr":"odin","bech32PrefixAccPub":"odinpub","bech32PrefixValAddr":"odinvaloper","bech32PrefixValPub":"odinvaloperpub","bech32PrefixConsAddr":"odinvalcons","bech32PrefixConsPub":"odinvalconspub"},"chainName":"odin","feeCurrencies":[{"coinDenom":"odin","coinMinimalDenom":"loki","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.06}}],"stakeCurrency":{"coinDenom":"odin","coinMinimalDenom":"loki","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"omniflixhub-1","currencies":[{"coinDenom":"flix","coinMinimalDenom":"uflix","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/A8C2D23A1E6F95DA4E48BA349667E322BD7A6C996D8A4AAE8BA72E190F3D1477","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B","coinDecimals":6},{"coinDenom":"ist","coinMinimalDenom":"ibc/43D3010F4CA111744AC8B68E460BC95E565C32928A267FA2B30609C04C10B274","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/AC4C84DD7D3732CFA95A420247FAD5179BE4F42E5635E2BF0A62C67E2E2FA4A9","coinDecimals":6},{"coinDenom":"akt","coinMinimalDenom":"ibc/6901B45BC2C5418ED8B3C3C9F9A641A3DAF2D234230AFA9DF32D8F9F9434721C","coinDecimals":6},{"coinDenom":"baddog","coinMinimalDenom":"ibc/9F28238BDB687A86681B30764BA1437E079C3565D04FDD7862055A83F7E5C630","coinDecimals":6},{"coinDenom":"ygata","coinMinimalDenom":"factory/omniflix1fwphj5p6qd8gtkehkzfgac38eur4uqzgz97uwvf6hsc0vjl004gqfj0xnv/ygata","coinDecimals":6}],"rest":"https://api.omniflix.nodestake.org","rpc":"https://omniflix-rpc.kingnodes.com","bech32Config":{"bech32PrefixAccAddr":"omniflix","bech32PrefixAccPub":"omniflixpub","bech32PrefixValAddr":"omniflixvaloper","bech32PrefixValPub":"omniflixvaloperpub","bech32PrefixConsAddr":"omniflixvalcons","bech32PrefixConsPub":"omniflixvalconspub"},"chainName":"omniflixhub","feeCurrencies":[{"coinDenom":"flix","coinMinimalDenom":"uflix","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.0025,"high":0.025}}],"stakeCurrency":{"coinDenom":"flix","coinMinimalDenom":"uflix","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"onex-mainnet-1","currencies":[{"coinDenom":"onex","coinMinimalDenom":"aonex","coinDecimals":18}],"rest":"https://rest.mainnet.onex.onomy.io","rpc":"https://rpc.mainnet.onex.onomy.io","bech32Config":{"bech32PrefixAccAddr":"onomy","bech32PrefixAccPub":"onomypub","bech32PrefixValAddr":"onomyvaloper","bech32PrefixValPub":"onomyvaloperpub","bech32PrefixConsAddr":"onomyvalcons","bech32PrefixConsPub":"onomyvalconspub"},"chainName":"onex","feeCurrencies":[{"coinDenom":"onex","coinMinimalDenom":"aonex","coinDecimals":18}],"stakeCurrency":{"coinDenom":"onex","coinMinimalDenom":"aonex","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"onomy-mainnet-1","currencies":[{"coinDenom":"nom","coinMinimalDenom":"anom","coinDecimals":18}],"rest":"https://rest-mainnet.onomy.io","rpc":"https://rpc-mainnet.onomy.io","bech32Config":{"bech32PrefixAccAddr":"onomy","bech32PrefixAccPub":"onomypub","bech32PrefixValAddr":"onomyvaloper","bech32PrefixValPub":"onomyvaloperpub","bech32PrefixConsAddr":"onomyvalcons","bech32PrefixConsPub":"onomyvalconspub"},"chainName":"onomy","feeCurrencies":[{"coinDenom":"nom","coinMinimalDenom":"anom","coinDecimals":18}],"stakeCurrency":{"coinDenom":"nom","coinMinimalDenom":"anom","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"Oraichain","currencies":[{"coinDenom":"ORAI","coinMinimalDenom":"orai","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/A2E2EEC9057A4A1C2C0A6A4C78B0239118DF5F278830F50B4A6BDD7A66506B78","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/9C4DCD21B48231D0BC2AC3D1B74A864746B37E4292694C93C617324250D002FC","coinDecimals":6},{"coinDenom":"inj","coinMinimalDenom":"ibc/49D820DFDE9F885D7081725A58202ABA2F465CAEE4AFBC683DFB79A8E013E83E","coinDecimals":6},{"coinDenom":"inj","coinMinimalDenom":"cw20:orai19rtmkk6sn4tppvjmp5d5zj6gfsdykrl5rw2euu5gwur3luheuuusesqn49","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"cw20:orai12hzjxfh77wl572gdzct2fxv2arxcwh6gykc7qh","coinDecimals":6},{"coinDenom":"airi","coinMinimalDenom":"cw20:orai10ldgzued6zjp0mkqwsv2mux3ml50l97c74x8sg","coinDecimals":6},{"coinDenom":"oraix","coinMinimalDenom":"cw20:orai1lus0f0rhx8s03gdllx2n6vhkmf0536dv57wfge","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"cw20:orai15un8msx3n5zf9ahlxmfeqd2kwa5wm0nrpxer304m9nd5q6qq0g6sku5pdd","coinDecimals":6},{"coinDenom":"kwt","coinMinimalDenom":"cw20:orai1nd4r053e3kgedgld2ymen8l9yrw8xpjyaal7j5","coinDecimals":6},{"coinDenom":"milky","coinMinimalDenom":"cw20:orai1gzvndtzceqwfymu2kqhta2jn6gmzxvzqwdgvjw","coinDecimals":6},{"coinDenom":"scorai","coinMinimalDenom":"cw20:orai1065qe48g7aemju045aeyprflytemx7kecxkf5m7u5h5mphd0qlcs47pclp","coinDecimals":6},{"coinDenom":"wtrx","coinMinimalDenom":"cw20:orai1c7tpjenafvgjtgm9aqwm7afnke6c56hpdms8jc6md40xs3ugd0es5encn0","coinDecimals":6},{"coinDenom":"scatom","coinMinimalDenom":"cw20:orai19q4qak2g3cj2xc2y3060t0quzn3gfhzx08rjlrdd3vqxhjtat0cq668phq","coinDecimals":6},{"coinDenom":"xoch","coinMinimalDenom":"cw20:orai1lplapmgqnelqn253stz6kmvm3ulgdaytn89a8mz9y85xq8wd684s6xl3lt","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"cw20:orai1dqa52a7hxxuv8ghe7q5v0s36ra0cthea960q2cukznleqhk0wpnshfegez","coinDecimals":6},{"coinDenom":"btc","coinMinimalDenom":"cw20:orai10g6frpysmdgw5tdqke47als6f97aqmr8s3cljsvjce4n5enjftcqtamzsd","coinDecimals":6},{"coinDenom":"och","coinMinimalDenom":"cw20:orai1hn8w33cqvysun2aujk5sv33tku4pgcxhhnsxmvnkfvdxagcx0p8qa4l98q","coinDecimals":6},{"coinDenom":"ton","coinMinimalDenom":"factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/ton","coinDecimals":9},{"coinDenom":"pepe","coinMinimalDenom":"factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/extPEPE","coinDecimals":6},{"coinDenom":"hmstr","coinMinimalDenom":"factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/HMSTR","coinDecimals":9}],"rest":"http://lcd.orai.io","rpc":"https://rpc.orai.io","bech32Config":{"bech32PrefixAccAddr":"orai","bech32PrefixAccPub":"oraipub","bech32PrefixValAddr":"oraivaloper","bech32PrefixValPub":"oraivaloperpub","bech32PrefixConsAddr":"oraivalcons","bech32PrefixConsPub":"oraivalconspub"},"chainName":"oraichain","feeCurrencies":[{"coinDenom":"ORAI","coinMinimalDenom":"orai","coinDecimals":6,"gasPriceStep":{"low":0.003,"average":0.005,"high":0.007}}],"stakeCurrency":{"coinDenom":"ORAI","coinMinimalDenom":"orai","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"osmosis-1","currencies":[{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6},{"coinDenom":"ion","coinMinimalDenom":"uion","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5","coinDecimals":18},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F","coinDecimals":8},{"coinDenom":"usdt","coinMinimalDenom":"ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4","coinDecimals":6},{"coinDenom":"dai","coinMinimalDenom":"ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7","coinDecimals":18},{"coinDenom":"busd","coinMinimalDenom":"ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D","coinDecimals":18},{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6},{"coinDenom":"cro","coinMinimalDenom":"ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1","coinDecimals":8},{"coinDenom":"wbnb","coinMinimalDenom":"ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D","coinDecimals":18},{"coinDenom":"wmatic","coinMinimalDenom":"ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB","coinDecimals":18},{"coinDenom":"avax","coinMinimalDenom":"ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373","coinDecimals":18},{"coinDenom":"luna","coinMinimalDenom":"ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0","coinDecimals":6},{"coinDenom":"juno","coinMinimalDenom":"ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED","coinDecimals":6},{"coinDenom":"dot","coinMinimalDenom":"ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7","coinDecimals":10},{"coinDenom":"evmos","coinMinimalDenom":"ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A","coinDecimals":18},{"coinDenom":"kava","coinMinimalDenom":"ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205","coinDecimals":6},{"coinDenom":"scrt","coinMinimalDenom":"ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A","coinDecimals":6},{"coinDenom":"ust","coinMinimalDenom":"ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC","coinDecimals":6},{"coinDenom":"stars","coinMinimalDenom":"ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4","coinDecimals":6},{"coinDenom":"huahua","coinMinimalDenom":"ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228","coinDecimals":6},{"coinDenom":"xprt","coinMinimalDenom":"ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293","coinDecimals":6},{"coinDenom":"pstake","coinMinimalDenom":"ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961","coinDecimals":18},{"coinDenom":"akt","coinMinimalDenom":"ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4","coinDecimals":6},{"coinDenom":"regen","coinMinimalDenom":"ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076","coinDecimals":6},{"coinDenom":"dvpn","coinMinimalDenom":"ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84","coinDecimals":6},{"coinDenom":"iris","coinMinimalDenom":"ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0","coinDecimals":6},{"coinDenom":"iov","coinMinimalDenom":"ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC","coinDecimals":6},{"coinDenom":"ngm","coinMinimalDenom":"ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59","coinDecimals":6},{"coinDenom":"eur","coinMinimalDenom":"ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F","coinDecimals":6},{"coinDenom":"like","coinMinimalDenom":"ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525","coinDecimals":9},{"coinDenom":"ixo","coinMinimalDenom":"ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B","coinDecimals":6},{"coinDenom":"bcna","coinMinimalDenom":"ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5","coinDecimals":6},{"coinDenom":"btsg","coinMinimalDenom":"ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452","coinDecimals":6},{"coinDenom":"xki","coinMinimalDenom":"ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E","coinDecimals":6},{"coinDenom":"med","coinMinimalDenom":"ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB","coinDecimals":6},{"coinDenom":"ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4","coinMinimalDenom":"ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4","coinDecimals":0},{"coinDenom":"cmdx","coinMinimalDenom":"ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0","coinDecimals":6},{"coinDenom":"cheq","coinMinimalDenom":"ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA","coinDecimals":9},{"coinDenom":"lum","coinMinimalDenom":"ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2","coinDecimals":6},{"coinDenom":"vdl","coinMinimalDenom":"ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD","coinDecimals":6},{"coinDenom":"dsm","coinMinimalDenom":"ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C","coinDecimals":6},{"coinDenom":"dig","coinMinimalDenom":"ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D","coinDecimals":6},{"coinDenom":"somm","coinMinimalDenom":"ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E","coinDecimals":6},{"coinDenom":"band","coinMinimalDenom":"ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE","coinDecimals":6},{"coinDenom":"darc","coinMinimalDenom":"ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593","coinDecimals":6},{"coinDenom":"umee","coinMinimalDenom":"ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C","coinDecimals":6},{"coinDenom":"graviton","coinMinimalDenom":"ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44","coinDecimals":6},{"coinDenom":"dec","coinMinimalDenom":"ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84","coinDecimals":6},{"coinDenom":"marble","coinMinimalDenom":"ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6","coinDecimals":3},{"coinDenom":"dswth","coinMinimalDenom":"ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3","coinDecimals":8},{"coinDenom":"crbrus","coinMinimalDenom":"ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7","coinDecimals":6},{"coinDenom":"fet","coinMinimalDenom":"ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447","coinDecimals":18},{"coinDenom":"mntl","coinMinimalDenom":"ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC","coinDecimals":6},{"coinDenom":"neta","coinMinimalDenom":"ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A","coinDecimals":6},{"coinDenom":"INJ","coinMinimalDenom":"ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273","coinDecimals":18},{"coinDenom":"krt","coinMinimalDenom":"ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780","coinDecimals":6},{"coinDenom":"tick","coinMinimalDenom":"ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8","coinDecimals":6},{"coinDenom":"ROWAN","coinMinimalDenom":"ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB","coinDecimals":18},{"coinDenom":"ctk","coinMinimalDenom":"ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3","coinDecimals":6},{"coinDenom":"hope","coinMinimalDenom":"ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B","coinDecimals":6},{"coinDenom":"rac","coinMinimalDenom":"ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788","coinDecimals":6},{"coinDenom":"frax","coinMinimalDenom":"ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE","coinDecimals":18},{"coinDenom":"gwbtc","coinMinimalDenom":"ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796","coinDecimals":8},{"coinDenom":"gweth","coinMinimalDenom":"ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5","coinDecimals":18},{"coinDenom":"gusdc","coinMinimalDenom":"ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E","coinDecimals":6},{"coinDenom":"gdai","coinMinimalDenom":"ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5","coinDecimals":18},{"coinDenom":"gusdt","coinMinimalDenom":"ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805","coinDecimals":6},{"coinDenom":"block","coinMinimalDenom":"ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3","coinDecimals":6},{"coinDenom":"hash","coinMinimalDenom":"ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2","coinDecimals":9},{"coinDenom":"glx","coinMinimalDenom":"ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2","coinDecimals":6},{"coinDenom":"ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB","coinMinimalDenom":"ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB","coinDecimals":0},{"coinDenom":"raw","coinMinimalDenom":"ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC","coinDecimals":6},{"coinDenom":"meme","coinMinimalDenom":"ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA","coinDecimals":6},{"coinDenom":"asvt","coinMinimalDenom":"ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7","coinDecimals":6},{"coinDenom":"joe","coinMinimalDenom":"ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9","coinDecimals":6},{"coinDenom":"atolo","coinMinimalDenom":"ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219","coinDecimals":6},{"coinDenom":"HARD","coinMinimalDenom":"ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC","coinDecimals":6},{"coinDenom":"SWP","coinMinimalDenom":"ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5","coinDecimals":6},{"coinDenom":"link","coinMinimalDenom":"ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049","coinDecimals":18},{"coinDenom":"l1","coinMinimalDenom":"ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4","coinDecimals":18},{"coinDenom":"aave","coinMinimalDenom":"ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE","coinDecimals":18},{"coinDenom":"ape","coinMinimalDenom":"ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4","coinDecimals":18},{"coinDenom":"mkr","coinMinimalDenom":"ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3","coinDecimals":18},{"coinDenom":"rai","coinMinimalDenom":"ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E","coinDecimals":18},{"coinDenom":"shib","coinMinimalDenom":"ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2","coinDecimals":18},{"coinDenom":"kuji","coinMinimalDenom":"ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE","coinDecimals":6},{"coinDenom":"tgd","coinMinimalDenom":"ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C","coinDecimals":6},{"coinDenom":"echelon","coinMinimalDenom":"ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D","coinDecimals":18},{"coinDenom":"odin","coinMinimalDenom":"ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B","coinDecimals":6},{"coinDenom":"geo","coinMinimalDenom":"ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A","coinDecimals":6},{"coinDenom":"O9W","coinMinimalDenom":"ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D","coinDecimals":6},{"coinDenom":"lvn","coinMinimalDenom":"ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121","coinDecimals":6},{"coinDenom":"wglmr","coinMinimalDenom":"ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49","coinDecimals":18},{"coinDenom":"glto","coinMinimalDenom":"ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E","coinDecimals":6},{"coinDenom":"gkey","coinMinimalDenom":"ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8","coinDecimals":6},{"coinDenom":"cre","coinMinimalDenom":"ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580","coinDecimals":6},{"coinDenom":"lumen","coinMinimalDenom":"ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7","coinDecimals":6},{"coinDenom":"ORAI","coinMinimalDenom":"ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D","coinDecimals":6},{"coinDenom":"cudos","coinMinimalDenom":"ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B","coinDecimals":18},{"coinDenom":"USDX","coinMinimalDenom":"ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE","coinDecimals":6},{"coinDenom":"bld","coinMinimalDenom":"ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604","coinDecimals":6},{"coinDenom":"ist","coinMinimalDenom":"ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5","coinDecimals":6},{"coinDenom":"sejuno","coinMinimalDenom":"ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B","coinDecimals":6},{"coinDenom":"bjuno","coinMinimalDenom":"ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3","coinDecimals":6},{"coinDenom":"strd","coinMinimalDenom":"ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901","coinDecimals":6},{"coinDenom":"ststars","coinMinimalDenom":"ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A","coinDecimals":6},{"coinDenom":"solar","coinMinimalDenom":"ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C","coinDecimals":6},{"coinDenom":"seasy","coinMinimalDenom":"ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6","coinDecimals":6},{"coinDenom":"axl","coinMinimalDenom":"ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E","coinDecimals":6},{"coinDenom":"rebus","coinMinimalDenom":"ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9","coinDecimals":18},{"coinDenom":"tori","coinMinimalDenom":"ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC","coinDecimals":6},{"coinDenom":"stjuno","coinMinimalDenom":"ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC","coinDecimals":6},{"coinDenom":"muse","coinMinimalDenom":"ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F","coinDecimals":6},{"coinDenom":"lamb","coinMinimalDenom":"ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB","coinDecimals":18},{"coinDenom":"usk","coinMinimalDenom":"ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC","coinDecimals":6},{"coinDenom":"FUND","coinMinimalDenom":"ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC","coinDecimals":9},{"coinDenom":"jkl","coinMinimalDenom":"ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA","coinDecimals":6},{"coinDenom":"alter","coinMinimalDenom":"ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3","coinDecimals":6},{"coinDenom":"butt","coinMinimalDenom":"ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8","coinDecimals":6},{"coinDenom":"shd","coinMinimalDenom":"ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C","coinDecimals":8},{"coinDenom":"sienna","coinMinimalDenom":"ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213","coinDecimals":18},{"coinDenom":"stkd-scrt","coinMinimalDenom":"ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4","coinDecimals":6},{"coinDenom":"bze","coinMinimalDenom":"ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88","coinDecimals":6},{"coinDenom":"fury","coinMinimalDenom":"ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF","coinDecimals":6},{"coinDenom":"acre","coinMinimalDenom":"ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06","coinDecimals":18},{"coinDenom":"cmst","coinMinimalDenom":"ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E","coinDecimals":6},{"coinDenom":"imv","coinMinimalDenom":"ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4","coinDecimals":18},{"coinDenom":"medas","coinMinimalDenom":"ibc/FBBC35295AA037DC0A77796B08DC3003EC918E18E75D61D675A0EEAC0643F36C","coinDecimals":6},{"coinDenom":"phmn","coinMinimalDenom":"ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B","coinDecimals":6},{"coinDenom":"amber","coinMinimalDenom":"ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55","coinDecimals":6},{"coinDenom":"nom","coinMinimalDenom":"ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163","coinDecimals":18},{"coinDenom":"stkatom","coinMinimalDenom":"ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC","coinDecimals":6},{"coinDenom":"ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D","coinMinimalDenom":"ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D","coinDecimals":0},{"coinDenom":"hopers","coinMinimalDenom":"ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099","coinDecimals":6},{"coinDenom":"arusd","coinMinimalDenom":"ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F","coinDecimals":18},{"coinDenom":"planq","coinMinimalDenom":"ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF","coinDecimals":18},{"coinDenom":"ftm","coinMinimalDenom":"ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4","coinDecimals":18},{"coinDenom":"canto","coinMinimalDenom":"ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F","coinDecimals":18},{"coinDenom":"qstars","coinMinimalDenom":"ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83","coinDecimals":6},{"coinDenom":"wynd","coinMinimalDenom":"ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3","coinDecimals":6},{"coinDenom":"polygon-usdc","coinMinimalDenom":"ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A","coinDecimals":6},{"coinDenom":"avalanche-usdc","coinMinimalDenom":"ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C","coinDecimals":6},{"coinDenom":"MARS.old","coinMinimalDenom":"ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580","coinDecimals":6},{"coinDenom":"cnto","coinMinimalDenom":"ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5","coinDecimals":18},{"coinDenom":"stluna","coinMinimalDenom":"ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372","coinDecimals":6},{"coinDenom":"stevmos","coinMinimalDenom":"ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01","coinDecimals":18},{"coinDenom":"nride","coinMinimalDenom":"ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C","coinDecimals":6},{"coinDenom":"ebl","coinMinimalDenom":"ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F","coinDecimals":6},{"coinDenom":"qatom","coinMinimalDenom":"ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC","coinDecimals":6},{"coinDenom":"harbor","coinMinimalDenom":"ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A","coinDecimals":6},{"coinDenom":"qregen","coinMinimalDenom":"ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206","coinDecimals":6},{"coinDenom":"fox","coinMinimalDenom":"ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6","coinDecimals":6},{"coinDenom":"qck","coinMinimalDenom":"ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D","coinDecimals":6},{"coinDenom":"ARKH","coinMinimalDenom":"ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28","coinDecimals":6},{"coinDenom":"qosmo","coinMinimalDenom":"ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC","coinDecimals":6},{"coinDenom":"frienzies","coinMinimalDenom":"ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D","coinDecimals":6},{"coinDenom":"grdn","coinMinimalDenom":"ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA","coinDecimals":6},{"coinDenom":"mnpu","coinMinimalDenom":"ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E","coinDecimals":6},{"coinDenom":"shibac","coinMinimalDenom":"ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8","coinDecimals":6},{"coinDenom":"sikoba","coinMinimalDenom":"ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E","coinDecimals":6},{"coinDenom":"nct","coinMinimalDenom":"ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68","coinDecimals":6},{"coinDenom":"clst","coinMinimalDenom":"ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA","coinDecimals":6},{"coinDenom":"osdoge","coinMinimalDenom":"ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156","coinDecimals":6},{"coinDenom":"apemos","coinMinimalDenom":"ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D","coinDecimals":6},{"coinDenom":"invdrs","coinMinimalDenom":"ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54","coinDecimals":6},{"coinDenom":"doga","coinMinimalDenom":"ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250","coinDecimals":6},{"coinDenom":"catmos","coinMinimalDenom":"ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835","coinDecimals":6},{"coinDenom":"summit","coinMinimalDenom":"ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A","coinDecimals":6},{"coinDenom":"flix","coinMinimalDenom":"ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F","coinDecimals":6},{"coinDenom":"spacer","coinMinimalDenom":"ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C","coinDecimals":6},{"coinDenom":"light","coinMinimalDenom":"ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29","coinDecimals":9},{"coinDenom":"silk","coinMinimalDenom":"ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7","coinDecimals":6},{"coinDenom":"mile","coinMinimalDenom":"ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF","coinDecimals":6},{"coinDenom":"manna","coinMinimalDenom":"ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B","coinDecimals":6},{"coinDenom":"fil","coinMinimalDenom":"ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D","coinDecimals":18},{"coinDenom":"void","coinMinimalDenom":"ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960","coinDecimals":6},{"coinDenom":"shd","coinMinimalDenom":"ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A","coinDecimals":8},{"coinDenom":"bnt","coinMinimalDenom":"ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8","coinDecimals":6},{"coinDenom":"arb","coinMinimalDenom":"ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6","coinDecimals":18},{"coinDenom":"silica","coinMinimalDenom":"ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07","coinDecimals":6},{"coinDenom":"pepec","coinMinimalDenom":"ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93","coinDecimals":6},{"coinDenom":"pepe","coinMinimalDenom":"ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B","coinDecimals":18},{"coinDenom":"ibcx","coinMinimalDenom":"factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx","coinDecimals":6},{"coinDenom":"cbeth","coinMinimalDenom":"ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A","coinDecimals":18},{"coinDenom":"reth","coinMinimalDenom":"ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222","coinDecimals":18},{"coinDenom":"sfrxeth","coinMinimalDenom":"ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46","coinDecimals":18},{"coinDenom":"wsteth","coinMinimalDenom":"ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C","coinDecimals":18},{"coinDenom":"LORE","coinMinimalDenom":"ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3","coinDecimals":6},{"coinDenom":"roar","coinMinimalDenom":"ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0","coinDecimals":6},{"coinDenom":"stumee","coinMinimalDenom":"ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F","coinDecimals":6},{"coinDenom":"stibcx","coinMinimalDenom":"factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx","coinDecimals":6},{"coinDenom":"nls","coinMinimalDenom":"ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782","coinDecimals":6},{"coinDenom":"cub","coinMinimalDenom":"ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3","coinDecimals":6},{"coinDenom":"blue","coinMinimalDenom":"ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E","coinDecimals":6},{"coinDenom":"ntrn","coinMinimalDenom":"ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682","coinDecimals":6},{"coinDenom":"casa","coinMinimalDenom":"ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE","coinDecimals":6},{"coinDenom":"pica","coinMinimalDenom":"ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516","coinDecimals":12},{"coinDenom":"ksm","coinMinimalDenom":"ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C","coinDecimals":12},{"coinDenom":"dot","coinMinimalDenom":"ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244","coinDecimals":10},{"coinDenom":"qsr","coinMinimalDenom":"ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477","coinDecimals":6},{"coinDenom":"arch","coinMinimalDenom":"ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85","coinDecimals":18},{"coinDenom":"mpwr","coinMinimalDenom":"ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38","coinDecimals":6},{"coinDenom":"watr","coinMinimalDenom":"ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E","coinDecimals":6},{"coinDenom":"kyve","coinMinimalDenom":"ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB","coinDecimals":6},{"coinDenom":"ampOSMO","coinMinimalDenom":"factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO","coinDecimals":6},{"coinDenom":"sei","coinMinimalDenom":"ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D","coinDecimals":6},{"coinDenom":"qsomm","coinMinimalDenom":"ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208","coinDecimals":6},{"coinDenom":"pasg","coinMinimalDenom":"ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED","coinDecimals":6},{"coinDenom":"stsomm","coinMinimalDenom":"ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B","coinDecimals":6},{"coinDenom":"wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8","coinMinimalDenom":"ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA","coinDecimals":8},{"coinDenom":"wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5","coinMinimalDenom":"ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E","coinDecimals":5},{"coinDenom":"wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6","coinMinimalDenom":"ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C","coinDecimals":6},{"coinDenom":"wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8","coinMinimalDenom":"ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5","coinDecimals":8},{"coinDenom":"wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8","coinMinimalDenom":"ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE","coinDecimals":8},{"coinDenom":"mnta","coinMinimalDenom":"ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B","coinDecimals":6},{"coinDenom":"dgl","coinMinimalDenom":"ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9","coinDecimals":6},{"coinDenom":"wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6","coinMinimalDenom":"ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695","coinDecimals":6},{"coinDenom":"wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8","coinMinimalDenom":"ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC","coinDecimals":8},{"coinDenom":"usdc","coinMinimalDenom":"ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4","coinDecimals":6},{"coinDenom":"YieldETH","coinMinimalDenom":"ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668","coinDecimals":18},{"coinDenom":"xpla","coinMinimalDenom":"ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8","coinDecimals":18},{"coinDenom":"oin","coinMinimalDenom":"ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6","coinDecimals":6},{"coinDenom":"neok","coinMinimalDenom":"ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71","coinDecimals":18},{"coinDenom":"rio","coinMinimalDenom":"ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF","coinDecimals":18},{"coinDenom":"cdt","coinMinimalDenom":"factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt","coinDecimals":6},{"coinDenom":"mbrn","coinMinimalDenom":"factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn","coinDecimals":6},{"coinDenom":"sge","coinMinimalDenom":"ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA","coinDecimals":6},{"coinDenom":"fis","coinMinimalDenom":"ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862","coinDecimals":6},{"coinDenom":"ratom","coinMinimalDenom":"ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7","coinDecimals":6},{"coinDenom":"strdst","coinMinimalDenom":"ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B","coinDecimals":6},{"coinDenom":"DORA","coinMinimalDenom":"ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A","coinDecimals":18},{"coinDenom":"core","coinMinimalDenom":"ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C","coinDecimals":18},{"coinDenom":"WFX","coinMinimalDenom":"ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9","coinDecimals":18},{"coinDenom":"nbtc","coinMinimalDenom":"ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F","coinDecimals":14},{"coinDenom":"nois","coinMinimalDenom":"ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90","coinDecimals":6},{"coinDenom":"sqosmo","coinMinimalDenom":"factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo","coinDecimals":6},{"coinDenom":"nstk","coinMinimalDenom":"ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C","coinDecimals":6},{"coinDenom":"BRNCH","coinMinimalDenom":"ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02","coinDecimals":6},{"coinDenom":"wstETH","coinMinimalDenom":"ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5","coinDecimals":18},{"coinDenom":"sqatom","coinMinimalDenom":"factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom","coinDecimals":6},{"coinDenom":"sqbtc","coinMinimalDenom":"factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc","coinDecimals":6},{"coinDenom":"qwoyn","coinMinimalDenom":"ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D","coinDecimals":6},{"coinDenom":"ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20","coinMinimalDenom":"ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20","coinDecimals":0},{"coinDenom":"ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761","coinMinimalDenom":"ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761","coinDecimals":0},{"coinDenom":"volt","coinMinimalDenom":"ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA","coinDecimals":3},{"coinDenom":"ampere","coinMinimalDenom":"ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424","coinDecimals":3},{"coinDenom":"source","coinMinimalDenom":"ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7","coinDecimals":6},{"coinDenom":"wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6","coinMinimalDenom":"ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5","coinDecimals":6},{"coinDenom":"stkosmo","coinMinimalDenom":"ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E","coinDecimals":6},{"coinDenom":"lvn","coinMinimalDenom":"factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn","coinDecimals":6},{"coinDenom":"puppy","coinMinimalDenom":"ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963","coinDecimals":6},{"coinDenom":"newt","coinMinimalDenom":"ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD","coinDecimals":6},{"coinDenom":"milkTIA","coinMinimalDenom":"factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA","coinDecimals":6},{"coinDenom":"ASH","coinMinimalDenom":"ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC","coinDecimals":6},{"coinDenom":"RAC","coinMinimalDenom":"ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493","coinDecimals":6},{"coinDenom":"GUPPY","coinMinimalDenom":"ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D","coinDecimals":6},{"coinDenom":"ISLM","coinMinimalDenom":"ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA","coinDecimals":18},{"coinDenom":"autism","coinMinimalDenom":"ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D","coinDecimals":6},{"coinDenom":"page","coinMinimalDenom":"ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99","coinDecimals":8},{"coinDenom":"PURSE","coinMinimalDenom":"ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519","coinDecimals":18},{"coinDenom":"NINJA","coinMinimalDenom":"ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3","coinDecimals":6},{"coinDenom":"kleo","coinMinimalDenom":"ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF","coinDecimals":6},{"coinDenom":"nyx","coinMinimalDenom":"ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317","coinDecimals":6},{"coinDenom":"nym","coinMinimalDenom":"ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539","coinDecimals":6},{"coinDenom":"achihuahuawifhat","coinMinimalDenom":"ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7","coinDecimals":6},{"coinDenom":"circus","coinMinimalDenom":"ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C","coinDecimals":6},{"coinDenom":"jape","coinMinimalDenom":"ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE","coinDecimals":6},{"coinDenom":"WOOF","coinMinimalDenom":"ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53","coinDecimals":6},{"coinDenom":"sneaky","coinMinimalDenom":"ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F","coinDecimals":6},{"coinDenom":"wbtc","coinMinimalDenom":"factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc","coinDecimals":8},{"coinDenom":"bad","coinMinimalDenom":"ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23","coinDecimals":6},{"coinDenom":"sgnl","coinMinimalDenom":"ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO","coinDecimals":6},{"coinDenom":"sqtia","coinMinimalDenom":"factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia","coinDecimals":6},{"coinDenom":"apollo","coinMinimalDenom":"ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1","coinDecimals":6},{"coinDenom":"stDYDX","coinMinimalDenom":"ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C","coinDecimals":18},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9","coinDecimals":6},{"coinDenom":"stSAGA","coinMinimalDenom":"ibc/2CD9F8161C3FC332E78EF0C25F6E684D09379FB2F56EF9267E7EC139642EC57B","coinDecimals":6},{"coinDenom":"stINJ","coinMinimalDenom":"ibc/C04DFC9BCD893E57F2BEFE40F63EFD18D2768514DBD5F63ABD2FF7F48FC01D36","coinDecimals":18},{"coinDenom":"glto","coinMinimalDenom":"ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7","coinDecimals":6},{"coinDenom":"dym","coinMinimalDenom":"ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110","coinDecimals":18},{"coinDenom":"RAPTR","coinMinimalDenom":"factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR","coinDecimals":6},{"coinDenom":"astro.cw20","coinMinimalDenom":"ibc/C25A2303FE24B922DAFFDCE377AC5A42E5EF746806D32E2ED4B610DE85C203F7","coinDecimals":6},{"coinDenom":"BADKID","coinMinimalDenom":"factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID","coinDecimals":6},{"coinDenom":"wormhole/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3/6","coinMinimalDenom":"ibc/F08DE332018E8070CC4C68FE06E04E254F527556A614F5F8F9A68AF38D367E45","coinDecimals":6},{"coinDenom":"heart","coinMinimalDenom":"ibc/35CECC330D11DD00FACB555D07687631E0BC7D226260CC5F015F6D7980819533","coinDecimals":18},{"coinDenom":"berlin","coinMinimalDenom":"ibc/2BF9656CAB0384A31167DB9B0254F0FB1CB4346A229BD7E5CBDCBB911C3740F7","coinDecimals":18},{"coinDenom":"scr","coinMinimalDenom":"ibc/178248C262DE2E141EE6287EE7AB0854F05F25B0A3F40C4B912FA1C7E51F466E","coinDecimals":9},{"coinDenom":"c4e","coinMinimalDenom":"ibc/62118FB4D5FEDD5D2B18DC93648A745CD5E5B01D420E9B7A5FED5381CB13A7E8","coinDecimals":6},{"coinDenom":"bitmos","coinMinimalDenom":"ibc/7D389F0ABF1E4D45BE6D7BBE36A2C50EA0559C01E076B02F8E381E685EC1F942","coinDecimals":6},{"coinDenom":"srcx","coinMinimalDenom":"ibc/C97473CD237EBA2F94FDFA6ABA5EC0E22FA140655D73D2A2754F03A347BBA40B","coinDecimals":9},{"coinDenom":"rock","coinMinimalDenom":"ibc/0835781EF3F3ADD053874323AB660C75B50B18B16733CAB783CA6BBD78244EDF","coinDecimals":6},{"coinDenom":"wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5","coinMinimalDenom":"ibc/CDD1E59BD5034C1B2597DD199782204EB397DB93200AA2E99C0AF3A66B2915FA","coinDecimals":5},{"coinDenom":"aioz","coinMinimalDenom":"ibc/BB0AFE2AFBD6E883690DAE4B9168EAC2B306BCC9C9292DACBB4152BBB08DB25F","coinDecimals":18},{"coinDenom":"stDYM","coinMinimalDenom":"ibc/D53E785DC9C5C2CA50CADB1EFE4DE5D0C30418BE0E9C6F2AF9F092A247E8BC22","coinDecimals":18},{"coinDenom":"doki","coinMinimalDenom":"ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B","coinDecimals":6},{"coinDenom":"sail","coinMinimalDenom":"factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail","coinDecimals":6},{"coinDenom":"SHARK","coinMinimalDenom":"ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834","coinDecimals":6},{"coinDenom":"xrp","coinMinimalDenom":"ibc/63A7CA0B6838AD8CAD6B5103998FF9B9B6A6F06FBB9638BFF51E63E0142339F3","coinDecimals":6},{"coinDenom":"allXRP","coinMinimalDenom":"factory/osmo1qnglc04tmhg32uc4kxlxh55a5cmhj88cpa3rmtly484xqu82t79sfv94w0/alloyed/allXRP","coinDecimals":6},{"coinDenom":"SEIYAN","coinMinimalDenom":"ibc/86074B8DF625A75C25D52FA6112E3FD5446BA41FE418880C168CA99D10E22F05","coinDecimals":6},{"coinDenom":"nibi","coinMinimalDenom":"ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF","coinDecimals":6},{"coinDenom":"beast","coinMinimalDenom":"ibc/B84F8CC583A54DA8173711C0B66B22FDC1954FEB1CA8DBC66C89919DAFE02000","coinDecimals":6},{"coinDenom":"cvnt","coinMinimalDenom":"ibc/044B7B28AFE93CEC769CF529ADC626DA09EA0EFA3E0E3284D540E9E00E01E24A","coinDecimals":18},{"coinDenom":"toro","coinMinimalDenom":"factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro","coinDecimals":6},{"coinDenom":"sayve","coinMinimalDenom":"ibc/06EF575844982382F4D1BC3830D294557A30EDB3CD223153AFC8DFEF06349C56","coinDecimals":6},{"coinDenom":"LAB","coinMinimalDenom":"factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB","coinDecimals":6},{"coinDenom":"bOSMO","coinMinimalDenom":"factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/boneOsmo","coinDecimals":6},{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/46D8D1A6E2A80ECCB7CA6663086A2E749C508B68DA56A077CD26E6F4F9691EEE","coinDecimals":18},{"coinDenom":"tnkr","coinMinimalDenom":"ibc/3A0A392E610A8D477851ABFEA74F3D828F36C015AB8E93B0FBB7566A6D13C4D6","coinDecimals":12},{"coinDenom":"w","coinMinimalDenom":"ibc/AC6EE43E608B5A7EEE460C960480BC1C3708010E32B2071C429DA259836E10C3","coinDecimals":6},{"coinDenom":"dhp","coinMinimalDenom":"ibc/FD506CCA1FC574F2A8175FB574C981E9F6351E194AA48AC219BD67FF934E2F33","coinDecimals":6},{"coinDenom":"fury","coinMinimalDenom":"ibc/E4C60B9F95BF54CC085A5E39F6057ABD4DF92793D330EB884A36530F7E6804DE","coinDecimals":6},{"coinDenom":"saga","coinMinimalDenom":"ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2","coinDecimals":6},{"coinDenom":"ATOM1KLFG","coinMinimalDenom":"ibc/0E77E090EC04C476DE2BC0A7056580AC47660DAEB7B0D4701C085E3A046AC7B7","coinDecimals":6},{"coinDenom":"SHIDO","coinMinimalDenom":"ibc/62B50BB1DAEAD2A92D6C6ACAC118F4ED8CBE54265DCF5688E8D0A0A978AA46E7","coinDecimals":18},{"coinDenom":"cif","coinMinimalDenom":"ibc/EFC1776BEFB7842F2DC7BABD9A3050E188145C99007ECC5F3526FED45A68D5F5","coinDecimals":6},{"coinDenom":"hava","coinMinimalDenom":"ibc/884EBC228DFCE8F1304D917A712AA9611427A6C1ECC3179B2E91D7468FB091A2","coinDecimals":6},{"coinDenom":"IBC","coinMinimalDenom":"factory/osmo1kqdw6pvn0xww6tyfv2sqvkkencdz0qw406x54r/IBC","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/5EC896BED3EBCB2CB6F1C167582E4EFA3F6FA3385F28BA5EA92D4A489DA010C5","coinDecimals":18},{"coinDenom":"astro","coinMinimalDenom":"ibc/B8C608CEE08C4F30A15A7955306F2EDAF4A02BB191CABC4185C1A57FD978DA1B","coinDecimals":6},{"coinDenom":"xASTRO","coinMinimalDenom":"ibc/2ED09B03AA396BC2F35B741F4CA4A82D33A24A1007BFC1973299842DD626F564","coinDecimals":6},{"coinDenom":"gpaxg","coinMinimalDenom":"ibc/A5CCD24BA902843B1003A7EEE5F937C632808B9CF4925601241B15C5A0A51A53","coinDecimals":18},{"coinDenom":"rstk","coinMinimalDenom":"ibc/04FAC73DFF7F1DD59395948F2F043B0BBF978AD4533EE37E811340F501A08FFB","coinDecimals":6},{"coinDenom":"BERNESE","coinMinimalDenom":"factory/osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss/BERNESE","coinDecimals":6},{"coinDenom":"eth","coinMinimalDenom":"ibc/A23E590BA7E0D808706FB5085A449B3B9D6864AE4DDE7DAF936243CEBB2A3D43","coinDecimals":18},{"coinDenom":"dai","coinMinimalDenom":"ibc/37DFAFDA529FF7D513B0DB23E9728DF9BF73122D38D46824C78BB7F91E6A736B","coinDecimals":18},{"coinDenom":"fxs","coinMinimalDenom":"ibc/5435437A8C9416B650DDA49C338B63CCFC6465123B715F6BAA9B1B2071E27913","coinDecimals":18},{"coinDenom":"frax","coinMinimalDenom":"ibc/9A8CBC029002DC5170E715F93FBF35011FFC9796371F59B1F3C3094AE1B453A9","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/078AD6F581E8115CDFBD8FFA29D8C71AFE250CE952AFF80040CBC64868D44AD3","coinDecimals":6},{"coinDenom":"sfrax","coinMinimalDenom":"ibc/0EFA07F312E05258A56AE1DD600E39B9151CF7A91C8A94EEBCF4F03ECFE5DD98","coinDecimals":18},{"coinDenom":"frxeth","coinMinimalDenom":"ibc/688E70EF567E5D4BA1CF4C54BAD758C288BC1A6C8B0B12979F911A2AE95E27EC","coinDecimals":18},{"coinDenom":"sfrxeth","coinMinimalDenom":"ibc/F17CCB4F07948CC2D8B72952C2D0A84F2B763962F698774BB121B872AE4611B5","coinDecimals":18},{"coinDenom":"clay","coinMinimalDenom":"ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B","coinDecimals":6},{"coinDenom":"404dr","coinMinimalDenom":"ibc/B797E4F42CD33C50511B341E50C5CC0E8EF0D93B1E1247ABAA071583B8619202","coinDecimals":6},{"coinDenom":"wLIBRA","coinMinimalDenom":"factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA","coinDecimals":6},{"coinDenom":"nim","coinMinimalDenom":"ibc/279D69A6EF8E37456C8D2DC7A7C1C50F7A566EC4758F6DE17472A9FDE36C4426","coinDecimals":18},{"coinDenom":"seda","coinMinimalDenom":"ibc/956AEF1DA92F70584266E87978C3F30A43B91EE6ABC62F03D097E79F6B99C4D8","coinDecimals":18},{"coinDenom":"CAC","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/cac","coinDecimals":6},{"coinDenom":"WEIRD","coinMinimalDenom":"ibc/38ADC6FFDDDB7D70B72AD0322CEA8844CB18FAA0A23400DBA8A99D43E18B3748","coinDecimals":6},{"coinDenom":"PBB","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/pbb","coinDecimals":6},{"coinDenom":"bwh","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bwh","coinDecimals":6},{"coinDenom":"ibc/0D62E47FDEBBC199D4E1853C0708F0F9337AC62D95B719585C9700E466060995","coinMinimalDenom":"ibc/0D62E47FDEBBC199D4E1853C0708F0F9337AC62D95B719585C9700E466060995","coinDecimals":0},{"coinDenom":"SHITMOS","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos","coinDecimals":6},{"coinDenom":"qjuno","coinMinimalDenom":"ibc/B4E18E61E1505C2F371B621E49B09E983F6A138F251A7B5286A6BDF739FD0D54","coinDecimals":6},{"coinDenom":"qsaga","coinMinimalDenom":"ibc/F2D400F2728E9DA06EAE2AFAB289931A69EDDA5A661578C66A3177EDFE3C0D13","coinDecimals":6},{"coinDenom":"qdydx","coinMinimalDenom":"ibc/273C593E51ACE56F1F2BDB3E03A5CB81BB208B894BCAA642676A32C3454E8C27","coinDecimals":18},{"coinDenom":"qbld","coinMinimalDenom":"ibc/C1C106D915C8E8C59E5DC69BF30FEF64729A6F788060B184C86A315DBB762EF7","coinDecimals":6},{"coinDenom":"pepe","coinMinimalDenom":"ibc/5B5BFCC8A9F0D554A4245117F7798E85BE25B6C73DBFA2D6F369BD9DD6CACC6D","coinDecimals":18},{"coinDenom":"crv","coinMinimalDenom":"ibc/080CE38C1E49595F2199E88BE7281F93FAEEF3FE354EECED0640625E8311C9CF","coinDecimals":18},{"coinDenom":"ezeth","coinMinimalDenom":"ibc/39AAE0F5F918B731BEF1E02E9BAED33C242805F668B0A941AC509FB569FE51CB","coinDecimals":18},{"coinDenom":"usde","coinMinimalDenom":"ibc/BFFE212A23384C4EB055CF6F95A1F5EC1BE0F9BD286FAA66C3748F0444E67D63","coinDecimals":18},{"coinDenom":"ena","coinMinimalDenom":"ibc/257FF64F160106F6EE43CEE7C761DA64C1346221895373CC810FFA1BFAC5A7CD","coinDecimals":18},{"coinDenom":"eeth","coinMinimalDenom":"ibc/8D0FFEA4EDB04E3C1738C9599B66AE49683E0540FC4C1214AC84534C200D818B","coinDecimals":18},{"coinDenom":"pxeth","coinMinimalDenom":"ibc/D09BB89B2187EF13EF006B44510749B0F02FD0B34F8BB55C70D812A1FF6148C7","coinDecimals":18},{"coinDenom":"crvusd","coinMinimalDenom":"ibc/63551E7BB24008F0AFC1CB051A423A5104F781F035F8B1A191264B7086A0A0F6","coinDecimals":18},{"coinDenom":"WIHA","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/wiha","coinDecimals":6},{"coinDenom":"CRAZYHORSE","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/crazyhorse","coinDecimals":6},{"coinDenom":"COCA","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/coca","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/0233A3F2541FD43DBCA569B27AF886E97F5C03FC0305E4A8A3FAC6AC26249C7A","coinDecimals":6},{"coinDenom":"edgesol","coinMinimalDenom":"ibc/B83F9E20B4A07FA8846880000BD9D8985D89567A090F5E9390C64E81C39B4607","coinDecimals":9},{"coinDenom":"lst","coinMinimalDenom":"ibc/F618D130A2B8203D169811658BD0361F18DC2453085965FA0E5AEB8018DD54EE","coinDecimals":9},{"coinDenom":"jitosol","coinMinimalDenom":"ibc/9A83BDF4C8C5FFDDE735533BC8CD4363714A6474AED1C2C492FB003BB77C7982","coinDecimals":9},{"coinDenom":"wsol","coinMinimalDenom":"ibc/0F9E9277B61A78CB31014D541ACA5BF6AB06DFC4524C4C836490B131DAAECD78","coinDecimals":9},{"coinDenom":"allUSDT","coinMinimalDenom":"factory/osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek/alloyed/allUSDT","coinDecimals":6},{"coinDenom":"whine","coinMinimalDenom":"ibc/A8C568580D613F16F7E9075EA9FAD69FEBE0CC1F4AF46C60255FEC4459C166F1","coinDecimals":6},{"coinDenom":"BAG","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bag","coinDecimals":6},{"coinDenom":"allBTC","coinMinimalDenom":"factory/osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3/alloyed/allBTC","coinDecimals":8},{"coinDenom":"n43","coinMinimalDenom":"ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58","coinDecimals":6},{"coinDenom":"rakoff","coinMinimalDenom":"ibc/46579C587A0B8CF8B0A1FF6B0EFA2082F11876578E47FC81A9CAAD31F424AF98","coinDecimals":6},{"coinDenom":"arbitrum-weth","coinMinimalDenom":"ibc/64E62451C9A5682FF3047429C6E4714A02CDC0C35DE35CAB01E18D1188004CEB","coinDecimals":18},{"coinDenom":"base-weth","coinMinimalDenom":"ibc/D7D6DEF2A4F7ED0A6F5F0E266C1B2C9726E82F67EBBE49BBB47B3DEC289F8D7B","coinDecimals":18},{"coinDenom":"polygon-weth","coinMinimalDenom":"ibc/F9EB60AC212DBF05F4C5ED0FDE03BB9F08309B0EE9899A406AD4B904CF84968E","coinDecimals":18},{"coinDenom":"stISLM","coinMinimalDenom":"ibc/245C3CA604AAB4BB9EEA5E86F23F52D59253D8722C8FC9C4E3E69F77C5CD3D2F","coinDecimals":18},{"coinDenom":"mand","coinMinimalDenom":"ibc/739D70CB432FE1C6D94AF306B68C14F4CFB0B9EDD1238D3A8718B1B0E84E8547","coinDecimals":18},{"coinDenom":"neutaro","coinMinimalDenom":"ibc/DAED51CBD967A3BE0C467687970AFD97B202AFE4A1718B36936F49178AFE0133","coinDecimals":6},{"coinDenom":"wormhole/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP/6","coinMinimalDenom":"ibc/E0D6A7FFAE26FA90C8F1AA3461A5A21E74DB154F183EAE56C96769F48F81FCA2","coinDecimals":6},{"coinDenom":"usdy","coinMinimalDenom":"ibc/23104D411A6EB6031FA92FB75F227422B84989969E91DCAD56A535DD7FF0A373","coinDecimals":18},{"coinDenom":"TURD","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/turd","coinDecimals":6},{"coinDenom":"fct","coinMinimalDenom":"ibc/E43ABCC7E80E99E4E6E1226AE5695DDE0F83CB5C257CD04D47C36B8B90C1C839","coinDecimals":6},{"coinDenom":"allETH","coinMinimalDenom":"factory/osmo1k6c8jln7ejuqwtqmay3yvzrg3kueaczl96pk067ldg8u835w0yhsw27twm/alloyed/allETH","coinDecimals":18},{"coinDenom":"allSOL","coinMinimalDenom":"factory/osmo1n3n75av8awcnw4jl62n3l48e6e4sxqmaf97w5ua6ddu4s475q5qq9udvx4/alloyed/allSOL","coinDecimals":9},{"coinDenom":"lava","coinMinimalDenom":"ibc/1AEF145C549D4F9847C79E49710B198C294C7F4A107F4610DEE8E725FFC4B378","coinDecimals":6},{"coinDenom":"penumbra","coinMinimalDenom":"ibc/0FA9232B262B89E77D1335D54FB1E1F506A92A7E4B51524B400DC69C68D28372","coinDecimals":6},{"coinDenom":"trx","coinMinimalDenom":"factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/TRX.rt","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/USDT.rt","coinDecimals":6},{"coinDenom":"COSMO","coinMinimalDenom":"ibc/4925733868E7999F5822C961ADE9470A7FC5FA4A560BAE1DE102783C3F64C201","coinDecimals":6},{"coinDenom":"stBAND","coinMinimalDenom":"ibc/603140E681973C7A3A33B06B1D377AAD0F6AC376119735CECC04C9184A1AB080","coinDecimals":6},{"coinDenom":"COOK","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/COOK","coinDecimals":6},{"coinDenom":"trx","coinMinimalDenom":"factory/osmo14mafhhp337yjj2aujplawz0tks6jd2lel4hkwz4agyzhvvztzaqsqzjq8x/alloyed/allTRX","coinDecimals":6},{"coinDenom":"ROUTE","coinMinimalDenom":"ibc/3F8F00094F0F79D17750FF69C5F09B078084018570AAF4F1C92C86D3F73E6488","coinDecimals":18},{"coinDenom":"op","coinMinimalDenom":"factory/osmo1nufyzqlm8qhu2w7lm0l4rrax0ec8rsk69mga4tel8eare7c7ljaqpk2lyg/alloyed/allOP","coinDecimals":12},{"coinDenom":"op","coinMinimalDenom":"ibc/14A291DD362798D6805B7ABCB8D09AEEE02176108F89FA09AA43EA2EE096A2A9","coinDecimals":18},{"coinDenom":"shib","coinMinimalDenom":"factory/osmo1f588gk9dazpsueevdl2w6wfkmfmhg5gdvg2uerdlzl0atkasqhsq59qc6a/alloyed/allSHIB","coinDecimals":12},{"coinDenom":"arb","coinMinimalDenom":"factory/osmo1p7x454ex08s4f9ztmm7wfv7lvtgdkfztj2u7v7fezfcauy85q35qmqrdpk/alloyed/allARB","coinDecimals":12},{"coinDenom":"link","coinMinimalDenom":"factory/osmo18zdw5yvs6gfp95rp74qqwug9yduw2fyr8kplk2xgs726s9axc5usa2vpgw/alloyed/allLINK","coinDecimals":12},{"coinDenom":"pepe","coinMinimalDenom":"factory/osmo1nnlxegt0scm9qkzys9c874t0ntapv4epfjy2w49c0xdrp3dr0v4ssmelzx/alloyed/allPEPE","coinDecimals":12},{"coinDenom":"dot","coinMinimalDenom":"factory/osmo1r53fx9fvcdzncrs7zkn4gw5vfelx5gk8k5wc6wqha2jpkh992rusr5tk02/alloyed/allDOT","coinDecimals":10},{"coinDenom":"unicorn","coinMinimalDenom":"ibc/C91210281CEB708DC6E41A47FC9EC298F45712273DD58C682BEBAD00DCB59DC2","coinDecimals":6},{"coinDenom":"DEEN","coinMinimalDenom":"ibc/108604FDBE97DAEF128FD4ECFEB2A8AFC2D04A7162C97EAA2FD5BCB0869D0BBC","coinDecimals":6},{"coinDenom":"CosmoUSD","coinMinimalDenom":"factory/osmo104jtrwcljnxfljhml8mxrw7qetcsdmqvy3sprw/ucosmousd","coinDecimals":6},{"coinDenom":"XTRUMP","coinMinimalDenom":"factory/osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl/XTRUMP","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/2AD3C64D19ADFBB522CD738B58F421102143F827C1CAFF574A8BF0B81017D53D","coinDecimals":6},{"coinDenom":"fBAD","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBAD","coinDecimals":9},{"coinDenom":"fMAD","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fMAD","coinDecimals":9},{"coinDenom":"fSLOTH","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fSLOTH","coinDecimals":9},{"coinDenom":"fNUT","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fNUT","coinDecimals":9},{"coinDenom":"MARS","coinMinimalDenom":"ibc/B67DF59507B3755EEDE0866C449445BD54B4DA82CCEBA89D775E53DC35664255","coinDecimals":6},{"coinDenom":"ton","coinMinimalDenom":"ibc/905889A7F0B94F1CE1506D9BADF13AE9141E4CBDBCD565E1DFC7AE418B3E3E98","coinDecimals":9},{"coinDenom":"ton","coinMinimalDenom":"factory/osmo12lnwf54yd30p6amzaged2atln8k0l32n7ncxf04ctg7u7ymnsy7qkqgsw4/alloyed/allTON","coinDecimals":9},{"coinDenom":"display_stBTC","coinMinimalDenom":"ibc/453B5B25834A5D4B8FE1E894E69D73F46424F28E8ED3D8E8CA654AEFF1EC5D3B","coinDecimals":18},{"coinDenom":"BVT0","coinMinimalDenom":"factory/osmo1xu0gk9aggv79597xwazyfzaggv2pze9z7cq3p9p72tkkux9a7xaqufa792/BVT","coinDecimals":18},{"coinDenom":"BVT1","coinMinimalDenom":"factory/osmo16nxtnrnl7lctvnhhpcxqmmpv63n93zgg0ukaveyc0jl4dtad79cs53c3an/BVT","coinDecimals":18},{"coinDenom":"AVAIL","coinMinimalDenom":"factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/AVAIL.rt","coinDecimals":18},{"coinDenom":"eure","coinMinimalDenom":"ibc/92AE2F53284505223A1BB80D132F859A00E190C6A738772F0B3EF65E20BA484F","coinDecimals":6},{"coinDenom":"andr","coinMinimalDenom":"ibc/631DB9935E8523BDCF76B55129F5238A14C809CCB3B43AECC157DC19702F3F9E","coinDecimals":6},{"coinDenom":"ckBTC","coinMinimalDenom":"factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-icrc-ckBTC","coinDecimals":8},{"coinDenom":"fWIZ","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWIZ","coinDecimals":9},{"coinDenom":"fWITCH","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWITCH","coinDecimals":9},{"coinDenom":"fCRYPTONIUM","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fCRYPTONIUM","coinDecimals":9},{"coinDenom":"fATLAS","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fATLAS","coinDecimals":9},{"coinDenom":"fGECK","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fGECK","coinDecimals":9},{"coinDenom":"fBULLS","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBULLS","coinDecimals":9},{"coinDenom":"SIN","coinMinimalDenom":"ibc/2BF7FB3908B469FA9672767DC74AF8A18E2F47F8B623B0685DE290B828FCBD23","coinDecimals":6},{"coinDenom":"KIMA","coinMinimalDenom":"ibc/629B5691DE993DCD07AA1B0587AD52A7FA4E8F28B77DE15BCBDF936CA6F76E6C","coinDecimals":6},{"coinDenom":"stos","coinMinimalDenom":"ibc/ABD49F44559CB3E557CC458459CB6A67CEBD66E23C7674A0B2B445230BDA1F6C","coinDecimals":18},{"coinDenom":"uni","coinMinimalDenom":"ibc/AE2719773D6FCDD05AC17B1ED63F672F5F9D84144A61965F348C86C2A83AD161","coinDecimals":18},{"coinDenom":"allUNI","coinMinimalDenom":"factory/osmo1eqjda4pc6e09jtxzxggf6jl3jye2yn453ja58we5gxwzmf5ah28qvlnaz8/alloyed/allUNI","coinDecimals":12},{"coinDenom":"lp:8:osmo","coinMinimalDenom":"ibc/54B2D9DC9602A1CE2A0329D51C6A1C7C4ADE71477186AEAAA549318C4513A453","coinDecimals":6},{"coinDenom":"int3","coinMinimalDenom":"ibc/7D29C888219883C47C623578ACACFC89CC29AA70FBF09C895A1EED911BF90F32","coinDecimals":6},{"coinDenom":"doge","coinMinimalDenom":"ibc/B3DFDC2958A2BE482532DA3B6B5729B469BE7475598F7487D98B1B3E085245DE","coinDecimals":8},{"coinDenom":"btc","coinMinimalDenom":"ibc/2F4258D6E1E01B203D6CA83F2C7E4959615053A21EC2C2FC196F7911CAC832EF","coinDecimals":8},{"coinDenom":"bch","coinMinimalDenom":"ibc/869E01805EBBDDCAEA588666CD5149728B7DC7D69F30D92F77AD67F77CEB3FDA","coinDecimals":8},{"coinDenom":"ltc","coinMinimalDenom":"ibc/905326586AE1C86AC8B1CDB20BE957DE5FB23963EDD2C9ADD3E835CC22115A46","coinDecimals":8},{"coinDenom":"ton","coinMinimalDenom":"ibc/DDE1238DCBC338C0FD0700A72CBD64C017B7A646C4A46789ADFB5D47F1E52E38","coinDecimals":9},{"coinDenom":"usdt","coinMinimalDenom":"ibc/57B63A0795B6BC0AC4EFD0D4DEE9FE71FCC1D0FFA87F6280C9CDEF4F6727A173","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/EEA21E12A250B7FBBCBBBD1F7AA78984F5C12D684B32EBEEFC585FF596A7BCDA","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/2F6003A92088B989A159C593C551DF7B04FA0A0419CA3ED087E45E0006ECFF6E","coinDecimals":6},{"coinDenom":"cbbtc","coinMinimalDenom":"ibc/616C2EA69BC328F245CE449785CB0B526B462C48F19DCF9B3D30699579B4308A","coinDecimals":8},{"coinDenom":"fbtc","coinMinimalDenom":"ibc/22C342A34DD0189AC2B2697EE76C360A9FBA53748ABA76E12C3A9E9F5F1E130F","coinDecimals":8},{"coinDenom":"lbtc","coinMinimalDenom":"ibc/4AC81C97BBB5482536F6401328E0E10BCCD98F0F471DCF64319A811E25E53CAB","coinDecimals":8},{"coinDenom":"rbtc","coinMinimalDenom":"factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/BTC.rt","coinDecimals":18},{"coinDenom":"allDOGE","coinMinimalDenom":"factory/osmo10pk4crey8fpdyqd62rsau0y02e3rk055w5u005ah6ly7k849k5tsf72x40/alloyed/allDOGE","coinDecimals":8},{"coinDenom":"allLTC","coinMinimalDenom":"factory/osmo1csp8fk353hnq2tmulklecxpex43qmjvrkxjcsh4c3eqcw2vjcslq5jls9v/alloyed/allLTC","coinDecimals":8},{"coinDenom":"allBCH","coinMinimalDenom":"factory/osmo1cranx3twqxfrgeqvgsu262gy54vafpc9xap6scye99v244zl970s7kw2sz/alloyed/allBCH","coinDecimals":8},{"coinDenom":"om","coinMinimalDenom":"ibc/164807F6226F91990F358C6467EEE8B162E437BDCD3DADEC3F0CE20693720795","coinDecimals":6},{"coinDenom":"atone","coinMinimalDenom":"ibc/715283E4A955EB803AB1DD30B488587A4D63BF0B51BADA537053DEE479BA10D6","coinDecimals":6},{"coinDenom":"Spice","coinMinimalDenom":"factory/osmo1n6asrjy9754q8y9jsxqf557zmsv3s3xa5m9eg5/uspice","coinDecimals":6},{"coinDenom":"yum","coinMinimalDenom":"ibc/21D8071EF5B02A86D945430D859A594CBF28287D38104A264BB9FD3B22BBF5DE","coinDecimals":18},{"coinDenom":"ygata","coinMinimalDenom":"ibc/50F886EFA15E1FF3D9226B177083A1EFF944176181C70B6131D74FE5AFB1F2C0","coinDecimals":6},{"coinDenom":"DGN","coinMinimalDenom":"ibc/3B95D63B520C283BCA86F8CD426D57584039463FD684A5CBA31D2780B86A1995","coinDecimals":6},{"coinDenom":"SYNT","coinMinimalDenom":"ibc/1B454982D3746951510D3845145B83628D4ED380D95722C8077776C4689F973A","coinDecimals":6},{"coinDenom":"BOMU","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bomu","coinDecimals":6},{"coinDenom":"dATOM","coinMinimalDenom":"ibc/C1B4D4804EB8F95FFB75E6395A301F0AD6D7DDE5C3A45571B70E46A368DD353E","coinDecimals":6},{"coinDenom":"KIMA","coinMinimalDenom":"ibc/A6712952E566B8A9F29D0A533F043C3CE3CF9870B01A2180E390133119C14A71","coinDecimals":6},{"coinDenom":"fury","coinMinimalDenom":"ibc/42D0FBF9DDC72D7359D309A93A6DF9F6FDEE3987EA1C5B3CDE95C06FCE183F12","coinDecimals":6},{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07","coinDecimals":18},{"coinDenom":"dhp","coinMinimalDenom":"ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9","coinDecimals":6},{"coinDenom":"avalanche-usdc","coinMinimalDenom":"ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43","coinDecimals":6},{"coinDenom":"nom","coinMinimalDenom":"ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C","coinDecimals":6},{"coinDenom":"ymos","coinMinimalDenom":"factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos","coinDecimals":6},{"coinDenom":"factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz","coinMinimalDenom":"factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz","coinDecimals":0},{"coinDenom":"ashLAB","coinMinimalDenom":"factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash","coinDecimals":6},{"coinDenom":"grac","coinMinimalDenom":"ibc/58E4261D2E21FE3A459C290A9F97F3DCD257B28F48AAE828298B38E048804829","coinDecimals":6},{"coinDenom":"earnUSDC","coinMinimalDenom":"factory/osmo1vf6e300hv2qe7r5rln8deft45ewgyytjnwfrdfcv5rgzrfy0s6cswjqf9r/mars-usdc-looped","coinDecimals":6},{"coinDenom":"earnCDT","coinMinimalDenom":"factory/osmo1jw6r68y0uhfmqagc7uhtdddctc7wq95pncvrqnvtd47w4hx46p7se9nju5/earn-cdt","coinDecimals":6},{"coinDenom":"Sherpa","coinMinimalDenom":"factory/osmo1n6asrjy9754q8y9jsxqf557zmsv3s3xa5m9eg5/usherpa","coinDecimals":6},{"coinDenom":"allFIL","coinMinimalDenom":"factory/osmo1ss0n3ghv5rr4z4y54fnkprc69tegmdm3ejlkgr2z4utnyg7eljgs9pztvs/alloyed/allFIL","coinDecimals":12},{"coinDenom":"icp","coinMinimalDenom":"factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-native-ICP","coinDecimals":8}],"rest":"https://lcd.osmosis.zone/","rpc":"https://rpc.osmosis.zone/","bech32Config":{"bech32PrefixAccAddr":"osmo","bech32PrefixAccPub":"osmopub","bech32PrefixValAddr":"osmovaloper","bech32PrefixValPub":"osmovaloperpub","bech32PrefixConsAddr":"osmovalcons","bech32PrefixConsPub":"osmovalconspub"},"chainName":"osmosis","feeCurrencies":[{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"panacea-3","currencies":[{"coinDenom":"med","coinMinimalDenom":"umed","coinDecimals":6}],"rest":"https://api.gopanacea.org","rpc":"https://rpc.gopanacea.org","bech32Config":{"bech32PrefixAccAddr":"panacea","bech32PrefixAccPub":"panaceapub","bech32PrefixValAddr":"panaceavaloper","bech32PrefixValPub":"panaceavaloperpub","bech32PrefixConsAddr":"panaceavalcons","bech32PrefixConsPub":"panaceavalconspub"},"chainName":"panacea","feeCurrencies":[{"coinDenom":"med","coinMinimalDenom":"umed","coinDecimals":6,"gasPriceStep":{"low":5,"average":7,"high":9}}],"stakeCurrency":{"coinDenom":"med","coinMinimalDenom":"umed","coinDecimals":6},"bip44":{"coinType":371}},{"chainId":"passage-2","currencies":[{"coinDenom":"pasg","coinMinimalDenom":"upasg","coinDecimals":6}],"rest":"https://api.passage.vitwit.com","rpc":"https://rpc.passage.vitwit.com","bech32Config":{"bech32PrefixAccAddr":"pasg","bech32PrefixAccPub":"pasgpub","bech32PrefixValAddr":"pasgvaloper","bech32PrefixValPub":"pasgvaloperpub","bech32PrefixConsAddr":"pasgvalcons","bech32PrefixConsPub":"pasgvalconspub"},"chainName":"passage","feeCurrencies":[{"coinDenom":"pasg","coinMinimalDenom":"upasg","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.0025,"high":0.01}}],"stakeCurrency":{"coinDenom":"pasg","coinMinimalDenom":"upasg","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"core-1","currencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},{"coinDenom":"stkatom","coinMinimalDenom":"stk/uatom","coinDecimals":6},{"coinDenom":"pstake","coinMinimalDenom":"ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444","coinDecimals":18},{"coinDenom":"atom","coinMinimalDenom":"ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E","coinDecimals":18},{"coinDenom":"stkosmo","coinMinimalDenom":"stk/uosmo","coinDecimals":6},{"coinDenom":"stkdydx","coinMinimalDenom":"stk/adydx","coinDecimals":18},{"coinDenom":"stkstars","coinMinimalDenom":"stk/ustars","coinDecimals":6},{"coinDenom":"stars","coinMinimalDenom":"ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B","coinDecimals":6},{"coinDenom":"shd","coinMinimalDenom":"ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B","coinDecimals":8},{"coinDenom":"stkhuahua","coinMinimalDenom":"stk/uhuahua","coinDecimals":6},{"coinDenom":"huahua","coinMinimalDenom":"ibc/B597D779FCDD9021263C98A48F1AFA9D2BCCCE980F397CDE5681CCEDE7DEE1A4","coinDecimals":6},{"coinDenom":"stkxprt","coinMinimalDenom":"stk/uxprt","coinDecimals":6},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/CCA9F9B22D39884C09975D45E1869B73A12B87080EE53CB44905CE2C422CA228","coinDecimals":8}],"rest":"https://rest.core.persistence.one","rpc":"https://rpc.core.persistence.one","bech32Config":{"bech32PrefixAccAddr":"persistence","bech32PrefixAccPub":"persistencepub","bech32PrefixValAddr":"persistencevaloper","bech32PrefixValPub":"persistencevaloperpub","bech32PrefixConsAddr":"persistencevalcons","bech32PrefixConsPub":"persistencevalconspub"},"chainName":"persistence","feeCurrencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6}],"stakeCurrency":{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"planq_7070-2","currencies":[{"coinDenom":"planq","coinMinimalDenom":"aplanq","coinDecimals":18},{"coinDenom":"srcx","coinMinimalDenom":"erc20/0x091F9A57A3F58d758b6572E9d41675918EAC7F09","coinDecimals":9},{"coinDenom":"meme","coinMinimalDenom":"ibc/747FF58D3F211497581252CEBE11D7E785FC1E53AC5C29497A361E3830F1AF4A","coinDecimals":6}],"rest":"https://rest.planq.network","rpc":"https://rpc.planq.network","bech32Config":{"bech32PrefixAccAddr":"plq","bech32PrefixAccPub":"plqpub","bech32PrefixValAddr":"plqvaloper","bech32PrefixValPub":"plqvaloperpub","bech32PrefixConsAddr":"plqvalcons","bech32PrefixConsPub":"plqvalconspub"},"chainName":"planq","feeCurrencies":[{"coinDenom":"planq","coinMinimalDenom":"aplanq","coinDecimals":18,"gasPriceStep":{"low":30000000000,"average":35000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"planq","coinMinimalDenom":"aplanq","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"point_10687-1","currencies":[{"coinDenom":"point","coinMinimalDenom":"apoint","coinDecimals":18}],"rest":"https://rpc-mainnet-1.point.space:1317","rpc":"https://rpc-mainnet-1.point.space:26657","bech32Config":{"bech32PrefixAccAddr":"point","bech32PrefixAccPub":"pointpub","bech32PrefixValAddr":"pointvaloper","bech32PrefixValPub":"pointvaloperpub","bech32PrefixConsAddr":"pointvalcons","bech32PrefixConsPub":"pointvalconspub"},"chainName":"point","feeCurrencies":[{"coinDenom":"point","coinMinimalDenom":"apoint","coinDecimals":18,"gasPriceStep":{"low":5000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"point","coinMinimalDenom":"apoint","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"pio-mainnet-1","currencies":[{"coinDenom":"hash","coinMinimalDenom":"nhash","coinDecimals":9}],"rest":"https://api-provenance.takeshi.team","rpc":"https://rpc-provenance.takeshi.team/","bech32Config":{"bech32PrefixAccAddr":"pb","bech32PrefixAccPub":"pbpub","bech32PrefixValAddr":"pbvaloper","bech32PrefixValPub":"pbvaloperpub","bech32PrefixConsAddr":"pbvalcons","bech32PrefixConsPub":"pbvalconspub"},"chainName":"provenance","feeCurrencies":[{"coinDenom":"hash","coinMinimalDenom":"nhash","coinDecimals":9,"gasPriceStep":{"low":1905,"average":2100,"high":2500}}],"stakeCurrency":{"coinDenom":"hash","coinMinimalDenom":"nhash","coinDecimals":9},"bip44":{"coinType":505}},{"chainId":"pryzm-1","currencies":[{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6},{"coinDenom":"auuu","coinMinimalDenom":"factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6},{"coinDenom":"INJ","coinMinimalDenom":"ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255","coinDecimals":18},{"coinDenom":"osmo","coinMinimalDenom":"ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/BF28D9C17E0306B194D50F51C3B2590BEAD15E04E03ADD34C3A26E62D85C9676","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/B8AF5D92165F35AB31F3FC7C7B444B9D240760FA5D406C49D24862BD0284E395","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/B9E4FD154C92D3A23BEA029906C4C5FF2FE74CB7E3A058290B77197A263CF88B","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/F8CA5236869F819BC006EEF088E67889A26E4140339757878F0F4E229CDDA858","coinDecimals":18},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/FA78980867B7E87F382CDA00275C55DDC248CABC7DEE27AC6868CCF97DD5E02F","coinDecimals":6},{"coinDenom":"stDYDX","coinMinimalDenom":"ibc/120DC39B61CC121E91525C1D51624E41BBE74C537D7B0BE50BBFF9A00E37B6EE","coinDecimals":18},{"coinDenom":"dATOM","coinMinimalDenom":"ibc/EA6E1E8BA2EB9F681C4BD12C8C81A46530A62934F2BD561B120A00F46946CE87","coinDecimals":6},{"coinDenom":"catom","coinMinimalDenom":"c:uatom","coinDecimals":6},{"coinDenom":"cINJ","coinMinimalDenom":"c:inj","coinDecimals":18},{"coinDenom":"cosmo","coinMinimalDenom":"c:uosmo","coinDecimals":6},{"coinDenom":"cluna","coinMinimalDenom":"c:uluna","coinDecimals":6},{"coinDenom":"cauuu","coinMinimalDenom":"factory/pryzm1qg5ega6dykkxc307y25pecuufrjkxkaggkkxh7nad0vhyhtuhw3sk0s70x/cuauuu","coinDecimals":6},{"coinDenom":"ctia","coinMinimalDenom":"c:utia","coinDecimals":6},{"coinDenom":"pATOM30Sep2024","coinMinimalDenom":"p:uatom:30Sep2024","coinDecimals":6},{"coinDenom":"pATOM31Dec2024","coinMinimalDenom":"p:uatom:31Dec2024","coinDecimals":6},{"coinDenom":"pATOM31Dec2025","coinMinimalDenom":"p:uatom:31Dec2025","coinDecimals":6},{"coinDenom":"pATOM31Dec2026","coinMinimalDenom":"p:uatom:31Dec2026","coinDecimals":6},{"coinDenom":"pOSMO30Sep2024","coinMinimalDenom":"p:uosmo:30Sep2024","coinDecimals":6},{"coinDenom":"pOSMO31Dec2024","coinMinimalDenom":"p:uosmo:31Dec2024","coinDecimals":6},{"coinDenom":"pOSMO31Dec2025","coinMinimalDenom":"p:uosmo:31Dec2025","coinDecimals":6},{"coinDenom":"pOSMO31Dec2026","coinMinimalDenom":"p:uosmo:31Dec2026","coinDecimals":6},{"coinDenom":"pINJ30Sep2024","coinMinimalDenom":"p:inj:30Sep2024","coinDecimals":18},{"coinDenom":"pINJ31Dec2024","coinMinimalDenom":"p:inj:31Dec2024","coinDecimals":18},{"coinDenom":"pINJ31Dec2025","coinMinimalDenom":"p:inj:31Dec2025","coinDecimals":18},{"coinDenom":"pINJ31Dec2026","coinMinimalDenom":"p:inj:31Dec2026","coinDecimals":18},{"coinDenom":"pLUNA30Sep2024","coinMinimalDenom":"p:uluna:30Sep2024","coinDecimals":6},{"coinDenom":"pLUNA31Dec2024","coinMinimalDenom":"p:uluna:31Dec2024","coinDecimals":6},{"coinDenom":"pLUNA31Dec2026","coinMinimalDenom":"p:uluna:31Dec2026","coinDecimals":6},{"coinDenom":"pLUNA31Dec2025","coinMinimalDenom":"p:uluna:31Dec2025","coinDecimals":6},{"coinDenom":"pAUUU30Sep2024","coinMinimalDenom":"p:uauuu:30Sep2024","coinDecimals":6},{"coinDenom":"pAUUU31Dec2024","coinMinimalDenom":"p:uauuu:31Dec2024","coinDecimals":6},{"coinDenom":"pAUUU31Dec2025","coinMinimalDenom":"p:uauuu:31Dec2025","coinDecimals":6},{"coinDenom":"pAUUU31Dec2026","coinMinimalDenom":"p:uauuu:31Dec2026","coinDecimals":6},{"coinDenom":"pstTIA30Sep2024","coinMinimalDenom":"p:stutia:30Sep2024","coinDecimals":6},{"coinDenom":"pstTIA31Dec2024","coinMinimalDenom":"p:stutia:31Dec2024","coinDecimals":6},{"coinDenom":"pstTIA31Dec2025","coinMinimalDenom":"p:stutia:31Dec2025","coinDecimals":6},{"coinDenom":"pstTIA31Dec2026","coinMinimalDenom":"p:stutia:31Dec2026","coinDecimals":6},{"coinDenom":"pstDYDX30Sep2024","coinMinimalDenom":"p:stadydx:30Sep2024","coinDecimals":18},{"coinDenom":"pstDYDX31Dec2024","coinMinimalDenom":"p:stadydx:31Dec2024","coinDecimals":18},{"coinDenom":"pstDYDX31Dec2025","coinMinimalDenom":"p:stadydx:31Dec2025","coinDecimals":18},{"coinDenom":"pstDYDX31Dec2026","coinMinimalDenom":"p:stadydx:31Dec2026","coinDecimals":18},{"coinDenom":"pdATOM31Dec2024","coinMinimalDenom":"p:udatom:31Dec2024","coinDecimals":6},{"coinDenom":"pdATOM30Jun2025","coinMinimalDenom":"p:udatom:30Jun2025","coinDecimals":6},{"coinDenom":"pdATOM31Dec2025","coinMinimalDenom":"p:udatom:31Dec2025","coinDecimals":6},{"coinDenom":"pdATOM31Dec2026","coinMinimalDenom":"p:udatom:31Dec2026","coinDecimals":6},{"coinDenom":"pTIA31Dec2024","coinMinimalDenom":"p:utia:31Dec2024","coinDecimals":6},{"coinDenom":"pTIA31Dec2025","coinMinimalDenom":"p:utia:31Dec2025","coinDecimals":6},{"coinDenom":"pTIA31Dec2026","coinMinimalDenom":"p:utia:31Dec2026","coinDecimals":6},{"coinDenom":"yATOM30Sep2024","coinMinimalDenom":"y:uatom:30Sep2024","coinDecimals":6},{"coinDenom":"yATOM31Dec2024","coinMinimalDenom":"y:uatom:31Dec2024","coinDecimals":6},{"coinDenom":"yATOM31Dec2025","coinMinimalDenom":"y:uatom:31Dec2025","coinDecimals":6},{"coinDenom":"yATOM31Dec2026","coinMinimalDenom":"y:uatom:31Dec2026","coinDecimals":6},{"coinDenom":"yOSMO30Sep2024","coinMinimalDenom":"y:uosmo:30Sep2024","coinDecimals":6},{"coinDenom":"yOSMO31Dec2024","coinMinimalDenom":"y:uosmo:31Dec2024","coinDecimals":6},{"coinDenom":"yOSMO31Dec2025","coinMinimalDenom":"y:uosmo:31Dec2025","coinDecimals":6},{"coinDenom":"yOSMO31Dec2026","coinMinimalDenom":"y:uosmo:31Dec2026","coinDecimals":6},{"coinDenom":"yINJ30Sep2024","coinMinimalDenom":"y:inj:30Sep2024","coinDecimals":18},{"coinDenom":"yINJ31Dec2024","coinMinimalDenom":"y:inj:31Dec2024","coinDecimals":18},{"coinDenom":"yINJ31Dec2025","coinMinimalDenom":"y:inj:31Dec2025","coinDecimals":18},{"coinDenom":"yINJ31Dec2026","coinMinimalDenom":"y:inj:31Dec2026","coinDecimals":18},{"coinDenom":"yLUNA30Sep2024","coinMinimalDenom":"y:uluna:30Sep2024","coinDecimals":6},{"coinDenom":"yLUNA31Dec2024","coinMinimalDenom":"y:uluna:31Dec2024","coinDecimals":6},{"coinDenom":"yLUNA31Dec2025","coinMinimalDenom":"y:uluna:31Dec2025","coinDecimals":6},{"coinDenom":"yLUNA31Dec2026","coinMinimalDenom":"y:uluna:31Dec2026","coinDecimals":6},{"coinDenom":"yAUUU30Sep2024","coinMinimalDenom":"y:uauuu:30Sep2024","coinDecimals":6},{"coinDenom":"yAUUU31Dec2024","coinMinimalDenom":"y:uauuu:31Dec2024","coinDecimals":6},{"coinDenom":"yAUUU31Dec2025","coinMinimalDenom":"y:uauuu:31Dec2025","coinDecimals":6},{"coinDenom":"yAUUU31Dec2026","coinMinimalDenom":"y:uauuu:31Dec2026","coinDecimals":6},{"coinDenom":"ystTIA30Sep2024","coinMinimalDenom":"y:stutia:30Sep2024","coinDecimals":6},{"coinDenom":"ystTIA31Dec2024","coinMinimalDenom":"y:stutia:31Dec2024","coinDecimals":6},{"coinDenom":"ystTIA31Dec2025","coinMinimalDenom":"y:stutia:31Dec2025","coinDecimals":6},{"coinDenom":"ystTIA31Dec2026","coinMinimalDenom":"y:stutia:31Dec2026","coinDecimals":6},{"coinDenom":"ystDYDX30Sep2024","coinMinimalDenom":"y:stadydx:30Sep2024","coinDecimals":18},{"coinDenom":"ystDYDX31Dec2024","coinMinimalDenom":"y:stadydx:31Dec2024","coinDecimals":18},{"coinDenom":"ystDYDX31Dec2025","coinMinimalDenom":"y:stadydx:31Dec2025","coinDecimals":18},{"coinDenom":"ystDYDX31Dec2026","coinMinimalDenom":"y:stadydx:31Dec2026","coinDecimals":18},{"coinDenom":"ydATOM31Dec2024","coinMinimalDenom":"y:udatom:31Dec2024","coinDecimals":6},{"coinDenom":"ydATOM30Jun2025","coinMinimalDenom":"y:udatom:30Jun2025","coinDecimals":6},{"coinDenom":"ydATOM31Dec2025","coinMinimalDenom":"y:udatom:31Dec2025","coinDecimals":6},{"coinDenom":"ydATOM31Dec2026","coinMinimalDenom":"y:udatom:31Dec2026","coinDecimals":6},{"coinDenom":"yTIA31Dec2024","coinMinimalDenom":"y:utia:31Dec2024","coinDecimals":6},{"coinDenom":"yTIA31Dec2025","coinMinimalDenom":"y:utia:31Dec2025","coinDecimals":6},{"coinDenom":"yTIA31Dec2026","coinMinimalDenom":"y:utia:31Dec2026","coinDecimals":6},{"coinDenom":"lp:6:usdc.axl-usdc","coinMinimalDenom":"lp:6:uusdc.axl-uusdc","coinDecimals":6},{"coinDenom":"lp:0:atom","coinMinimalDenom":"lp:0:uatom","coinDecimals":6},{"coinDenom":"lp:2:atomypt-atom","coinMinimalDenom":"lp:2:uatomypt-uatom","coinDecimals":6},{"coinDenom":"lp:3:atom-usdc","coinMinimalDenom":"lp:3:uatom-uusdc","coinDecimals":6},{"coinDenom":"lp:1:INJ","coinMinimalDenom":"lp:1:inj","coinDecimals":18},{"coinDenom":"lp:4:INJypt-INJ","coinMinimalDenom":"lp:4:injypt-inj","coinDecimals":18},{"coinDenom":"lp:5:INJ-usdc","coinMinimalDenom":"lp:5:inj-uusdc","coinDecimals":18},{"coinDenom":"lp:8:osmo","coinMinimalDenom":"lp:8:uosmo","coinDecimals":6},{"coinDenom":"lp:10:osmoypt-osmo","coinMinimalDenom":"lp:10:uosmoypt-uosmo","coinDecimals":6},{"coinDenom":"lp:11:osmo-usdc","coinMinimalDenom":"lp:11:uosmo-uusdc","coinDecimals":6},{"coinDenom":"lp:9:luna","coinMinimalDenom":"lp:9:uluna","coinDecimals":6},{"coinDenom":"lp:12:lunaypt-luna","coinMinimalDenom":"lp:12:ulunaypt-uluna","coinDecimals":6},{"coinDenom":"lp:13:luna-usdc","coinMinimalDenom":"lp:13:uluna-uusdc","coinDecimals":6},{"coinDenom":"lp:14:auuu","coinMinimalDenom":"lp:14:uauuu","coinDecimals":6},{"coinDenom":"lp:17:auuuypt-auuu","coinMinimalDenom":"lp:17:uauuuypt-uauuu","coinDecimals":6},{"coinDenom":"lp:7:auuu-usdc","coinMinimalDenom":"lp:7:uauuu-uusdc","coinDecimals":6},{"coinDenom":"lp:15:stdydx","coinMinimalDenom":"lp:15:stadydx","coinDecimals":18},{"coinDenom":"lp:18:stdydxypt-dydx","coinMinimalDenom":"lp:18:stadydxypt-adydx","coinDecimals":18},{"coinDenom":"lp:19:dydx-usdc","coinMinimalDenom":"lp:19:adydx-uusdc","coinDecimals":18},{"coinDenom":"lp:16:sttia","coinMinimalDenom":"lp:16:stutia","coinDecimals":6},{"coinDenom":"lp:20:sttiaypt-tia","coinMinimalDenom":"lp:20:stutiaypt-utia","coinDecimals":6},{"coinDenom":"lp:24:tia","coinMinimalDenom":"lp:24:utia","coinDecimals":6},{"coinDenom":"lp:25:tiaypt-tia","coinMinimalDenom":"lp:25:utiaypt-utia","coinDecimals":6},{"coinDenom":"lp:21:tia-usdc","coinMinimalDenom":"lp:21:utia-uusdc","coinDecimals":6},{"coinDenom":"lp:22:datom","coinMinimalDenom":"lp:22:udatom","coinDecimals":6},{"coinDenom":"lp:23:datomypt-atom","coinMinimalDenom":"lp:23:udatomypt-uatom","coinDecimals":6}],"rest":"https://api.pryzm.zone","rpc":"https://rpc.pryzm.zone","bech32Config":{"bech32PrefixAccAddr":"pryzm","bech32PrefixAccPub":"pryzmpub","bech32PrefixValAddr":"pryzmvaloper","bech32PrefixValPub":"pryzmvaloperpub","bech32PrefixConsAddr":"pryzmvalcons","bech32PrefixConsPub":"pryzmvalconspub"},"chainName":"pryzm","feeCurrencies":[{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.003,"high":0.004}},{"coinDenom":"INJ","coinMinimalDenom":"ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255","coinDecimals":18,"gasPriceStep":{"low":500000000,"average":600000000,"high":700000000}},{"coinDenom":"osmo","coinMinimalDenom":"ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}},{"coinDenom":"tia","coinMinimalDenom":"ibc/BF28D9C17E0306B194D50F51C3B2590BEAD15E04E03ADD34C3A26E62D85C9676","coinDecimals":6,"gasPriceStep":{"low":0.002,"average":0.003,"high":0.004}},{"coinDenom":"luna","coinMinimalDenom":"ibc/B8AF5D92165F35AB31F3FC7C7B444B9D240760FA5D406C49D24862BD0284E395","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.02,"high":0.03}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.03,"high":0.04}},{"coinDenom":"auuu","coinMinimalDenom":"factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.015,"high":0.02}},{"coinDenom":"dydx","coinMinimalDenom":"ibc/F8CA5236869F819BC006EEF088E67889A26E4140339757878F0F4E229CDDA858","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":12000000000,"high":14000000000}},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/FA78980867B7E87F382CDA00275C55DDC248CABC7DEE27AC6868CCF97DD5E02F","coinDecimals":6,"gasPriceStep":{"low":0.002,"average":0.003,"high":0.004}},{"coinDenom":"stDYDX","coinMinimalDenom":"ibc/120DC39B61CC121E91525C1D51624E41BBE74C537D7B0BE50BBFF9A00E37B6EE","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":12000000000,"high":14000000000}},{"coinDenom":"dATOM","coinMinimalDenom":"ibc/EA6E1E8BA2EB9F681C4BD12C8C81A46530A62934F2BD561B120A00F46946CE87","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.003,"high":0.004}}],"stakeCurrency":{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"PUNDIX","currencies":[{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78","coinDecimals":18},{"coinDenom":"PURSE","coinMinimalDenom":"bsc0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C","coinDecimals":18}],"rest":"https://px-rest.pundix.com","rpc":"https://px-json.pundix.com","bech32Config":{"bech32PrefixAccAddr":"px","bech32PrefixAccPub":"pxpub","bech32PrefixValAddr":"pxvaloper","bech32PrefixValPub":"pxvaloperpub","bech32PrefixConsAddr":"pxvalcons","bech32PrefixConsPub":"pxvalconspub"},"chainName":"pundix","feeCurrencies":[{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78","coinDecimals":18,"gasPriceStep":{"low":2000000000000,"average":2500000000000,"high":3000000000000}}],"stakeCurrency":{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"pylons-mainnet-1","currencies":[{"coinDenom":"rock","coinMinimalDenom":"ubedrock","coinDecimals":6}],"rest":"https://rest.nodejumper.io/pylons","rpc":"https://rpc.nodejumper.io:443/pylons","bech32Config":{"bech32PrefixAccAddr":"pylo","bech32PrefixAccPub":"pylopub","bech32PrefixValAddr":"pylovaloper","bech32PrefixValPub":"pylovaloperpub","bech32PrefixConsAddr":"pylovalcons","bech32PrefixConsPub":"pylovalconspub"},"chainName":"pylons","feeCurrencies":[{"coinDenom":"rock","coinMinimalDenom":"ubedrock","coinDecimals":6}],"stakeCurrency":{"coinDenom":"rock","coinMinimalDenom":"ubedrock","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"qfs-1","currencies":[{"coinDenom":"qfs","coinMinimalDenom":"qfs","coinDecimals":0}],"rest":"https://lcd.qfsone.com","rpc":"https://rcp.qfsone.com","bech32Config":{"bech32PrefixAccAddr":"qfs","bech32PrefixAccPub":"qfspub","bech32PrefixValAddr":"qfsvaloper","bech32PrefixValPub":"qfsvaloperpub","bech32PrefixConsAddr":"qfsvalcons","bech32PrefixConsPub":"qfsvalconspub"},"chainName":"qfs","feeCurrencies":[{"coinDenom":"qfs","coinMinimalDenom":"qfs","coinDecimals":0,"gasPriceStep":{"low":0.000001,"average":0.000005,"high":0.0001}}],"stakeCurrency":{"coinDenom":"qfs","coinMinimalDenom":"qfs","coinDecimals":0},"bip44":{"coinType":1179993431}},{"chainId":"quasar-1","currencies":[{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A","coinDecimals":6}],"rest":"https://rest.lavenderfive.com:443/quasar","rpc":"https://rpc.lavenderfive.com:443/quasar","bech32Config":{"bech32PrefixAccAddr":"quasar","bech32PrefixAccPub":"quasarpub","bech32PrefixValAddr":"quasarvaloper","bech32PrefixValPub":"quasarvaloperpub","bech32PrefixConsAddr":"quasarvalcons","bech32PrefixConsPub":"quasarvalconspub"},"chainName":"quasar","feeCurrencies":[{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.3}},{"coinDenom":"osmo","coinMinimalDenom":"ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"atom","coinMinimalDenom":"ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"quicksilver-2","currencies":[{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6},{"coinDenom":"qstars","coinMinimalDenom":"uqstars","coinDecimals":6},{"coinDenom":"qatom","coinMinimalDenom":"uqatom","coinDecimals":6},{"coinDenom":"qregen","coinMinimalDenom":"uqregen","coinDecimals":6},{"coinDenom":"qosmo","coinMinimalDenom":"uqosmo","coinDecimals":6},{"coinDenom":"qsomm","coinMinimalDenom":"uqsomm","coinDecimals":6},{"coinDenom":"qjuno","coinMinimalDenom":"uqjuno","coinDecimals":6},{"coinDenom":"qdydx","coinMinimalDenom":"aqdydx","coinDecimals":18},{"coinDenom":"qsaga","coinMinimalDenom":"uqsaga","coinDecimals":6},{"coinDenom":"qbld","coinMinimalDenom":"uqbld","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/5666A86DCC869C75F69A7938AD6DCFECAC4A09C73522599E7A85B10143E5FBD2","coinDecimals":6}],"rest":"https://api-quicksilver.takeshi.team:443","rpc":"https://rpc-quicksilver.takeshi.team:443","bech32Config":{"bech32PrefixAccAddr":"quick","bech32PrefixAccPub":"quickpub","bech32PrefixValAddr":"quickvaloper","bech32PrefixValPub":"quickvaloperpub","bech32PrefixConsAddr":"quickvalcons","bech32PrefixConsPub":"quickvalconspub"},"chainName":"quicksilver","feeCurrencies":[{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.00025}}],"stakeCurrency":{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"qwoyn-1","currencies":[{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6}],"rest":"https://rest-qwoyn.theamsolutions.info:443","rpc":"https://rpc.qwoyn.studio:443","bech32Config":{"bech32PrefixAccAddr":"qwoyn","bech32PrefixAccPub":"qwoynpub","bech32PrefixValAddr":"qwoynvaloper","bech32PrefixValPub":"qwoynvaloperpub","bech32PrefixConsAddr":"qwoynvalcons","bech32PrefixConsPub":"qwoynvalconspub"},"chainName":"qwoyn","feeCurrencies":[{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.05,"high":0.075}}],"stakeCurrency":{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"realionetwork_3301-1","currencies":[{"coinDenom":"rio","coinMinimalDenom":"ario","coinDecimals":18},{"coinDenom":"rst","coinMinimalDenom":"arst","coinDecimals":18}],"rest":"https://realio-api.genznodes.dev","rpc":"https://realio-rpc.genznodes.dev","bech32Config":{"bech32PrefixAccAddr":"realio","bech32PrefixAccPub":"realiopub","bech32PrefixValAddr":"realiovaloper","bech32PrefixValPub":"realiovaloperpub","bech32PrefixConsAddr":"realiovalcons","bech32PrefixConsPub":"realiovalconspub"},"chainName":"realio","feeCurrencies":[{"coinDenom":"rio","coinMinimalDenom":"ario","coinDecimals":18,"gasPriceStep":{"low":4000000000,"average":5000000000,"high":8000000000}}],"stakeCurrency":{"coinDenom":"rio","coinMinimalDenom":"ario","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"reb_1111-1","currencies":[{"coinDenom":"rebus","coinMinimalDenom":"arebus","coinDecimals":18}],"rest":"https://api.rebuschain.com:1317/","rpc":"https://api.rebuschain.com:26657/","bech32Config":{"bech32PrefixAccAddr":"rebus","bech32PrefixAccPub":"rebuspub","bech32PrefixValAddr":"rebusvaloper","bech32PrefixValPub":"rebusvaloperpub","bech32PrefixConsAddr":"rebusvalcons","bech32PrefixConsPub":"rebusvalconspub"},"chainName":"rebus","feeCurrencies":[{"coinDenom":"rebus","coinMinimalDenom":"arebus","coinDecimals":18,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"rebus","coinMinimalDenom":"arebus","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"regen-1","currencies":[{"coinDenom":"regen","coinMinimalDenom":"uregen","coinDecimals":6},{"coinDenom":"nct","coinMinimalDenom":"eco.uC.NCT","coinDecimals":6}],"rest":"http://public-rpc.regen.vitwit.com:1317","rpc":"https://rpc-regen.ecostake.com","bech32Config":{"bech32PrefixAccAddr":"regen","bech32PrefixAccPub":"regenpub","bech32PrefixValAddr":"regenvaloper","bech32PrefixValPub":"regenvaloperpub","bech32PrefixConsAddr":"regenvalcons","bech32PrefixConsPub":"regenvalconspub"},"chainName":"regen","feeCurrencies":[{"coinDenom":"regen","coinMinimalDenom":"uregen","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"regen","coinMinimalDenom":"uregen","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"titan-1","currencies":[{"coinDenom":"atolo","coinMinimalDenom":"uatolo","coinDecimals":6}],"rest":"https://restapi.rizon.world/","rpc":"https://rpcapi.rizon.world/","bech32Config":{"bech32PrefixAccAddr":"rizon","bech32PrefixAccPub":"rizonpub","bech32PrefixValAddr":"rizonvaloper","bech32PrefixValPub":"rizonvaloperpub","bech32PrefixConsAddr":"rizonvalcons","bech32PrefixConsPub":"rizonvalconspub"},"chainName":"rizon","feeCurrencies":[{"coinDenom":"atolo","coinMinimalDenom":"uatolo","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.035}}],"stakeCurrency":{"coinDenom":"atolo","coinMinimalDenom":"uatolo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"router_9600-1","currencies":[{"coinDenom":"ROUTE","coinMinimalDenom":"route","coinDecimals":18}],"rest":"https://sentry.lcd.routerprotocol.com/","rpc":"https://sentry.tm.rpc.routerprotocol.com/","bech32Config":{"bech32PrefixAccAddr":"router","bech32PrefixAccPub":"routerpub","bech32PrefixValAddr":"routervaloper","bech32PrefixValPub":"routervaloperpub","bech32PrefixConsAddr":"routervalcons","bech32PrefixConsPub":"routervalconspub"},"chainName":"routerchain","feeCurrencies":[{"coinDenom":"ROUTE","coinMinimalDenom":"route","coinDecimals":18,"gasPriceStep":{"low":7,"average":7,"high":10}}],"stakeCurrency":{"coinDenom":"ROUTE","coinMinimalDenom":"route","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"ssc-1","currencies":[{"coinDenom":"saga","coinMinimalDenom":"usaga","coinDecimals":6}],"rest":"https://saga-mainnet-lcd.autostake.com:443","rpc":"https://rpc-saga.keplr.app","bech32Config":{"bech32PrefixAccAddr":"saga","bech32PrefixAccPub":"sagapub","bech32PrefixValAddr":"sagavaloper","bech32PrefixValPub":"sagavaloperpub","bech32PrefixConsAddr":"sagavalcons","bech32PrefixConsPub":"sagavalconspub"},"chainName":"saga","feeCurrencies":[{"coinDenom":"saga","coinMinimalDenom":"usaga","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"saga","coinMinimalDenom":"usaga","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"scorum-1","currencies":[{"coinDenom":"scr","coinMinimalDenom":"nscr","coinDecimals":9},{"coinDenom":"gas","coinMinimalDenom":"gas","coinDecimals":0}],"rest":"https://scorum-blockchain-mainnet-api.scorum.com","rpc":"https://scorum-blockchain-mainnet-rpc.scorum.com","bech32Config":{"bech32PrefixAccAddr":"scorum","bech32PrefixAccPub":"scorumpub","bech32PrefixValAddr":"scorumvaloper","bech32PrefixValPub":"scorumvaloperpub","bech32PrefixConsAddr":"scorumvalcons","bech32PrefixConsPub":"scorumvalconspub"},"chainName":"scorum","feeCurrencies":[{"coinDenom":"gas","coinMinimalDenom":"gas","coinDecimals":0,"gasPriceStep":{"low":1,"average":1,"high":1}}],"stakeCurrency":{"coinDenom":"scr","coinMinimalDenom":"nscr","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"secret-4","currencies":[{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6},{"coinDenom":"sienna","coinMinimalDenom":"cw20:secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4","coinDecimals":18},{"coinDenom":"shd","coinMinimalDenom":"cw20:secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d","coinDecimals":8},{"coinDenom":"shd","coinMinimalDenom":"cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm","coinDecimals":8},{"coinDenom":"silk","coinMinimalDenom":"cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd","coinDecimals":6},{"coinDenom":"stkd-scrt","coinMinimalDenom":"cw20:secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4","coinDecimals":6},{"coinDenom":"butt","coinMinimalDenom":"cw20:secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt","coinDecimals":6},{"coinDenom":"alter","coinMinimalDenom":"cw20:secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej","coinDecimals":6},{"coinDenom":"amber","coinMinimalDenom":"cw20:secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852","coinDecimals":6},{"coinDenom":"shill","coinMinimalDenom":"cw20:secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse","coinDecimals":6}],"rest":"https://rest.lavenderfive.com:443/secretnetwork","rpc":"https://scrt.public-rpc.com","bech32Config":{"bech32PrefixAccAddr":"secret","bech32PrefixAccPub":"secretpub","bech32PrefixValAddr":"secretvaloper","bech32PrefixValPub":"secretvaloperpub","bech32PrefixConsAddr":"secretvalcons","bech32PrefixConsPub":"secretvalconspub"},"chainName":"secretnetwork","feeCurrencies":[{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.1,"high":0.25}}],"stakeCurrency":{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6},"bip44":{"coinType":529}},{"chainId":"seda-1","currencies":[{"coinDenom":"seda","coinMinimalDenom":"aseda","coinDecimals":18}],"rest":"https://lcd.mainnet.seda.xyz/","rpc":"https://rpc.mainnet.seda.xyz/","bech32Config":{"bech32PrefixAccAddr":"seda","bech32PrefixAccPub":"sedapub","bech32PrefixValAddr":"sedavaloper","bech32PrefixValPub":"sedavaloperpub","bech32PrefixConsAddr":"sedavalcons","bech32PrefixConsPub":"sedavalconspub"},"chainName":"seda","feeCurrencies":[{"coinDenom":"seda","coinMinimalDenom":"aseda","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":10000000000,"high":14000000000}}],"stakeCurrency":{"coinDenom":"seda","coinMinimalDenom":"aseda","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"pacific-1","currencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6},{"coinDenom":"oin","coinMinimalDenom":"factory/sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w/OIN","coinDecimals":6},{"coinDenom":"ampSEI","coinMinimalDenom":"factory/sei1x2fgaaqecvk8kwuqkjqcj27clw5p5g99uawdzy9sc4rku8avumcq3cky4k/ampSEI","coinDecimals":6},{"coinDenom":"popeye","coinMinimalDenom":"factory/sei1fl8pg59wfsgw2wp4aruk38zqccfnc2g8ptrm24/popeye","coinDecimals":6},{"coinDenom":"sensei","coinMinimalDenom":"factory/sei1ta5rkr6y2qlkj7px8w2cvear7m2822q4f4ea0m/sensei","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/B023C57727A38A9CF87238F9008477C3761AD4774D528BFA458DD707D90B553A","coinDecimals":6},{"coinDenom":"oozaru","coinMinimalDenom":"sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda","coinDecimals":6},{"coinDenom":"SEIYAN","coinMinimalDenom":"cw20:sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"ibc/063F4461F7317CFF10F50AB044E44932D22AAD84FA7107082744946E6DB7B7A8","coinDecimals":6}],"rest":"https://rest.sei-apis.com","rpc":"https://rpc.sei-apis.com","bech32Config":{"bech32PrefixAccAddr":"sei","bech32PrefixAccPub":"seipub","bech32PrefixValAddr":"seivaloper","bech32PrefixValPub":"seivaloperpub","bech32PrefixConsAddr":"seivalcons","bech32PrefixConsPub":"seivalconspub"},"chainName":"sei","feeCurrencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.02,"high":0.04}}],"stakeCurrency":{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"self-1","currencies":[{"coinDenom":"slf","coinMinimalDenom":"uslf","coinDecimals":6}],"rest":"https://api.selfchain.io","rpc":"https://rpc.selfchain.io:26657","bech32Config":{"bech32PrefixAccAddr":"self","bech32PrefixAccPub":"selfpub","bech32PrefixValAddr":"selfvaloper","bech32PrefixValPub":"selfvaloperpub","bech32PrefixConsAddr":"selfvalcons","bech32PrefixConsPub":"selfvalconspub"},"chainName":"self","feeCurrencies":[{"coinDenom":"slf","coinMinimalDenom":"uslf","coinDecimals":6,"gasPriceStep":{"low":0.005,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"slf","coinMinimalDenom":"uslf","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sentinelhub-2","currencies":[{"coinDenom":"dvpn","coinMinimalDenom":"udvpn","coinDecimals":6}],"rest":"https://api-sentinel.busurnode.com","rpc":"https://rpc-sentinel.busurnode.com","bech32Config":{"bech32PrefixAccAddr":"sent","bech32PrefixAccPub":"sentpub","bech32PrefixValAddr":"sentvaloper","bech32PrefixValPub":"sentvaloperpub","bech32PrefixConsAddr":"sentvalcons","bech32PrefixConsPub":"sentvalconspub"},"chainName":"sentinel","feeCurrencies":[{"coinDenom":"dvpn","coinMinimalDenom":"udvpn","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.4}}],"stakeCurrency":{"coinDenom":"dvpn","coinMinimalDenom":"udvpn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sgenet-1","currencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"rest":"https://rest.lavenderfive.com:443/sge","rpc":"https://rpc.lavenderfive.com:443/sge","bech32Config":{"bech32PrefixAccAddr":"sge","bech32PrefixAccPub":"sgepub","bech32PrefixValAddr":"sgevaloper","bech32PrefixValPub":"sgevaloperpub","bech32PrefixConsAddr":"sgevalcons","bech32PrefixConsPub":"sgevalconspub"},"chainName":"sge","feeCurrencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.5}}],"stakeCurrency":{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"ShareRing-VoyagerNet","currencies":[{"coinDenom":"shr","coinMinimalDenom":"nshr","coinDecimals":9}],"rest":"https://lcd.explorer.shareri.ng/","rpc":"https://rpc.explorer.shareri.ng","bech32Config":{"bech32PrefixAccAddr":"shareledger","bech32PrefixAccPub":"shareledgerpub","bech32PrefixValAddr":"shareledgervaloper","bech32PrefixValPub":"shareledgervaloperpub","bech32PrefixConsAddr":"shareledgervalcons","bech32PrefixConsPub":"shareledgervalconspub"},"chainName":"shareledger","feeCurrencies":[{"coinDenom":"shr","coinMinimalDenom":"nshr","coinDecimals":9,"gasPriceStep":{"low":2000,"average":3000,"high":4000}}],"stakeCurrency":{"coinDenom":"shr","coinMinimalDenom":"nshr","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"shentu-2.2","currencies":[{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6}],"rest":"https://rest.shentu.org/","rpc":"https://rpc.shentu.org:443","bech32Config":{"bech32PrefixAccAddr":"shentu","bech32PrefixAccPub":"shentupub","bech32PrefixValAddr":"shentuvaloper","bech32PrefixValPub":"shentuvaloperpub","bech32PrefixConsAddr":"shentuvalcons","bech32PrefixConsPub":"shentuvalconspub"},"chainName":"shentu","feeCurrencies":[{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"shido_9008-1","currencies":[{"coinDenom":"SHIDO","coinMinimalDenom":"shido","coinDecimals":18}],"rest":"https://swagger.shidoscan.com","rpc":"https://tendermint.shidoscan.com","bech32Config":{"bech32PrefixAccAddr":"shido","bech32PrefixAccPub":"shidopub","bech32PrefixValAddr":"shidovaloper","bech32PrefixValPub":"shidovaloperpub","bech32PrefixConsAddr":"shidovalcons","bech32PrefixConsPub":"shidovalconspub"},"chainName":"shido","feeCurrencies":[{"coinDenom":"SHIDO","coinMinimalDenom":"shido","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"SHIDO","coinMinimalDenom":"shido","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"sifchain-1","currencies":[{"coinDenom":"ROWAN","coinMinimalDenom":"rowan","coinDecimals":18}],"rest":"https://api-sifchain-ia.cosmosia.notional.ventures/","rpc":"https://sifchain-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"sif","bech32PrefixAccPub":"sifpub","bech32PrefixValAddr":"sifvaloper","bech32PrefixValPub":"sifvaloperpub","bech32PrefixConsAddr":"sifvalcons","bech32PrefixConsPub":"sifvalconspub"},"chainName":"sifchain","feeCurrencies":[{"coinDenom":"ROWAN","coinMinimalDenom":"rowan","coinDecimals":18,"gasPriceStep":{"low":1000000000000,"average":1500000000000,"high":2000000000000}}],"stakeCurrency":{"coinDenom":"ROWAN","coinMinimalDenom":"rowan","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"sixnet","currencies":[{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6}],"rest":"https://sixnet-api.sixprotocol.net:443","rpc":"https://sixnet-rpc.sixprotocol.net:443","bech32Config":{"bech32PrefixAccAddr":"6x","bech32PrefixAccPub":"6xpub","bech32PrefixValAddr":"6xvaloper","bech32PrefixValPub":"6xvaloperpub","bech32PrefixConsAddr":"6xvalcons","bech32PrefixConsPub":"6xvalconspub"},"chainName":"six","feeCurrencies":[{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6,"gasPriceStep":{"low":1.25,"average":1.5,"high":1.75}}],"stakeCurrency":{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sommelier-3","currencies":[{"coinDenom":"somm","coinMinimalDenom":"usomm","coinDecimals":6}],"rest":"https://api-sommelier.pupmos.network","rpc":"https://sommelier-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"somm","bech32PrefixAccPub":"sommpub","bech32PrefixValAddr":"sommvaloper","bech32PrefixValPub":"sommvaloperpub","bech32PrefixConsAddr":"sommvalcons","bech32PrefixConsPub":"sommvalconspub"},"chainName":"sommelier","feeCurrencies":[{"coinDenom":"somm","coinMinimalDenom":"usomm","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"somm","coinMinimalDenom":"usomm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"source-1","currencies":[{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6},{"coinDenom":"srcx","coinMinimalDenom":"ibc/FC5A7360EEED0713AE3E83E9D55A69AF873056A172AC495890ACE4582FF9685A","coinDecimals":9}],"rest":"https://api.source.nodestake.org","rpc":"https://rpc.source.nodestake.org","bech32Config":{"bech32PrefixAccAddr":"source","bech32PrefixAccPub":"sourcepub","bech32PrefixValAddr":"sourcevaloper","bech32PrefixValPub":"sourcevaloperpub","bech32PrefixConsAddr":"sourcevalcons","bech32PrefixConsPub":"sourcevalconspub"},"chainName":"source","feeCurrencies":[{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.075,"high":0.1}}],"stakeCurrency":{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"stafihub-1","currencies":[{"coinDenom":"fis","coinMinimalDenom":"ufis","coinDecimals":6},{"coinDenom":"ratom","coinMinimalDenom":"uratom","coinDecimals":6},{"coinDenom":"riris","coinMinimalDenom":"uriris","coinDecimals":6},{"coinDenom":"rhuahua","coinMinimalDenom":"urhuahua","coinDecimals":6},{"coinDenom":"rswth","coinMinimalDenom":"urswth","coinDecimals":8}],"rest":"https://public-rest-rpc1.stafihub.io","rpc":"https://public-rpc1.stafihub.io:443","bech32Config":{"bech32PrefixAccAddr":"stafi","bech32PrefixAccPub":"stafipub","bech32PrefixValAddr":"stafivaloper","bech32PrefixValPub":"stafivaloperpub","bech32PrefixConsAddr":"stafivalcons","bech32PrefixConsPub":"stafivalconspub"},"chainName":"stafihub","feeCurrencies":[{"coinDenom":"fis","coinMinimalDenom":"ufis","coinDecimals":6}],"stakeCurrency":{"coinDenom":"fis","coinMinimalDenom":"ufis","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"stargaze-1","currencies":[{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6},{"coinDenom":"strdst","coinMinimalDenom":"factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust","coinDecimals":6},{"coinDenom":"GAZE","coinMinimalDenom":"factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/mGAZE","coinDecimals":6},{"coinDenom":"BRNCH","coinMinimalDenom":"factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uBRNCH","coinDecimals":6},{"coinDenom":"OHH","coinMinimalDenom":"factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uOHH","coinDecimals":6},{"coinDenom":"sneaky","coinMinimalDenom":"factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky","coinDecimals":6},{"coinDenom":"LAB","coinMinimalDenom":"ibc/93B1AE0AD5E88242745B245064A2A51DDA1319C18176A966D5F8F9E02ED5373E","coinDecimals":6},{"coinDenom":"CDT","coinMinimalDenom":"ibc/B0263C28B6F44651F4596413B41FDB749EA010BD1220816DAC0ABF9947C1E806","coinDecimals":6},{"coinDenom":"MBRN","coinMinimalDenom":"ibc/E94BB144B818CB8061F43E202BEA1E9273B87D6326C8C6F4E6AE71C62FD37854","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"ibc/C9C8D88917374F27F03CBCEAF4F1B85F45A62F9F2316CBAADAAC5FDB3675DD3F","coinDecimals":6},{"coinDenom":"PLEB","coinMinimalDenom":"factory/stars1k7qsxdxh8calmt4txk75e6hdntefslegwddqnlwjjqgjkmcfqy0qa97sn8/pleb","coinDecimals":6},{"coinDenom":"KINGSHIT","coinMinimalDenom":"factory/stars133a6mnkp9d3pkt48y699hy0tvq5xngpz7cwak0qr4suq0cj9zpfslvt0em/kingshit","coinDecimals":6},{"coinDenom":"BOTZ","coinMinimalDenom":"factory/stars132jrwxjps93usq3ejy7cq6qqc7j3gtx3mu8jhaj5nnk3p0ste2ssqsndvj/botz","coinDecimals":6},{"coinDenom":"COCKS","coinMinimalDenom":"factory/stars14mfk0sd6rlajkvgpgrvfk9lfhjwmkrzvednekvcn32jzy3drjy5sfem9p7/cocks","coinDecimals":6},{"coinDenom":"XTRUMP","coinMinimalDenom":"ibc/4982C47384F003FCCB02490F92CE2F23DBEC9A7A0C1F440BDB12D24357E6703D","coinDecimals":6},{"coinDenom":"WOLFSHIT","coinMinimalDenom":"factory/stars167y92c2fe690l0lrqyk9tahpqvu97au0cmpayh3j9455r2f6f06s78emw4/wolfshit","coinDecimals":6},{"coinDenom":"VLT","coinMinimalDenom":"factory/stars1t6fyr84hn6lyjdvk3e3c697cptfn5cwat2jxqyzuvuesaypznslshy6x9v/vlt","coinDecimals":6},{"coinDenom":"bglSTARS","coinMinimalDenom":"factory/stars1ur79p98rmpn456esgzjernaxy7v25mlwqsv8uhymzxahfw77427syk2h9j/bglSTARS","coinDecimals":6},{"coinDenom":"bglUSDC","coinMinimalDenom":"factory/stars1ur79p98rmpn456esgzjernaxy7v25mlwqsv8uhymzxahfw77427syk2h9j/bglUSDC","coinDecimals":6},{"coinDenom":"SHITMOS","coinMinimalDenom":"ibc/8577E98BDDD2758FD5647A53563DAAC89921326F964EBF899B945ED05A66CA5F","coinDecimals":6},{"coinDenom":"ygata","coinMinimalDenom":"ibc/2A56F95E2B74AB769816403D384E2199C7BC510BFD2F8352FAC6DF0294B83EBA","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/D29FF5FFE7B9A5C6CE595FF963F7C93F2B8603586645C39B13E1D336847863C3","coinDecimals":18}],"rest":"https://rest.stargaze-apis.com/","rpc":"https://rpc.stargaze-apis.com/","bech32Config":{"bech32PrefixAccAddr":"stars","bech32PrefixAccPub":"starspub","bech32PrefixValAddr":"starsvaloper","bech32PrefixValPub":"starsvaloperpub","bech32PrefixConsAddr":"starsvalcons","bech32PrefixConsPub":"starsvalconspub"},"chainName":"stargaze","feeCurrencies":[{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6,"gasPriceStep":{"low":1,"average":1.1,"high":1.2}}],"stakeCurrency":{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"iov-mainnet-ibc","currencies":[{"coinDenom":"iov","coinMinimalDenom":"uiov","coinDecimals":6}],"rest":"https://api-starname-ia.cosmosia.notional.ventures/","rpc":"https://rpc-starname-ia.cosmosia.notional.ventures/","bech32Config":{"bech32PrefixAccAddr":"star","bech32PrefixAccPub":"starpub","bech32PrefixValAddr":"starvaloper","bech32PrefixValPub":"starvaloperpub","bech32PrefixConsAddr":"starvalcons","bech32PrefixConsPub":"starvalconspub"},"chainName":"starname","feeCurrencies":[{"coinDenom":"iov","coinMinimalDenom":"uiov","coinDecimals":6,"gasPriceStep":{"low":1,"average":2,"high":3}}],"stakeCurrency":{"coinDenom":"iov","coinMinimalDenom":"uiov","coinDecimals":6},"bip44":{"coinType":234}},{"chainId":"stratos-1","currencies":[{"coinDenom":"stos","coinMinimalDenom":"wei","coinDecimals":18}],"rest":"https://rest.thestratos.org","rpc":"https://rpc.thestratos.org","bech32Config":{"bech32PrefixAccAddr":"st","bech32PrefixAccPub":"stpub","bech32PrefixValAddr":"stvaloper","bech32PrefixValPub":"stvaloperpub","bech32PrefixConsAddr":"stvalcons","bech32PrefixConsPub":"stvalconspub"},"chainName":"stratos","feeCurrencies":[{"coinDenom":"stos","coinMinimalDenom":"wei","coinDecimals":18,"gasPriceStep":{"low":1000000000,"average":1200000000,"high":1600000000}}],"stakeCurrency":{"coinDenom":"stos","coinMinimalDenom":"wei","coinDecimals":18},"bip44":{"coinType":606}},{"chainId":"stride-1","currencies":[{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"stuatom","coinDecimals":6},{"coinDenom":"ststars","coinMinimalDenom":"stustars","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"stuosmo","coinDecimals":6},{"coinDenom":"stjuno","coinMinimalDenom":"stujuno","coinDecimals":6},{"coinDenom":"stluna","coinMinimalDenom":"stuluna","coinDecimals":6},{"coinDenom":"stINJ","coinMinimalDenom":"stinj","coinDecimals":18},{"coinDenom":"stevmos","coinMinimalDenom":"staevmos","coinDecimals":18},{"coinDenom":"stDYDX","coinMinimalDenom":"stadydx","coinDecimals":18},{"coinDenom":"stTIA","coinMinimalDenom":"stutia","coinDecimals":6},{"coinDenom":"stDYM","coinMinimalDenom":"stadym","coinDecimals":18},{"coinDenom":"stumee","coinMinimalDenom":"stuumee","coinDecimals":6},{"coinDenom":"stcmdx","coinMinimalDenom":"stucmdx","coinDecimals":6},{"coinDenom":"stsomm","coinMinimalDenom":"stusomm","coinDecimals":6},{"coinDenom":"stSAGA","coinMinimalDenom":"stusaga","coinDecimals":6},{"coinDenom":"TIA","coinMinimalDenom":"ibc/BF3B4F53F3694B66E13C23107C84B6485BD2B96296BB7EC680EA77BBA75B4801","coinDecimals":6},{"coinDenom":"stISLM","coinMinimalDenom":"staISLM","coinDecimals":18},{"coinDenom":"stBAND","coinMinimalDenom":"stuband","coinDecimals":6}],"rest":"https://stride-api.polkachu.com/","rpc":"https://stride-rpc.polkachu.com/","bech32Config":{"bech32PrefixAccAddr":"stride","bech32PrefixAccPub":"stridepub","bech32PrefixValAddr":"stridevaloper","bech32PrefixValPub":"stridevaloperpub","bech32PrefixConsAddr":"stridevalcons","bech32PrefixConsPub":"stridevalconspub"},"chainName":"stride","feeCurrencies":[{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6,"gasPriceStep":{"low":0.005,"average":0.005,"high":0.05}},{"coinDenom":"statom","coinMinimalDenom":"stuatom","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0002,"high":0.0005}},{"coinDenom":"stosmo","coinMinimalDenom":"stuosmo","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.004}},{"coinDenom":"ststars","coinMinimalDenom":"stustars","coinDecimals":6,"gasPriceStep":{"low":1,"average":1.1,"high":1.2}},{"coinDenom":"stjuno","coinMinimalDenom":"stujuno","coinDecimals":6,"gasPriceStep":{"low":0.075,"average":0.1,"high":0.125}},{"coinDenom":"stluna","coinMinimalDenom":"stuluna","coinDecimals":6,"gasPriceStep":{"low":0.0125,"average":0.015,"high":0.04}},{"coinDenom":"stevmos","coinMinimalDenom":"staevmos","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}},{"coinDenom":"stINJ","coinMinimalDenom":"stinj","coinDecimals":18,"gasPriceStep":{"low":500000000,"average":700000000,"high":900000000}},{"coinDenom":"stcmdx","coinMinimalDenom":"stucmdx","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.025,"high":0.04}},{"coinDenom":"stumee","coinMinimalDenom":"stuumee","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.12,"high":0.2}},{"coinDenom":"stTIA","coinMinimalDenom":"stutia","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}},{"coinDenom":"stDYDX","coinMinimalDenom":"stadydx","coinDecimals":18,"gasPriceStep":{"low":15000000000,"average":15000000000,"high":20000000000}},{"coinDenom":"stDYM","coinMinimalDenom":"stadym","coinDecimals":18,"gasPriceStep":{"low":15000000000,"average":15000000000,"high":20000000000}},{"coinDenom":"stSAGA","coinMinimalDenom":"stusaga","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.015,"high":0.03}},{"coinDenom":"TIA","coinMinimalDenom":"ibc/BF3B4F53F3694B66E13C23107C84B6485BD2B96296BB7EC680EA77BBA75B4801","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}}],"stakeCurrency":{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"synternet-1","currencies":[{"coinDenom":"SYNT","coinMinimalDenom":"usynt","coinDecimals":6}],"rest":"https://api.synternet.com/","rpc":"https://rpc.synternet.com/","bech32Config":{"bech32PrefixAccAddr":"synt","bech32PrefixAccPub":"syntpub","bech32PrefixValAddr":"syntvaloper","bech32PrefixValPub":"syntvaloperpub","bech32PrefixConsAddr":"syntvalcons","bech32PrefixConsPub":"syntvalconspub"},"chainName":"synternet","feeCurrencies":[{"coinDenom":"SYNT","coinMinimalDenom":"usynt","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"SYNT","coinMinimalDenom":"usynt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"taketitan-12","currencies":[{"coinDenom":"ttnc","coinMinimalDenom":"ttnc","coinDecimals":0}],"rest":"https://lcdttnc.taketitan.com","rpc":"https://rcpttnc.taketitan.com","bech32Config":{"bech32PrefixAccAddr":"taketitan","bech32PrefixAccPub":"taketitanpub","bech32PrefixValAddr":"taketitanvaloper","bech32PrefixValPub":"taketitanvaloperpub","bech32PrefixConsAddr":"taketitanvalcons","bech32PrefixConsPub":"taketitanvalconspub"},"chainName":"taketitan","feeCurrencies":[{"coinDenom":"ttnc","coinMinimalDenom":"ttnc","coinDecimals":0,"gasPriceStep":{"low":0.000001,"average":0.000005,"high":0.0001}}],"stakeCurrency":{"coinDenom":"ttnc","coinMinimalDenom":"ttnc","coinDecimals":0},"bip44":{"coinType":1179993421}},{"chainId":"tenet_1559-1","currencies":[{"coinDenom":"tenet","coinMinimalDenom":"atenet","coinDecimals":18}],"rest":"https://app.rpc.tenet.org","rpc":"https://tendermint-1.rpc.tenet.org","bech32Config":{"bech32PrefixAccAddr":"tenet","bech32PrefixAccPub":"tenetpub","bech32PrefixValAddr":"tenetvaloper","bech32PrefixValPub":"tenetvaloperpub","bech32PrefixConsAddr":"tenetvalcons","bech32PrefixConsPub":"tenetvalconspub"},"chainName":"tenet","feeCurrencies":[{"coinDenom":"tenet","coinMinimalDenom":"atenet","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"tenet","coinMinimalDenom":"atenet","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"teritori-1","currencies":[{"coinDenom":"tori","coinMinimalDenom":"utori","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/A670D9568B3E399316EEDE40C1181B7AA4BD0695F0B37513CE9B95B977DFC12E","coinDecimals":6},{"coinDenom":"kuji","coinMinimalDenom":"ibc/1FECA3491D88F4AD24DE0948ED96718CA6D93F6730CEE7708E621B953594BB5E","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9","coinDecimals":6},{"coinDenom":"scrt","coinMinimalDenom":"ibc/F3F6BDEE1A79664B169D742651107BF4E03FA67E931452E27380B75F5917B7E9","coinDecimals":6}],"rest":"https://teritori-api.polkachu.com","rpc":"https://teritori-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"tori","bech32PrefixAccPub":"toripub","bech32PrefixValAddr":"torivaloper","bech32PrefixValPub":"torivaloperpub","bech32PrefixConsAddr":"torivalcons","bech32PrefixConsPub":"torivalconspub"},"chainName":"teritori","feeCurrencies":[{"coinDenom":"tori","coinMinimalDenom":"utori","coinDecimals":6}],"stakeCurrency":{"coinDenom":"tori","coinMinimalDenom":"utori","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"morocco-1","currencies":[{"coinDenom":"terp","coinMinimalDenom":"uterp","coinDecimals":6},{"coinDenom":"thiol","coinMinimalDenom":"uthiol","coinDecimals":6}],"rest":"https://api-terp.zenchainlabs.io:443","rpc":"https://rpc-terp.zenchainlabs.io/","bech32Config":{"bech32PrefixAccAddr":"terp","bech32PrefixAccPub":"terppub","bech32PrefixValAddr":"terpvaloper","bech32PrefixValPub":"terpvaloperpub","bech32PrefixConsAddr":"terpvalcons","bech32PrefixConsPub":"terpvalconspub"},"chainName":"terpnetwork","feeCurrencies":[{"coinDenom":"thiol","coinMinimalDenom":"uthiol","coinDecimals":6}],"stakeCurrency":{"coinDenom":"terp","coinMinimalDenom":"uterp","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"columbus-5","currencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},{"coinDenom":"ust","coinMinimalDenom":"uusd","coinDecimals":6},{"coinDenom":"krt","coinMinimalDenom":"ukrw","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"cw20:terra1php5m8a6qd68z02t3zpw4jv2pj4vgw4wz0t8mz","coinDecimals":6},{"coinDenom":"bluna","coinMinimalDenom":"cw20:terra1kc87mu460fwkqte29rquh4hc20m54fxwtsx7gp","coinDecimals":6},{"coinDenom":"beth","coinMinimalDenom":"cw20:terra1dzhzukyezv0etz22ud940z7adyv7xgcjkahuun","coinDecimals":6},{"coinDenom":"aust","coinMinimalDenom":"cw20:terra1hzh9vpxhsk8253se0vv5jj6etdvxu3nv8z07zu","coinDecimals":6},{"coinDenom":"anc","coinMinimalDenom":"cw20:terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76","coinDecimals":6},{"coinDenom":"mir","coinMinimalDenom":"cw20:terra15gwkyepfc6xgca5t5zefzwy42uts8l2m4g40k6","coinDecimals":6},{"coinDenom":"maapl","coinMinimalDenom":"cw20:terra1vxtwu4ehgzz77mnfwrntyrmgl64qjs75mpwqaz","coinDecimals":6},{"coinDenom":"mabnb","coinMinimalDenom":"cw20:terra1g4x2pzmkc9z3mseewxf758rllg08z3797xly0n","coinDecimals":6},{"coinDenom":"mamc","coinMinimalDenom":"cw20:terra1qelfthdanju7wavc5tq0k5r0rhsyzyyrsn09qy","coinDecimals":6},{"coinDenom":"mamd","coinMinimalDenom":"cw20:terra18ej5nsuu867fkx4tuy2aglpvqjrkcrjjslap3z","coinDecimals":6},{"coinDenom":"mamzn","coinMinimalDenom":"cw20:terra165nd2qmrtszehcfrntlplzern7zl4ahtlhd5t2","coinDecimals":6},{"coinDenom":"markk","coinMinimalDenom":"cw20:terra1qqfx5jph0rsmkur2zgzyqnfucra45rtjae5vh6","coinDecimals":6},{"coinDenom":"mbaba","coinMinimalDenom":"cw20:terra1w7zgkcyt7y4zpct9dw8mw362ywvdlydnum2awa","coinDecimals":6},{"coinDenom":"mbtc","coinMinimalDenom":"cw20:terra1rhhvx8nzfrx5fufkuft06q5marfkucdqwq5sjw","coinDecimals":6},{"coinDenom":"mcoin","coinMinimalDenom":"cw20:terra18wayjpyq28gd970qzgjfmsjj7dmgdk039duhph","coinDecimals":6},{"coinDenom":"mdis","coinMinimalDenom":"cw20:terra149755r3y0rve30e209awkhn5cxgkn5c8ju9pm5","coinDecimals":6},{"coinDenom":"mdot","coinMinimalDenom":"cw20:terra19ya4jpvjvvtggepvmmj6ftmwly3p7way0tt08r","coinDecimals":6},{"coinDenom":"meth","coinMinimalDenom":"cw20:terra1dk3g53js3034x4v5c3vavhj2738une880yu6kx","coinDecimals":6},{"coinDenom":"mfb","coinMinimalDenom":"cw20:terra1mqsjugsugfprn3cvgxsrr8akkvdxv2pzc74us7","coinDecimals":6},{"coinDenom":"mglxy","coinMinimalDenom":"cw20:terra1l5lrxtwd98ylfy09fn866au6dp76gu8ywnudls","coinDecimals":6},{"coinDenom":"mgme","coinMinimalDenom":"cw20:terra1m6j6j9gw728n82k78s0j9kq8l5p6ne0xcc820p","coinDecimals":6},{"coinDenom":"mgoogl","coinMinimalDenom":"cw20:terra1h8arz2k547uvmpxctuwush3jzc8fun4s96qgwt","coinDecimals":6},{"coinDenom":"mgs","coinMinimalDenom":"cw20:terra137drsu8gce5thf6jr5mxlfghw36rpljt3zj73v","coinDecimals":6},{"coinDenom":"mhood","coinMinimalDenom":"cw20:terra18yqdfzfhnguerz9du5mnvxsh5kxlknqhcxzjfr","coinDecimals":6},{"coinDenom":"miau","coinMinimalDenom":"cw20:terra10h7ry7apm55h4ez502dqdv9gr53juu85nkd4aq","coinDecimals":6},{"coinDenom":"miau","coinMinimalDenom":"cw20:terra15hp9pr8y4qsvqvxf3m4xeptlk7l8h60634gqec","coinDecimals":6},{"coinDenom":"mjnj","coinMinimalDenom":"cw20:terra1ptdxmj3xmmljzx02nr4auwfuelmj0cnkh8egs2","coinDecimals":6},{"coinDenom":"mko","coinMinimalDenom":"cw20:terra1qsnj5gvq8rgs7yws8x5u02gwd5wvtu4tks0hjm","coinDecimals":6},{"coinDenom":"mmsft","coinMinimalDenom":"cw20:terra1227ppwxxj3jxz8cfgq00jgnxqcny7ryenvkwj6","coinDecimals":6},{"coinDenom":"mnflx","coinMinimalDenom":"cw20:terra1jsxngqasf2zynj5kyh0tgq9mj3zksa5gk35j4k","coinDecimals":6},{"coinDenom":"mnio","coinMinimalDenom":"cw20:terra1dj2cj02zak0nvwy3uj9r9dhhxhdwxnw6psse6p","coinDecimals":6},{"coinDenom":"mnke","coinMinimalDenom":"cw20:terra17ana8hvzea0q7w367dm0dw48sxwql39qekpt7g","coinDecimals":6},{"coinDenom":"mnvda","coinMinimalDenom":"cw20:terra1drsjzvzej4h4qlehcfwclxg4w5l3h5tuvd3jd8","coinDecimals":6},{"coinDenom":"mpypl","coinMinimalDenom":"cw20:terra1rh2907984nudl7vh56qjdtvv7947z4dujj92sx","coinDecimals":6},{"coinDenom":"mqqq","coinMinimalDenom":"cw20:terra1csk6tc7pdmpr782w527hwhez6gfv632tyf72cp","coinDecimals":6},{"coinDenom":"msbux","coinMinimalDenom":"cw20:terra1246zy658dfgtausf0c4a6ly8sc2e285q4kxqga","coinDecimals":6},{"coinDenom":"mslv","coinMinimalDenom":"cw20:terra1kscs6uhrqwy6rx5kuw5lwpuqvm3t6j2d6uf2lp","coinDecimals":6},{"coinDenom":"mspy","coinMinimalDenom":"cw20:terra1aa00lpfexyycedfg5k2p60l9djcmw0ue5l8fhc","coinDecimals":6},{"coinDenom":"msq","coinMinimalDenom":"cw20:terra1u43zu5amjlsgty5j64445fr9yglhm53m576ugh","coinDecimals":6},{"coinDenom":"mtsla","coinMinimalDenom":"cw20:terra14y5affaarufk3uscy2vr6pe6w6zqf2wpjzn5sh","coinDecimals":6},{"coinDenom":"mtwtr","coinMinimalDenom":"cw20:terra1cc3enj9qgchlrj34cnzhwuclc4vl2z3jl7tkqg","coinDecimals":6},{"coinDenom":"muso","coinMinimalDenom":"cw20:terra1lvmx8fsagy70tv0fhmfzdw9h6s3sy4prz38ugf","coinDecimals":6},{"coinDenom":"mvixy","coinMinimalDenom":"cw20:terra19cmt6vzvhnnnfsmccaaxzy2uaj06zjktu6yzjx","coinDecimals":6},{"coinDenom":"mvixy","coinMinimalDenom":"cw20:terra1zp3a6q6q4953cz376906g5qfmxnlg77hx3te45","coinDecimals":6},{"coinDenom":"lota","coinMinimalDenom":"cw20:terra1ez46kxtulsdv07538fh5ra5xj8l68mu8eg24vr","coinDecimals":6},{"coinDenom":"dph","coinMinimalDenom":"cw20:terra17jnhankdfl8vyzj6vejt7ag8uz0cjc9crkl2h7","coinDecimals":6},{"coinDenom":"mine","coinMinimalDenom":"cw20:terra1kcthelkax4j9x8d3ny6sdag0qmxxynl3qtcrpy","coinDecimals":6},{"coinDenom":"bpsidp-24m","coinMinimalDenom":"cw20:terra1zsaswh926ey8qa5x4vj93kzzlfnef0pstuca0y","coinDecimals":6},{"coinDenom":"spec","coinMinimalDenom":"cw20:terra1s5eczhe0h0jutf46re52x5z4r03c8hupacxmdr","coinDecimals":6},{"coinDenom":"loop","coinMinimalDenom":"cw20:terra1nef5jf6c7js9x6gkntlehgywvjlpytm7pcgkn4","coinDecimals":6},{"coinDenom":"loopr","coinMinimalDenom":"cw20:terra1jx4lmmke2srcvpjeereetc9hgegp4g5j0p9r2q","coinDecimals":6},{"coinDenom":"stt","coinMinimalDenom":"cw20:terra13xujxcrc9dqft4p9a8ls0w3j0xnzm6y2uvve8n","coinDecimals":6},{"coinDenom":"twd","coinMinimalDenom":"cw20:terra19djkaepjjswucys4npd5ltaxgsntl7jf0xz7w6","coinDecimals":6},{"coinDenom":"xtra","coinMinimalDenom":"cw20:terra1kvjscdgwuvwc6uzm4rqfjl6nlmuhj28tequlnc","coinDecimals":6},{"coinDenom":"miaw","coinMinimalDenom":"cw20:terra1vtr50tw0pgqpes34zqu60n554p9x4950wk8f63","coinDecimals":6},{"coinDenom":"psi","coinMinimalDenom":"cw20:terra12897djskt9rge8dtmm86w654g7kzckkd698608","coinDecimals":6},{"coinDenom":"nluna","coinMinimalDenom":"cw20:terra10f2mt82kjnkxqj2gepgwl637u2w4ue2z5nhz5j","coinDecimals":6},{"coinDenom":"neth","coinMinimalDenom":"cw20:terra178v546c407pdnx5rer3hu8s2c0fc924k74ymnn","coinDecimals":6},{"coinDenom":"cnluna","coinMinimalDenom":"cw20:terra1u553zk43jd4rwzc53qrdrq4jc2p8rextyq09dj","coinDecimals":6},{"coinDenom":"cneth","coinMinimalDenom":"cw20:terra1nagqpmyw55yjphea4rhntlfv87ugmeaj8ym756","coinDecimals":6},{"coinDenom":"navax","coinMinimalDenom":"cw20:terra13k62n0285wj8ug0ngcgpf7dgnkzqeu279tz636","coinDecimals":6},{"coinDenom":"natom","coinMinimalDenom":"cw20:terra1jtdc6zpf95tvh9peuaxwp3v0yqszcnwl8j5ade","coinDecimals":6},{"coinDenom":"vkr","coinMinimalDenom":"cw20:terra1dy9kmlm4anr92e42mrkjwzyvfqwz66un00rwr5","coinDecimals":6},{"coinDenom":"orion","coinMinimalDenom":"cw20:terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03","coinDecimals":8},{"coinDenom":"tland","coinMinimalDenom":"cw20:terra1r5506ckw5tfr3z52jwlek8vg9sn3yflrqrzfsc","coinDecimals":6},{"coinDenom":"vust","coinMinimalDenom":"cw20:terra1w0p5zre38ecdy3ez8efd5h9fvgum5s206xknrg","coinDecimals":6},{"coinDenom":"eth","coinMinimalDenom":"cw20:terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r","coinDecimals":8},{"coinDenom":"wbtc","coinMinimalDenom":"cw20:terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55","coinDecimals":8},{"coinDenom":"sol","coinMinimalDenom":"cw20:terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk","coinDecimals":8},{"coinDenom":"maticet","coinMinimalDenom":"cw20:terra1dfasranqm4uyaz72r960umxy0w8t6zewqlnkuq","coinDecimals":8},{"coinDenom":"bnb","coinMinimalDenom":"cw20:terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8","coinDecimals":8},{"coinDenom":"cake","coinMinimalDenom":"cw20:terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av","coinDecimals":8},{"coinDenom":"link","coinMinimalDenom":"cw20:terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym","coinDecimals":8},{"coinDenom":"sushi","coinMinimalDenom":"cw20:terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a","coinDecimals":8},{"coinDenom":"uni","coinMinimalDenom":"cw20:terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf","coinDecimals":8},{"coinDenom":"usdtet","coinMinimalDenom":"cw20:terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva","coinDecimals":6},{"coinDenom":"usdcet","coinMinimalDenom":"cw20:terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06","coinDecimals":6},{"coinDenom":"kuji","coinMinimalDenom":"cw20:terra1xfsdgcemqwxp4hhnyk4rle6wr22sseq7j07dnn","coinDecimals":6},{"coinDenom":"skuji","coinMinimalDenom":"cw20:terra188w26t95tf4dz77raftme8p75rggatxjxfeknw","coinDecimals":6},{"coinDenom":"wsteth","coinMinimalDenom":"cw20:terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur","coinDecimals":8},{"coinDenom":"wstsol","coinMinimalDenom":"cw20:terra1t9ul45l7m6jw6sxgvnp8e5hj8xzkjsg82g84ap","coinDecimals":8},{"coinDenom":"wsbsol","coinMinimalDenom":"cw20:terra1c3xd5s2j3ejx2d94tvcjfkrdeu6rmz48ghzznj","coinDecimals":8},{"coinDenom":"ldo","coinMinimalDenom":"cw20:terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z","coinDecimals":8},{"coinDenom":"webeth","coinMinimalDenom":"cw20:terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz","coinDecimals":8},{"coinDenom":"stluna","coinMinimalDenom":"cw20:terra1yg3j2s986nyp5z7r2lvt0hx3r0lnd7kwvwwtsc","coinDecimals":6},{"coinDenom":"xdefi","coinMinimalDenom":"cw20:terra169edevav3pdrtjcx35j6pvzuv54aevewar4nlh","coinDecimals":8},{"coinDenom":"btl","coinMinimalDenom":"cw20:terra193c42lfwmlkasvcw22l9qqzc5q2dx208tkd7wl","coinDecimals":6},{"coinDenom":"lunax","coinMinimalDenom":"cw20:terra17y9qkl8dfkeg4py7n0g5407emqnemc3yqk5rup","coinDecimals":6},{"coinDenom":"luni","coinMinimalDenom":"cw20:terra1m3tdguf59xq3pa2twk5fjte5g6szj5y9x5npy7","coinDecimals":6},{"coinDenom":"ply","coinMinimalDenom":"cw20:terra13awdgcx40tz5uygkgm79dytez3x87rpg4uhnvu","coinDecimals":6},{"coinDenom":"tfloki","coinMinimalDenom":"cw20:terra1u2k0nkenw0p25ljsr4ksh7rxm65y466vkdewwj","coinDecimals":6},{"coinDenom":"tftic","coinMinimalDenom":"cw20:terra1a8k3jyv3wf6k3zngza5h6srrxcckdf7zv90p6u","coinDecimals":6},{"coinDenom":"tfticii","coinMinimalDenom":"cw20:terra1xt9fgu7965kgvunnjts9zkprd8986kcc444q86","coinDecimals":6},{"coinDenom":"tfticiii","coinMinimalDenom":"cw20:terra1vte2xv7dr8sfnrnwdf9arcyprqgr0hty5ads28","coinDecimals":6},{"coinDenom":"moon","coinMinimalDenom":"cw20:terra1hmxxq0y8h79f3228vs0czc4uz5jdgjt0appp26","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"cw20:terra1xj49zyqrwpv5k928jwfpfy2ha668nwdgkwlrg3","coinDecimals":6},{"coinDenom":"xastro.cw20","coinMinimalDenom":"cw20:terra14lpnyzc9z4g3ugr4lhm8s4nle0tq8vcltkhzh7","coinDecimals":6},{"coinDenom":"halo","coinMinimalDenom":"cw20:terra1w8kvd6cqpsthupsk4l0clwnmek4l3zr7c84kwq","coinDecimals":6},{"coinDenom":"pug","coinMinimalDenom":"cw20:terra1kdfsdm3c4reun9j3m4mk3nmyw4a4ns7mj24q3j","coinDecimals":6},{"coinDenom":"orne","coinMinimalDenom":"cw20:terra1hnezwjqlhzawcrfysczcxs6xqxu2jawn729kkf","coinDecimals":6},{"coinDenom":"tns","coinMinimalDenom":"cw20:terra14vz4v8adanzph278xyeggll4tfww7teh0xtw2y","coinDecimals":6},{"coinDenom":"xrune","coinMinimalDenom":"cw20:terra1td743l5k5cmfy7tqq202g7vkmdvq35q48u2jfm","coinDecimals":6},{"coinDenom":"alot","coinMinimalDenom":"cw20:terra1366wmr8t8rrkh6mag8fagqxntmf2qe4kyte784","coinDecimals":6},{"coinDenom":"sity","coinMinimalDenom":"cw20:terra1z09gnzufuflz6ckd9k0u456l9dnpgsynu0yyhe","coinDecimals":6},{"coinDenom":"glow","coinMinimalDenom":"cw20:terra13zx49nk8wjavedjzu8xkk95r3t0ta43c9ptul7","coinDecimals":6},{"coinDenom":"apollo","coinMinimalDenom":"cw20:terra100yeqvww74h4yaejj6h733thgcafdaukjtw397","coinDecimals":6},{"coinDenom":"abr","coinMinimalDenom":"cw20:terra1a7ye2splpfzyenu0yrdu8t83uzgusx2malkc7u","coinDecimals":6},{"coinDenom":"whgtps","coinMinimalDenom":"cw20:terra1y3d5qexmyac0fg53pfglh2pjk0664ymfvcq9mc","coinDecimals":8},{"coinDenom":"prism","coinMinimalDenom":"cw20:terra1dh9478k2qvqhqeajhn75a2a7dsnf74y5ukregw","coinDecimals":6},{"coinDenom":"sdollar","coinMinimalDenom":"cw20:terra1l0y8yg0s86x299nqw0p6fhh7ngex3r4phtjeuq","coinDecimals":2},{"coinDenom":"whsail","coinMinimalDenom":"cw20:terra1ku5e0dhutxhuxudsmsn5647wwcz6ndr3rsh90k","coinDecimals":6},{"coinDenom":"whgsail","coinMinimalDenom":"cw20:terra1rl0cpwgtwl4utnaynugevdje37fnmsea7rv4uu","coinDecimals":8},{"coinDenom":"xprism","coinMinimalDenom":"cw20:terra1042wzrwg2uk6jqxjm34ysqquyr9esdgm5qyswz","coinDecimals":6},{"coinDenom":"cde","coinMinimalDenom":"cw20:terra13fs83g5atgjwuh7c5ydzh6n7gecel6xyhhy2t5","coinDecimals":9},{"coinDenom":"ctx","coinMinimalDenom":"cw20:terra1rl20t79ffsrqfa29rke48tj05gj9jxumm92vg8","coinDecimals":6},{"coinDenom":"cluna","coinMinimalDenom":"cw20:terra13zaagrrrxj47qjwczsczujlvnnntde7fdt0mau","coinDecimals":6},{"coinDenom":"pluna","coinMinimalDenom":"cw20:terra1tlgelulz9pdkhls6uglfn5lmxarx7f2gxtdzh2","coinDecimals":6},{"coinDenom":"yluna","coinMinimalDenom":"cw20:terra17wkadg0tah554r35x6wvff0y5s7ve8npcjfuhz","coinDecimals":6},{"coinDenom":"atlo","coinMinimalDenom":"cw20:terra1cl7whtrqmz5ldr553q69qahck8xvk80fm33qjx","coinDecimals":6},{"coinDenom":"local","coinMinimalDenom":"cw20:terra1vchw83qt25j89zqwdpmdzj722sqxthnckqzxxp","coinDecimals":6},{"coinDenom":"luv","coinMinimalDenom":"cw20:terra15k5r9r8dl8r7xlr29pry8a9w7sghehcnv5mgp6","coinDecimals":6},{"coinDenom":"robo","coinMinimalDenom":"cw20:terra1f62tqesptvmhtzr8sudru00gsdtdz24srgm7wp","coinDecimals":6},{"coinDenom":"luart","coinMinimalDenom":"cw20:terra1vwz7t30q76s7xx6qgtxdqnu6vpr3ak3vw62ygk","coinDecimals":6},{"coinDenom":"mars","coinMinimalDenom":"cw20:terra12hgwnpupflfpuual532wgrxu2gjp0tcagzgx4n","coinDecimals":6},{"coinDenom":"xmars","coinMinimalDenom":"cw20:terra1a04v570f9cxp49mk06vjsm8axsswndpwwt67k4","coinDecimals":6},{"coinDenom":"dfiat","coinMinimalDenom":"cw20:terra1vpws4hmpmpsqwnz3gljn8zj42rv7rkpc5atgt4","coinDecimals":8},{"coinDenom":"ceres","coinMinimalDenom":"cw20:terra1hppnw4jppmrzzga4yvd8s87y3dwkhe27xwwl5d","coinDecimals":6},{"coinDenom":"wasavax","coinMinimalDenom":"cw20:terra1z3e2e4jpk4n0xzzwlkgcfvc95pc5ldq0xcny58","coinDecimals":8},{"coinDenom":"mint","coinMinimalDenom":"cw20:terra1zd6let0zg0xjn2sestagxv4ax24a4ml6j40qdr","coinDecimals":6},{"coinDenom":"sd","coinMinimalDenom":"cw20:terra1ustvnmngueq0p4jd7gfnutgvdc6ujpsjhsjd02","coinDecimals":8},{"coinDenom":"xsd","coinMinimalDenom":"cw20:terra1ln2z938phz0nc2wepxpzfkwp6ezn9yrz9zv9ep","coinDecimals":8},{"coinDenom":"paxg","coinMinimalDenom":"cw20:terra1uux6gwd6pzr0gfzrru5kne55cxex9d0700c72r","coinDecimals":8},{"coinDenom":"whdao","coinMinimalDenom":"cw20:terra1efjugpjc50d8sha7lr8s48cr7wmsthz94eevcl","coinDecimals":8},{"coinDenom":"link","coinMinimalDenom":"cw20:terra1su6g4t4vwx7y0uh3ksancyaurj4l6w9pfs40qt","coinDecimals":18},{"coinDenom":"sayve","coinMinimalDenom":"cw20:terra14v9wrjs55qsn9lkvylsqela3w2ytwxzkycqzcr","coinDecimals":6},{"coinDenom":"guides","coinMinimalDenom":"cw20:terra1z55rhw0ut70jxdmpvge98mvj0rkwcz74q77z0u","coinDecimals":6},{"coinDenom":"bro","coinMinimalDenom":"cw20:terra1mt2ytlrxhvd5c4d4fshxxs3zcus3fkdmuv4mk2","coinDecimals":6},{"coinDenom":"bbro","coinMinimalDenom":"cw20:terra1qryq5wreecx2wd3cdtzz94syr4z0a92l60asds","coinDecimals":6},{"coinDenom":"gtps","coinMinimalDenom":"cw20:terra15zvyhmv6gwddht7kt4q6w5nasn4tcpgzcdfmgr","coinDecimals":18},{"coinDenom":"gfi","coinMinimalDenom":"cw20:terra15pkdjxv2ewjzn9x665y26pfz2h6ymak4d4e8se","coinDecimals":18},{"coinDenom":"ulc","coinMinimalDenom":"cw20:terra1fyjsxx73jrufw8ufgtuswa773dvdkny92k70wa","coinDecimals":18},{"coinDenom":"sst","coinMinimalDenom":"cw20:terra1689ys6p6gfu0q6xrjqkzfn80sdyhurjqn0jfdl","coinDecimals":6},{"coinDenom":"atlas","coinMinimalDenom":"cw20:terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc","coinDecimals":8},{"coinDenom":"audio","coinMinimalDenom":"cw20:terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp","coinDecimals":8},{"coinDenom":"avax","coinMinimalDenom":"cw20:terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m","coinDecimals":8},{"coinDenom":"bat","coinMinimalDenom":"cw20:terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2","coinDecimals":8},{"coinDenom":"busdbs","coinMinimalDenom":"cw20:terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd","coinDecimals":8},{"coinDenom":"dai","coinMinimalDenom":"cw20:terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95","coinDecimals":8},{"coinDenom":"maticpo","coinMinimalDenom":"cw20:terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8","coinDecimals":8},{"coinDenom":"mimet","coinMinimalDenom":"cw20:terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y","coinDecimals":8},{"coinDenom":"ray","coinMinimalDenom":"cw20:terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q","coinDecimals":6},{"coinDenom":"sbr","coinMinimalDenom":"cw20:terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc","coinDecimals":6},{"coinDenom":"shib","coinMinimalDenom":"cw20:terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd","coinDecimals":8},{"coinDenom":"srmso","coinMinimalDenom":"cw20:terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c","coinDecimals":6},{"coinDenom":"usdcav","coinMinimalDenom":"cw20:terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w","coinDecimals":6},{"coinDenom":"usdcbs","coinMinimalDenom":"cw20:terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu","coinDecimals":8},{"coinDenom":"usdcpo","coinMinimalDenom":"cw20:terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x","coinDecimals":6},{"coinDenom":"usdcso","coinMinimalDenom":"cw20:terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4","coinDecimals":6},{"coinDenom":"usdtav","coinMinimalDenom":"cw20:terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx","coinDecimals":6},{"coinDenom":"usdtbs","coinMinimalDenom":"cw20:terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd","coinDecimals":8},{"coinDenom":"usdtso","coinMinimalDenom":"cw20:terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5","coinDecimals":6},{"coinDenom":"gohm","coinMinimalDenom":"cw20:terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3","coinDecimals":8},{"coinDenom":"msol","coinMinimalDenom":"cw20:terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y","coinDecimals":8},{"coinDenom":"steth","coinMinimalDenom":"cw20:terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d","coinDecimals":8},{"coinDenom":"lct","coinMinimalDenom":"cw20:terra1srp2u95kxps35nvan88gn96nfqhukqya2d0ffc","coinDecimals":6},{"coinDenom":"batom","coinMinimalDenom":"cw20:terra18zqcnl83z98tf6lly37gghm7238k7lh79u4z9a","coinDecimals":6},{"coinDenom":"webatom","coinMinimalDenom":"cw20:terra128pe5jpempxu0nws5lw28se9zknhsr78626cpn","coinDecimals":6},{"coinDenom":"wcoin","coinMinimalDenom":"cw20:terra1laczhlpxlgmrwr9un9ds74qxd2fj4754nf82dn","coinDecimals":6},{"coinDenom":"lctfancard","coinMinimalDenom":"cw20:terra1thhm2u93m2stytzynhsxh5h3jrtg540x4punqy","coinDecimals":6},{"coinDenom":"kntc","coinMinimalDenom":"cw20:terra1yeyr6taynkwdl85ppaggr3zr8txhf66cny2ang","coinDecimals":6},{"coinDenom":"kust","coinMinimalDenom":"cw20:terra1g53pyke8jtmt4lwvk4yl0xaqc4u0qlsl8dz3ex","coinDecimals":6},{"coinDenom":"steak","coinMinimalDenom":"cw20:terra1rl4zyexjphwgx6v3ytyljkkc4mrje2pyznaclv","coinDecimals":6},{"coinDenom":"cst","coinMinimalDenom":"cw20:terra1jkkt5638cd5pur0u5jnr2juw0v6hz5d6z8xu8m","coinDecimals":6},{"coinDenom":"cstfancard","coinMinimalDenom":"cw20:terra1kz7qszu7p4dg9lts7m9m7lpuarsnan47jh3fam","coinDecimals":6},{"coinDenom":"nwld","coinMinimalDenom":"cw20:terra1amz5c45l34n7w8m5a3z7rd7u0k037x4nnsemwj","coinDecimals":9},{"coinDenom":"fury","coinMinimalDenom":"cw20:terra1cdc6nlsx0l6jmt3nnx7gxjggf902wge3n2z76k","coinDecimals":6},{"coinDenom":"rct","coinMinimalDenom":"cw20:terra17n223dxpkypc5c48la7aqjvverczg82ga3cr93","coinDecimals":6},{"coinDenom":"vitc","coinMinimalDenom":"cw20:terra14vw4sfqwe7jw8ppcc7u44vq7hy9qa2nlstnxmu","coinDecimals":6},{"coinDenom":"sb","coinMinimalDenom":"cw20:terra1948uvsah8aw40dhsa9mhl3htq8lraj0smlh77g","coinDecimals":6},{"coinDenom":"toad","coinMinimalDenom":"cw20:terra1rz964297kvt86rteajhtp4hsffhcum0ye8eljh","coinDecimals":6},{"coinDenom":"orionastro","coinMinimalDenom":"cw20:terra1yhlhrea3rgyx2xdnsswsfakn28qa8z7yp5gmhd","coinDecimals":6},{"coinDenom":"retro","coinMinimalDenom":"cw20:terra1j4hwavavmtsafa6zr0npalfz3tk9gf3p4787mp","coinDecimals":6},{"coinDenom":"tnd","coinMinimalDenom":"cw20:terra16wggm67a34msdxasg2vergm2pt289y7930wv7d","coinDecimals":6},{"coinDenom":"stnd","coinMinimalDenom":"cw20:terra1n9k2he20h5vpyn4mgv7pg4pzvw2n3wc4a86v3g","coinDecimals":6},{"coinDenom":"nwt","coinMinimalDenom":"cw20:terra1ezz5xply2v3xdyv32gy5tcd7zq4k235q4xtzwe","coinDecimals":9},{"coinDenom":"aut","coinMinimalDenom":"uaud","coinDecimals":6},{"coinDenom":"cat","coinMinimalDenom":"ucad","coinDecimals":6},{"coinDenom":"cht","coinMinimalDenom":"uchf","coinDecimals":6},{"coinDenom":"cnt","coinMinimalDenom":"ucny","coinDecimals":6},{"coinDenom":"dkt","coinMinimalDenom":"udkk","coinDecimals":6},{"coinDenom":"eut","coinMinimalDenom":"ueur","coinDecimals":6},{"coinDenom":"gbt","coinMinimalDenom":"ugbp","coinDecimals":6},{"coinDenom":"hkt","coinMinimalDenom":"uhkd","coinDecimals":6},{"coinDenom":"idt","coinMinimalDenom":"uidr","coinDecimals":6},{"coinDenom":"int","coinMinimalDenom":"uinr","coinDecimals":6},{"coinDenom":"jpt","coinMinimalDenom":"ujpy","coinDecimals":6},{"coinDenom":"mnt","coinMinimalDenom":"umnt","coinDecimals":6},{"coinDenom":"myt","coinMinimalDenom":"umyr","coinDecimals":6},{"coinDenom":"not","coinMinimalDenom":"unok","coinDecimals":6},{"coinDenom":"pht","coinMinimalDenom":"uphp","coinDecimals":6},{"coinDenom":"sdt","coinMinimalDenom":"usdr","coinDecimals":6},{"coinDenom":"set","coinMinimalDenom":"usek","coinDecimals":6},{"coinDenom":"sgt","coinMinimalDenom":"usgd","coinDecimals":6},{"coinDenom":"tht","coinMinimalDenom":"uthb","coinDecimals":6},{"coinDenom":"twt","coinMinimalDenom":"utwd","coinDecimals":6},{"coinDenom":"neb","coinMinimalDenom":"cw20:terra1mpq5zkkm39nmjrjg9raknpfrfmcfwv0nh0whvn","coinDecimals":6},{"coinDenom":"trit","coinMinimalDenom":"cw20:terra1g6fm3yu79gv0rc8067n2nnfpf0vks6n0wpzaf4u7w48tdrmj98zsy7uu00","coinDecimals":6},{"coinDenom":"juris","coinMinimalDenom":"cw20:terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2","coinDecimals":6},{"coinDenom":"tadf","coinMinimalDenom":"cw20:terra19gzvkw5hft3ulp8n6ws3p9yradhc802axqal59lzxau6rqxktj9q0dwf9c","coinDecimals":6},{"coinDenom":"frog","coinMinimalDenom":"cw20:terra1wez9puj43v4s25vrex7cv3ut3w75w4h6j5e537sujyuxj0r5ne2qp9uwl9","coinDecimals":6}],"rest":"https://terra-classic-lcd.publicnode.com","rpc":"https://terra-classic-rpc.publicnode.com:443","bech32Config":{"bech32PrefixAccAddr":"terra","bech32PrefixAccPub":"terrapub","bech32PrefixValAddr":"terravaloper","bech32PrefixValPub":"terravaloperpub","bech32PrefixConsAddr":"terravalcons","bech32PrefixConsPub":"terravalconspub"},"chainName":"terra","feeCurrencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6,"gasPriceStep":{"low":28.325,"average":28.325,"high":50}},{"coinDenom":"sdt","coinMinimalDenom":"usdr","coinDecimals":6,"gasPriceStep":{"low":0.52469,"average":0.52469,"high":0.52469}},{"coinDenom":"ust","coinMinimalDenom":"uusd","coinDecimals":6,"gasPriceStep":{"low":0.75,"average":0.75,"high":0.75}},{"coinDenom":"krt","coinMinimalDenom":"ukrw","coinDecimals":6,"gasPriceStep":{"low":850,"average":850,"high":850}},{"coinDenom":"mnt","coinMinimalDenom":"umnt","coinDecimals":6,"gasPriceStep":{"low":2142.855,"average":2142.855,"high":2142.855}},{"coinDenom":"eut","coinMinimalDenom":"ueur","coinDecimals":6,"gasPriceStep":{"low":0.625,"average":0.625,"high":0.625}},{"coinDenom":"cnt","coinMinimalDenom":"ucny","coinDecimals":6,"gasPriceStep":{"low":4.9,"average":4.9,"high":4.9}},{"coinDenom":"jpt","coinMinimalDenom":"ujpy","coinDecimals":6,"gasPriceStep":{"low":81.85,"average":81.85,"high":81.85}},{"coinDenom":"gbt","coinMinimalDenom":"ugbp","coinDecimals":6,"gasPriceStep":{"low":0.55,"average":0.55,"high":0.55}},{"coinDenom":"int","coinMinimalDenom":"uinr","coinDecimals":6,"gasPriceStep":{"low":54.4,"average":54.4,"high":54.4}},{"coinDenom":"cat","coinMinimalDenom":"ucad","coinDecimals":6,"gasPriceStep":{"low":0.95,"average":0.95,"high":0.95}},{"coinDenom":"cht","coinMinimalDenom":"uchf","coinDecimals":6,"gasPriceStep":{"low":0.7,"average":0.7,"high":0.7}},{"coinDenom":"aut","coinMinimalDenom":"uaud","coinDecimals":6,"gasPriceStep":{"low":0.95,"average":0.95,"high":0.95}},{"coinDenom":"sgt","coinMinimalDenom":"usgd","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"tht","coinMinimalDenom":"uthb","coinDecimals":6,"gasPriceStep":{"low":23.1,"average":23.1,"high":23.1}},{"coinDenom":"set","coinMinimalDenom":"usek","coinDecimals":6,"gasPriceStep":{"low":6.25,"average":6.25,"high":6.25}},{"coinDenom":"not","coinMinimalDenom":"unok","coinDecimals":6,"gasPriceStep":{"low":6.25,"average":6.25,"high":6.25}},{"coinDenom":"dkt","coinMinimalDenom":"udkk","coinDecimals":6,"gasPriceStep":{"low":4.5,"average":4.5,"high":4.5}},{"coinDenom":"idt","coinMinimalDenom":"uidr","coinDecimals":6,"gasPriceStep":{"low":10900,"average":10900,"high":10900}},{"coinDenom":"pht","coinMinimalDenom":"uphp","coinDecimals":6,"gasPriceStep":{"low":38,"average":38,"high":38}},{"coinDenom":"hkt","coinMinimalDenom":"uhkd","coinDecimals":6,"gasPriceStep":{"low":5.85,"average":5.85,"high":5.85}},{"coinDenom":"myt","coinMinimalDenom":"umyr","coinDecimals":6,"gasPriceStep":{"low":3,"average":3,"high":3}},{"coinDenom":"twt","coinMinimalDenom":"utwd","coinDecimals":6,"gasPriceStep":{"low":20,"average":20,"high":20}}],"stakeCurrency":{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},"bip44":{"coinType":330}},{"chainId":"phoenix-1","currencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},{"coinDenom":"astro.cw20","coinMinimalDenom":"cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"ibc/8D8A7F7253615E5F76CB6252A1E1BD921D5EDB7BBAAF8913FB1C77FF125D9995","coinDecimals":6},{"coinDenom":"cw20:terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k","coinMinimalDenom":"cw20:terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k","coinDecimals":0},{"coinDenom":"Reis","coinMinimalDenom":"cw20:terra1sdglum2dt4f3fmq7jrt2phf2tegmnudc7qqqqujkpqcm9ujuxxkqakv5u8","coinDecimals":6},{"coinDenom":"Escudos","coinMinimalDenom":"cw20:terra1qj5hs3e86qn4vm9dvtgtlkdp550r0rayk9wpay44mfw3gn3tr8nq5jw3dg","coinDecimals":6},{"coinDenom":"Alem","coinMinimalDenom":"cw20:terra1cmf8ytutcwrjrv08zskj9phuh46a3w3nkjax7en4hxezsrdr58lqvzy05q","coinDecimals":6},{"coinDenom":"AMG","coinMinimalDenom":"cw20:terra1en42e2vsvtdsvrcqg5s5e5e4djejjaed6fxmvtpweg3tu33h6k5qkg9c40","coinDecimals":6},{"coinDenom":"ARK","coinMinimalDenom":"cw20:terra1ysd87nayjuelxj4wvp4wnp9as0mwszzkje6a9z6f3xx2903ghnsq4hm50y","coinDecimals":6},{"coinDenom":"DANU","coinMinimalDenom":"cw20:terra1vj68f2ntauaj5dfvy5z4tq4we3hsyg363k63js5sae2t7th9aacqan89sr","coinDecimals":6},{"coinDenom":"TRS","coinMinimalDenom":"cw20:terra1swzpenwh39f8aa7qht34r05f8ew6k2vehvqt2aw4fjy0fgghhheqs9l6h7","coinDecimals":6},{"coinDenom":"PLASMA","coinMinimalDenom":"cw20:terra1mqs6mdx0ak7qvjzs6efhg65g4j5pzwpdkcgdsv5tpekln3qhggrq3qzvdp","coinDecimals":6},{"coinDenom":"DMT","coinMinimalDenom":"cw20:terra1xfkkgwxychgrnq0vcp82u32mecrzj8s64s03cxtmf46k6j2n2wssc7rzjf","coinDecimals":6},{"coinDenom":"ampluna","coinMinimalDenom":"cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct","coinDecimals":6},{"coinDenom":"roar","coinMinimalDenom":"cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv","coinDecimals":6},{"coinDenom":"gem","coinMinimalDenom":"cw20:terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv","coinDecimals":6},{"coinDenom":"cub","coinMinimalDenom":"cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t","coinDecimals":6},{"coinDenom":"blue","coinMinimalDenom":"cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584","coinDecimals":6},{"coinDenom":"xxx","coinMinimalDenom":"cw20:terra10se906awphtccf4vd83m0ulpmpt9v4msuakmpy0pwvmtxmup3kdq25rayn","coinDecimals":10},{"coinDenom":"GUGU","coinMinimalDenom":"cw20:terra19nu4q2y0xe3vza6ve5ymup33uzm049pnrqq5ddeuulmrg279t57qstcces","coinDecimals":6},{"coinDenom":"bLUNA","coinMinimalDenom":"cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml","coinDecimals":6},{"coinDenom":"sayve","coinMinimalDenom":"cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3","coinDecimals":6},{"coinDenom":"ampWHALEt","coinMinimalDenom":"factory/terra1j35ta0llaxcf55auv2cjqau5a7aee6g8fz7md7my7005cvh23jfsaw83dy/ampWHALEt","coinDecimals":6},{"coinDenom":"boneWHALEt","coinMinimalDenom":"factory/terra10j3zrymfrkta2pxe0gklc79gu06tqyuy8c3kh6tqdsrrprsjqkrqzfl4df/boneWHALEt","coinDecimals":6},{"coinDenom":"ampROAR","coinMinimalDenom":"factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR","coinDecimals":6},{"coinDenom":"nico","coinMinimalDenom":"cw20:terra1e0efrrrj8d55pflme3dmtyuj7klzcef5cfmz6r2jyqz77kk2jz3qa6drg3","coinDecimals":18},{"coinDenom":"seas","coinMinimalDenom":"cw20:terra1rc6ssp5rym7a0hg29xpj4cc9e67tl56kg5jyzgl9qrhfxxc2ugvsnrkala","coinDecimals":6},{"coinDenom":"bitz","coinMinimalDenom":"cw20:terra18vp5s0r7keezm35hdxsgw8zgfnyn8wejdkk893ag2kqncgpqxhjqwjpc0v","coinDecimals":6},{"coinDenom":"factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH","coinMinimalDenom":"ibc/A356EC90DC3AE43D485514DA7260EDC7ABB5CFAA0654CE2524C739392975AD3C","coinDecimals":18},{"coinDenom":"seul","coinMinimalDenom":"cw20:terra13s5pxw5j2p4ssvzwvxd8l7h30vke8vjgtng75vqgv6p9vddfk3hskfka0l","coinDecimals":6},{"coinDenom":"xseul","coinMinimalDenom":"cw20:terra1q328gl40az3cf9x67cgudn8e8w2az9vsmhtkwsgdu7a43rhy5caqc82yr5","coinDecimals":6},{"coinDenom":"ito","coinMinimalDenom":"cw20:terra1c77xqv746m7ghxayrge79dxr4kcezev8g6cnrfled4f3n4ufj0vs5gz28s","coinDecimals":6},{"coinDenom":"ARMANI","coinMinimalDenom":"cw20:terra1aa7stl3fytvave9xtcexgv0kne4k7ks068dcljkrfj37hy8q270sjadav8","coinDecimals":6},{"coinDenom":"DROGO","coinMinimalDenom":"cw20:terra1cl273523kmr2uwjhhznq54je69mted2u3ljffm8kp2ap4z3drdksftwqun","coinDecimals":6},{"coinDenom":"ADO","coinMinimalDenom":"cw20:terra1w8xk6rtu40st6lvl3yv7ynw5urm2n686u9cchvrzltmnktzwdesqcwy0nu","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/E18C0D303957867A164DE2863D1C3F83135936E6F17CADF4D241FBC12B0F23B2","coinDecimals":6},{"coinDenom":"DNA","coinMinimalDenom":"cw20:terra1epka8wevu90rxlvt6g5x9veevd800a760vtuftc5kqdfmrh47qds9f0m8h","coinDecimals":6},{"coinDenom":"bitmos","coinMinimalDenom":"cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq","coinDecimals":6},{"coinDenom":"lads","coinMinimalDenom":"cw20:terra1eh8eq60cjy997w5dc3a6exfzanlaurupav8klx7m9u9ddfgh25mqjwl5vj","coinDecimals":6},{"coinDenom":"rstk","coinMinimalDenom":"ibc/F709DF4969CD26174C1A53AA95F3D98BE643C1A52C9981487766F96A1811F6A4","coinDecimals":6},{"coinDenom":"CLON","coinMinimalDenom":"cw20:terra164ssz60yvsxey0ku9mtcaegdeyxwzuwwqyrp238nvflwqve0pvxsra7fa2","coinDecimals":6},{"coinDenom":"MOAR","coinMinimalDenom":"factory/terra1dndhtdr2v7ca8rrn67chlqw3cl3xhm3m2uxls62vghcg3fsh5tpss5xmcu/MOAR","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/9B19062D46CAB50361CE9B0A3E6D0A7A53AC9E7CB361F32A73CC733144A9A9E5","coinDecimals":6},{"coinDenom":"atom-luna-lp","coinMinimalDenom":"factory/terra1djk2zl83dspt696ex5crhfacu8vm6934576t4zdd2592fzyahr2qma6guq/ULUN-IBC/-LP","coinDecimals":6},{"coinDenom":"luna-usdc-lp","coinMinimalDenom":"factory/terra12jxfw2vg4cu6mxlgf39dp5ccxtuwm468w8eh9cnh2qsxc9t0sffs7ekhft/ULUN-IBC/-LP","coinDecimals":6},{"coinDenom":"luna-usdt-lp","coinMinimalDenom":"factory/terra1w9spejtuac5dt0gympq576uhwde39exhh7hdxwl99rjvaphfukkq6y4cv7/ULUN-IBC/-LP","coinDecimals":6},{"coinDenom":"ashLUNA","coinMinimalDenom":"factory/terra1f5cfm48gcezl3cx25l64ngc4yktnmx7rcpj3kggu6v273742sqqs5yn5ks/luna.ash","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/2C962DAB9F57FE0921435426AE75196009FAA1981BF86991203C8411F8980FDB","coinDecimals":6},{"coinDenom":"COSMO","coinMinimalDenom":"ibc/4925733868E7999F5822C961ADE9470A7FC5FA4A560BAE1DE102783C3F64C201","coinDecimals":6},{"coinDenom":"DGN","coinMinimalDenom":"ibc/B2AA4C3CD19954859C3B537EC0705640AFC01075F52993D9AC5E73F07F0386CC","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/36A02FFC4E74DF4F64305130C3DFA1B06BEAC775648927AA44467C76A77AB8DB","coinDecimals":6}],"rest":"https://lcd-terra.wildsage.io","rpc":"https://rpc.lavenderfive.com:443/terra2","bech32Config":{"bech32PrefixAccAddr":"terra","bech32PrefixAccPub":"terrapub","bech32PrefixValAddr":"terravaloper","bech32PrefixValPub":"terravaloperpub","bech32PrefixConsAddr":"terravalcons","bech32PrefixConsPub":"terravalconspub"},"chainName":"terra2","feeCurrencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.015,"high":0.04}}],"stakeCurrency":{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},"bip44":{"coinType":330}},{"chainId":"tgrade-mainnet-1","currencies":[{"coinDenom":"tgd","coinMinimalDenom":"utgd","coinDecimals":6}],"rest":"https://api.mainnet-1.tgrade.confio.run","rpc":"https://rpc.mainnet-1.tgrade.confio.run","bech32Config":{"bech32PrefixAccAddr":"tgrade","bech32PrefixAccPub":"tgradepub","bech32PrefixValAddr":"tgradevaloper","bech32PrefixValPub":"tgradevaloperpub","bech32PrefixConsAddr":"tgradevalcons","bech32PrefixConsPub":"tgradevalconspub"},"chainName":"tgrade","feeCurrencies":[{"coinDenom":"tgd","coinMinimalDenom":"utgd","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.075,"high":0.1}}],"stakeCurrency":{"coinDenom":"tgd","coinMinimalDenom":"utgd","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"titan_18888-1","currencies":[{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","coinDecimals":6}],"rest":"https://titan-lcd.titanlab.io:443","rpc":"https://titan-rpc.titanlab.io:443","bech32Config":{"bech32PrefixAccAddr":"titan","bech32PrefixAccPub":"titanpub","bech32PrefixValAddr":"titanvaloper","bech32PrefixValPub":"titanvaloperpub","bech32PrefixConsAddr":"titanvalcons","bech32PrefixConsPub":"titanvalconspub"},"chainName":"titan","feeCurrencies":[{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18,"gasPriceStep":{"low":100000000000,"average":110000000000,"high":200000000000}}],"stakeCurrency":{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"umee-1","currencies":[{"coinDenom":"umee","coinMinimalDenom":"uumee","coinDecimals":6}],"rest":"https://api-umee-ia.cosmosia.notional.ventures/","rpc":"https://umee-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"umee","bech32PrefixAccPub":"umeepub","bech32PrefixValAddr":"umeevaloper","bech32PrefixValPub":"umeevaloperpub","bech32PrefixConsAddr":"umeevalcons","bech32PrefixConsPub":"umeevalconspub"},"chainName":"umee","feeCurrencies":[{"coinDenom":"umee","coinMinimalDenom":"uumee","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.12,"high":0.2}}],"stakeCurrency":{"coinDenom":"umee","coinMinimalDenom":"uumee","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"FUND-MainNet-2","currencies":[{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9}],"rest":"https://rest.unification.io","rpc":"https://rpc.unification.io:443","bech32Config":{"bech32PrefixAccAddr":"und","bech32PrefixAccPub":"undpub","bech32PrefixValAddr":"undvaloper","bech32PrefixValPub":"undvaloperpub","bech32PrefixConsAddr":"undvalcons","bech32PrefixConsPub":"undvalconspub"},"chainName":"unification","feeCurrencies":[{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9,"gasPriceStep":{"low":100,"average":200,"high":300}}],"stakeCurrency":{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9},"bip44":{"coinType":5555}},{"chainId":"ununifi-beta-v1","currencies":[{"coinDenom":"guu","coinMinimalDenom":"uguu","coinDecimals":6}],"rest":"https://a.lcd.ununifi.cauchye.net:1318","rpc":"http://a.lcd.ununifi.cauchye.net:26657","bech32Config":{"bech32PrefixAccAddr":"ununifi","bech32PrefixAccPub":"ununifipub","bech32PrefixValAddr":"ununifivaloper","bech32PrefixValPub":"ununifivaloperpub","bech32PrefixConsAddr":"ununifivalcons","bech32PrefixConsPub":"ununifivalconspub"},"chainName":"ununifi","feeCurrencies":[{"coinDenom":"guu","coinMinimalDenom":"uguu","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"guu","coinMinimalDenom":"uguu","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"uptick_117-1","currencies":[{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18}],"rest":"https://uptick-rest.brocha.in:443","rpc":"https://uptick-rpc.brocha.in:443","bech32Config":{"bech32PrefixAccAddr":"uptick","bech32PrefixAccPub":"uptickpub","bech32PrefixValAddr":"uptickvaloper","bech32PrefixValPub":"uptickvaloperpub","bech32PrefixConsAddr":"uptickvalcons","bech32PrefixConsPub":"uptickvalconspub"},"chainName":"uptick","feeCurrencies":[{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18,"gasPriceStep":{"low":13000000000,"average":16000000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"xion-mainnet-1","currencies":[{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6}],"rest":"https://api.xion-mainnet-1.burnt.com","rpc":"https://rpc.xion-mainnet-1.burnt.com","bech32Config":{"bech32PrefixAccAddr":"xion","bech32PrefixAccPub":"xionpub","bech32PrefixValAddr":"xionvaloper","bech32PrefixValPub":"xionvaloperpub","bech32PrefixConsAddr":"xionvalcons","bech32PrefixConsPub":"xionvalconspub"},"chainName":"xion","feeCurrencies":[{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.001,"high":0.01}}],"stakeCurrency":{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"dimension_37-1","currencies":[{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18}],"rest":"https://dimension-lcd.xpla.io","rpc":"https://dimension-rpc.xpla.dev","bech32Config":{"bech32PrefixAccAddr":"xpla","bech32PrefixAccPub":"xplapub","bech32PrefixValAddr":"xplavaloper","bech32PrefixValPub":"xplavaloperpub","bech32PrefixConsAddr":"xplavalcons","bech32PrefixConsPub":"xplavalconspub"},"chainName":"xpla","feeCurrencies":[{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18,"gasPriceStep":{"low":850000000000,"average":1147500000000,"high":1487500000000}}],"stakeCurrency":{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"zetachain_7000-1","currencies":[{"coinDenom":"zeta","coinMinimalDenom":"azeta","coinDecimals":18}],"rest":"https://zetachain.blockpi.network/lcd/v1/public","rpc":"https://zetachain.blockpi.network/rpc/v1/public","bech32Config":{"bech32PrefixAccAddr":"zeta","bech32PrefixAccPub":"zetapub","bech32PrefixValAddr":"zetavaloper","bech32PrefixValPub":"zetavaloperpub","bech32PrefixConsAddr":"zetavalcons","bech32PrefixConsPub":"zetavalconspub"},"chainName":"zetachain","feeCurrencies":[{"coinDenom":"zeta","coinMinimalDenom":"azeta","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"zeta","coinMinimalDenom":"azeta","coinDecimals":18},"bip44":{"coinType":60}}] \ No newline at end of file diff --git a/packages/widget/src/constants/cosmosChains/testnet.json b/packages/widget/src/constants/cosmosChains/testnet.json index 93d3992c9..ae216d520 100644 --- a/packages/widget/src/constants/cosmosChains/testnet.json +++ b/packages/widget/src/constants/cosmosChains/testnet.json @@ -1 +1 @@ -[{"chainId":"junction","currencies":[{"coinDenom":"AMF","coinMinimalDenom":"amf","coinDecimals":6}],"rest":"https://rest.nodejumper.io/airchainstestnet","rpc":"https://junction-rpc.validatorvn.com/","bech32Config":{"bech32PrefixAccAddr":"air","bech32PrefixAccPub":"airpub","bech32PrefixValAddr":"airvaloper","bech32PrefixValPub":"airvaloperpub","bech32PrefixConsAddr":"airvalcons","bech32PrefixConsPub":"airvalconspub"},"chainName":"airchainstestnet","feeCurrencies":[{"coinDenom":"AMF","coinMinimalDenom":"amf","coinDecimals":6,"gasPriceStep":{"low":0.00025,"average":0.005,"high":0.01}}],"stakeCurrency":{"coinDenom":"AMF","coinMinimalDenom":"amf","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sandbox-01","currencies":[{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6}],"rest":"https://api.sandbox-01.aksh.pw:443","rpc":"https://rpc.sandbox-01.aksh.pw:443","bech32Config":{"bech32PrefixAccAddr":"akash","bech32PrefixAccPub":"akashpub","bech32PrefixValAddr":"akashvaloper","bech32PrefixValPub":"akashvaloperpub","bech32PrefixConsAddr":"akashvalcons","bech32PrefixConsPub":"akashvalconspub"},"chainName":"akashtestnet","feeCurrencies":[{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"constantine-3","currencies":[{"coinDenom":"const","coinMinimalDenom":"aconst","coinDecimals":18},{"coinDenom":"wARCH","coinMinimalDenom":"cw20:archway1dz6h2smr432gvzruklk3lps7ak2ca7cngdge4vym93wehkkypwpqgwr2q2","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/34F8D3402273FFA5278AE5757D81CE151ACFD4B19C494C0EE372A7229714824F","coinDecimals":6},{"coinDenom":"wUSDC","coinMinimalDenom":"cw20:archway172vetupqnkgdc7dp3gwqpvk5ljmgzyj2gs4ag2fdmp0s2rucxxsqh0nqeu","coinDecimals":6}],"rest":"https://api.constantine.archway.io","rpc":"https://rpc.constantine.archway.io","bech32Config":{"bech32PrefixAccAddr":"archway","bech32PrefixAccPub":"archwaypub","bech32PrefixValAddr":"archwayvaloper","bech32PrefixValPub":"archwayvaloperpub","bech32PrefixConsAddr":"archwayvalcons","bech32PrefixConsPub":"archwayvalconspub"},"chainName":"archwaytestnet","feeCurrencies":[{"coinDenom":"const","coinMinimalDenom":"aconst","coinDecimals":18,"gasPriceStep":{"low":1000000000000,"average":1500000000000,"high":2000000000000}}],"stakeCurrency":{"coinDenom":"const","coinMinimalDenom":"aconst","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"arkeo","currencies":[{"coinDenom":"arkeo","coinMinimalDenom":"uarkeo","coinDecimals":6}],"rest":"https://arkeonetwork-testnet.nodejumper.io:1317","rpc":"https://arkeonetwork-testnet.nodejumper.io:26657","bech32Config":{"bech32PrefixAccAddr":"tarkeo","bech32PrefixAccPub":"tarkeopub","bech32PrefixValAddr":"tarkeovaloper","bech32PrefixValPub":"tarkeovaloperpub","bech32PrefixConsAddr":"tarkeovalcons","bech32PrefixConsPub":"tarkeovalconspub"},"chainName":"arkeonetworktestnet","feeCurrencies":[{"coinDenom":"arkeo","coinMinimalDenom":"uarkeo","coinDecimals":6}],"stakeCurrency":{"coinDenom":"arkeo","coinMinimalDenom":"uarkeo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"artela_11820-1","currencies":[{"coinDenom":"art","coinMinimalDenom":"uart","coinDecimals":18}],"rest":"https://testnet-rpc1.artela.network","rpc":"https://testnet-rpc1.artela.network","bech32Config":{"bech32PrefixAccAddr":"art","bech32PrefixAccPub":"artpub","bech32PrefixValAddr":"artvaloper","bech32PrefixValPub":"artvaloperpub","bech32PrefixConsAddr":"artvalcons","bech32PrefixConsPub":"artvalconspub"},"chainName":"artelatestnet","feeCurrencies":[{"coinDenom":"art","coinMinimalDenom":"uart","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"art","coinMinimalDenom":"uart","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"aura_6321-3","currencies":[{"coinDenom":"eaura","coinMinimalDenom":"ueaura","coinDecimals":6}],"rest":"https://lcd.euphoria.aura.network/","rpc":"https://rpc.euphoria.aura.network/","bech32Config":{"bech32PrefixAccAddr":"aura","bech32PrefixAccPub":"aurapub","bech32PrefixValAddr":"auravaloper","bech32PrefixValPub":"auravaloperpub","bech32PrefixConsAddr":"auravalcons","bech32PrefixConsPub":"auravalconspub"},"chainName":"auratestnet","feeCurrencies":[{"coinDenom":"eaura","coinMinimalDenom":"ueaura","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.0025}}],"stakeCurrency":{"coinDenom":"eaura","coinMinimalDenom":"ueaura","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"axelar-testnet-lisbon-3","currencies":[{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6},{"coinDenom":"ausdc","coinMinimalDenom":"uausdc","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"eth-wei","coinDecimals":18},{"coinDenom":"wglmr","coinMinimalDenom":"wglmr-wei","coinDecimals":18},{"coinDenom":"wmatic","coinMinimalDenom":"wmatic-wei","coinDecimals":18},{"coinDenom":"wbnb","coinMinimalDenom":"wbnb-wei","coinDecimals":18},{"coinDenom":"avax","coinMinimalDenom":"wavax-wei","coinDecimals":18},{"coinDenom":"ftm","coinMinimalDenom":"wftm-wei","coinDecimals":18}],"rest":"https://lcd-axelar-testnet.imperator.co:443","rpc":"https://rpc-axelar-testnet.imperator.co:443","bech32Config":{"bech32PrefixAccAddr":"axelar","bech32PrefixAccPub":"axelarpub","bech32PrefixValAddr":"axelarvaloper","bech32PrefixValPub":"axelarvaloperpub","bech32PrefixConsAddr":"axelarvalcons","bech32PrefixConsPub":"axelarvalconspub"},"chainName":"axelartestnet","feeCurrencies":[{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6,"gasPriceStep":{"low":0.007,"average":0.007,"high":0.01}}],"stakeCurrency":{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"bbn-test3","currencies":[{"coinDenom":"bbn","coinMinimalDenom":"ubbn","coinDecimals":6}],"rest":"lcd.testnet3.babylonchain.io:443","rpc":"rpc.testnet3.babylonchain.io:443","bech32Config":{"bech32PrefixAccAddr":"bbn","bech32PrefixAccPub":"bbnpub","bech32PrefixValAddr":"bbnvaloper","bech32PrefixValPub":"bbnvaloperpub","bech32PrefixConsAddr":"bbnvalcons","bech32PrefixConsPub":"bbnvalconspub"},"chainName":"babylontestnet","feeCurrencies":[{"coinDenom":"bbn","coinMinimalDenom":"ubbn","coinDecimals":6}],"stakeCurrency":{"coinDenom":"bbn","coinMinimalDenom":"ubbn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"bitcanna-dev-1","currencies":[{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6}],"rest":"https://lcd-testnet.bitcanna.io","rpc":"https://rpc-testnet.bitcanna.io","bech32Config":{"bech32PrefixAccAddr":"bcna","bech32PrefixAccPub":"bcnapub","bech32PrefixValAddr":"bcnavaloper","bech32PrefixValPub":"bcnavaloperpub","bech32PrefixConsAddr":"bcnavalcons","bech32PrefixConsPub":"bcnavalconspub"},"chainName":"bitcannadevnet","feeCurrencies":[{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6}],"stakeCurrency":{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cascadia_6102-1","currencies":[{"coinDenom":"tCC","coinMinimalDenom":"aCC","coinDecimals":18}],"rest":"https://lcd.cascadia.foundation","rpc":"https://rpc.cascadia.foundation:443","bech32Config":{"bech32PrefixAccAddr":"cascadia","bech32PrefixAccPub":"cascadiapub","bech32PrefixValAddr":"cascadiavaloper","bech32PrefixValPub":"cascadiavaloperpub","bech32PrefixConsAddr":"cascadiavalcons","bech32PrefixConsPub":"cascadiavalconspub"},"chainName":"cascadiatestnet","feeCurrencies":[{"coinDenom":"tCC","coinMinimalDenom":"aCC","coinDecimals":18,"gasPriceStep":{"low":7,"average":10,"high":15}}],"stakeCurrency":{"coinDenom":"tCC","coinMinimalDenom":"aCC","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"mocha-4","currencies":[{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6}],"rest":"https://api-mocha.pops.one","rpc":"https://rpc-mocha.pops.one","bech32Config":{"bech32PrefixAccAddr":"celestia","bech32PrefixAccPub":"celestiapub","bech32PrefixValAddr":"celestiavaloper","bech32PrefixValPub":"celestiavaloperpub","bech32PrefixConsAddr":"celestiavalcons","bech32PrefixConsPub":"celestiavalconspub"},"chainName":"celestiatestnet3","feeCurrencies":[{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}}],"stakeCurrency":{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"babajaga-1","currencies":[{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6}],"rest":"https://c4e.api.t.stavr.tech","rpc":"https://rpc-testnet.c4e.io","bech32Config":{"bech32PrefixAccAddr":"c4e","bech32PrefixAccPub":"c4epub","bech32PrefixValAddr":"c4evaloper","bech32PrefixValPub":"c4evaloperpub","bech32PrefixConsAddr":"c4evalcons","bech32PrefixConsPub":"c4evalconspub"},"chainName":"chain4energytestnet","feeCurrencies":[{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.03,"high":0.06}}],"stakeCurrency":{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cheqd-testnet-6","currencies":[{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9}],"rest":"https://api.cheqd.network","rpc":"https://rpc.cheqd.network","bech32Config":{"bech32PrefixAccAddr":"cheqd","bech32PrefixAccPub":"cheqdpub","bech32PrefixValAddr":"cheqdvaloper","bech32PrefixValPub":"cheqdvaloperpub","bech32PrefixConsAddr":"cheqdvalcons","bech32PrefixConsPub":"cheqdvalconspub"},"chainName":"cheqdtestnet","feeCurrencies":[{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9,"gasPriceStep":{"low":50,"average":75,"high":100}}],"stakeCurrency":{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"chimba-testnet","currencies":[{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6}],"rest":"https://testnet.chimba.ooo","rpc":"https://rpc.testnet.chimba.ooo","bech32Config":{"bech32PrefixAccAddr":"chimba","bech32PrefixAccPub":"chimbapub","bech32PrefixValAddr":"chimbavaloper","bech32PrefixValPub":"chimbavaloperpub","bech32PrefixConsAddr":"chimbavalcons","bech32PrefixConsPub":"chimbavalconspub"},"chainName":"chimbatestnet","feeCurrencies":[{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6,"gasPriceStep":{"low":1,"average":5,"high":10}}],"stakeCurrency":{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"banksy-testnet-3","currencies":[{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12}],"rest":"https://api.composable-t.indonode.net","rpc":"https://rpc.composable-t.indonode.net:443","bech32Config":{"bech32PrefixAccAddr":"centauri","bech32PrefixAccPub":"centauripub","bech32PrefixValAddr":"centaurivaloper","bech32PrefixValPub":"centaurivaloperpub","bech32PrefixConsAddr":"centaurivalcons","bech32PrefixConsPub":"centaurivalconspub"},"chainName":"composabletestnet","feeCurrencies":[{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12}],"stakeCurrency":{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12},"bip44":{"coinType":118}},{"chainId":"kitten-04","currencies":[{"coinDenom":"ccat","coinMinimalDenom":"uccat","coinDecimals":6}],"rest":"https://lcd.coolcat.space","rpc":"https://rpc.coolcat.space","bech32Config":{"bech32PrefixAccAddr":"ccat","bech32PrefixAccPub":"ccatpub","bech32PrefixValAddr":"ccatvaloper","bech32PrefixValPub":"ccatvaloperpub","bech32PrefixConsAddr":"ccatvalcons","bech32PrefixConsPub":"ccatvalconspub"},"chainName":"coolcattestnet","feeCurrencies":[{"coinDenom":"ccat","coinMinimalDenom":"uccat","coinDecimals":6}],"stakeCurrency":{"coinDenom":"ccat","coinMinimalDenom":"uccat","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"coreum-testnet-1","currencies":[{"coinDenom":"testcore","coinMinimalDenom":"utestcore","coinDecimals":6}],"rest":"https://full-node.testnet-1.coreum.dev:1317","rpc":"https://full-node.testnet-1.coreum.dev:26657","bech32Config":{"bech32PrefixAccAddr":"testcore","bech32PrefixAccPub":"testcorepub","bech32PrefixValAddr":"testcorevaloper","bech32PrefixValPub":"testcorevaloperpub","bech32PrefixConsAddr":"testcorevalcons","bech32PrefixConsPub":"testcorevalconspub"},"chainName":"coreumtestnet","feeCurrencies":[{"coinDenom":"testcore","coinMinimalDenom":"utestcore","coinDecimals":6,"gasPriceStep":{"low":0.0625,"average":0.0625,"high":62.5}}],"stakeCurrency":{"coinDenom":"testcore","coinMinimalDenom":"utestcore","coinDecimals":6},"bip44":{"coinType":990}},{"chainId":"theta-testnet-001","currencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6}],"rest":"https://cosmoshubt.lava.build","rpc":"https://cosmoshubt.tendermintrpc.lava.build:443","bech32Config":{"bech32PrefixAccAddr":"cosmos","bech32PrefixAccPub":"cosmospub","bech32PrefixValAddr":"cosmosvaloper","bech32PrefixValPub":"cosmosvaloperpub","bech32PrefixConsAddr":"cosmosvalcons","bech32PrefixConsPub":"cosmosvalconspub"},"chainName":"cosmoshubtestnet","feeCurrencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"provider","currencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6}],"rest":"https://rest.provider-sentry-01.ics-testnet.polypore.xyz","rpc":"https://rpc.provider-sentry-01.ics-testnet.polypore.xyz","bech32Config":{"bech32PrefixAccAddr":"cosmos","bech32PrefixAccPub":"cosmospub","bech32PrefixValAddr":"cosmosvaloper","bech32PrefixValPub":"cosmosvaloperpub","bech32PrefixConsAddr":"cosmosvalcons","bech32PrefixConsPub":"cosmosvalconspub"},"chainName":"cosmosicsprovidertestnet","feeCurrencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"malaga-420","currencies":[{"coinDenom":"MLG","coinMinimalDenom":"umlg","coinDecimals":6},{"coinDenom":"AND","coinMinimalDenom":"uand","coinDecimals":6}],"rest":"https://api.malaga-420.cosmwasm.com","rpc":"https://rpc.malaga-420.cosmwasm.com:443","bech32Config":{"bech32PrefixAccAddr":"wasm","bech32PrefixAccPub":"wasmpub","bech32PrefixValAddr":"wasmvaloper","bech32PrefixValPub":"wasmvaloperpub","bech32PrefixConsAddr":"wasmvalcons","bech32PrefixConsPub":"wasmvalconspub"},"chainName":"cosmwasmtestnet","feeCurrencies":[{"coinDenom":"MLG","coinMinimalDenom":"umlg","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.04,"high":0.05}}],"stakeCurrency":{"coinDenom":"MLG","coinMinimalDenom":"umlg","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"coss-testnet-1","currencies":[{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6}],"rest":"https://coss-testnet-rest.coss.ink","rpc":"https://coss-testnet-rpc.coss.ink","bech32Config":{"bech32PrefixAccAddr":"coss","bech32PrefixAccPub":"cosspub","bech32PrefixValAddr":"cossvaloper","bech32PrefixValPub":"cossvaloperpub","bech32PrefixConsAddr":"cossvalcons","bech32PrefixConsPub":"cossvalconspub"},"chainName":"cosstestnet","feeCurrencies":[{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6}],"stakeCurrency":{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"deardoge-testnet","currencies":[{"coinDenom":"dear","coinMinimalDenom":"udear","coinDecimals":6}],"rest":"https://testnet-rest.deardoge.org","rpc":"https://testnet-rpc.deardoge.org","bech32Config":{"bech32PrefixAccAddr":"deardoge","bech32PrefixAccPub":"deardogepub","bech32PrefixValAddr":"deardogevaloper","bech32PrefixValPub":"deardogevaloperpub","bech32PrefixConsAddr":"deardogevalcons","bech32PrefixConsPub":"deardogevalconspub"},"chainName":"deardogetestnet","feeCurrencies":[{"coinDenom":"dear","coinMinimalDenom":"udear","coinDecimals":6}],"stakeCurrency":{"coinDenom":"dear","coinMinimalDenom":"udear","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"morpheus-apollo-3","currencies":[{"coinDenom":"daric","coinMinimalDenom":"udaric","coinDecimals":6}],"rest":"https://lcd.morpheus.desmos.network","rpc":"https://rpc.morpheus.desmos.network","bech32Config":{"bech32PrefixAccAddr":"desmos","bech32PrefixAccPub":"desmospub","bech32PrefixValAddr":"desmosvaloper","bech32PrefixValPub":"desmosvaloperpub","bech32PrefixConsAddr":"desmosvalcons","bech32PrefixConsPub":"desmosvalconspub"},"chainName":"desmostestnet","feeCurrencies":[{"coinDenom":"daric","coinMinimalDenom":"udaric","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.03,"high":0.05}}],"stakeCurrency":{"coinDenom":"daric","coinMinimalDenom":"udaric","coinDecimals":6},"bip44":{"coinType":852}},{"chainId":"dhealth-testnet-2","currencies":[{"coinDenom":"tdhp","coinMinimalDenom":"utdhp","coinDecimals":6}],"rest":"https://lcd-testnet.dhealth.dev","rpc":"https://rpc-testnet.dhealth.dev","bech32Config":{"bech32PrefixAccAddr":"tdh02","bech32PrefixAccPub":"tdh02pub","bech32PrefixValAddr":"tdh02valoper","bech32PrefixValPub":"tdh02valoperpub","bech32PrefixConsAddr":"tdh02valcons","bech32PrefixConsPub":"tdh02valconspub"},"chainName":"dhealthtestnet","feeCurrencies":[{"coinDenom":"tdhp","coinMinimalDenom":"utdhp","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}}],"stakeCurrency":{"coinDenom":"tdhp","coinMinimalDenom":"utdhp","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"vota-testnet","currencies":[{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18}],"rest":"https://vota-testnet-rest.dorafactory.org","rpc":"https://vota-testnet-rpc.dorafactory.org/","bech32Config":{"bech32PrefixAccAddr":"dora","bech32PrefixAccPub":"dorapub","bech32PrefixValAddr":"doravaloper","bech32PrefixValPub":"doravaloperpub","bech32PrefixConsAddr":"doravalcons","bech32PrefixConsPub":"doravalconspub"},"chainName":"doravotatestnet","feeCurrencies":[{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18}],"stakeCurrency":{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"dydx-testnet-4","currencies":[{"coinDenom":"dv4tnt","coinMinimalDenom":"adv4tnt","coinDecimals":18}],"rest":"https://dydx-lcd-testnet.enigma-validator.com","rpc":"https://dydx-rpc-testnet.enigma-validator.com","bech32Config":{"bech32PrefixAccAddr":"dydx","bech32PrefixAccPub":"dydxpub","bech32PrefixValAddr":"dydxvaloper","bech32PrefixValPub":"dydxvaloperpub","bech32PrefixConsAddr":"dydxvalcons","bech32PrefixConsPub":"dydxvalconspub"},"chainName":"dydxtestnet","feeCurrencies":[{"coinDenom":"dv4tnt","coinMinimalDenom":"adv4tnt","coinDecimals":18,"gasPriceStep":{"low":12500000000,"average":12500000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"dv4tnt","coinMinimalDenom":"adv4tnt","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"dymension_1405-1","currencies":[{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18},{"coinDenom":"nim","coinMinimalDenom":"ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942","coinDecimals":18},{"coinDenom":"mand","coinMinimalDenom":"ibc/5A26C8DC8DA66F4DD94326E67F94510188F5F7AFE2DB3933A0C823670E56EABF","coinDecimals":18}],"rest":"https://api-dym-migration-test-2.mzonder.com","rpc":"https://rpc-dym-migration-test-2.mzonder.com","bech32Config":{"bech32PrefixAccAddr":"dym","bech32PrefixAccPub":"dympub","bech32PrefixValAddr":"dymvaloper","bech32PrefixValPub":"dymvaloperpub","bech32PrefixConsAddr":"dymvalcons","bech32PrefixConsPub":"dymvalconspub"},"chainName":"dymensionplaygroundtestnet","feeCurrencies":[{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18,"gasPriceStep":{"low":5000000000,"average":5500000000,"high":6000000000}}],"stakeCurrency":{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"elystestnet-1","currencies":[{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6},{"coinDenom":"eden","coinMinimalDenom":"ueden","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/2180E84E20F5679FCC760D8C165B60F42065DEF7F46A72B447CFF1B7DC6C0A65","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4","coinDecimals":6}],"rest":"https://api.testnet.elys.network","rpc":"https://rpc.testnet.elys.network","bech32Config":{"bech32PrefixAccAddr":"elys","bech32PrefixAccPub":"elyspub","bech32PrefixValAddr":"elysvaloper","bech32PrefixValPub":"elysvaloperpub","bech32PrefixConsAddr":"elysvalcons","bech32PrefixConsPub":"elysvalconspub"},"chainName":"elystestnet","feeCurrencies":[{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/2180E84E20F5679FCC760D8C165B60F42065DEF7F46A72B447CFF1B7DC6C0A65","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"atom","coinMinimalDenom":"ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"empe-testnet-2","currencies":[{"coinDenom":"empe","coinMinimalDenom":"uempe","coinDecimals":6}],"rest":"https://lcd-testnet.empe.io/","rpc":"https://rpc-testnet.empe.io/","bech32Config":{"bech32PrefixAccAddr":"empe","bech32PrefixAccPub":"empepub","bech32PrefixValAddr":"empevaloper","bech32PrefixValPub":"empevaloperpub","bech32PrefixConsAddr":"empevalcons","bech32PrefixConsPub":"empevalconspub"},"chainName":"empetestnet","feeCurrencies":[{"coinDenom":"empe","coinMinimalDenom":"uempe","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"empe","coinMinimalDenom":"uempe","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"circulus-1","currencies":[{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6}],"rest":"https://empower-testnet-api.polkachu.com:443","rpc":"https://empower-testnet-rpc.polkachu.com:443","bech32Config":{"bech32PrefixAccAddr":"empower","bech32PrefixAccPub":"empowerpub","bech32PrefixValAddr":"empowervaloper","bech32PrefixValPub":"empowervaloperpub","bech32PrefixConsAddr":"empowervalcons","bech32PrefixConsPub":"empowervalconspub"},"chainName":"empowertestnet","feeCurrencies":[{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6}],"stakeCurrency":{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"epix_4243-1","currencies":[{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18}],"rest":"https://api.testnet.epix.zone","rpc":"https://rpc.testnet.epix.zone","bech32Config":{"bech32PrefixAccAddr":"epix","bech32PrefixAccPub":"epixpub","bech32PrefixValAddr":"epixvaloper","bech32PrefixValPub":"epixvaloperpub","bech32PrefixConsAddr":"epixvalcons","bech32PrefixConsPub":"epixvalconspub"},"chainName":"epixtestnet","feeCurrencies":[{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"evmos_9000-4","currencies":[{"coinDenom":"tevmos","coinMinimalDenom":"atevmos","coinDecimals":18}],"rest":"https://evmos.test.api.coldyvalidator.net","rpc":"https://evmos.test.rpc.coldyvalidator.net","bech32Config":{"bech32PrefixAccAddr":"evmos","bech32PrefixAccPub":"evmospub","bech32PrefixValAddr":"evmosvaloper","bech32PrefixValPub":"evmosvaloperpub","bech32PrefixConsAddr":"evmosvalcons","bech32PrefixConsPub":"evmosvalconspub"},"chainName":"evmostestnet","feeCurrencies":[{"coinDenom":"tevmos","coinMinimalDenom":"atevmos","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"tevmos","coinMinimalDenom":"atevmos","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"dorado-1","currencies":[{"coinDenom":"testfet","coinMinimalDenom":"atestfet","coinDecimals":18}],"rest":"https://rest-dorado.fetch.ai","rpc":"https://rpc-dorado.fetch.ai:443","bech32Config":{"bech32PrefixAccAddr":"fetch","bech32PrefixAccPub":"fetchpub","bech32PrefixValAddr":"fetchvaloper","bech32PrefixValPub":"fetchvaloperpub","bech32PrefixConsAddr":"fetchvalcons","bech32PrefixConsPub":"fetchvalconspub"},"chainName":"fetchhubtestnet","feeCurrencies":[{"coinDenom":"testfet","coinMinimalDenom":"atestfet","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.035}}],"stakeCurrency":{"coinDenom":"testfet","coinMinimalDenom":"atestfet","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"fiamma-testnet-1","currencies":[{"coinDenom":"fia","coinMinimalDenom":"ufia","coinDecimals":6}],"rest":"https://testnet-api.fiammachain.io","rpc":"https://testnet-rpc.fiammachain.io","bech32Config":{"bech32PrefixAccAddr":"fiamma","bech32PrefixAccPub":"fiammapub","bech32PrefixValAddr":"fiammavaloper","bech32PrefixValPub":"fiammavaloperpub","bech32PrefixConsAddr":"fiammavalcons","bech32PrefixConsPub":"fiammavalconspub"},"chainName":"fiammatestnet","feeCurrencies":[{"coinDenom":"fia","coinMinimalDenom":"ufia","coinDecimals":6}],"stakeCurrency":{"coinDenom":"fia","coinMinimalDenom":"ufia","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"ebony-2","currencies":[{"coinDenom":"tfnsa","coinMinimalDenom":"tcony","coinDecimals":6}],"rest":"https://ebony-api.finschia.io","rpc":"https://ebony-rpc.finschia.io","bech32Config":{"bech32PrefixAccAddr":"tlink","bech32PrefixAccPub":"tlinkpub","bech32PrefixValAddr":"tlinkvaloper","bech32PrefixValPub":"tlinkvaloperpub","bech32PrefixConsAddr":"tlinkvalcons","bech32PrefixConsPub":"tlinkvalconspub"},"chainName":"finschiatestnet","feeCurrencies":[{"coinDenom":"tfnsa","coinMinimalDenom":"tcony","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.015,"high":0.015}}],"stakeCurrency":{"coinDenom":"tfnsa","coinMinimalDenom":"tcony","coinDecimals":6},"bip44":{"coinType":438}},{"chainId":"galactica_9302-1","currencies":[{"coinDenom":"gnet","coinMinimalDenom":"agnet","coinDecimals":18}],"rest":"https://api.galactica.test.pfc.zone/","rpc":"https://rpc.galactica.test.pfc.zone/","bech32Config":{"bech32PrefixAccAddr":"gala","bech32PrefixAccPub":"galapub","bech32PrefixValAddr":"galavaloper","bech32PrefixValPub":"galavaloperpub","bech32PrefixConsAddr":"galavalcons","bech32PrefixConsPub":"galavalconspub"},"chainName":"galacticatestnet","feeCurrencies":[{"coinDenom":"gnet","coinMinimalDenom":"agnet","coinDecimals":18,"gasPriceStep":{"low":10,"average":10,"high":20}}],"stakeCurrency":{"coinDenom":"gnet","coinMinimalDenom":"agnet","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"gitopia-janus-testnet-2","currencies":[{"coinDenom":"tlore","coinMinimalDenom":"utlore","coinDecimals":6}],"rest":"https://gitopia-testnet.nodejumper.io:1317","rpc":"https://gitopia-testnet.nodejumper.io","bech32Config":{"bech32PrefixAccAddr":"gitopia","bech32PrefixAccPub":"gitopiapub","bech32PrefixValAddr":"gitopiavaloper","bech32PrefixValPub":"gitopiavaloperpub","bech32PrefixConsAddr":"gitopiavalcons","bech32PrefixConsPub":"gitopiavalconspub"},"chainName":"gitopiatestnet","feeCurrencies":[{"coinDenom":"tlore","coinMinimalDenom":"utlore","coinDecimals":6}],"stakeCurrency":{"coinDenom":"tlore","coinMinimalDenom":"utlore","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"berberis-1","currencies":[{"coinDenom":"hedge","coinMinimalDenom":"uhedge","coinDecimals":6}],"rest":"https://lcd-berberis.hedgeblock.io","rpc":"https://rpc-berberis.hedgeblock.io","bech32Config":{"bech32PrefixAccAddr":"hedge","bech32PrefixAccPub":"hedgepub","bech32PrefixValAddr":"hedgevaloper","bech32PrefixValPub":"hedgevaloperpub","bech32PrefixConsAddr":"hedgevalcons","bech32PrefixConsPub":"hedgevalconspub"},"chainName":"hedgetestnet","feeCurrencies":[{"coinDenom":"hedge","coinMinimalDenom":"uhedge","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"hedge","coinMinimalDenom":"uhedge","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"testnet-1","currencies":[{"coinDenom":"heart","coinMinimalDenom":"uheart","coinDecimals":6}],"rest":"https://humans-testnet.nodejumper.io:1317","rpc":"https://humans-testnet.nodejumper.io","bech32Config":{"bech32PrefixAccAddr":"humans","bech32PrefixAccPub":"humanspub","bech32PrefixValAddr":"humansvaloper","bech32PrefixValPub":"humansvaloperpub","bech32PrefixConsAddr":"humansvalcons","bech32PrefixConsPub":"humansvalconspub"},"chainName":"humanstestnet","feeCurrencies":[{"coinDenom":"heart","coinMinimalDenom":"uheart","coinDecimals":6}],"stakeCurrency":{"coinDenom":"heart","coinMinimalDenom":"uheart","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"prajna-1","currencies":[{"coinDenom":"hid","coinMinimalDenom":"uhid","coinDecimals":6}],"rest":"https://api.prajna.hypersign.id","rpc":"https://rpc.prajna.hypersign.id","bech32Config":{"bech32PrefixAccAddr":"hid","bech32PrefixAccPub":"hidpub","bech32PrefixValAddr":"hidvaloper","bech32PrefixValPub":"hidvaloperpub","bech32PrefixConsAddr":"hidvalcons","bech32PrefixConsPub":"hidvalconspub"},"chainName":"hypersigntestnet","feeCurrencies":[{"coinDenom":"hid","coinMinimalDenom":"uhid","coinDecimals":6}],"stakeCurrency":{"coinDenom":"hid","coinMinimalDenom":"uhid","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pandora-8","currencies":[{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6}],"rest":"https://testnet.ixo.earth/rest/","rpc":"https://rpc.testnet.ixo.earth/","bech32Config":{"bech32PrefixAccAddr":"ixo","bech32PrefixAccPub":"ixopub","bech32PrefixValAddr":"ixovaloper","bech32PrefixValPub":"ixovaloperpub","bech32PrefixConsAddr":"ixovalcons","bech32PrefixConsPub":"ixovalconspub"},"chainName":"impacthubtestnet","feeCurrencies":[{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"imversed-test-1","currencies":[{"coinDenom":"imv","coinMinimalDenom":"nimv","coinDecimals":6}],"rest":"https://query-endpoint-test.imversed.com/","rpc":"https://tx-endpoint-test.imversed.com/","bech32Config":{"bech32PrefixAccAddr":"imv","bech32PrefixAccPub":"imvpub","bech32PrefixValAddr":"imvvaloper","bech32PrefixValPub":"imvvaloperpub","bech32PrefixConsAddr":"imvvalcons","bech32PrefixConsPub":"imvvalconspub"},"chainName":"imversedtestnet","feeCurrencies":[{"coinDenom":"imv","coinMinimalDenom":"nimv","coinDecimals":6}],"stakeCurrency":{"coinDenom":"imv","coinMinimalDenom":"nimv","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"injective-888","currencies":[{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18}],"rest":"https://injective-testnet-api.polkachu.com","rpc":"https://injective-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"inj","bech32PrefixAccPub":"injpub","bech32PrefixValAddr":"injvaloper","bech32PrefixValPub":"injvaloperpub","bech32PrefixConsAddr":"injvalcons","bech32PrefixConsPub":"injvalconspub"},"chainName":"injectivetestnet","feeCurrencies":[{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18,"gasPriceStep":{"low":500000000,"average":700000000,"high":900000000}}],"stakeCurrency":{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"canine-1","currencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"rest":"https://jkl.api.t.stavr.tech","rpc":"http://jkl.rpc.t.stavr.tech:19127","bech32Config":{"bech32PrefixAccAddr":"jkl","bech32PrefixAccPub":"jklpub","bech32PrefixValAddr":"jklvaloper","bech32PrefixValPub":"jklvaloperpub","bech32PrefixConsAddr":"jklvalcons","bech32PrefixConsPub":"jklvalconspub"},"chainName":"jackaltestnet","feeCurrencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"stakeCurrency":{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mesomelas-1","currencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"rest":"https://jackal-testnet-v4-rest.brocha.in","rpc":"https://jackal-testnet-v4-rpc.brocha.in","bech32Config":{"bech32PrefixAccAddr":"jkl","bech32PrefixAccPub":"jklpub","bech32PrefixValAddr":"jklvaloper","bech32PrefixValPub":"jklvaloperpub","bech32PrefixConsAddr":"jklvalcons","bech32PrefixConsPub":"jklvalconspub"},"chainName":"jackaltestnet2","feeCurrencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"stakeCurrency":{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"uni-6","currencies":[{"coinDenom":"junox","coinMinimalDenom":"ujunox","coinDecimals":6},{"coinDenom":"nexx","coinMinimalDenom":"factory/juno12klaltyqvg2j6v034jwdxrk5n4242ttse4sdpt/NEXX","coinDecimals":6},{"coinDenom":"arena","coinMinimalDenom":"factory/juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k/ARENA","coinDecimals":6}],"rest":"https://juno-testnet-api.polkachu.com","rpc":"https://juno-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"juno","bech32PrefixAccPub":"junopub","bech32PrefixValAddr":"junovaloper","bech32PrefixValPub":"junovaloperpub","bech32PrefixConsAddr":"junovalcons","bech32PrefixConsPub":"junovalconspub"},"chainName":"junotestnet","feeCurrencies":[{"coinDenom":"junox","coinMinimalDenom":"ujunox","coinDecimals":6,"gasPriceStep":{"low":0.003,"average":0.0045,"high":0.006}}],"stakeCurrency":{"coinDenom":"junox","coinMinimalDenom":"ujunox","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kichain-t-4","currencies":[{"coinDenom":"tki","coinMinimalDenom":"utki","coinDecimals":6}],"rest":"https://api-challenge.blockchain.ki/","rpc":"https://rpc-challenge.blockchain.ki/","bech32Config":{"bech32PrefixAccAddr":"tki","bech32PrefixAccPub":"tkipub","bech32PrefixValAddr":"tkivaloper","bech32PrefixValPub":"tkivaloperpub","bech32PrefixConsAddr":"tkivalcons","bech32PrefixConsPub":"tkivalconspub"},"chainName":"kichaintestnet","feeCurrencies":[{"coinDenom":"tki","coinMinimalDenom":"utki","coinDecimals":6}],"stakeCurrency":{"coinDenom":"tki","coinMinimalDenom":"utki","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kima_testnet","currencies":[{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6}],"rest":"https://api-testnet.kima.finance","rpc":"https://rpc-testnet.kima.finance/","bech32Config":{"bech32PrefixAccAddr":"kima","bech32PrefixAccPub":"kimapub","bech32PrefixValAddr":"kimavaloper","bech32PrefixValPub":"kimavaloperpub","bech32PrefixConsAddr":"kimavalcons","bech32PrefixConsPub":"kimavalconspub"},"chainName":"kimanetworktestnet","feeCurrencies":[{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"harpoon-4","currencies":[{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6},{"coinDenom":"fuzn","coinMinimalDenom":"factory/kujira16qpvzhmawvsm8mcj4hdvtz25dadatdhhgw79xa/FUZN","coinDecimals":6}],"rest":"https://kujira-testnet-api.polkachu.com/","rpc":"https://kujira-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"kujira","bech32PrefixAccPub":"kujirapub","bech32PrefixValAddr":"kujiravaloper","bech32PrefixValPub":"kujiravaloperpub","bech32PrefixConsAddr":"kujiravalcons","bech32PrefixConsPub":"kujiravalconspub"},"chainName":"kujiratestnet","feeCurrencies":[{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6}],"stakeCurrency":{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kaon-1","currencies":[{"coinDenom":"kyve","coinMinimalDenom":"tkyve","coinDecimals":6}],"rest":"https://api.kaon.kyve.network","rpc":"https://rpc.kaon.kyve.network","bech32Config":{"bech32PrefixAccAddr":"kyve","bech32PrefixAccPub":"kyvepub","bech32PrefixValAddr":"kyvevaloper","bech32PrefixValPub":"kyvevaloperpub","bech32PrefixConsAddr":"kyvevalcons","bech32PrefixConsPub":"kyvevalconspub"},"chainName":"kyvetestnet","feeCurrencies":[{"coinDenom":"kyve","coinMinimalDenom":"tkyve","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.03,"high":0.06}}],"stakeCurrency":{"coinDenom":"kyve","coinMinimalDenom":"tkyve","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"lava-testnet-2","currencies":[{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6}],"rest":"https://lav1.lava.build/","rpc":"https://lav1.tendermintrpc.lava.build:443","bech32Config":{"bech32PrefixAccAddr":"lava@","bech32PrefixAccPub":"lava@pub","bech32PrefixValAddr":"lava@valoper","bech32PrefixValPub":"lava@valoperpub","bech32PrefixConsAddr":"lava@valcons","bech32PrefixConsPub":"lava@valconspub"},"chainName":"lavatestnet","feeCurrencies":[{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6,"gasPriceStep":{"low":0.000001,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"likecoin-public-testnet-5","currencies":[{"coinDenom":"ekil","coinMinimalDenom":"nanoekil","coinDecimals":9}],"rest":"https://node.testnet.like.co/","rpc":"https://node.testnet.like.co/rpc/","bech32Config":{"bech32PrefixAccAddr":"like","bech32PrefixAccPub":"likepub","bech32PrefixValAddr":"likevaloper","bech32PrefixValPub":"likevaloperpub","bech32PrefixConsAddr":"likevalcons","bech32PrefixConsPub":"likevalconspub"},"chainName":"likecointestnet","feeCurrencies":[{"coinDenom":"ekil","coinMinimalDenom":"nanoekil","coinDecimals":9,"gasPriceStep":{"low":1000,"average":10000,"high":1000000}}],"stakeCurrency":{"coinDenom":"ekil","coinMinimalDenom":"nanoekil","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"lumenx-test","currencies":[{"coinDenom":"lumen","coinMinimalDenom":"ulumen","coinDecimals":6}],"rest":"https://testnet-api.lumenx.chaintools.tech/","rpc":"https://testnet-rpc.lumenx.chaintools.tech/","bech32Config":{"bech32PrefixAccAddr":"lumen","bech32PrefixAccPub":"lumenpub","bech32PrefixValAddr":"lumenvaloper","bech32PrefixValPub":"lumenvaloperpub","bech32PrefixConsAddr":"lumenvalcons","bech32PrefixConsPub":"lumenvalconspub"},"chainName":"lumenxtestnet","feeCurrencies":[{"coinDenom":"lumen","coinMinimalDenom":"ulumen","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"lumen","coinMinimalDenom":"ulumen","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"manifest-ledger-beta","currencies":[{"coinDenom":"mfx","coinMinimalDenom":"umfx","coinDecimals":6},{"coinDenom":"poa","coinMinimalDenom":"upoa","coinDecimals":6}],"rest":"https://nodes.chandrastation.com/api/manifest/","rpc":"https://nodes.chandrastation.com/rpc/manifest/","bech32Config":{"bech32PrefixAccAddr":"manifest","bech32PrefixAccPub":"manifestpub","bech32PrefixValAddr":"manifestvaloper","bech32PrefixValPub":"manifestvaloperpub","bech32PrefixConsAddr":"manifestvalcons","bech32PrefixConsPub":"manifestvalconspub"},"chainName":"manifesttestnet","feeCurrencies":[{"coinDenom":"mfx","coinMinimalDenom":"umfx","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.007,"high":0.1}}],"stakeCurrency":{"coinDenom":"mfx","coinMinimalDenom":"umfx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mantra-hongbai-1","currencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6}],"rest":"https://api.hongbai.mantrachain.io","rpc":"https://rpc.hongbai.mantrachain.io","bech32Config":{"bech32PrefixAccAddr":"mantra","bech32PrefixAccPub":"mantrapub","bech32PrefixValAddr":"mantravaloper","bech32PrefixValPub":"mantravaloperpub","bech32PrefixConsAddr":"mantravalcons","bech32PrefixConsPub":"mantravalconspub"},"chainName":"mantrachaintestnet","feeCurrencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.003}}],"stakeCurrency":{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mantra-dukong-1","currencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6}],"rest":"https://api.dukong.mantrachain.io","rpc":"https://rpc.dukong.mantrachain.io","bech32Config":{"bech32PrefixAccAddr":"mantra","bech32PrefixAccPub":"mantrapub","bech32PrefixValAddr":"mantravaloper","bech32PrefixValPub":"mantravaloperpub","bech32PrefixConsAddr":"mantravalcons","bech32PrefixConsPub":"mantravalconspub"},"chainName":"mantrachaintestnet2","feeCurrencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.03}}],"stakeCurrency":{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"ares-1","currencies":[{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6}],"rest":"https://testnet-rest.marsprotocol.io/","rpc":"https://testnet-rpc.marsprotocol.io/","bech32Config":{"bech32PrefixAccAddr":"mars","bech32PrefixAccPub":"marspub","bech32PrefixValAddr":"marsvaloper","bech32PrefixValPub":"marsvaloperpub","bech32PrefixConsAddr":"marsvalcons","bech32PrefixConsPub":"marsvalconspub"},"chainName":"marstestnet","feeCurrencies":[{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6}],"stakeCurrency":{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"narwhal-2","currencies":[{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6}],"rest":"https://migaloo-testnet-api.polkachu.com","rpc":"https://migaloo-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"migaloo","bech32PrefixAccPub":"migaloopub","bech32PrefixValAddr":"migaloovaloper","bech32PrefixValPub":"migaloovaloperpub","bech32PrefixConsAddr":"migaloovalcons","bech32PrefixConsPub":"migaloovalconspub"},"chainName":"migalootestnet","feeCurrencies":[{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6,"gasPriceStep":{"low":0.25,"average":0.5,"high":0.75}}],"stakeCurrency":{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pion-1","currencies":[{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6},{"coinDenom":"amATOM","coinMinimalDenom":"factory/neutron15lku24mqhvy4v4gryrqs4662n9v9q4ux9tayn89cmdzldjcgawushxvm76/amatom","coinDecimals":6},{"coinDenom":"arena","coinMinimalDenom":"factory/neutron1r3slyjlf7g76mz3na6gh7c8ek62rhssrzf60uh0emyw3x94rppyqfcs0pk/uarena","coinDecimals":6}],"rest":"https://rest-falcron.pion-1.ntrn.tech","rpc":"https://rpc-falcron.pion-1.ntrn.tech","bech32Config":{"bech32PrefixAccAddr":"neutron","bech32PrefixAccPub":"neutronpub","bech32PrefixValAddr":"neutronvaloper","bech32PrefixValPub":"neutronvaloperpub","bech32PrefixConsAddr":"neutronvalcons","bech32PrefixConsPub":"neutronvalconspub"},"chainName":"neutrontestnet","feeCurrencies":[{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6,"gasPriceStep":{"low":0.0053,"average":0.0053,"high":0.0053}}],"stakeCurrency":{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nibiru-testnet-1","currencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18}],"rest":"https://lcd.testnet-1.nibiru.fi","rpc":"https://rpc.testnet-1.nibiru.fi","bech32Config":{"bech32PrefixAccAddr":"nibi","bech32PrefixAccPub":"nibipub","bech32PrefixValAddr":"nibivaloper","bech32PrefixValPub":"nibivaloperpub","bech32PrefixConsAddr":"nibivalcons","bech32PrefixConsPub":"nibivalconspub"},"chainName":"nibirutestnet","feeCurrencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"nibiru-testnet-2","currencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18}],"rest":"https://lcd.testnet-2.nibiru.fi","rpc":"https://rpc.testnet-2.nibiru.fi","bech32Config":{"bech32PrefixAccAddr":"nibi","bech32PrefixAccPub":"nibipub","bech32PrefixValAddr":"nibivaloper","bech32PrefixValPub":"nibivaloperpub","bech32PrefixConsAddr":"nibivalcons","bech32PrefixConsPub":"nibivalconspub"},"chainName":"nibirutestnet2","feeCurrencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"nibiru-testnet-3","currencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18}],"rest":"https://lcd.testnet-3.nibiru.fi","rpc":"https://rpc.testnet-3.nibiru.fi","bech32Config":{"bech32PrefixAccAddr":"nibi","bech32PrefixAccPub":"nibipub","bech32PrefixValAddr":"nibivaloper","bech32PrefixValPub":"nibivaloperpub","bech32PrefixConsAddr":"nibivalcons","bech32PrefixConsPub":"nibivalconspub"},"chainName":"nibirutestnet3","feeCurrencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"nillion-chain-testnet-1","currencies":[{"coinDenom":"nil","coinMinimalDenom":"unil","coinDecimals":6}],"rest":"https://nillion-testnet-api.polkachu.com/","rpc":"https://nillion-testnet-rpc.polkachu.com/","bech32Config":{"bech32PrefixAccAddr":"nillion","bech32PrefixAccPub":"nillionpub","bech32PrefixValAddr":"nillionvaloper","bech32PrefixValPub":"nillionvaloperpub","bech32PrefixConsAddr":"nillionvalcons","bech32PrefixConsPub":"nillionvalconspub"},"chainName":"nilliontestnet","feeCurrencies":[{"coinDenom":"nil","coinMinimalDenom":"unil","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.00025}}],"stakeCurrency":{"coinDenom":"nil","coinMinimalDenom":"unil","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"grand-1","currencies":[{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":6},{"coinDenom":"love","coinMinimalDenom":"ulove","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6},{"coinDenom":"usdy","coinMinimalDenom":"ausdy","coinDecimals":18}],"rest":"https://noble-testnet-api.polkachu.com","rpc":"https://noble-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"noble","bech32PrefixAccPub":"noblepub","bech32PrefixValAddr":"noblevaloper","bech32PrefixValPub":"noblevaloperpub","bech32PrefixConsAddr":"noblevalcons","bech32PrefixConsPub":"noblevalconspub"},"chainName":"nobletestnet","feeCurrencies":[{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nois-testnet-005","currencies":[{"coinDenom":"nois","coinMinimalDenom":"unois","coinDecimals":6}],"rest":"https://api.nois.mcbnode.online","rpc":"https://nois-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"nois","bech32PrefixAccPub":"noispub","bech32PrefixValAddr":"noisvaloper","bech32PrefixValPub":"noisvaloperpub","bech32PrefixConsAddr":"noisvalcons","bech32PrefixConsPub":"noisvalconspub"},"chainName":"noistestnet","feeCurrencies":[{"coinDenom":"nois","coinMinimalDenom":"unois","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"nois","coinMinimalDenom":"unois","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"rila-1","currencies":[{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6}],"rest":"https://rila-cl.nolus.network:1317","rpc":"https://rila-cl.nolus.network:26657","bech32Config":{"bech32PrefixAccAddr":"nolus","bech32PrefixAccPub":"noluspub","bech32PrefixValAddr":"nolusvaloper","bech32PrefixValPub":"nolusvaloperpub","bech32PrefixConsAddr":"nolusvalcons","bech32PrefixConsPub":"nolusvalconspub"},"chainName":"nolustestnet","feeCurrencies":[{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.05}}],"stakeCurrency":{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nomic-testnet-6","currencies":[{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},{"coinDenom":"nbtc","coinMinimalDenom":"usat","coinDecimals":14}],"rest":"https://testnet-api.nomic.io:8443","rpc":"https://testnet-rpc.nomic.io:2096","bech32Config":{"bech32PrefixAccAddr":"nomic","bech32PrefixAccPub":"nomicpub","bech32PrefixValAddr":"nomicvaloper","bech32PrefixValPub":"nomicvaloperpub","bech32PrefixConsAddr":"nomicvalcons","bech32PrefixConsPub":"nomicvalconspub"},"chainName":"nomictestnet","feeCurrencies":[{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},{"coinDenom":"nbtc","coinMinimalDenom":"usat","coinDecimals":14}],"stakeCurrency":{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sandbox","currencies":[{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6},{"coinDenom":"nym","coinMinimalDenom":"unym","coinDecimals":6}],"rest":"https://api.sandbox.nymtech.net","rpc":"https://rpc.sandbox.nymtech.net","bech32Config":{"bech32PrefixAccAddr":"n","bech32PrefixAccPub":"npub","bech32PrefixValAddr":"nvaloper","bech32PrefixValPub":"nvaloperpub","bech32PrefixConsAddr":"nvalcons","bech32PrefixConsPub":"nvalconspub"},"chainName":"nyxtestnet","feeCurrencies":[{"coinDenom":"nym","coinMinimalDenom":"unym","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}},{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"okp4-nemeton-1","currencies":[{"coinDenom":"know","coinMinimalDenom":"uknow","coinDecimals":6}],"rest":"https://okptest-lcd.quickapi.com","rpc":"https://api.testnet.okp4.network/rpc","bech32Config":{"bech32PrefixAccAddr":"okp4","bech32PrefixAccPub":"okp4pub","bech32PrefixValAddr":"okp4valoper","bech32PrefixValPub":"okp4valoperpub","bech32PrefixConsAddr":"okp4valcons","bech32PrefixConsPub":"okp4valconspub"},"chainName":"okp4testnet","feeCurrencies":[{"coinDenom":"know","coinMinimalDenom":"uknow","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"know","coinMinimalDenom":"uknow","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"osmo-test-5","currencies":[{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6},{"coinDenom":"ion","coinMinimalDenom":"uion","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/9FF2B7A5F55038A7EE61F4FD6749D9A648B48E89830F2682B67B5DC158E2753C","coinDecimals":6},{"coinDenom":"ausdc","coinMinimalDenom":"ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"ibc/1F42AC9631DBE03009219ECCFE151786F53A038DE9F7A07C709158514F1D5942","coinDecimals":18},{"coinDenom":"junox","coinMinimalDenom":"ibc/31D220286E6C224C0F72D890D0EB75A228D388089EF5C4D77212344F9EAF0183","coinDecimals":6},{"coinDenom":"mars","coinMinimalDenom":"ibc/66A7ADA623D33D0B66C6890FE3E1AF3D638D56CE2B56F8BDA210B2AA62016216","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/DE6792CF9E521F6AD6E9A4BDF6225C9571A3B74ACC0A529F92BC5122A39D2E58","coinDecimals":6},{"coinDenom":"akt","coinMinimalDenom":"ibc/AD59D59CFB0E628E73C798415F823AB5B6257C2FE4BF67DBB5D6A677B2686E82","coinDecimals":6},{"coinDenom":"kyve","coinMinimalDenom":"ibc/AB8AF05799E299FB5C5C80781DA35887F53E029745D20E5641233DB4E6B28515","coinDecimals":6},{"coinDenom":"qck","coinMinimalDenom":"ibc/F37CF69589DE12342758382F8770C0852CD8D2E4519F55166EBDAF472AD667C9","coinDecimals":6},{"coinDenom":"c4e","coinMinimalDenom":"ibc/E3D323CB6F427C49E56F913C853A416F6B71BAA9B0164625AD0203266F92B3ED","coinDecimals":6},{"coinDenom":"xprt","coinMinimalDenom":"ibc/754C8533F8A418B03AD5F2C6AA19D4703CF78BBAB9E2E4DDD6212AAC2E502CA6","coinDecimals":6},{"coinDenom":"XION","coinMinimalDenom":"ibc/3642669AD14386D3E38F43F30CFCA859B3E8A05BF6BD6A23DEBD2115AD1325E9","coinDecimals":6},{"coinDenom":"tsaga","coinMinimalDenom":"ibc/48384130079A5987378F5776775F8C29A02505273E777BBB99361F2BB5B577C9","coinDecimals":6},{"coinDenom":"ixo","coinMinimalDenom":"ibc/88C815D69587CF0F05E96E5E2731EA56194D73C9A02A500095294D3A5DE68F16","coinDecimals":6},{"coinDenom":"willyz","coinMinimalDenom":"factory/osmo1zlkzu72774ynac53necz46u4ycqtp36wedrar0/willyz","coinDecimals":6},{"coinDenom":"amATOM","coinMinimalDenom":"ibc/C86B92F7FCFC1993DAC4AB0D78D9BC080300354B823A57F12CD6E2FBB667214E","coinDecimals":6},{"coinDenom":"tkx","coinMinimalDenom":"ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6","coinDecimals":18}],"rest":"https://lcd.osmotest5.osmosis.zone/","rpc":"https://rpc.osmotest5.osmosis.zone/","bech32Config":{"bech32PrefixAccAddr":"osmo","bech32PrefixAccPub":"osmopub","bech32PrefixValAddr":"osmovaloper","bech32PrefixValPub":"osmovaloperpub","bech32PrefixConsAddr":"osmovalcons","bech32PrefixConsPub":"osmovalconspub"},"chainName":"osmosistestnet","feeCurrencies":[{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"INVALID-ID-permtestnet-testnet-1","currencies":[{"coinDenom":"perm","coinMinimalDenom":"uperm","coinDecimals":6}],"rest":"https://rest.3.finance/","rpc":"https://rpc.3.finance/","bech32Config":{"bech32PrefixAccAddr":"perm","bech32PrefixAccPub":"permpub","bech32PrefixValAddr":"permvaloper","bech32PrefixValPub":"permvaloperpub","bech32PrefixConsAddr":"permvalcons","bech32PrefixConsPub":"permvalconspub"},"chainName":"permtestnet","feeCurrencies":[{"coinDenom":"perm","coinMinimalDenom":"uperm","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.0025,"high":0.0024}}],"stakeCurrency":{"coinDenom":"perm","coinMinimalDenom":"uperm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"test-core-1","currencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},{"coinDenom":"stkatom","coinMinimalDenom":"stk/uatom","coinDecimals":6}],"rest":"https://rest-testnet-persistence.architectnodes.com/","rpc":"https://rpc-testnet-persistence.architectnodes.com/","bech32Config":{"bech32PrefixAccAddr":"persistence","bech32PrefixAccPub":"persistencepub","bech32PrefixValAddr":"persistencevaloper","bech32PrefixValPub":"persistencevaloperpub","bech32PrefixConsAddr":"persistencevalcons","bech32PrefixConsPub":"persistencevalconspub"},"chainName":"persistencetestnet","feeCurrencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.125,"high":0.2}}],"stakeCurrency":{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"test-core-2","currencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},{"coinDenom":"stkatom","coinMinimalDenom":"stk/uatom","coinDecimals":6},{"coinDenom":"stkosmo","coinMinimalDenom":"stk/uosmo","coinDecimals":6},{"coinDenom":"stkdv4tnt","coinMinimalDenom":"stk/adv4tnt","coinDecimals":18}],"rest":"https://api-persistence-testnet-01.stakeflow.io/","rpc":"https://rpc-persistence-testnet-01.stakeflow.io/","bech32Config":{"bech32PrefixAccAddr":"persistence","bech32PrefixAccPub":"persistencepub","bech32PrefixValAddr":"persistencevaloper","bech32PrefixValPub":"persistencevaloperpub","bech32PrefixConsAddr":"persistencevalcons","bech32PrefixConsPub":"persistencevalconspub"},"chainName":"persistencetestnet2","feeCurrencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.125,"high":0.2}}],"stakeCurrency":{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"planq_7077-1","currencies":[{"coinDenom":"tplanq","coinMinimalDenom":"atplanq","coinDecimals":18}],"rest":"https://rest-atlas.planq.network","rpc":"https://rpc-atlas.planq.network","bech32Config":{"bech32PrefixAccAddr":"plq","bech32PrefixAccPub":"plqpub","bech32PrefixValAddr":"plqvaloper","bech32PrefixValPub":"plqvaloperpub","bech32PrefixConsAddr":"plqvalcons","bech32PrefixConsPub":"plqvalconspub"},"chainName":"planqtestnet","feeCurrencies":[{"coinDenom":"tplanq","coinMinimalDenom":"atplanq","coinDecimals":18,"gasPriceStep":{"low":30000000000,"average":35000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"tplanq","coinMinimalDenom":"atplanq","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"pocket-beta","currencies":[{"coinDenom":"pokt","coinMinimalDenom":"upokt","coinDecimals":6}],"rest":"https://shannon-testnet-grove-api.beta.poktroll.com","rpc":"https://shannon-testnet-grove-rpc.beta.poktroll.com","bech32Config":{"bech32PrefixAccAddr":"pokt@","bech32PrefixAccPub":"pokt@pub","bech32PrefixValAddr":"pokt@valoper","bech32PrefixValPub":"pokt@valoperpub","bech32PrefixConsAddr":"pokt@valcons","bech32PrefixConsPub":"pokt@valconspub"},"chainName":"pockettestnet","feeCurrencies":[{"coinDenom":"pokt","coinMinimalDenom":"upokt","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.0025}}],"stakeCurrency":{"coinDenom":"pokt","coinMinimalDenom":"upokt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"indigo-1","currencies":[{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6}],"rest":"https://testnet-api.pryzm.zone","rpc":"https://testnet-rpc.pryzm.zone","bech32Config":{"bech32PrefixAccAddr":"pryzm","bech32PrefixAccPub":"pryzmpub","bech32PrefixValAddr":"pryzmvaloper","bech32PrefixValPub":"pryzmvaloperpub","bech32PrefixConsAddr":"pryzmvalcons","bech32PrefixConsPub":"pryzmvalconspub"},"chainName":"pryzmtestnet","feeCurrencies":[{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"quasar-test-1","currencies":[{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6},{"coinDenom":"ayy","coinMinimalDenom":"uayy","coinDecimals":6},{"coinDenom":"oro","coinMinimalDenom":"uoro","coinDecimals":6}],"rest":"https://quasar-testnet-api.polkachu.com/","rpc":"https://quasar-testnet-rpc.polkachu.com/","bech32Config":{"bech32PrefixAccAddr":"quasar","bech32PrefixAccPub":"quasarpub","bech32PrefixValAddr":"quasarvaloper","bech32PrefixValPub":"quasarvaloperpub","bech32PrefixConsAddr":"quasarvalcons","bech32PrefixConsPub":"quasarvalconspub"},"chainName":"quasartestnet","feeCurrencies":[{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"rhye-2","currencies":[{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6}],"rest":"https://quick.api.t.stavr.tech","rpc":"http://quick.rpc.t.stavr.tech:20027","bech32Config":{"bech32PrefixAccAddr":"quick","bech32PrefixAccPub":"quickpub","bech32PrefixValAddr":"quickvaloper","bech32PrefixValPub":"quickvaloperpub","bech32PrefixConsAddr":"quickvalcons","bech32PrefixConsPub":"quickvalconspub"},"chainName":"quicksilvertestnet","feeCurrencies":[{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.00025}}],"stakeCurrency":{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"earendel-1","currencies":[{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6}],"rest":"https://testnet-api.qwoyn.studio","rpc":"https://testnet-rpc.qwoyn.studio","bech32Config":{"bech32PrefixAccAddr":"qwoyn","bech32PrefixAccPub":"qwoynpub","bech32PrefixValAddr":"qwoynvaloper","bech32PrefixValPub":"qwoynvaloperpub","bech32PrefixConsAddr":"qwoynvalcons","bech32PrefixConsPub":"qwoynvalconspub"},"chainName":"qwoyntestnet","feeCurrencies":[{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6}],"stakeCurrency":{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"ssc-testnet-1","currencies":[{"coinDenom":"tsaga","coinMinimalDenom":"utsaga","coinDecimals":6}],"rest":"https://testnet-ssc-lcd.sagarpc.io/","rpc":"https://testnet-ssc.sagarpc.io/","bech32Config":{"bech32PrefixAccAddr":"saga","bech32PrefixAccPub":"sagapub","bech32PrefixValAddr":"sagavaloper","bech32PrefixValPub":"sagavaloperpub","bech32PrefixConsAddr":"sagavalcons","bech32PrefixConsPub":"sagavalconspub"},"chainName":"sagatestnet","feeCurrencies":[{"coinDenom":"tsaga","coinMinimalDenom":"utsaga","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"tsaga","coinMinimalDenom":"utsaga","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pulsar-3","currencies":[{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6}],"rest":"https://lcd.testnet.secretsaturn.net","rpc":"https://rpc.testnet.secretsaturn.net","bech32Config":{"bech32PrefixAccAddr":"secret","bech32PrefixAccPub":"secretpub","bech32PrefixValAddr":"secretvaloper","bech32PrefixValPub":"secretvaloperpub","bech32PrefixConsAddr":"secretvalcons","bech32PrefixConsPub":"secretvalconspub"},"chainName":"secretnetworktestnet","feeCurrencies":[{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6}],"stakeCurrency":{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6},"bip44":{"coinType":529}},{"chainId":"atlantic-1","currencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6}],"rest":"https://sei-testnet-rest.brocha.in","rpc":"https://sei-testnet-rpc.brocha.in","bech32Config":{"bech32PrefixAccAddr":"sei","bech32PrefixAccPub":"seipub","bech32PrefixValAddr":"seivaloper","bech32PrefixValPub":"seivaloperpub","bech32PrefixConsAddr":"seivalcons","bech32PrefixConsPub":"seivalconspub"},"chainName":"seitestnet","feeCurrencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6}],"stakeCurrency":{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"atlantic-2","currencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6}],"rest":"https://sei-testnet-2-rest.brocha.in","rpc":"https://sei-testnet-2-rpc.brocha.in","bech32Config":{"bech32PrefixAccAddr":"sei","bech32PrefixAccPub":"seipub","bech32PrefixValAddr":"seivaloper","bech32PrefixValPub":"seivaloperpub","bech32PrefixConsAddr":"seivalcons","bech32PrefixConsPub":"seivalconspub"},"chainName":"seitestnet2","feeCurrencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6}],"stakeCurrency":{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"self-dev-1","currencies":[{"coinDenom":"self","coinMinimalDenom":"uself","coinDecimals":6}],"rest":"https://api-devnet.selfchain.xyz/","rpc":"https://rpc-devnet.selfchain.xyz","bech32Config":{"bech32PrefixAccAddr":"self","bech32PrefixAccPub":"selfpub","bech32PrefixValAddr":"selfvaloper","bech32PrefixValPub":"selfvaloperpub","bech32PrefixConsAddr":"selfvalcons","bech32PrefixConsPub":"selfvalconspub"},"chainName":"selfchaindevnet","feeCurrencies":[{"coinDenom":"self","coinMinimalDenom":"uself","coinDecimals":6}],"stakeCurrency":{"coinDenom":"self","coinMinimalDenom":"uself","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sge-network-3","currencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"rest":"https://api.testnet.sgenetwork.io","rpc":"https://rpc.testnet.sgenetwork.io","bech32Config":{"bech32PrefixAccAddr":"sge","bech32PrefixAccPub":"sgepub","bech32PrefixValAddr":"sgevaloper","bech32PrefixValPub":"sgevaloperpub","bech32PrefixConsAddr":"sgevalcons","bech32PrefixConsPub":"sgevalconspub"},"chainName":"sgetestnet","feeCurrencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"stakeCurrency":{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sge-network-4","currencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"rest":"https://api.testnet.sgenetwork.io","rpc":"https://rpc.testnet.sgenetwork.io","bech32Config":{"bech32PrefixAccAddr":"sge","bech32PrefixAccPub":"sgepub","bech32PrefixValAddr":"sgevaloper","bech32PrefixValPub":"sgevaloperpub","bech32PrefixConsAddr":"sgevalcons","bech32PrefixConsPub":"sgevalconspub"},"chainName":"sgetestnet4","feeCurrencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"stakeCurrency":{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"yulei-2.1","currencies":[{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6}],"rest":"https://yulei-rest.shentu.org/","rpc":"https://yulei-rpc.shentu.org:443","bech32Config":{"bech32PrefixAccAddr":"shentu","bech32PrefixAccPub":"shentupub","bech32PrefixValAddr":"shentuvaloper","bech32PrefixValPub":"shentuvaloperpub","bech32PrefixConsAddr":"shentuvalcons","bech32PrefixConsPub":"shentuvalconspub"},"chainName":"shentutestnet","feeCurrencies":[{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"fivenet","currencies":[{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6}],"rest":"https://api1.fivenet.sixprotocol.net:443","rpc":"https://rpc1.fivenet.sixprotocol.net:443","bech32Config":{"bech32PrefixAccAddr":"6x","bech32PrefixAccPub":"6xpub","bech32PrefixValAddr":"6xvaloper","bech32PrefixValPub":"6xvaloperpub","bech32PrefixConsAddr":"6xvalcons","bech32PrefixConsPub":"6xvalconspub"},"chainName":"sixtestnet","feeCurrencies":[{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6,"gasPriceStep":{"low":1.25,"average":1.5,"high":1.75}}],"stakeCurrency":{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"soarchaintestnet","currencies":[{"coinDenom":"tsoar","coinMinimalDenom":"utsoar","coinDecimals":6}],"rest":"https://api.testnet.soarchain.com/","rpc":"https://rpc1.testnet.soarchain.com","bech32Config":{"bech32PrefixAccAddr":"soar","bech32PrefixAccPub":"soarpub","bech32PrefixValAddr":"soarvaloper","bech32PrefixValPub":"soarvaloperpub","bech32PrefixConsAddr":"soarvalcons","bech32PrefixConsPub":"soarvalconspub"},"chainName":"soarchaintestnet","feeCurrencies":[{"coinDenom":"tsoar","coinMinimalDenom":"utsoar","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}}],"stakeCurrency":{"coinDenom":"tsoar","coinMinimalDenom":"utsoar","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sourcetest-1","currencies":[{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6}],"rest":"https://source-testnet-api.itrocket.net/","rpc":"https://source-testnet-rpc.itrocket.net/","bech32Config":{"bech32PrefixAccAddr":"source","bech32PrefixAccPub":"sourcepub","bech32PrefixValAddr":"sourcevaloper","bech32PrefixValPub":"sourcevaloperpub","bech32PrefixConsAddr":"sourcevalcons","bech32PrefixConsPub":"sourcevalconspub"},"chainName":"sourcetestnet","feeCurrencies":[{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.075,"high":0.1}}],"stakeCurrency":{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"elgafar-1","currencies":[{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6}],"rest":"https://rest.elgafar-1.stargaze-apis.com","rpc":"https://rpc.elgafar-1.stargaze-apis.com","bech32Config":{"bech32PrefixAccAddr":"stars","bech32PrefixAccPub":"starspub","bech32PrefixValAddr":"starsvaloper","bech32PrefixValPub":"starsvaloperpub","bech32PrefixConsAddr":"starsvalcons","bech32PrefixConsPub":"starsvalconspub"},"chainName":"stargazetestnet","feeCurrencies":[{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.04,"high":0.05}}],"stakeCurrency":{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"stateset-1-testnet","currencies":[{"coinDenom":"state","coinMinimalDenom":"ustate","coinDecimals":6}],"rest":"https://rest-api.stateset.zone","rpc":"https://rpc.stateset.zone/","bech32Config":{"bech32PrefixAccAddr":"stateset","bech32PrefixAccPub":"statesetpub","bech32PrefixValAddr":"statesetvaloper","bech32PrefixValPub":"statesetvaloperpub","bech32PrefixConsAddr":"statesetvalcons","bech32PrefixConsPub":"statesetvalconspub"},"chainName":"statesettestnet","feeCurrencies":[{"coinDenom":"state","coinMinimalDenom":"ustate","coinDecimals":6}],"stakeCurrency":{"coinDenom":"state","coinMinimalDenom":"ustate","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"stride-internal-1","currencies":[{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6},{"coinDenom":"stTIA","coinMinimalDenom":"stutia","coinDecimals":6},{"coinDenom":"stDV4TNT","coinMinimalDenom":"stadv4tnt","coinDecimals":18},{"coinDenom":"TIA","coinMinimalDenom":"ibc/1A7653323C1A9E267FF7BEBF40B3EEA8065E8F069F47F2493ABC3E0B621BF793","coinDecimals":6},{"coinDenom":"DV4TNT","coinMinimalDenom":"ibc/DFA22C0A6DD15E64B6BD164A1C748EDA8E976F3BDAC9BA7B40AD887BBEC5D2BB","coinDecimals":6}],"rest":"https://stride.testnet-1.stridenet.co/api","rpc":"https://stride.testnet-1.stridenet.co","bech32Config":{"bech32PrefixAccAddr":"stride","bech32PrefixAccPub":"stridepub","bech32PrefixValAddr":"stridevaloper","bech32PrefixValPub":"stridevaloperpub","bech32PrefixConsAddr":"stridevalcons","bech32PrefixConsPub":"stridevalconspub"},"chainName":"stridetestnet","feeCurrencies":[{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6}],"stakeCurrency":{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sunrise-test-0.1","currencies":[{"coinDenom":"vrise","coinMinimalDenom":"uvrise","coinDecimals":6},{"coinDenom":"rise","coinMinimalDenom":"urise","coinDecimals":6}],"rest":"https://a-node.sunrise-test-1.cauchye.net:1318","rpc":"https://a-node.sunrise-test-1.cauchye.net/","bech32Config":{"bech32PrefixAccAddr":"sunrise","bech32PrefixAccPub":"sunrisepub","bech32PrefixValAddr":"sunrisevaloper","bech32PrefixValPub":"sunrisevaloperpub","bech32PrefixConsAddr":"sunrisevalcons","bech32PrefixConsPub":"sunrisevalconspub"},"chainName":"sunrisetestnet","feeCurrencies":[{"coinDenom":"rise","coinMinimalDenom":"urise","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"vrise","coinMinimalDenom":"uvrise","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"swisstronik_1291-1","currencies":[{"coinDenom":"swtr","coinMinimalDenom":"aswtr","coinDecimals":18}],"rest":"https://api.testnet.swisstronik.com","rpc":"https://rpc.testnet.swisstronik.com","bech32Config":{"bech32PrefixAccAddr":"swtr","bech32PrefixAccPub":"swtrpub","bech32PrefixValAddr":"swtrvaloper","bech32PrefixValPub":"swtrvaloperpub","bech32PrefixConsAddr":"swtrvalcons","bech32PrefixConsPub":"swtrvalconspub"},"chainName":"swisstroniktestnet","feeCurrencies":[{"coinDenom":"swtr","coinMinimalDenom":"aswtr","coinDecimals":18}],"stakeCurrency":{"coinDenom":"swtr","coinMinimalDenom":"aswtr","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"symphony-testnet-3","currencies":[{"coinDenom":"mld","coinMinimalDenom":"note","coinDecimals":6},{"coinDenom":"husd","coinMinimalDenom":"uusd","coinDecimals":6},{"coinDenom":"hkhd","coinMinimalDenom":"ukhd","coinDecimals":6},{"coinDenom":"hvnd","coinMinimalDenom":"uvnd","coinDecimals":6}],"rest":"https://symphony.test.api.nodeshub.online/","rpc":"https://symphony.test.rpc.nodeshub.online/","bech32Config":{"bech32PrefixAccAddr":"symphony","bech32PrefixAccPub":"symphonypub","bech32PrefixValAddr":"symphonyvaloper","bech32PrefixValPub":"symphonyvaloperpub","bech32PrefixConsAddr":"symphonyvalcons","bech32PrefixConsPub":"symphonyvalconspub"},"chainName":"symphonytestnet","feeCurrencies":[{"coinDenom":"mld","coinMinimalDenom":"note","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"mld","coinMinimalDenom":"note","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"amber-2","currencies":[{"coinDenom":"AMBER","coinMinimalDenom":"uamber","coinDecimals":6}],"rest":"https://api-testnet.synternet.com/","rpc":"https://rpc-testnet.synternet.com/","bech32Config":{"bech32PrefixAccAddr":"amber","bech32PrefixAccPub":"amberpub","bech32PrefixValAddr":"ambervaloper","bech32PrefixValPub":"ambervaloperpub","bech32PrefixConsAddr":"ambervalcons","bech32PrefixConsPub":"ambervalconspub"},"chainName":"synternettestnet","feeCurrencies":[{"coinDenom":"AMBER","coinMinimalDenom":"uamber","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"AMBER","coinMinimalDenom":"uamber","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"90u-4","currencies":[{"coinDenom":"terpx","coinMinimalDenom":"uterpx","coinDecimals":6},{"coinDenom":"thiolx","coinMinimalDenom":"uthiolx","coinDecimals":6}],"rest":"https://testnet-api.terp.network:443/","rpc":"https://testnet-rpc.terp.network:443/","bech32Config":{"bech32PrefixAccAddr":"terp","bech32PrefixAccPub":"terppub","bech32PrefixValAddr":"terpvaloper","bech32PrefixValPub":"terpvaloperpub","bech32PrefixConsAddr":"terpvalcons","bech32PrefixConsPub":"terpvalconspub"},"chainName":"terpnettestnet","feeCurrencies":[{"coinDenom":"thiolx","coinMinimalDenom":"uthiolx","coinDecimals":6,"gasPriceStep":{"low":0.75,"average":1,"high":1.25}}],"stakeCurrency":{"coinDenom":"terpx","coinMinimalDenom":"uterpx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"90u-2","currencies":[{"coinDenom":"terpx","coinMinimalDenom":"uterpx","coinDecimals":6},{"coinDenom":"thiolx","coinMinimalDenom":"uthiolx","coinDecimals":6}],"rest":"https://terp-testnet-api.itrocket.net:443/","rpc":"https://terp-testnet-rpc.itrocket.net:443/","bech32Config":{"bech32PrefixAccAddr":"terp","bech32PrefixAccPub":"terppub","bech32PrefixValAddr":"terpvaloper","bech32PrefixValPub":"terpvaloperpub","bech32PrefixConsAddr":"terpvalcons","bech32PrefixConsPub":"terpvalconspub"},"chainName":"terpnettestnet2","feeCurrencies":[{"coinDenom":"thiolx","coinMinimalDenom":"uthiolx","coinDecimals":6,"gasPriceStep":{"low":0.75,"average":1,"high":1.25}}],"stakeCurrency":{"coinDenom":"terpx","coinMinimalDenom":"uterpx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pisco-1","currencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6}],"rest":"https://pisco-lcd.terra.dev:443","rpc":"https://pisco-rpc.terra.dev:443","bech32Config":{"bech32PrefixAccAddr":"terra","bech32PrefixAccPub":"terrapub","bech32PrefixValAddr":"terravaloper","bech32PrefixValPub":"terravaloperpub","bech32PrefixConsAddr":"terravalcons","bech32PrefixConsPub":"terravalconspub"},"chainName":"terra2testnet","feeCurrencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6,"gasPriceStep":{"low":0.0125,"average":0.015,"high":0.04}}],"stakeCurrency":{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},"bip44":{"coinType":330}},{"chainId":"titan_18889-1","currencies":[{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/7C0807A56073C4A27B0DE1C21BA3EB75DF75FD763F4AD37BC159917FC01145F0","coinDecimals":6}],"rest":"https://titan-testnet-lcd.titanlab.io:443","rpc":"https://titan-testnet-rpc.titanlab.io:443","bech32Config":{"bech32PrefixAccAddr":"titan","bech32PrefixAccPub":"titanpub","bech32PrefixValAddr":"titanvaloper","bech32PrefixValPub":"titanvaloperpub","bech32PrefixConsAddr":"titanvalcons","bech32PrefixConsPub":"titanvalconspub"},"chainName":"titantestnet","feeCurrencies":[{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18,"gasPriceStep":{"low":100000000000,"average":110000000000,"high":200000000000}}],"stakeCurrency":{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"tucana_712-1","currencies":[{"coinDenom":"tuc","coinMinimalDenom":"atuc","coinDecimals":18}],"rest":"https://lcd.birdee-2.tucana.zone/","rpc":"https://rpc.birdee-2.tucana.zone/","bech32Config":{"bech32PrefixAccAddr":"tuc","bech32PrefixAccPub":"tucpub","bech32PrefixValAddr":"tucvaloper","bech32PrefixValPub":"tucvaloperpub","bech32PrefixConsAddr":"tucvalcons","bech32PrefixConsPub":"tucvalconspub"},"chainName":"tucanatestnet","feeCurrencies":[{"coinDenom":"tuc","coinMinimalDenom":"atuc","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":25000000000,"high":30000000000}}],"stakeCurrency":{"coinDenom":"tuc","coinMinimalDenom":"atuc","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"FUND-TestNet-2","currencies":[{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9}],"rest":"https://rest-testnet.unification.io","rpc":"https://rpc-testnet.unification.io:443","bech32Config":{"bech32PrefixAccAddr":"und","bech32PrefixAccPub":"undpub","bech32PrefixValAddr":"undvaloper","bech32PrefixValPub":"undvaloperpub","bech32PrefixConsAddr":"undvalcons","bech32PrefixConsPub":"undvalconspub"},"chainName":"unificationtestnet","feeCurrencies":[{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9,"gasPriceStep":{"low":100,"average":200,"high":300}}],"stakeCurrency":{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9},"bip44":{"coinType":5555}},{"chainId":"union-testnet-8","currencies":[{"coinDenom":"uno","coinMinimalDenom":"muno","coinDecimals":6}],"rest":"https://rest.testnet-8.union.build","rpc":"https://rpc.testnet-8.union.build","bech32Config":{"bech32PrefixAccAddr":"union","bech32PrefixAccPub":"unionpub","bech32PrefixValAddr":"unionvaloper","bech32PrefixValPub":"unionvaloperpub","bech32PrefixConsAddr":"unionvalcons","bech32PrefixConsPub":"unionvalconspub"},"chainName":"uniontestnet","feeCurrencies":[{"coinDenom":"uno","coinMinimalDenom":"muno","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"uno","coinMinimalDenom":"muno","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"uptick_7000-2","currencies":[{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18}],"rest":"https://uptick-7000-2-rest.staketab.org","rpc":"https://uptick-7000-2-rpc.staketab.org:443","bech32Config":{"bech32PrefixAccAddr":"uptick","bech32PrefixAccPub":"uptickpub","bech32PrefixValAddr":"uptickvaloper","bech32PrefixValPub":"uptickvaloperpub","bech32PrefixConsAddr":"uptickvalcons","bech32PrefixConsPub":"uptickvalconspub"},"chainName":"upticktestnet","feeCurrencies":[{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18}],"stakeCurrency":{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"buenavista-1","currencies":[{"coinDenom":"ward","coinMinimalDenom":"uward","coinDecimals":6}],"rest":"https://api.buenavista.wardenprotocol.org/","rpc":"https://rpc.buenavista.wardenprotocol.org/","bech32Config":{"bech32PrefixAccAddr":"warden","bech32PrefixAccPub":"wardenpub","bech32PrefixValAddr":"wardenvaloper","bech32PrefixValPub":"wardenvaloperpub","bech32PrefixConsAddr":"wardenvalcons","bech32PrefixConsPub":"wardenvalconspub"},"chainName":"wardenprotocoltestnet","feeCurrencies":[{"coinDenom":"ward","coinMinimalDenom":"uward","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"ward","coinMinimalDenom":"uward","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"INVALID-ID-wavehashtestnet-testnet-1","currencies":[{"coinDenom":"wahax","coinMinimalDenom":"uwahax","coinDecimals":6}],"rest":"https://lcd.wavehash.online/","rpc":"https://rpc.wavehash.online/","bech32Config":{"bech32PrefixAccAddr":"wavehash","bech32PrefixAccPub":"wavehashpub","bech32PrefixValAddr":"wavehashvaloper","bech32PrefixValPub":"wavehashvaloperpub","bech32PrefixConsAddr":"wavehashvalcons","bech32PrefixConsPub":"wavehashvalconspub"},"chainName":"wavehashtestnet","feeCurrencies":[{"coinDenom":"wahax","coinMinimalDenom":"uwahax","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.0025,"high":0.0024}}],"stakeCurrency":{"coinDenom":"wahax","coinMinimalDenom":"uwahax","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"xion-testnet-1","currencies":[{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6},{"coinDenom":"axl","coinMinimalDenom":"ibc/33517D439F5E545A1AAB148FAE43AAE17CF68FFB9BC97AE0048A3E3B64518C58","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/484532EB74866F3FB8A71F909F7B1B470FE2E66313DA0A1F9EE5B7C5C046D195","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/57097251ED81A232CE3C9D899E7C8096D6D87EF84BA203E12E424AA4C9B57A64","coinDecimals":6},{"coinDenom":"INJ","coinMinimalDenom":"ibc/05314A48723E06A1B1B666066B6BEC89F3708E8854DF2E5E9193387AA9653036","coinDecimals":18}],"rest":"https://api.xion-testnet-1.burnt.com","rpc":"https://rpc.xion-testnet-1.burnt.com","bech32Config":{"bech32PrefixAccAddr":"xion","bech32PrefixAccPub":"xionpub","bech32PrefixValAddr":"xionvaloper","bech32PrefixValPub":"xionvaloperpub","bech32PrefixConsAddr":"xionvalcons","bech32PrefixConsPub":"xionvalconspub"},"chainName":"xiontestnet","feeCurrencies":[{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.001,"high":0.01}}],"stakeCurrency":{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cube_47-5","currencies":[{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18}],"rest":"https://cube-lcd.xpla.dev","rpc":"https://cube-rpc.xpla.dev","bech32Config":{"bech32PrefixAccAddr":"xpla","bech32PrefixAccPub":"xplapub","bech32PrefixValAddr":"xplavaloper","bech32PrefixValPub":"xplavaloperpub","bech32PrefixConsAddr":"xplavalcons","bech32PrefixConsPub":"xplavalconspub"},"chainName":"xplatestnet","feeCurrencies":[{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18,"gasPriceStep":{"low":850000000000,"average":1147500000000,"high":1487500000000}}],"stakeCurrency":{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"gardia-2","currencies":[{"coinDenom":"rock","coinMinimalDenom":"urock","coinDecimals":6}],"rest":"https://api.gardia.zenrocklabs.io/","rpc":"https://rpc.gardia.zenrocklabs.io/","bech32Config":{"bech32PrefixAccAddr":"rock","bech32PrefixAccPub":"rockpub","bech32PrefixValAddr":"rockvaloper","bech32PrefixValPub":"rockvaloperpub","bech32PrefixConsAddr":"rockvalcons","bech32PrefixConsPub":"rockvalconspub"},"chainName":"zenrocktestnet","feeCurrencies":[{"coinDenom":"rock","coinMinimalDenom":"urock","coinDecimals":6,"gasPriceStep":{"low":0.5,"average":0.55,"high":0.6}}],"stakeCurrency":{"coinDenom":"rock","coinMinimalDenom":"urock","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"athens_7001-1","currencies":[{"coinDenom":"tzeta","coinMinimalDenom":"azeta","coinDecimals":18}],"rest":"https://zetachain-athens.blockpi.network/lcd/v1/public","rpc":"https://zetachain-athens.blockpi.network/rpc/v1/public","bech32Config":{"bech32PrefixAccAddr":"zeta","bech32PrefixAccPub":"zetapub","bech32PrefixValAddr":"zetavaloper","bech32PrefixValPub":"zetavaloperpub","bech32PrefixConsAddr":"zetavalcons","bech32PrefixConsPub":"zetavalconspub"},"chainName":"zetachaintestnet","feeCurrencies":[{"coinDenom":"tzeta","coinMinimalDenom":"azeta","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"tzeta","coinMinimalDenom":"azeta","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"landlord-2","currencies":[{"coinDenom":"INIT","coinMinimalDenom":"l2/1666ede2bf1985307a86de36a6b78411cbf1edeffc2ac569e6a7b2f8753db4bb","coinDecimals":6}],"rest":"https://maze-rest-sequencer-53ecf1d6-4fa1-4103-827f-a9430df97cef.ane1-prod-nocsm.newmetric.xyz","rpc":"https://maze-rpc-sequencer-53ecf1d6-4fa1-4103-827f-a9430df97cef.ane1-prod-nocsm.newmetric.xyz","bech32Config":{"bech32PrefixAccAddr":"init","bech32PrefixAccPub":"initpub","bech32PrefixValAddr":"initvaloper","bech32PrefixValPub":"initvaloperpub","bech32PrefixConsAddr":"initvalcons","bech32PrefixConsPub":"initvalconspub"},"chainName":"civitia","feeCurrencies":[{"coinDenom":"INIT","coinMinimalDenom":"l2/1666ede2bf1985307a86de36a6b78411cbf1edeffc2ac569e6a7b2f8753db4bb","coinDecimals":6,"gasPriceStep":{"low":0.2,"average":0.3,"high":0.4}}],"stakeCurrency":{"coinDenom":"INIT","coinMinimalDenom":"l2/1666ede2bf1985307a86de36a6b78411cbf1edeffc2ac569e6a7b2f8753db4bb","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"initiation-2","currencies":[{"coinDenom":"INIT","coinMinimalDenom":"uinit","coinDecimals":6},{"coinDenom":"ETH","coinMinimalDenom":"ueth","coinDecimals":6},{"coinDenom":"USDC","coinMinimalDenom":"uusdc","coinDecimals":6},{"coinDenom":"TIA","coinMinimalDenom":"utia","coinDecimals":6},{"coinDenom":"USDC-INIT LP","coinMinimalDenom":"move/dbf06c48af3984ec6d9ae8a9aa7dbb0bb1e784aa9b8c4a5681af660cf8558d7d","coinDecimals":6},{"coinDenom":"ETH-INIT LP","coinMinimalDenom":"move/a2b0d3c8e53e379ede31f3a361ff02716d50ec53c6b65b8c48a81d5b06548200","coinDecimals":6},{"coinDenom":"TIA-INIT LP","coinMinimalDenom":"move/b134ae6786f10ef74294e627d2519b63b7c742a6735f98682929fea9a84744d2","coinDecimals":6},{"coinDenom":"oINIT","coinMinimalDenom":"uoinit","coinDecimals":6},{"coinDenom":"minimoveINIT","coinMinimalDenom":"ibc/9DD7B5DF63F03D505BE785C9B32095A33CBB9472503077D375E0A557BE5A2B87","coinDecimals":6},{"coinDenom":"minimoveINIT-INIT LP","coinMinimalDenom":"move/d460381fad32fa8a165f7b13ca4343f99ebd83580b1dc121049b8e695fb6c5b5","coinDecimals":6},{"coinDenom":"TEST LZ","coinMinimalDenom":"move/7dfcccb8d69af29d585165531eae5c558061d3e3bded2a121be3ef5e189e6b01","coinDecimals":8}],"rest":"https://lcd.testnet.initia.xyz","rpc":"https://rpc.testnet.initia.xyz/","bech32Config":{"bech32PrefixAccAddr":"init","bech32PrefixAccPub":"initpub","bech32PrefixValAddr":"initvaloper","bech32PrefixValPub":"initvaloperpub","bech32PrefixConsAddr":"initvalcons","bech32PrefixConsPub":"initvalconspub"},"chainName":"initia","feeCurrencies":[{"coinDenom":"INIT","coinMinimalDenom":"uinit","coinDecimals":6,"gasPriceStep":{"low":0.15,"average":0.15,"high":0.4}}],"stakeCurrency":{"coinDenom":"INIT","coinMinimalDenom":"uinit","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"glados-2.1","currencies":[{"coinDenom":"MILK","coinMinimalDenom":"umilk","coinDecimals":6},{"coinDenom":"milkINIT","coinMinimalDenom":"milkuinit","coinDecimals":6},{"coinDenom":"INIT","coinMinimalDenom":"ibc/37A3FB4FED4CA04ED6D9E5DA36C6D27248645F0E22F585576A1488B8A89C5A50","coinDecimals":6},{"coinDenom":"TEST LZ","coinMinimalDenom":"ibc/665CCAFA2768242D74D8CB2E9F5167261B6B75646E2EF2546E0707C0BFC7CDAF","coinDecimals":8}],"rest":"https://lcd.testnet.milkyway.zone","rpc":"https://rpc.testnet.milkyway.zone","bech32Config":{"bech32PrefixAccAddr":"init","bech32PrefixAccPub":"initpub","bech32PrefixValAddr":"initvaloper","bech32PrefixValPub":"initvaloperpub","bech32PrefixConsAddr":"initvalcons","bech32PrefixConsPub":"initvalconspub"},"chainName":"milkyway","feeCurrencies":[{"coinDenom":"MILK","coinMinimalDenom":"umilk","coinDecimals":6,"gasPriceStep":{"low":0.2,"average":0.3,"high":0.4}},{"coinDenom":"INIT","coinMinimalDenom":"ibc/37A3FB4FED4CA04ED6D9E5DA36C6D27248645F0E22F585576A1488B8A89C5A50","coinDecimals":6,"gasPriceStep":{"low":0.2,"average":0.3,"high":0.4}}],"stakeCurrency":{"coinDenom":"MILK","coinMinimalDenom":"umilk","coinDecimals":6},"bip44":{"coinType":118}}] \ No newline at end of file +[{"chainId":"junction","currencies":[{"coinDenom":"AMF","coinMinimalDenom":"amf","coinDecimals":6}],"rest":"https://rest.nodejumper.io/airchainstestnet","rpc":"https://junction-rpc.validatorvn.com/","bech32Config":{"bech32PrefixAccAddr":"air","bech32PrefixAccPub":"airpub","bech32PrefixValAddr":"airvaloper","bech32PrefixValPub":"airvaloperpub","bech32PrefixConsAddr":"airvalcons","bech32PrefixConsPub":"airvalconspub"},"chainName":"airchainstestnet","feeCurrencies":[{"coinDenom":"AMF","coinMinimalDenom":"amf","coinDecimals":6,"gasPriceStep":{"low":0.00025,"average":0.005,"high":0.01}}],"stakeCurrency":{"coinDenom":"AMF","coinMinimalDenom":"amf","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sandbox-01","currencies":[{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6}],"rest":"https://api.sandbox-01.aksh.pw:443","rpc":"https://rpc.sandbox-01.aksh.pw:443","bech32Config":{"bech32PrefixAccAddr":"akash","bech32PrefixAccPub":"akashpub","bech32PrefixValAddr":"akashvaloper","bech32PrefixValPub":"akashvaloperpub","bech32PrefixConsAddr":"akashvalcons","bech32PrefixConsPub":"akashvalconspub"},"chainName":"akashtestnet","feeCurrencies":[{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"constantine-3","currencies":[{"coinDenom":"const","coinMinimalDenom":"aconst","coinDecimals":18},{"coinDenom":"wARCH","coinMinimalDenom":"cw20:archway1dz6h2smr432gvzruklk3lps7ak2ca7cngdge4vym93wehkkypwpqgwr2q2","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/34F8D3402273FFA5278AE5757D81CE151ACFD4B19C494C0EE372A7229714824F","coinDecimals":6},{"coinDenom":"wUSDC","coinMinimalDenom":"cw20:archway172vetupqnkgdc7dp3gwqpvk5ljmgzyj2gs4ag2fdmp0s2rucxxsqh0nqeu","coinDecimals":6}],"rest":"https://api.constantine.archway.io","rpc":"https://rpc.constantine.archway.io","bech32Config":{"bech32PrefixAccAddr":"archway","bech32PrefixAccPub":"archwaypub","bech32PrefixValAddr":"archwayvaloper","bech32PrefixValPub":"archwayvaloperpub","bech32PrefixConsAddr":"archwayvalcons","bech32PrefixConsPub":"archwayvalconspub"},"chainName":"archwaytestnet","feeCurrencies":[{"coinDenom":"const","coinMinimalDenom":"aconst","coinDecimals":18,"gasPriceStep":{"low":1000000000000,"average":1500000000000,"high":2000000000000}}],"stakeCurrency":{"coinDenom":"const","coinMinimalDenom":"aconst","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"arkeo","currencies":[{"coinDenom":"arkeo","coinMinimalDenom":"uarkeo","coinDecimals":6}],"rest":"https://arkeonetwork-testnet.nodejumper.io:1317","rpc":"https://arkeonetwork-testnet.nodejumper.io:26657","bech32Config":{"bech32PrefixAccAddr":"tarkeo","bech32PrefixAccPub":"tarkeopub","bech32PrefixValAddr":"tarkeovaloper","bech32PrefixValPub":"tarkeovaloperpub","bech32PrefixConsAddr":"tarkeovalcons","bech32PrefixConsPub":"tarkeovalconspub"},"chainName":"arkeonetworktestnet","feeCurrencies":[{"coinDenom":"arkeo","coinMinimalDenom":"uarkeo","coinDecimals":6}],"stakeCurrency":{"coinDenom":"arkeo","coinMinimalDenom":"uarkeo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"artela_11820-1","currencies":[{"coinDenom":"art","coinMinimalDenom":"uart","coinDecimals":18}],"rest":"https://testnet-rpc1.artela.network","rpc":"https://testnet-rpc1.artela.network","bech32Config":{"bech32PrefixAccAddr":"art","bech32PrefixAccPub":"artpub","bech32PrefixValAddr":"artvaloper","bech32PrefixValPub":"artvaloperpub","bech32PrefixConsAddr":"artvalcons","bech32PrefixConsPub":"artvalconspub"},"chainName":"artelatestnet","feeCurrencies":[{"coinDenom":"art","coinMinimalDenom":"uart","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"art","coinMinimalDenom":"uart","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"aura_6321-3","currencies":[{"coinDenom":"eaura","coinMinimalDenom":"ueaura","coinDecimals":6}],"rest":"https://lcd.euphoria.aura.network/","rpc":"https://rpc.euphoria.aura.network/","bech32Config":{"bech32PrefixAccAddr":"aura","bech32PrefixAccPub":"aurapub","bech32PrefixValAddr":"auravaloper","bech32PrefixValPub":"auravaloperpub","bech32PrefixConsAddr":"auravalcons","bech32PrefixConsPub":"auravalconspub"},"chainName":"auratestnet","feeCurrencies":[{"coinDenom":"eaura","coinMinimalDenom":"ueaura","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.0025}}],"stakeCurrency":{"coinDenom":"eaura","coinMinimalDenom":"ueaura","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"axelar-testnet-lisbon-3","currencies":[{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6},{"coinDenom":"ausdc","coinMinimalDenom":"uausdc","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"eth-wei","coinDecimals":18},{"coinDenom":"wglmr","coinMinimalDenom":"wglmr-wei","coinDecimals":18},{"coinDenom":"wmatic","coinMinimalDenom":"wmatic-wei","coinDecimals":18},{"coinDenom":"wbnb","coinMinimalDenom":"wbnb-wei","coinDecimals":18},{"coinDenom":"avax","coinMinimalDenom":"wavax-wei","coinDecimals":18},{"coinDenom":"ftm","coinMinimalDenom":"wftm-wei","coinDecimals":18}],"rest":"https://lcd-axelar-testnet.imperator.co:443","rpc":"https://rpc-axelar-testnet.imperator.co:443","bech32Config":{"bech32PrefixAccAddr":"axelar","bech32PrefixAccPub":"axelarpub","bech32PrefixValAddr":"axelarvaloper","bech32PrefixValPub":"axelarvaloperpub","bech32PrefixConsAddr":"axelarvalcons","bech32PrefixConsPub":"axelarvalconspub"},"chainName":"axelartestnet","feeCurrencies":[{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6,"gasPriceStep":{"low":0.007,"average":0.007,"high":0.01}}],"stakeCurrency":{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"bbn-test3","currencies":[{"coinDenom":"bbn","coinMinimalDenom":"ubbn","coinDecimals":6}],"rest":"lcd.testnet3.babylonchain.io:443","rpc":"rpc.testnet3.babylonchain.io:443","bech32Config":{"bech32PrefixAccAddr":"bbn","bech32PrefixAccPub":"bbnpub","bech32PrefixValAddr":"bbnvaloper","bech32PrefixValPub":"bbnvaloperpub","bech32PrefixConsAddr":"bbnvalcons","bech32PrefixConsPub":"bbnvalconspub"},"chainName":"babylontestnet","feeCurrencies":[{"coinDenom":"bbn","coinMinimalDenom":"ubbn","coinDecimals":6}],"stakeCurrency":{"coinDenom":"bbn","coinMinimalDenom":"ubbn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"bitcanna-dev-1","currencies":[{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6}],"rest":"https://lcd-testnet.bitcanna.io","rpc":"https://rpc-testnet.bitcanna.io","bech32Config":{"bech32PrefixAccAddr":"bcna","bech32PrefixAccPub":"bcnapub","bech32PrefixValAddr":"bcnavaloper","bech32PrefixValPub":"bcnavaloperpub","bech32PrefixConsAddr":"bcnavalcons","bech32PrefixConsPub":"bcnavalconspub"},"chainName":"bitcannadevnet","feeCurrencies":[{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6}],"stakeCurrency":{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cascadia_6102-1","currencies":[{"coinDenom":"tCC","coinMinimalDenom":"aCC","coinDecimals":18}],"rest":"https://lcd.cascadia.foundation","rpc":"https://rpc.cascadia.foundation:443","bech32Config":{"bech32PrefixAccAddr":"cascadia","bech32PrefixAccPub":"cascadiapub","bech32PrefixValAddr":"cascadiavaloper","bech32PrefixValPub":"cascadiavaloperpub","bech32PrefixConsAddr":"cascadiavalcons","bech32PrefixConsPub":"cascadiavalconspub"},"chainName":"cascadiatestnet","feeCurrencies":[{"coinDenom":"tCC","coinMinimalDenom":"aCC","coinDecimals":18,"gasPriceStep":{"low":7,"average":10,"high":15}}],"stakeCurrency":{"coinDenom":"tCC","coinMinimalDenom":"aCC","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"mocha-4","currencies":[{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6}],"rest":"https://api-mocha.pops.one","rpc":"https://rpc-mocha.pops.one","bech32Config":{"bech32PrefixAccAddr":"celestia","bech32PrefixAccPub":"celestiapub","bech32PrefixValAddr":"celestiavaloper","bech32PrefixValPub":"celestiavaloperpub","bech32PrefixConsAddr":"celestiavalcons","bech32PrefixConsPub":"celestiavalconspub"},"chainName":"celestiatestnet3","feeCurrencies":[{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}}],"stakeCurrency":{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"babajaga-1","currencies":[{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6}],"rest":"https://c4e.api.t.stavr.tech","rpc":"https://rpc-testnet.c4e.io","bech32Config":{"bech32PrefixAccAddr":"c4e","bech32PrefixAccPub":"c4epub","bech32PrefixValAddr":"c4evaloper","bech32PrefixValPub":"c4evaloperpub","bech32PrefixConsAddr":"c4evalcons","bech32PrefixConsPub":"c4evalconspub"},"chainName":"chain4energytestnet","feeCurrencies":[{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.03,"high":0.06}}],"stakeCurrency":{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cheqd-testnet-6","currencies":[{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9}],"rest":"https://api.cheqd.network","rpc":"https://rpc.cheqd.network","bech32Config":{"bech32PrefixAccAddr":"cheqd","bech32PrefixAccPub":"cheqdpub","bech32PrefixValAddr":"cheqdvaloper","bech32PrefixValPub":"cheqdvaloperpub","bech32PrefixConsAddr":"cheqdvalcons","bech32PrefixConsPub":"cheqdvalconspub"},"chainName":"cheqdtestnet","feeCurrencies":[{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9,"gasPriceStep":{"low":50,"average":75,"high":100}}],"stakeCurrency":{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"chimba-testnet","currencies":[{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6}],"rest":"https://testnet.chimba.ooo","rpc":"https://rpc.testnet.chimba.ooo","bech32Config":{"bech32PrefixAccAddr":"chimba","bech32PrefixAccPub":"chimbapub","bech32PrefixValAddr":"chimbavaloper","bech32PrefixValPub":"chimbavaloperpub","bech32PrefixConsAddr":"chimbavalcons","bech32PrefixConsPub":"chimbavalconspub"},"chainName":"chimbatestnet","feeCurrencies":[{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6,"gasPriceStep":{"low":1,"average":5,"high":10}}],"stakeCurrency":{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"banksy-testnet-3","currencies":[{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12}],"rest":"https://api.composable-t.indonode.net","rpc":"https://rpc.composable-t.indonode.net:443","bech32Config":{"bech32PrefixAccAddr":"centauri","bech32PrefixAccPub":"centauripub","bech32PrefixValAddr":"centaurivaloper","bech32PrefixValPub":"centaurivaloperpub","bech32PrefixConsAddr":"centaurivalcons","bech32PrefixConsPub":"centaurivalconspub"},"chainName":"composabletestnet","feeCurrencies":[{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12}],"stakeCurrency":{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12},"bip44":{"coinType":118}},{"chainId":"kitten-04","currencies":[{"coinDenom":"ccat","coinMinimalDenom":"uccat","coinDecimals":6}],"rest":"https://lcd.coolcat.space","rpc":"https://rpc.coolcat.space","bech32Config":{"bech32PrefixAccAddr":"ccat","bech32PrefixAccPub":"ccatpub","bech32PrefixValAddr":"ccatvaloper","bech32PrefixValPub":"ccatvaloperpub","bech32PrefixConsAddr":"ccatvalcons","bech32PrefixConsPub":"ccatvalconspub"},"chainName":"coolcattestnet","feeCurrencies":[{"coinDenom":"ccat","coinMinimalDenom":"uccat","coinDecimals":6}],"stakeCurrency":{"coinDenom":"ccat","coinMinimalDenom":"uccat","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"coreum-testnet-1","currencies":[{"coinDenom":"testcore","coinMinimalDenom":"utestcore","coinDecimals":6}],"rest":"https://full-node.testnet-1.coreum.dev:1317","rpc":"https://full-node.testnet-1.coreum.dev:26657","bech32Config":{"bech32PrefixAccAddr":"testcore","bech32PrefixAccPub":"testcorepub","bech32PrefixValAddr":"testcorevaloper","bech32PrefixValPub":"testcorevaloperpub","bech32PrefixConsAddr":"testcorevalcons","bech32PrefixConsPub":"testcorevalconspub"},"chainName":"coreumtestnet","feeCurrencies":[{"coinDenom":"testcore","coinMinimalDenom":"utestcore","coinDecimals":6,"gasPriceStep":{"low":0.0625,"average":0.0625,"high":62.5}}],"stakeCurrency":{"coinDenom":"testcore","coinMinimalDenom":"utestcore","coinDecimals":6},"bip44":{"coinType":990}},{"chainId":"theta-testnet-001","currencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6}],"rest":"https://cosmoshubt.lava.build","rpc":"https://cosmoshubt.tendermintrpc.lava.build:443","bech32Config":{"bech32PrefixAccAddr":"cosmos","bech32PrefixAccPub":"cosmospub","bech32PrefixValAddr":"cosmosvaloper","bech32PrefixValPub":"cosmosvaloperpub","bech32PrefixConsAddr":"cosmosvalcons","bech32PrefixConsPub":"cosmosvalconspub"},"chainName":"cosmoshubtestnet","feeCurrencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"provider","currencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6}],"rest":"https://rest.provider-sentry-01.ics-testnet.polypore.xyz","rpc":"https://rpc.provider-sentry-01.ics-testnet.polypore.xyz","bech32Config":{"bech32PrefixAccAddr":"cosmos","bech32PrefixAccPub":"cosmospub","bech32PrefixValAddr":"cosmosvaloper","bech32PrefixValPub":"cosmosvaloperpub","bech32PrefixConsAddr":"cosmosvalcons","bech32PrefixConsPub":"cosmosvalconspub"},"chainName":"cosmosicsprovidertestnet","feeCurrencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"malaga-420","currencies":[{"coinDenom":"MLG","coinMinimalDenom":"umlg","coinDecimals":6},{"coinDenom":"AND","coinMinimalDenom":"uand","coinDecimals":6}],"rest":"https://api.malaga-420.cosmwasm.com","rpc":"https://rpc.malaga-420.cosmwasm.com:443","bech32Config":{"bech32PrefixAccAddr":"wasm","bech32PrefixAccPub":"wasmpub","bech32PrefixValAddr":"wasmvaloper","bech32PrefixValPub":"wasmvaloperpub","bech32PrefixConsAddr":"wasmvalcons","bech32PrefixConsPub":"wasmvalconspub"},"chainName":"cosmwasmtestnet","feeCurrencies":[{"coinDenom":"MLG","coinMinimalDenom":"umlg","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.04,"high":0.05}}],"stakeCurrency":{"coinDenom":"MLG","coinMinimalDenom":"umlg","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"coss-testnet-1","currencies":[{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6}],"rest":"https://coss-testnet-rest.coss.ink","rpc":"https://coss-testnet-rpc.coss.ink","bech32Config":{"bech32PrefixAccAddr":"coss","bech32PrefixAccPub":"cosspub","bech32PrefixValAddr":"cossvaloper","bech32PrefixValPub":"cossvaloperpub","bech32PrefixConsAddr":"cossvalcons","bech32PrefixConsPub":"cossvalconspub"},"chainName":"cosstestnet","feeCurrencies":[{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6}],"stakeCurrency":{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"deardoge-testnet","currencies":[{"coinDenom":"dear","coinMinimalDenom":"udear","coinDecimals":6}],"rest":"https://testnet-rest.deardoge.org","rpc":"https://testnet-rpc.deardoge.org","bech32Config":{"bech32PrefixAccAddr":"deardoge","bech32PrefixAccPub":"deardogepub","bech32PrefixValAddr":"deardogevaloper","bech32PrefixValPub":"deardogevaloperpub","bech32PrefixConsAddr":"deardogevalcons","bech32PrefixConsPub":"deardogevalconspub"},"chainName":"deardogetestnet","feeCurrencies":[{"coinDenom":"dear","coinMinimalDenom":"udear","coinDecimals":6}],"stakeCurrency":{"coinDenom":"dear","coinMinimalDenom":"udear","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"morpheus-apollo-3","currencies":[{"coinDenom":"daric","coinMinimalDenom":"udaric","coinDecimals":6}],"rest":"https://lcd.morpheus.desmos.network","rpc":"https://rpc.morpheus.desmos.network","bech32Config":{"bech32PrefixAccAddr":"desmos","bech32PrefixAccPub":"desmospub","bech32PrefixValAddr":"desmosvaloper","bech32PrefixValPub":"desmosvaloperpub","bech32PrefixConsAddr":"desmosvalcons","bech32PrefixConsPub":"desmosvalconspub"},"chainName":"desmostestnet","feeCurrencies":[{"coinDenom":"daric","coinMinimalDenom":"udaric","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.03,"high":0.05}}],"stakeCurrency":{"coinDenom":"daric","coinMinimalDenom":"udaric","coinDecimals":6},"bip44":{"coinType":852}},{"chainId":"dhealth-testnet-2","currencies":[{"coinDenom":"tdhp","coinMinimalDenom":"utdhp","coinDecimals":6}],"rest":"https://lcd-testnet.dhealth.dev","rpc":"https://rpc-testnet.dhealth.dev","bech32Config":{"bech32PrefixAccAddr":"tdh02","bech32PrefixAccPub":"tdh02pub","bech32PrefixValAddr":"tdh02valoper","bech32PrefixValPub":"tdh02valoperpub","bech32PrefixConsAddr":"tdh02valcons","bech32PrefixConsPub":"tdh02valconspub"},"chainName":"dhealthtestnet","feeCurrencies":[{"coinDenom":"tdhp","coinMinimalDenom":"utdhp","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}}],"stakeCurrency":{"coinDenom":"tdhp","coinMinimalDenom":"utdhp","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"vota-testnet","currencies":[{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18}],"rest":"https://vota-testnet-rest.dorafactory.org","rpc":"https://vota-testnet-rpc.dorafactory.org/","bech32Config":{"bech32PrefixAccAddr":"dora","bech32PrefixAccPub":"dorapub","bech32PrefixValAddr":"doravaloper","bech32PrefixValPub":"doravaloperpub","bech32PrefixConsAddr":"doravalcons","bech32PrefixConsPub":"doravalconspub"},"chainName":"doravotatestnet","feeCurrencies":[{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18}],"stakeCurrency":{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"dydx-testnet-4","currencies":[{"coinDenom":"dv4tnt","coinMinimalDenom":"adv4tnt","coinDecimals":18}],"rest":"https://dydx-lcd-testnet.enigma-validator.com","rpc":"https://dydx-rpc-testnet.enigma-validator.com","bech32Config":{"bech32PrefixAccAddr":"dydx","bech32PrefixAccPub":"dydxpub","bech32PrefixValAddr":"dydxvaloper","bech32PrefixValPub":"dydxvaloperpub","bech32PrefixConsAddr":"dydxvalcons","bech32PrefixConsPub":"dydxvalconspub"},"chainName":"dydxtestnet","feeCurrencies":[{"coinDenom":"dv4tnt","coinMinimalDenom":"adv4tnt","coinDecimals":18,"gasPriceStep":{"low":12500000000,"average":12500000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"dv4tnt","coinMinimalDenom":"adv4tnt","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"dymension_1405-1","currencies":[{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18},{"coinDenom":"nim","coinMinimalDenom":"ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942","coinDecimals":18},{"coinDenom":"mand","coinMinimalDenom":"ibc/5A26C8DC8DA66F4DD94326E67F94510188F5F7AFE2DB3933A0C823670E56EABF","coinDecimals":18}],"rest":"https://api-dym-migration-test-2.mzonder.com","rpc":"https://rpc-dym-migration-test-2.mzonder.com","bech32Config":{"bech32PrefixAccAddr":"dym","bech32PrefixAccPub":"dympub","bech32PrefixValAddr":"dymvaloper","bech32PrefixValPub":"dymvaloperpub","bech32PrefixConsAddr":"dymvalcons","bech32PrefixConsPub":"dymvalconspub"},"chainName":"dymensionplaygroundtestnet","feeCurrencies":[{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18,"gasPriceStep":{"low":5000000000,"average":5500000000,"high":6000000000}}],"stakeCurrency":{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"elysicstestnet-1","currencies":[{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6},{"coinDenom":"eden","coinMinimalDenom":"ueden","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6}],"rest":"https://api.testnet.elys.network","rpc":"https://rpc.testnet.elys.network","bech32Config":{"bech32PrefixAccAddr":"elys","bech32PrefixAccPub":"elyspub","bech32PrefixValAddr":"elysvaloper","bech32PrefixValPub":"elysvaloperpub","bech32PrefixConsAddr":"elysvalcons","bech32PrefixConsPub":"elysvalconspub"},"chainName":"elystestnet","feeCurrencies":[{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"empe-testnet-2","currencies":[{"coinDenom":"empe","coinMinimalDenom":"uempe","coinDecimals":6}],"rest":"https://lcd-testnet.empe.io/","rpc":"https://rpc-testnet.empe.io/","bech32Config":{"bech32PrefixAccAddr":"empe","bech32PrefixAccPub":"empepub","bech32PrefixValAddr":"empevaloper","bech32PrefixValPub":"empevaloperpub","bech32PrefixConsAddr":"empevalcons","bech32PrefixConsPub":"empevalconspub"},"chainName":"empetestnet","feeCurrencies":[{"coinDenom":"empe","coinMinimalDenom":"uempe","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"empe","coinMinimalDenom":"uempe","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"circulus-1","currencies":[{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6}],"rest":"https://empower-testnet-api.polkachu.com:443","rpc":"https://empower-testnet-rpc.polkachu.com:443","bech32Config":{"bech32PrefixAccAddr":"empower","bech32PrefixAccPub":"empowerpub","bech32PrefixValAddr":"empowervaloper","bech32PrefixValPub":"empowervaloperpub","bech32PrefixConsAddr":"empowervalcons","bech32PrefixConsPub":"empowervalconspub"},"chainName":"empowertestnet","feeCurrencies":[{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6}],"stakeCurrency":{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"epix_4243-1","currencies":[{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18}],"rest":"https://api.testnet.epix.zone","rpc":"https://rpc.testnet.epix.zone","bech32Config":{"bech32PrefixAccAddr":"epix","bech32PrefixAccPub":"epixpub","bech32PrefixValAddr":"epixvaloper","bech32PrefixValPub":"epixvaloperpub","bech32PrefixConsAddr":"epixvalcons","bech32PrefixConsPub":"epixvalconspub"},"chainName":"epixtestnet","feeCurrencies":[{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"evmos_9000-4","currencies":[{"coinDenom":"tevmos","coinMinimalDenom":"atevmos","coinDecimals":18}],"rest":"https://evmos.test.api.coldyvalidator.net","rpc":"https://evmos.test.rpc.coldyvalidator.net","bech32Config":{"bech32PrefixAccAddr":"evmos","bech32PrefixAccPub":"evmospub","bech32PrefixValAddr":"evmosvaloper","bech32PrefixValPub":"evmosvaloperpub","bech32PrefixConsAddr":"evmosvalcons","bech32PrefixConsPub":"evmosvalconspub"},"chainName":"evmostestnet","feeCurrencies":[{"coinDenom":"tevmos","coinMinimalDenom":"atevmos","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"tevmos","coinMinimalDenom":"atevmos","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"dorado-1","currencies":[{"coinDenom":"testfet","coinMinimalDenom":"atestfet","coinDecimals":18}],"rest":"https://rest-dorado.fetch.ai","rpc":"https://rpc-dorado.fetch.ai:443","bech32Config":{"bech32PrefixAccAddr":"fetch","bech32PrefixAccPub":"fetchpub","bech32PrefixValAddr":"fetchvaloper","bech32PrefixValPub":"fetchvaloperpub","bech32PrefixConsAddr":"fetchvalcons","bech32PrefixConsPub":"fetchvalconspub"},"chainName":"fetchhubtestnet","feeCurrencies":[{"coinDenom":"testfet","coinMinimalDenom":"atestfet","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.035}}],"stakeCurrency":{"coinDenom":"testfet","coinMinimalDenom":"atestfet","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"fiamma-testnet-1","currencies":[{"coinDenom":"fia","coinMinimalDenom":"ufia","coinDecimals":6}],"rest":"https://testnet-api.fiammachain.io","rpc":"https://testnet-rpc.fiammachain.io","bech32Config":{"bech32PrefixAccAddr":"fiamma","bech32PrefixAccPub":"fiammapub","bech32PrefixValAddr":"fiammavaloper","bech32PrefixValPub":"fiammavaloperpub","bech32PrefixConsAddr":"fiammavalcons","bech32PrefixConsPub":"fiammavalconspub"},"chainName":"fiammatestnet","feeCurrencies":[{"coinDenom":"fia","coinMinimalDenom":"ufia","coinDecimals":6}],"stakeCurrency":{"coinDenom":"fia","coinMinimalDenom":"ufia","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"ebony-2","currencies":[{"coinDenom":"tfnsa","coinMinimalDenom":"tcony","coinDecimals":6}],"rest":"https://ebony-api.finschia.io","rpc":"https://ebony-rpc.finschia.io","bech32Config":{"bech32PrefixAccAddr":"tlink","bech32PrefixAccPub":"tlinkpub","bech32PrefixValAddr":"tlinkvaloper","bech32PrefixValPub":"tlinkvaloperpub","bech32PrefixConsAddr":"tlinkvalcons","bech32PrefixConsPub":"tlinkvalconspub"},"chainName":"finschiatestnet","feeCurrencies":[{"coinDenom":"tfnsa","coinMinimalDenom":"tcony","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.015,"high":0.015}}],"stakeCurrency":{"coinDenom":"tfnsa","coinMinimalDenom":"tcony","coinDecimals":6},"bip44":{"coinType":438}},{"chainId":"galactica_9302-1","currencies":[{"coinDenom":"gnet","coinMinimalDenom":"agnet","coinDecimals":18}],"rest":"https://api.galactica.test.pfc.zone/","rpc":"https://rpc.galactica.test.pfc.zone/","bech32Config":{"bech32PrefixAccAddr":"gala","bech32PrefixAccPub":"galapub","bech32PrefixValAddr":"galavaloper","bech32PrefixValPub":"galavaloperpub","bech32PrefixConsAddr":"galavalcons","bech32PrefixConsPub":"galavalconspub"},"chainName":"galacticatestnet","feeCurrencies":[{"coinDenom":"gnet","coinMinimalDenom":"agnet","coinDecimals":18,"gasPriceStep":{"low":10,"average":10,"high":20}}],"stakeCurrency":{"coinDenom":"gnet","coinMinimalDenom":"agnet","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"gitopia-janus-testnet-2","currencies":[{"coinDenom":"tlore","coinMinimalDenom":"utlore","coinDecimals":6}],"rest":"https://gitopia-testnet.nodejumper.io:1317","rpc":"https://gitopia-testnet.nodejumper.io","bech32Config":{"bech32PrefixAccAddr":"gitopia","bech32PrefixAccPub":"gitopiapub","bech32PrefixValAddr":"gitopiavaloper","bech32PrefixValPub":"gitopiavaloperpub","bech32PrefixConsAddr":"gitopiavalcons","bech32PrefixConsPub":"gitopiavalconspub"},"chainName":"gitopiatestnet","feeCurrencies":[{"coinDenom":"tlore","coinMinimalDenom":"utlore","coinDecimals":6}],"stakeCurrency":{"coinDenom":"tlore","coinMinimalDenom":"utlore","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"berberis-1","currencies":[{"coinDenom":"hedge","coinMinimalDenom":"uhedge","coinDecimals":6}],"rest":"https://lcd-berberis.hedgeblock.io","rpc":"https://rpc-berberis.hedgeblock.io","bech32Config":{"bech32PrefixAccAddr":"hedge","bech32PrefixAccPub":"hedgepub","bech32PrefixValAddr":"hedgevaloper","bech32PrefixValPub":"hedgevaloperpub","bech32PrefixConsAddr":"hedgevalcons","bech32PrefixConsPub":"hedgevalconspub"},"chainName":"hedgetestnet","feeCurrencies":[{"coinDenom":"hedge","coinMinimalDenom":"uhedge","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"hedge","coinMinimalDenom":"uhedge","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"testnet-1","currencies":[{"coinDenom":"heart","coinMinimalDenom":"uheart","coinDecimals":6}],"rest":"https://humans-testnet.nodejumper.io:1317","rpc":"https://humans-testnet.nodejumper.io","bech32Config":{"bech32PrefixAccAddr":"humans","bech32PrefixAccPub":"humanspub","bech32PrefixValAddr":"humansvaloper","bech32PrefixValPub":"humansvaloperpub","bech32PrefixConsAddr":"humansvalcons","bech32PrefixConsPub":"humansvalconspub"},"chainName":"humanstestnet","feeCurrencies":[{"coinDenom":"heart","coinMinimalDenom":"uheart","coinDecimals":6}],"stakeCurrency":{"coinDenom":"heart","coinMinimalDenom":"uheart","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"prajna-1","currencies":[{"coinDenom":"hid","coinMinimalDenom":"uhid","coinDecimals":6}],"rest":"https://api.prajna.hypersign.id","rpc":"https://rpc.prajna.hypersign.id","bech32Config":{"bech32PrefixAccAddr":"hid","bech32PrefixAccPub":"hidpub","bech32PrefixValAddr":"hidvaloper","bech32PrefixValPub":"hidvaloperpub","bech32PrefixConsAddr":"hidvalcons","bech32PrefixConsPub":"hidvalconspub"},"chainName":"hypersigntestnet","feeCurrencies":[{"coinDenom":"hid","coinMinimalDenom":"uhid","coinDecimals":6}],"stakeCurrency":{"coinDenom":"hid","coinMinimalDenom":"uhid","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pandora-8","currencies":[{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6}],"rest":"https://testnet.ixo.earth/rest/","rpc":"https://rpc.testnet.ixo.earth/","bech32Config":{"bech32PrefixAccAddr":"ixo","bech32PrefixAccPub":"ixopub","bech32PrefixValAddr":"ixovaloper","bech32PrefixValPub":"ixovaloperpub","bech32PrefixConsAddr":"ixovalcons","bech32PrefixConsPub":"ixovalconspub"},"chainName":"impacthubtestnet","feeCurrencies":[{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"imversed-test-1","currencies":[{"coinDenom":"imv","coinMinimalDenom":"nimv","coinDecimals":6}],"rest":"https://query-endpoint-test.imversed.com/","rpc":"https://tx-endpoint-test.imversed.com/","bech32Config":{"bech32PrefixAccAddr":"imv","bech32PrefixAccPub":"imvpub","bech32PrefixValAddr":"imvvaloper","bech32PrefixValPub":"imvvaloperpub","bech32PrefixConsAddr":"imvvalcons","bech32PrefixConsPub":"imvvalconspub"},"chainName":"imversedtestnet","feeCurrencies":[{"coinDenom":"imv","coinMinimalDenom":"nimv","coinDecimals":6}],"stakeCurrency":{"coinDenom":"imv","coinMinimalDenom":"nimv","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"injective-888","currencies":[{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18}],"rest":"https://injective-testnet-api.polkachu.com","rpc":"https://injective-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"inj","bech32PrefixAccPub":"injpub","bech32PrefixValAddr":"injvaloper","bech32PrefixValPub":"injvaloperpub","bech32PrefixConsAddr":"injvalcons","bech32PrefixConsPub":"injvalconspub"},"chainName":"injectivetestnet","feeCurrencies":[{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18,"gasPriceStep":{"low":500000000,"average":700000000,"high":900000000}}],"stakeCurrency":{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"canine-1","currencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"rest":"https://jkl.api.t.stavr.tech","rpc":"http://jkl.rpc.t.stavr.tech:19127","bech32Config":{"bech32PrefixAccAddr":"jkl","bech32PrefixAccPub":"jklpub","bech32PrefixValAddr":"jklvaloper","bech32PrefixValPub":"jklvaloperpub","bech32PrefixConsAddr":"jklvalcons","bech32PrefixConsPub":"jklvalconspub"},"chainName":"jackaltestnet","feeCurrencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"stakeCurrency":{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mesomelas-1","currencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"rest":"https://jackal-testnet-v4-rest.brocha.in","rpc":"https://jackal-testnet-v4-rpc.brocha.in","bech32Config":{"bech32PrefixAccAddr":"jkl","bech32PrefixAccPub":"jklpub","bech32PrefixValAddr":"jklvaloper","bech32PrefixValPub":"jklvaloperpub","bech32PrefixConsAddr":"jklvalcons","bech32PrefixConsPub":"jklvalconspub"},"chainName":"jackaltestnet2","feeCurrencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"stakeCurrency":{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"uni-6","currencies":[{"coinDenom":"junox","coinMinimalDenom":"ujunox","coinDecimals":6},{"coinDenom":"nexx","coinMinimalDenom":"factory/juno12klaltyqvg2j6v034jwdxrk5n4242ttse4sdpt/NEXX","coinDecimals":6},{"coinDenom":"arena","coinMinimalDenom":"factory/juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k/ARENA","coinDecimals":6}],"rest":"https://juno-testnet-api.polkachu.com","rpc":"https://juno-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"juno","bech32PrefixAccPub":"junopub","bech32PrefixValAddr":"junovaloper","bech32PrefixValPub":"junovaloperpub","bech32PrefixConsAddr":"junovalcons","bech32PrefixConsPub":"junovalconspub"},"chainName":"junotestnet","feeCurrencies":[{"coinDenom":"junox","coinMinimalDenom":"ujunox","coinDecimals":6,"gasPriceStep":{"low":0.003,"average":0.0045,"high":0.006}}],"stakeCurrency":{"coinDenom":"junox","coinMinimalDenom":"ujunox","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kichain-t-4","currencies":[{"coinDenom":"tki","coinMinimalDenom":"utki","coinDecimals":6}],"rest":"https://api-challenge.blockchain.ki/","rpc":"https://rpc-challenge.blockchain.ki/","bech32Config":{"bech32PrefixAccAddr":"tki","bech32PrefixAccPub":"tkipub","bech32PrefixValAddr":"tkivaloper","bech32PrefixValPub":"tkivaloperpub","bech32PrefixConsAddr":"tkivalcons","bech32PrefixConsPub":"tkivalconspub"},"chainName":"kichaintestnet","feeCurrencies":[{"coinDenom":"tki","coinMinimalDenom":"utki","coinDecimals":6}],"stakeCurrency":{"coinDenom":"tki","coinMinimalDenom":"utki","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kima_testnet","currencies":[{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6}],"rest":"https://api-testnet.kima.finance","rpc":"https://rpc-testnet.kima.finance/","bech32Config":{"bech32PrefixAccAddr":"kima","bech32PrefixAccPub":"kimapub","bech32PrefixValAddr":"kimavaloper","bech32PrefixValPub":"kimavaloperpub","bech32PrefixConsAddr":"kimavalcons","bech32PrefixConsPub":"kimavalconspub"},"chainName":"kimanetworktestnet","feeCurrencies":[{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"harpoon-4","currencies":[{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6},{"coinDenom":"fuzn","coinMinimalDenom":"factory/kujira16qpvzhmawvsm8mcj4hdvtz25dadatdhhgw79xa/FUZN","coinDecimals":6}],"rest":"https://kujira-testnet-api.polkachu.com/","rpc":"https://kujira-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"kujira","bech32PrefixAccPub":"kujirapub","bech32PrefixValAddr":"kujiravaloper","bech32PrefixValPub":"kujiravaloperpub","bech32PrefixConsAddr":"kujiravalcons","bech32PrefixConsPub":"kujiravalconspub"},"chainName":"kujiratestnet","feeCurrencies":[{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6}],"stakeCurrency":{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kaon-1","currencies":[{"coinDenom":"kyve","coinMinimalDenom":"tkyve","coinDecimals":6}],"rest":"https://api.kaon.kyve.network","rpc":"https://rpc.kaon.kyve.network","bech32Config":{"bech32PrefixAccAddr":"kyve","bech32PrefixAccPub":"kyvepub","bech32PrefixValAddr":"kyvevaloper","bech32PrefixValPub":"kyvevaloperpub","bech32PrefixConsAddr":"kyvevalcons","bech32PrefixConsPub":"kyvevalconspub"},"chainName":"kyvetestnet","feeCurrencies":[{"coinDenom":"kyve","coinMinimalDenom":"tkyve","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.03,"high":0.06}}],"stakeCurrency":{"coinDenom":"kyve","coinMinimalDenom":"tkyve","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"lava-testnet-2","currencies":[{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6}],"rest":"https://lav1.lava.build/","rpc":"https://lav1.tendermintrpc.lava.build:443","bech32Config":{"bech32PrefixAccAddr":"lava@","bech32PrefixAccPub":"lava@pub","bech32PrefixValAddr":"lava@valoper","bech32PrefixValPub":"lava@valoperpub","bech32PrefixConsAddr":"lava@valcons","bech32PrefixConsPub":"lava@valconspub"},"chainName":"lavatestnet","feeCurrencies":[{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6,"gasPriceStep":{"low":0.000001,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"likecoin-public-testnet-5","currencies":[{"coinDenom":"ekil","coinMinimalDenom":"nanoekil","coinDecimals":9}],"rest":"https://node.testnet.like.co/","rpc":"https://node.testnet.like.co/rpc/","bech32Config":{"bech32PrefixAccAddr":"like","bech32PrefixAccPub":"likepub","bech32PrefixValAddr":"likevaloper","bech32PrefixValPub":"likevaloperpub","bech32PrefixConsAddr":"likevalcons","bech32PrefixConsPub":"likevalconspub"},"chainName":"likecointestnet","feeCurrencies":[{"coinDenom":"ekil","coinMinimalDenom":"nanoekil","coinDecimals":9,"gasPriceStep":{"low":1000,"average":10000,"high":1000000}}],"stakeCurrency":{"coinDenom":"ekil","coinMinimalDenom":"nanoekil","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"lumenx-test","currencies":[{"coinDenom":"lumen","coinMinimalDenom":"ulumen","coinDecimals":6}],"rest":"https://testnet-api.lumenx.chaintools.tech/","rpc":"https://testnet-rpc.lumenx.chaintools.tech/","bech32Config":{"bech32PrefixAccAddr":"lumen","bech32PrefixAccPub":"lumenpub","bech32PrefixValAddr":"lumenvaloper","bech32PrefixValPub":"lumenvaloperpub","bech32PrefixConsAddr":"lumenvalcons","bech32PrefixConsPub":"lumenvalconspub"},"chainName":"lumenxtestnet","feeCurrencies":[{"coinDenom":"lumen","coinMinimalDenom":"ulumen","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"lumen","coinMinimalDenom":"ulumen","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"manifest-ledger-beta","currencies":[{"coinDenom":"mfx","coinMinimalDenom":"umfx","coinDecimals":6},{"coinDenom":"poa","coinMinimalDenom":"upoa","coinDecimals":6}],"rest":"https://nodes.chandrastation.com/api/manifest/","rpc":"https://nodes.chandrastation.com/rpc/manifest/","bech32Config":{"bech32PrefixAccAddr":"manifest","bech32PrefixAccPub":"manifestpub","bech32PrefixValAddr":"manifestvaloper","bech32PrefixValPub":"manifestvaloperpub","bech32PrefixConsAddr":"manifestvalcons","bech32PrefixConsPub":"manifestvalconspub"},"chainName":"manifesttestnet","feeCurrencies":[{"coinDenom":"mfx","coinMinimalDenom":"umfx","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.007,"high":0.1}}],"stakeCurrency":{"coinDenom":"mfx","coinMinimalDenom":"umfx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mantra-hongbai-1","currencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6}],"rest":"https://api.hongbai.mantrachain.io","rpc":"https://rpc.hongbai.mantrachain.io","bech32Config":{"bech32PrefixAccAddr":"mantra","bech32PrefixAccPub":"mantrapub","bech32PrefixValAddr":"mantravaloper","bech32PrefixValPub":"mantravaloperpub","bech32PrefixConsAddr":"mantravalcons","bech32PrefixConsPub":"mantravalconspub"},"chainName":"mantrachaintestnet","feeCurrencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.003}}],"stakeCurrency":{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mantra-dukong-1","currencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6}],"rest":"https://api.dukong.mantrachain.io","rpc":"https://rpc.dukong.mantrachain.io","bech32Config":{"bech32PrefixAccAddr":"mantra","bech32PrefixAccPub":"mantrapub","bech32PrefixValAddr":"mantravaloper","bech32PrefixValPub":"mantravaloperpub","bech32PrefixConsAddr":"mantravalcons","bech32PrefixConsPub":"mantravalconspub"},"chainName":"mantrachaintestnet2","feeCurrencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.03}}],"stakeCurrency":{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"ares-1","currencies":[{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6}],"rest":"https://testnet-rest.marsprotocol.io/","rpc":"https://testnet-rpc.marsprotocol.io/","bech32Config":{"bech32PrefixAccAddr":"mars","bech32PrefixAccPub":"marspub","bech32PrefixValAddr":"marsvaloper","bech32PrefixValPub":"marsvaloperpub","bech32PrefixConsAddr":"marsvalcons","bech32PrefixConsPub":"marsvalconspub"},"chainName":"marstestnet","feeCurrencies":[{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6}],"stakeCurrency":{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"narwhal-2","currencies":[{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6}],"rest":"https://migaloo-testnet-api.polkachu.com","rpc":"https://migaloo-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"migaloo","bech32PrefixAccPub":"migaloopub","bech32PrefixValAddr":"migaloovaloper","bech32PrefixValPub":"migaloovaloperpub","bech32PrefixConsAddr":"migaloovalcons","bech32PrefixConsPub":"migaloovalconspub"},"chainName":"migalootestnet","feeCurrencies":[{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6,"gasPriceStep":{"low":0.25,"average":0.5,"high":0.75}}],"stakeCurrency":{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pion-1","currencies":[{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6},{"coinDenom":"amATOM","coinMinimalDenom":"factory/neutron15lku24mqhvy4v4gryrqs4662n9v9q4ux9tayn89cmdzldjcgawushxvm76/amatom","coinDecimals":6},{"coinDenom":"arena","coinMinimalDenom":"factory/neutron1r3slyjlf7g76mz3na6gh7c8ek62rhssrzf60uh0emyw3x94rppyqfcs0pk/uarena","coinDecimals":6}],"rest":"https://rest-falcron.pion-1.ntrn.tech","rpc":"https://rpc-falcron.pion-1.ntrn.tech","bech32Config":{"bech32PrefixAccAddr":"neutron","bech32PrefixAccPub":"neutronpub","bech32PrefixValAddr":"neutronvaloper","bech32PrefixValPub":"neutronvaloperpub","bech32PrefixConsAddr":"neutronvalcons","bech32PrefixConsPub":"neutronvalconspub"},"chainName":"neutrontestnet","feeCurrencies":[{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6,"gasPriceStep":{"low":0.0053,"average":0.0053,"high":0.0053}}],"stakeCurrency":{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nibiru-testnet-1","currencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18}],"rest":"https://lcd.testnet-1.nibiru.fi","rpc":"https://rpc.testnet-1.nibiru.fi","bech32Config":{"bech32PrefixAccAddr":"nibi","bech32PrefixAccPub":"nibipub","bech32PrefixValAddr":"nibivaloper","bech32PrefixValPub":"nibivaloperpub","bech32PrefixConsAddr":"nibivalcons","bech32PrefixConsPub":"nibivalconspub"},"chainName":"nibirutestnet","feeCurrencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"nibiru-testnet-2","currencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18}],"rest":"https://lcd.testnet-2.nibiru.fi","rpc":"https://rpc.testnet-2.nibiru.fi","bech32Config":{"bech32PrefixAccAddr":"nibi","bech32PrefixAccPub":"nibipub","bech32PrefixValAddr":"nibivaloper","bech32PrefixValPub":"nibivaloperpub","bech32PrefixConsAddr":"nibivalcons","bech32PrefixConsPub":"nibivalconspub"},"chainName":"nibirutestnet2","feeCurrencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"nibiru-testnet-3","currencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18}],"rest":"https://lcd.testnet-3.nibiru.fi","rpc":"https://rpc.testnet-3.nibiru.fi","bech32Config":{"bech32PrefixAccAddr":"nibi","bech32PrefixAccPub":"nibipub","bech32PrefixValAddr":"nibivaloper","bech32PrefixValPub":"nibivaloperpub","bech32PrefixConsAddr":"nibivalcons","bech32PrefixConsPub":"nibivalconspub"},"chainName":"nibirutestnet3","feeCurrencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"nillion-chain-testnet-1","currencies":[{"coinDenom":"nil","coinMinimalDenom":"unil","coinDecimals":6}],"rest":"https://nillion-testnet-api.polkachu.com/","rpc":"https://nillion-testnet-rpc.polkachu.com/","bech32Config":{"bech32PrefixAccAddr":"nillion","bech32PrefixAccPub":"nillionpub","bech32PrefixValAddr":"nillionvaloper","bech32PrefixValPub":"nillionvaloperpub","bech32PrefixConsAddr":"nillionvalcons","bech32PrefixConsPub":"nillionvalconspub"},"chainName":"nilliontestnet","feeCurrencies":[{"coinDenom":"nil","coinMinimalDenom":"unil","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.00025}}],"stakeCurrency":{"coinDenom":"nil","coinMinimalDenom":"unil","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"grand-1","currencies":[{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":6},{"coinDenom":"love","coinMinimalDenom":"ulove","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6},{"coinDenom":"usdy","coinMinimalDenom":"ausdy","coinDecimals":18}],"rest":"https://noble-testnet-api.polkachu.com","rpc":"https://noble-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"noble","bech32PrefixAccPub":"noblepub","bech32PrefixValAddr":"noblevaloper","bech32PrefixValPub":"noblevaloperpub","bech32PrefixConsAddr":"noblevalcons","bech32PrefixConsPub":"noblevalconspub"},"chainName":"nobletestnet","feeCurrencies":[{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nois-testnet-005","currencies":[{"coinDenom":"nois","coinMinimalDenom":"unois","coinDecimals":6}],"rest":"https://api.nois.mcbnode.online","rpc":"https://nois-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"nois","bech32PrefixAccPub":"noispub","bech32PrefixValAddr":"noisvaloper","bech32PrefixValPub":"noisvaloperpub","bech32PrefixConsAddr":"noisvalcons","bech32PrefixConsPub":"noisvalconspub"},"chainName":"noistestnet","feeCurrencies":[{"coinDenom":"nois","coinMinimalDenom":"unois","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"nois","coinMinimalDenom":"unois","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"rila-1","currencies":[{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6}],"rest":"https://rila-cl.nolus.network:1317","rpc":"https://rila-cl.nolus.network:26657","bech32Config":{"bech32PrefixAccAddr":"nolus","bech32PrefixAccPub":"noluspub","bech32PrefixValAddr":"nolusvaloper","bech32PrefixValPub":"nolusvaloperpub","bech32PrefixConsAddr":"nolusvalcons","bech32PrefixConsPub":"nolusvalconspub"},"chainName":"nolustestnet","feeCurrencies":[{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.05}}],"stakeCurrency":{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nomic-testnet-6","currencies":[{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},{"coinDenom":"nbtc","coinMinimalDenom":"usat","coinDecimals":14}],"rest":"https://testnet-api.nomic.io:8443","rpc":"https://testnet-rpc.nomic.io:2096","bech32Config":{"bech32PrefixAccAddr":"nomic","bech32PrefixAccPub":"nomicpub","bech32PrefixValAddr":"nomicvaloper","bech32PrefixValPub":"nomicvaloperpub","bech32PrefixConsAddr":"nomicvalcons","bech32PrefixConsPub":"nomicvalconspub"},"chainName":"nomictestnet","feeCurrencies":[{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},{"coinDenom":"nbtc","coinMinimalDenom":"usat","coinDecimals":14}],"stakeCurrency":{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sandbox","currencies":[{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6},{"coinDenom":"nym","coinMinimalDenom":"unym","coinDecimals":6}],"rest":"https://api.sandbox.nymtech.net","rpc":"https://rpc.sandbox.nymtech.net","bech32Config":{"bech32PrefixAccAddr":"n","bech32PrefixAccPub":"npub","bech32PrefixValAddr":"nvaloper","bech32PrefixValPub":"nvaloperpub","bech32PrefixConsAddr":"nvalcons","bech32PrefixConsPub":"nvalconspub"},"chainName":"nyxtestnet","feeCurrencies":[{"coinDenom":"nym","coinMinimalDenom":"unym","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}},{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"okp4-nemeton-1","currencies":[{"coinDenom":"know","coinMinimalDenom":"uknow","coinDecimals":6}],"rest":"https://okptest-lcd.quickapi.com","rpc":"https://api.testnet.okp4.network/rpc","bech32Config":{"bech32PrefixAccAddr":"okp4","bech32PrefixAccPub":"okp4pub","bech32PrefixValAddr":"okp4valoper","bech32PrefixValPub":"okp4valoperpub","bech32PrefixConsAddr":"okp4valcons","bech32PrefixConsPub":"okp4valconspub"},"chainName":"okp4testnet","feeCurrencies":[{"coinDenom":"know","coinMinimalDenom":"uknow","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"know","coinMinimalDenom":"uknow","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"osmo-test-5","currencies":[{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6},{"coinDenom":"ion","coinMinimalDenom":"uion","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/9FF2B7A5F55038A7EE61F4FD6749D9A648B48E89830F2682B67B5DC158E2753C","coinDecimals":6},{"coinDenom":"ausdc","coinMinimalDenom":"ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"ibc/1F42AC9631DBE03009219ECCFE151786F53A038DE9F7A07C709158514F1D5942","coinDecimals":18},{"coinDenom":"junox","coinMinimalDenom":"ibc/31D220286E6C224C0F72D890D0EB75A228D388089EF5C4D77212344F9EAF0183","coinDecimals":6},{"coinDenom":"mars","coinMinimalDenom":"ibc/66A7ADA623D33D0B66C6890FE3E1AF3D638D56CE2B56F8BDA210B2AA62016216","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/DE6792CF9E521F6AD6E9A4BDF6225C9571A3B74ACC0A529F92BC5122A39D2E58","coinDecimals":6},{"coinDenom":"akt","coinMinimalDenom":"ibc/AD59D59CFB0E628E73C798415F823AB5B6257C2FE4BF67DBB5D6A677B2686E82","coinDecimals":6},{"coinDenom":"kyve","coinMinimalDenom":"ibc/AB8AF05799E299FB5C5C80781DA35887F53E029745D20E5641233DB4E6B28515","coinDecimals":6},{"coinDenom":"qck","coinMinimalDenom":"ibc/F37CF69589DE12342758382F8770C0852CD8D2E4519F55166EBDAF472AD667C9","coinDecimals":6},{"coinDenom":"c4e","coinMinimalDenom":"ibc/E3D323CB6F427C49E56F913C853A416F6B71BAA9B0164625AD0203266F92B3ED","coinDecimals":6},{"coinDenom":"xprt","coinMinimalDenom":"ibc/754C8533F8A418B03AD5F2C6AA19D4703CF78BBAB9E2E4DDD6212AAC2E502CA6","coinDecimals":6},{"coinDenom":"XION","coinMinimalDenom":"ibc/3642669AD14386D3E38F43F30CFCA859B3E8A05BF6BD6A23DEBD2115AD1325E9","coinDecimals":6},{"coinDenom":"tsaga","coinMinimalDenom":"ibc/48384130079A5987378F5776775F8C29A02505273E777BBB99361F2BB5B577C9","coinDecimals":6},{"coinDenom":"ixo","coinMinimalDenom":"ibc/88C815D69587CF0F05E96E5E2731EA56194D73C9A02A500095294D3A5DE68F16","coinDecimals":6},{"coinDenom":"willyz","coinMinimalDenom":"factory/osmo1zlkzu72774ynac53necz46u4ycqtp36wedrar0/willyz","coinDecimals":6},{"coinDenom":"amATOM","coinMinimalDenom":"ibc/C86B92F7FCFC1993DAC4AB0D78D9BC080300354B823A57F12CD6E2FBB667214E","coinDecimals":6},{"coinDenom":"tkx","coinMinimalDenom":"ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6","coinDecimals":18}],"rest":"https://lcd.osmotest5.osmosis.zone/","rpc":"https://rpc.osmotest5.osmosis.zone/","bech32Config":{"bech32PrefixAccAddr":"osmo","bech32PrefixAccPub":"osmopub","bech32PrefixValAddr":"osmovaloper","bech32PrefixValPub":"osmovaloperpub","bech32PrefixConsAddr":"osmovalcons","bech32PrefixConsPub":"osmovalconspub"},"chainName":"osmosistestnet","feeCurrencies":[{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"INVALID-ID-permtestnet-testnet-1","currencies":[{"coinDenom":"perm","coinMinimalDenom":"uperm","coinDecimals":6}],"rest":"https://rest.3.finance/","rpc":"https://rpc.3.finance/","bech32Config":{"bech32PrefixAccAddr":"perm","bech32PrefixAccPub":"permpub","bech32PrefixValAddr":"permvaloper","bech32PrefixValPub":"permvaloperpub","bech32PrefixConsAddr":"permvalcons","bech32PrefixConsPub":"permvalconspub"},"chainName":"permtestnet","feeCurrencies":[{"coinDenom":"perm","coinMinimalDenom":"uperm","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.0025,"high":0.0024}}],"stakeCurrency":{"coinDenom":"perm","coinMinimalDenom":"uperm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"test-core-1","currencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},{"coinDenom":"stkatom","coinMinimalDenom":"stk/uatom","coinDecimals":6}],"rest":"https://rest-testnet-persistence.architectnodes.com/","rpc":"https://rpc-testnet-persistence.architectnodes.com/","bech32Config":{"bech32PrefixAccAddr":"persistence","bech32PrefixAccPub":"persistencepub","bech32PrefixValAddr":"persistencevaloper","bech32PrefixValPub":"persistencevaloperpub","bech32PrefixConsAddr":"persistencevalcons","bech32PrefixConsPub":"persistencevalconspub"},"chainName":"persistencetestnet","feeCurrencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.125,"high":0.2}}],"stakeCurrency":{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"test-core-2","currencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},{"coinDenom":"stkatom","coinMinimalDenom":"stk/uatom","coinDecimals":6},{"coinDenom":"stkosmo","coinMinimalDenom":"stk/uosmo","coinDecimals":6},{"coinDenom":"stkdv4tnt","coinMinimalDenom":"stk/adv4tnt","coinDecimals":18}],"rest":"https://api-persistence-testnet-01.stakeflow.io/","rpc":"https://rpc-persistence-testnet-01.stakeflow.io/","bech32Config":{"bech32PrefixAccAddr":"persistence","bech32PrefixAccPub":"persistencepub","bech32PrefixValAddr":"persistencevaloper","bech32PrefixValPub":"persistencevaloperpub","bech32PrefixConsAddr":"persistencevalcons","bech32PrefixConsPub":"persistencevalconspub"},"chainName":"persistencetestnet2","feeCurrencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.125,"high":0.2}}],"stakeCurrency":{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"planq_7077-1","currencies":[{"coinDenom":"tplanq","coinMinimalDenom":"atplanq","coinDecimals":18}],"rest":"https://rest-atlas.planq.network","rpc":"https://rpc-atlas.planq.network","bech32Config":{"bech32PrefixAccAddr":"plq","bech32PrefixAccPub":"plqpub","bech32PrefixValAddr":"plqvaloper","bech32PrefixValPub":"plqvaloperpub","bech32PrefixConsAddr":"plqvalcons","bech32PrefixConsPub":"plqvalconspub"},"chainName":"planqtestnet","feeCurrencies":[{"coinDenom":"tplanq","coinMinimalDenom":"atplanq","coinDecimals":18,"gasPriceStep":{"low":30000000000,"average":35000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"tplanq","coinMinimalDenom":"atplanq","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"pocket-beta","currencies":[{"coinDenom":"pokt","coinMinimalDenom":"upokt","coinDecimals":6}],"rest":"https://shannon-testnet-grove-api.beta.poktroll.com","rpc":"https://shannon-testnet-grove-rpc.beta.poktroll.com","bech32Config":{"bech32PrefixAccAddr":"pokt@","bech32PrefixAccPub":"pokt@pub","bech32PrefixValAddr":"pokt@valoper","bech32PrefixValPub":"pokt@valoperpub","bech32PrefixConsAddr":"pokt@valcons","bech32PrefixConsPub":"pokt@valconspub"},"chainName":"pockettestnet","feeCurrencies":[{"coinDenom":"pokt","coinMinimalDenom":"upokt","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.0025}}],"stakeCurrency":{"coinDenom":"pokt","coinMinimalDenom":"upokt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"indigo-1","currencies":[{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6}],"rest":"https://testnet-api.pryzm.zone","rpc":"https://testnet-rpc.pryzm.zone","bech32Config":{"bech32PrefixAccAddr":"pryzm","bech32PrefixAccPub":"pryzmpub","bech32PrefixValAddr":"pryzmvaloper","bech32PrefixValPub":"pryzmvaloperpub","bech32PrefixConsAddr":"pryzmvalcons","bech32PrefixConsPub":"pryzmvalconspub"},"chainName":"pryzmtestnet","feeCurrencies":[{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"quasar-test-1","currencies":[{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6},{"coinDenom":"ayy","coinMinimalDenom":"uayy","coinDecimals":6},{"coinDenom":"oro","coinMinimalDenom":"uoro","coinDecimals":6}],"rest":"https://quasar-testnet-api.polkachu.com/","rpc":"https://quasar-testnet-rpc.polkachu.com/","bech32Config":{"bech32PrefixAccAddr":"quasar","bech32PrefixAccPub":"quasarpub","bech32PrefixValAddr":"quasarvaloper","bech32PrefixValPub":"quasarvaloperpub","bech32PrefixConsAddr":"quasarvalcons","bech32PrefixConsPub":"quasarvalconspub"},"chainName":"quasartestnet","feeCurrencies":[{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"rhye-2","currencies":[{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6}],"rest":"https://quick.api.t.stavr.tech","rpc":"http://quick.rpc.t.stavr.tech:20027","bech32Config":{"bech32PrefixAccAddr":"quick","bech32PrefixAccPub":"quickpub","bech32PrefixValAddr":"quickvaloper","bech32PrefixValPub":"quickvaloperpub","bech32PrefixConsAddr":"quickvalcons","bech32PrefixConsPub":"quickvalconspub"},"chainName":"quicksilvertestnet","feeCurrencies":[{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.00025}}],"stakeCurrency":{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"earendel-1","currencies":[{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6}],"rest":"https://testnet-api.qwoyn.studio","rpc":"https://testnet-rpc.qwoyn.studio","bech32Config":{"bech32PrefixAccAddr":"qwoyn","bech32PrefixAccPub":"qwoynpub","bech32PrefixValAddr":"qwoynvaloper","bech32PrefixValPub":"qwoynvaloperpub","bech32PrefixConsAddr":"qwoynvalcons","bech32PrefixConsPub":"qwoynvalconspub"},"chainName":"qwoyntestnet","feeCurrencies":[{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6}],"stakeCurrency":{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"ssc-testnet-2","currencies":[{"coinDenom":"tsaga","coinMinimalDenom":"utsaga","coinDecimals":6}],"rest":"https://testnet-ssc-lcd.sagarpc.io/","rpc":"https://testnet-ssc.sagarpc.io/","bech32Config":{"bech32PrefixAccAddr":"saga","bech32PrefixAccPub":"sagapub","bech32PrefixValAddr":"sagavaloper","bech32PrefixValPub":"sagavaloperpub","bech32PrefixConsAddr":"sagavalcons","bech32PrefixConsPub":"sagavalconspub"},"chainName":"sagatestnet","feeCurrencies":[{"coinDenom":"tsaga","coinMinimalDenom":"utsaga","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"tsaga","coinMinimalDenom":"utsaga","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pulsar-3","currencies":[{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6}],"rest":"https://lcd.testnet.secretsaturn.net","rpc":"https://rpc.testnet.secretsaturn.net","bech32Config":{"bech32PrefixAccAddr":"secret","bech32PrefixAccPub":"secretpub","bech32PrefixValAddr":"secretvaloper","bech32PrefixValPub":"secretvaloperpub","bech32PrefixConsAddr":"secretvalcons","bech32PrefixConsPub":"secretvalconspub"},"chainName":"secretnetworktestnet","feeCurrencies":[{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6}],"stakeCurrency":{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6},"bip44":{"coinType":529}},{"chainId":"atlantic-1","currencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6}],"rest":"https://sei-testnet-rest.brocha.in","rpc":"https://sei-testnet-rpc.brocha.in","bech32Config":{"bech32PrefixAccAddr":"sei","bech32PrefixAccPub":"seipub","bech32PrefixValAddr":"seivaloper","bech32PrefixValPub":"seivaloperpub","bech32PrefixConsAddr":"seivalcons","bech32PrefixConsPub":"seivalconspub"},"chainName":"seitestnet","feeCurrencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6}],"stakeCurrency":{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"atlantic-2","currencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6}],"rest":"https://sei-testnet-2-rest.brocha.in","rpc":"https://sei-testnet-2-rpc.brocha.in","bech32Config":{"bech32PrefixAccAddr":"sei","bech32PrefixAccPub":"seipub","bech32PrefixValAddr":"seivaloper","bech32PrefixValPub":"seivaloperpub","bech32PrefixConsAddr":"seivalcons","bech32PrefixConsPub":"seivalconspub"},"chainName":"seitestnet2","feeCurrencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6}],"stakeCurrency":{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"self-dev-1","currencies":[{"coinDenom":"self","coinMinimalDenom":"uself","coinDecimals":6}],"rest":"https://api-devnet.selfchain.xyz/","rpc":"https://rpc-devnet.selfchain.xyz","bech32Config":{"bech32PrefixAccAddr":"self","bech32PrefixAccPub":"selfpub","bech32PrefixValAddr":"selfvaloper","bech32PrefixValPub":"selfvaloperpub","bech32PrefixConsAddr":"selfvalcons","bech32PrefixConsPub":"selfvalconspub"},"chainName":"selfchaindevnet","feeCurrencies":[{"coinDenom":"self","coinMinimalDenom":"uself","coinDecimals":6}],"stakeCurrency":{"coinDenom":"self","coinMinimalDenom":"uself","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sge-network-3","currencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"rest":"https://api.testnet.sgenetwork.io","rpc":"https://rpc.testnet.sgenetwork.io","bech32Config":{"bech32PrefixAccAddr":"sge","bech32PrefixAccPub":"sgepub","bech32PrefixValAddr":"sgevaloper","bech32PrefixValPub":"sgevaloperpub","bech32PrefixConsAddr":"sgevalcons","bech32PrefixConsPub":"sgevalconspub"},"chainName":"sgetestnet","feeCurrencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"stakeCurrency":{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sge-network-4","currencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"rest":"https://api.testnet.sgenetwork.io","rpc":"https://rpc.testnet.sgenetwork.io","bech32Config":{"bech32PrefixAccAddr":"sge","bech32PrefixAccPub":"sgepub","bech32PrefixValAddr":"sgevaloper","bech32PrefixValPub":"sgevaloperpub","bech32PrefixConsAddr":"sgevalcons","bech32PrefixConsPub":"sgevalconspub"},"chainName":"sgetestnet4","feeCurrencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"stakeCurrency":{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"yulei-2.1","currencies":[{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6}],"rest":"https://yulei-rest.shentu.org/","rpc":"https://yulei-rpc.shentu.org:443","bech32Config":{"bech32PrefixAccAddr":"shentu","bech32PrefixAccPub":"shentupub","bech32PrefixValAddr":"shentuvaloper","bech32PrefixValPub":"shentuvaloperpub","bech32PrefixConsAddr":"shentuvalcons","bech32PrefixConsPub":"shentuvalconspub"},"chainName":"shentutestnet","feeCurrencies":[{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"fivenet","currencies":[{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6}],"rest":"https://api1.fivenet.sixprotocol.net:443","rpc":"https://rpc1.fivenet.sixprotocol.net:443","bech32Config":{"bech32PrefixAccAddr":"6x","bech32PrefixAccPub":"6xpub","bech32PrefixValAddr":"6xvaloper","bech32PrefixValPub":"6xvaloperpub","bech32PrefixConsAddr":"6xvalcons","bech32PrefixConsPub":"6xvalconspub"},"chainName":"sixtestnet","feeCurrencies":[{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6,"gasPriceStep":{"low":1.25,"average":1.5,"high":1.75}}],"stakeCurrency":{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"soarchaintestnet","currencies":[{"coinDenom":"tsoar","coinMinimalDenom":"utsoar","coinDecimals":6}],"rest":"https://api.testnet.soarchain.com/","rpc":"https://rpc1.testnet.soarchain.com","bech32Config":{"bech32PrefixAccAddr":"soar","bech32PrefixAccPub":"soarpub","bech32PrefixValAddr":"soarvaloper","bech32PrefixValPub":"soarvaloperpub","bech32PrefixConsAddr":"soarvalcons","bech32PrefixConsPub":"soarvalconspub"},"chainName":"soarchaintestnet","feeCurrencies":[{"coinDenom":"tsoar","coinMinimalDenom":"utsoar","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}}],"stakeCurrency":{"coinDenom":"tsoar","coinMinimalDenom":"utsoar","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sourcetest-1","currencies":[{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6}],"rest":"https://source-testnet-api.itrocket.net/","rpc":"https://source-testnet-rpc.itrocket.net/","bech32Config":{"bech32PrefixAccAddr":"source","bech32PrefixAccPub":"sourcepub","bech32PrefixValAddr":"sourcevaloper","bech32PrefixValPub":"sourcevaloperpub","bech32PrefixConsAddr":"sourcevalcons","bech32PrefixConsPub":"sourcevalconspub"},"chainName":"sourcetestnet","feeCurrencies":[{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.075,"high":0.1}}],"stakeCurrency":{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"elgafar-1","currencies":[{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6}],"rest":"https://rest.elgafar-1.stargaze-apis.com","rpc":"https://rpc.elgafar-1.stargaze-apis.com","bech32Config":{"bech32PrefixAccAddr":"stars","bech32PrefixAccPub":"starspub","bech32PrefixValAddr":"starsvaloper","bech32PrefixValPub":"starsvaloperpub","bech32PrefixConsAddr":"starsvalcons","bech32PrefixConsPub":"starsvalconspub"},"chainName":"stargazetestnet","feeCurrencies":[{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.04,"high":0.05}}],"stakeCurrency":{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"stateset-1-testnet","currencies":[{"coinDenom":"state","coinMinimalDenom":"ustate","coinDecimals":6}],"rest":"https://rest-api.stateset.zone","rpc":"https://rpc.stateset.zone/","bech32Config":{"bech32PrefixAccAddr":"stateset","bech32PrefixAccPub":"statesetpub","bech32PrefixValAddr":"statesetvaloper","bech32PrefixValPub":"statesetvaloperpub","bech32PrefixConsAddr":"statesetvalcons","bech32PrefixConsPub":"statesetvalconspub"},"chainName":"statesettestnet","feeCurrencies":[{"coinDenom":"state","coinMinimalDenom":"ustate","coinDecimals":6}],"stakeCurrency":{"coinDenom":"state","coinMinimalDenom":"ustate","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"stride-internal-1","currencies":[{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6},{"coinDenom":"stTIA","coinMinimalDenom":"stutia","coinDecimals":6},{"coinDenom":"stDV4TNT","coinMinimalDenom":"stadv4tnt","coinDecimals":18},{"coinDenom":"TIA","coinMinimalDenom":"ibc/1A7653323C1A9E267FF7BEBF40B3EEA8065E8F069F47F2493ABC3E0B621BF793","coinDecimals":6},{"coinDenom":"DV4TNT","coinMinimalDenom":"ibc/DFA22C0A6DD15E64B6BD164A1C748EDA8E976F3BDAC9BA7B40AD887BBEC5D2BB","coinDecimals":6}],"rest":"https://stride.testnet-1.stridenet.co/api","rpc":"https://stride.testnet-1.stridenet.co","bech32Config":{"bech32PrefixAccAddr":"stride","bech32PrefixAccPub":"stridepub","bech32PrefixValAddr":"stridevaloper","bech32PrefixValPub":"stridevaloperpub","bech32PrefixConsAddr":"stridevalcons","bech32PrefixConsPub":"stridevalconspub"},"chainName":"stridetestnet","feeCurrencies":[{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6}],"stakeCurrency":{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sunrise-test-0.1","currencies":[{"coinDenom":"vrise","coinMinimalDenom":"uvrise","coinDecimals":6},{"coinDenom":"rise","coinMinimalDenom":"urise","coinDecimals":6}],"rest":"https://a-node.sunrise-test-1.cauchye.net:1318","rpc":"https://a-node.sunrise-test-1.cauchye.net/","bech32Config":{"bech32PrefixAccAddr":"sunrise","bech32PrefixAccPub":"sunrisepub","bech32PrefixValAddr":"sunrisevaloper","bech32PrefixValPub":"sunrisevaloperpub","bech32PrefixConsAddr":"sunrisevalcons","bech32PrefixConsPub":"sunrisevalconspub"},"chainName":"sunrisetestnet","feeCurrencies":[{"coinDenom":"rise","coinMinimalDenom":"urise","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"vrise","coinMinimalDenom":"uvrise","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"swisstronik_1291-1","currencies":[{"coinDenom":"swtr","coinMinimalDenom":"aswtr","coinDecimals":18}],"rest":"https://api.testnet.swisstronik.com","rpc":"https://rpc.testnet.swisstronik.com","bech32Config":{"bech32PrefixAccAddr":"swtr","bech32PrefixAccPub":"swtrpub","bech32PrefixValAddr":"swtrvaloper","bech32PrefixValPub":"swtrvaloperpub","bech32PrefixConsAddr":"swtrvalcons","bech32PrefixConsPub":"swtrvalconspub"},"chainName":"swisstroniktestnet","feeCurrencies":[{"coinDenom":"swtr","coinMinimalDenom":"aswtr","coinDecimals":18}],"stakeCurrency":{"coinDenom":"swtr","coinMinimalDenom":"aswtr","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"symphony-testnet-3","currencies":[{"coinDenom":"mld","coinMinimalDenom":"note","coinDecimals":6},{"coinDenom":"husd","coinMinimalDenom":"uusd","coinDecimals":6},{"coinDenom":"hkhd","coinMinimalDenom":"ukhd","coinDecimals":6},{"coinDenom":"hvnd","coinMinimalDenom":"uvnd","coinDecimals":6}],"rest":"https://symphony.test.api.nodeshub.online/","rpc":"https://symphony.test.rpc.nodeshub.online/","bech32Config":{"bech32PrefixAccAddr":"symphony","bech32PrefixAccPub":"symphonypub","bech32PrefixValAddr":"symphonyvaloper","bech32PrefixValPub":"symphonyvaloperpub","bech32PrefixConsAddr":"symphonyvalcons","bech32PrefixConsPub":"symphonyvalconspub"},"chainName":"symphonytestnet","feeCurrencies":[{"coinDenom":"mld","coinMinimalDenom":"note","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"mld","coinMinimalDenom":"note","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"amber-2","currencies":[{"coinDenom":"AMBER","coinMinimalDenom":"uamber","coinDecimals":6}],"rest":"https://api-testnet.synternet.com/","rpc":"https://rpc-testnet.synternet.com/","bech32Config":{"bech32PrefixAccAddr":"amber","bech32PrefixAccPub":"amberpub","bech32PrefixValAddr":"ambervaloper","bech32PrefixValPub":"ambervaloperpub","bech32PrefixConsAddr":"ambervalcons","bech32PrefixConsPub":"ambervalconspub"},"chainName":"synternettestnet","feeCurrencies":[{"coinDenom":"AMBER","coinMinimalDenom":"uamber","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"AMBER","coinMinimalDenom":"uamber","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"90u-4","currencies":[{"coinDenom":"terpx","coinMinimalDenom":"uterpx","coinDecimals":6},{"coinDenom":"thiolx","coinMinimalDenom":"uthiolx","coinDecimals":6}],"rest":"https://testnet-api.terp.network:443/","rpc":"https://testnet-rpc.terp.network:443/","bech32Config":{"bech32PrefixAccAddr":"terp","bech32PrefixAccPub":"terppub","bech32PrefixValAddr":"terpvaloper","bech32PrefixValPub":"terpvaloperpub","bech32PrefixConsAddr":"terpvalcons","bech32PrefixConsPub":"terpvalconspub"},"chainName":"terpnettestnet","feeCurrencies":[{"coinDenom":"thiolx","coinMinimalDenom":"uthiolx","coinDecimals":6,"gasPriceStep":{"low":0.75,"average":1,"high":1.25}}],"stakeCurrency":{"coinDenom":"terpx","coinMinimalDenom":"uterpx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"90u-2","currencies":[{"coinDenom":"terpx","coinMinimalDenom":"uterpx","coinDecimals":6},{"coinDenom":"thiolx","coinMinimalDenom":"uthiolx","coinDecimals":6}],"rest":"https://terp-testnet-api.itrocket.net:443/","rpc":"https://terp-testnet-rpc.itrocket.net:443/","bech32Config":{"bech32PrefixAccAddr":"terp","bech32PrefixAccPub":"terppub","bech32PrefixValAddr":"terpvaloper","bech32PrefixValPub":"terpvaloperpub","bech32PrefixConsAddr":"terpvalcons","bech32PrefixConsPub":"terpvalconspub"},"chainName":"terpnettestnet2","feeCurrencies":[{"coinDenom":"thiolx","coinMinimalDenom":"uthiolx","coinDecimals":6,"gasPriceStep":{"low":0.75,"average":1,"high":1.25}}],"stakeCurrency":{"coinDenom":"terpx","coinMinimalDenom":"uterpx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pisco-1","currencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6}],"rest":"https://pisco-lcd.terra.dev:443","rpc":"https://pisco-rpc.terra.dev:443","bech32Config":{"bech32PrefixAccAddr":"terra","bech32PrefixAccPub":"terrapub","bech32PrefixValAddr":"terravaloper","bech32PrefixValPub":"terravaloperpub","bech32PrefixConsAddr":"terravalcons","bech32PrefixConsPub":"terravalconspub"},"chainName":"terra2testnet","feeCurrencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6,"gasPriceStep":{"low":0.0125,"average":0.015,"high":0.04}}],"stakeCurrency":{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},"bip44":{"coinType":330}},{"chainId":"titan_18889-1","currencies":[{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/7C0807A56073C4A27B0DE1C21BA3EB75DF75FD763F4AD37BC159917FC01145F0","coinDecimals":6}],"rest":"https://titan-testnet-lcd.titanlab.io:443","rpc":"https://titan-testnet-rpc.titanlab.io:443","bech32Config":{"bech32PrefixAccAddr":"titan","bech32PrefixAccPub":"titanpub","bech32PrefixValAddr":"titanvaloper","bech32PrefixValPub":"titanvaloperpub","bech32PrefixConsAddr":"titanvalcons","bech32PrefixConsPub":"titanvalconspub"},"chainName":"titantestnet","feeCurrencies":[{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18,"gasPriceStep":{"low":100000000000,"average":110000000000,"high":200000000000}}],"stakeCurrency":{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"tucana_712-1","currencies":[{"coinDenom":"tuc","coinMinimalDenom":"atuc","coinDecimals":18}],"rest":"https://lcd.birdee-2.tucana.zone/","rpc":"https://rpc.birdee-2.tucana.zone/","bech32Config":{"bech32PrefixAccAddr":"tuc","bech32PrefixAccPub":"tucpub","bech32PrefixValAddr":"tucvaloper","bech32PrefixValPub":"tucvaloperpub","bech32PrefixConsAddr":"tucvalcons","bech32PrefixConsPub":"tucvalconspub"},"chainName":"tucanatestnet","feeCurrencies":[{"coinDenom":"tuc","coinMinimalDenom":"atuc","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":25000000000,"high":30000000000}}],"stakeCurrency":{"coinDenom":"tuc","coinMinimalDenom":"atuc","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"FUND-TestNet-2","currencies":[{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9}],"rest":"https://rest-testnet.unification.io","rpc":"https://rpc-testnet.unification.io:443","bech32Config":{"bech32PrefixAccAddr":"und","bech32PrefixAccPub":"undpub","bech32PrefixValAddr":"undvaloper","bech32PrefixValPub":"undvaloperpub","bech32PrefixConsAddr":"undvalcons","bech32PrefixConsPub":"undvalconspub"},"chainName":"unificationtestnet","feeCurrencies":[{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9,"gasPriceStep":{"low":100,"average":200,"high":300}}],"stakeCurrency":{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9},"bip44":{"coinType":5555}},{"chainId":"union-testnet-8","currencies":[{"coinDenom":"uno","coinMinimalDenom":"muno","coinDecimals":6}],"rest":"https://rest.testnet-8.union.build","rpc":"https://rpc.testnet-8.union.build","bech32Config":{"bech32PrefixAccAddr":"union","bech32PrefixAccPub":"unionpub","bech32PrefixValAddr":"unionvaloper","bech32PrefixValPub":"unionvaloperpub","bech32PrefixConsAddr":"unionvalcons","bech32PrefixConsPub":"unionvalconspub"},"chainName":"uniontestnet","feeCurrencies":[{"coinDenom":"uno","coinMinimalDenom":"muno","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"uno","coinMinimalDenom":"muno","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"uptick_7000-2","currencies":[{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18}],"rest":"https://uptick-7000-2-rest.staketab.org","rpc":"https://uptick-7000-2-rpc.staketab.org:443","bech32Config":{"bech32PrefixAccAddr":"uptick","bech32PrefixAccPub":"uptickpub","bech32PrefixValAddr":"uptickvaloper","bech32PrefixValPub":"uptickvaloperpub","bech32PrefixConsAddr":"uptickvalcons","bech32PrefixConsPub":"uptickvalconspub"},"chainName":"upticktestnet","feeCurrencies":[{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18}],"stakeCurrency":{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"buenavista-1","currencies":[{"coinDenom":"ward","coinMinimalDenom":"uward","coinDecimals":6}],"rest":"https://api.buenavista.wardenprotocol.org/","rpc":"https://rpc.buenavista.wardenprotocol.org/","bech32Config":{"bech32PrefixAccAddr":"warden","bech32PrefixAccPub":"wardenpub","bech32PrefixValAddr":"wardenvaloper","bech32PrefixValPub":"wardenvaloperpub","bech32PrefixConsAddr":"wardenvalcons","bech32PrefixConsPub":"wardenvalconspub"},"chainName":"wardenprotocoltestnet","feeCurrencies":[{"coinDenom":"ward","coinMinimalDenom":"uward","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"ward","coinMinimalDenom":"uward","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"INVALID-ID-wavehashtestnet-testnet-1","currencies":[{"coinDenom":"wahax","coinMinimalDenom":"uwahax","coinDecimals":6}],"rest":"https://lcd.wavehash.online/","rpc":"https://rpc.wavehash.online/","bech32Config":{"bech32PrefixAccAddr":"wavehash","bech32PrefixAccPub":"wavehashpub","bech32PrefixValAddr":"wavehashvaloper","bech32PrefixValPub":"wavehashvaloperpub","bech32PrefixConsAddr":"wavehashvalcons","bech32PrefixConsPub":"wavehashvalconspub"},"chainName":"wavehashtestnet","feeCurrencies":[{"coinDenom":"wahax","coinMinimalDenom":"uwahax","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.0025,"high":0.0024}}],"stakeCurrency":{"coinDenom":"wahax","coinMinimalDenom":"uwahax","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"xion-testnet-1","currencies":[{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6},{"coinDenom":"axl","coinMinimalDenom":"ibc/33517D439F5E545A1AAB148FAE43AAE17CF68FFB9BC97AE0048A3E3B64518C58","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/484532EB74866F3FB8A71F909F7B1B470FE2E66313DA0A1F9EE5B7C5C046D195","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/57097251ED81A232CE3C9D899E7C8096D6D87EF84BA203E12E424AA4C9B57A64","coinDecimals":6},{"coinDenom":"INJ","coinMinimalDenom":"ibc/05314A48723E06A1B1B666066B6BEC89F3708E8854DF2E5E9193387AA9653036","coinDecimals":18}],"rest":"https://api.xion-testnet-1.burnt.com","rpc":"https://rpc.xion-testnet-1.burnt.com","bech32Config":{"bech32PrefixAccAddr":"xion","bech32PrefixAccPub":"xionpub","bech32PrefixValAddr":"xionvaloper","bech32PrefixValPub":"xionvaloperpub","bech32PrefixConsAddr":"xionvalcons","bech32PrefixConsPub":"xionvalconspub"},"chainName":"xiontestnet","feeCurrencies":[{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.001,"high":0.01}}],"stakeCurrency":{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cube_47-5","currencies":[{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18}],"rest":"https://cube-lcd.xpla.dev","rpc":"https://cube-rpc.xpla.dev","bech32Config":{"bech32PrefixAccAddr":"xpla","bech32PrefixAccPub":"xplapub","bech32PrefixValAddr":"xplavaloper","bech32PrefixValPub":"xplavaloperpub","bech32PrefixConsAddr":"xplavalcons","bech32PrefixConsPub":"xplavalconspub"},"chainName":"xplatestnet","feeCurrencies":[{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18,"gasPriceStep":{"low":850000000000,"average":1147500000000,"high":1487500000000}}],"stakeCurrency":{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"gardia-2","currencies":[{"coinDenom":"rock","coinMinimalDenom":"urock","coinDecimals":6}],"rest":"https://api.gardia.zenrocklabs.io/","rpc":"https://rpc.gardia.zenrocklabs.io/","bech32Config":{"bech32PrefixAccAddr":"rock","bech32PrefixAccPub":"rockpub","bech32PrefixValAddr":"rockvaloper","bech32PrefixValPub":"rockvaloperpub","bech32PrefixConsAddr":"rockvalcons","bech32PrefixConsPub":"rockvalconspub"},"chainName":"zenrocktestnet","feeCurrencies":[{"coinDenom":"rock","coinMinimalDenom":"urock","coinDecimals":6,"gasPriceStep":{"low":0.5,"average":0.55,"high":0.6}}],"stakeCurrency":{"coinDenom":"rock","coinMinimalDenom":"urock","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"athens_7001-1","currencies":[{"coinDenom":"tzeta","coinMinimalDenom":"azeta","coinDecimals":18}],"rest":"https://zetachain-athens.blockpi.network/lcd/v1/public","rpc":"https://zetachain-athens.blockpi.network/rpc/v1/public","bech32Config":{"bech32PrefixAccAddr":"zeta","bech32PrefixAccPub":"zetapub","bech32PrefixValAddr":"zetavaloper","bech32PrefixValPub":"zetavaloperpub","bech32PrefixConsAddr":"zetavalcons","bech32PrefixConsPub":"zetavalconspub"},"chainName":"zetachaintestnet","feeCurrencies":[{"coinDenom":"tzeta","coinMinimalDenom":"azeta","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"tzeta","coinMinimalDenom":"azeta","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"landlord-2","currencies":[{"coinDenom":"INIT","coinMinimalDenom":"l2/1666ede2bf1985307a86de36a6b78411cbf1edeffc2ac569e6a7b2f8753db4bb","coinDecimals":6}],"rest":"https://maze-rest-sequencer-53ecf1d6-4fa1-4103-827f-a9430df97cef.ane1-prod-nocsm.newmetric.xyz","rpc":"https://maze-rpc-sequencer-53ecf1d6-4fa1-4103-827f-a9430df97cef.ane1-prod-nocsm.newmetric.xyz","bech32Config":{"bech32PrefixAccAddr":"init","bech32PrefixAccPub":"initpub","bech32PrefixValAddr":"initvaloper","bech32PrefixValPub":"initvaloperpub","bech32PrefixConsAddr":"initvalcons","bech32PrefixConsPub":"initvalconspub"},"chainName":"civitia","feeCurrencies":[{"coinDenom":"INIT","coinMinimalDenom":"l2/1666ede2bf1985307a86de36a6b78411cbf1edeffc2ac569e6a7b2f8753db4bb","coinDecimals":6,"gasPriceStep":{"low":0.2,"average":0.3,"high":0.4}}],"stakeCurrency":{"coinDenom":"INIT","coinMinimalDenom":"l2/1666ede2bf1985307a86de36a6b78411cbf1edeffc2ac569e6a7b2f8753db4bb","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"initiation-2","currencies":[{"coinDenom":"INIT","coinMinimalDenom":"uinit","coinDecimals":6},{"coinDenom":"ETH","coinMinimalDenom":"ueth","coinDecimals":6},{"coinDenom":"USDC","coinMinimalDenom":"uusdc","coinDecimals":6},{"coinDenom":"TIA","coinMinimalDenom":"utia","coinDecimals":6},{"coinDenom":"USDC-INIT LP","coinMinimalDenom":"move/dbf06c48af3984ec6d9ae8a9aa7dbb0bb1e784aa9b8c4a5681af660cf8558d7d","coinDecimals":6},{"coinDenom":"ETH-INIT LP","coinMinimalDenom":"move/a2b0d3c8e53e379ede31f3a361ff02716d50ec53c6b65b8c48a81d5b06548200","coinDecimals":6},{"coinDenom":"TIA-INIT LP","coinMinimalDenom":"move/b134ae6786f10ef74294e627d2519b63b7c742a6735f98682929fea9a84744d2","coinDecimals":6},{"coinDenom":"oINIT","coinMinimalDenom":"uoinit","coinDecimals":6},{"coinDenom":"minimoveINIT","coinMinimalDenom":"ibc/9DD7B5DF63F03D505BE785C9B32095A33CBB9472503077D375E0A557BE5A2B87","coinDecimals":6},{"coinDenom":"minimoveINIT-INIT LP","coinMinimalDenom":"move/d460381fad32fa8a165f7b13ca4343f99ebd83580b1dc121049b8e695fb6c5b5","coinDecimals":6},{"coinDenom":"TEST LZ","coinMinimalDenom":"move/7dfcccb8d69af29d585165531eae5c558061d3e3bded2a121be3ef5e189e6b01","coinDecimals":8}],"rest":"https://lcd.testnet.initia.xyz","rpc":"https://rpc.testnet.initia.xyz/","bech32Config":{"bech32PrefixAccAddr":"init","bech32PrefixAccPub":"initpub","bech32PrefixValAddr":"initvaloper","bech32PrefixValPub":"initvaloperpub","bech32PrefixConsAddr":"initvalcons","bech32PrefixConsPub":"initvalconspub"},"chainName":"initia","feeCurrencies":[{"coinDenom":"INIT","coinMinimalDenom":"uinit","coinDecimals":6,"gasPriceStep":{"low":0.15,"average":0.15,"high":0.4}}],"stakeCurrency":{"coinDenom":"INIT","coinMinimalDenom":"uinit","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"glados-2.1","currencies":[{"coinDenom":"MILK","coinMinimalDenom":"umilk","coinDecimals":6},{"coinDenom":"milkINIT","coinMinimalDenom":"milkuinit","coinDecimals":6},{"coinDenom":"INIT","coinMinimalDenom":"ibc/37A3FB4FED4CA04ED6D9E5DA36C6D27248645F0E22F585576A1488B8A89C5A50","coinDecimals":6},{"coinDenom":"TEST LZ","coinMinimalDenom":"ibc/665CCAFA2768242D74D8CB2E9F5167261B6B75646E2EF2546E0707C0BFC7CDAF","coinDecimals":8}],"rest":"https://lcd.testnet.milkyway.zone","rpc":"https://rpc.testnet.milkyway.zone","bech32Config":{"bech32PrefixAccAddr":"init","bech32PrefixAccPub":"initpub","bech32PrefixValAddr":"initvaloper","bech32PrefixValPub":"initvaloperpub","bech32PrefixConsAddr":"initvalcons","bech32PrefixConsPub":"initvalconspub"},"chainName":"milkyway","feeCurrencies":[{"coinDenom":"MILK","coinMinimalDenom":"umilk","coinDecimals":6,"gasPriceStep":{"low":0.2,"average":0.3,"high":0.4}},{"coinDenom":"INIT","coinMinimalDenom":"ibc/37A3FB4FED4CA04ED6D9E5DA36C6D27248645F0E22F585576A1488B8A89C5A50","coinDecimals":6,"gasPriceStep":{"low":0.2,"average":0.3,"high":0.4}}],"stakeCurrency":{"coinDenom":"MILK","coinMinimalDenom":"umilk","coinDecimals":6},"bip44":{"coinType":118}}] \ No newline at end of file diff --git a/packages/widget/src/state/wallets.ts b/packages/widget/src/state/wallets.ts index ea2a148b7..80d135351 100644 --- a/packages/widget/src/state/wallets.ts +++ b/packages/widget/src/state/wallets.ts @@ -30,7 +30,6 @@ type WalletState = { chainType: string; }; - export type WalletConnect = { options: Pick | null; walletConnectModal?: Pick< @@ -69,4 +68,4 @@ export const knownEthermintLikeChains = [ export const getConnectedSignersAtom = atom() -export const connectedAddressesAtom = atom>(); \ No newline at end of file +export const connectedAddressesAtom = atom>(); diff --git a/yarn.lock b/yarn.lock index 73193f870..08cd4e4c0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2175,10 +2175,10 @@ __metadata: languageName: node linkType: hard -"@chain-registry/types@npm:^0.50.32": - version: 0.50.32 - resolution: "@chain-registry/types@npm:0.50.32" - checksum: abcc553b40bf163490c50f242a61ecff6fa0722041f31857fbbeea5dc0ea707b66735362dd7e6bcc3f976deda76afc1506051f0a0a13d28b4bbeacfd85d433f4 +"@chain-registry/types@npm:^0.50.36": + version: 0.50.36 + resolution: "@chain-registry/types@npm:0.50.36" + checksum: 5223bad31b4cc2fabc67b0674ebd9042b25ef33a21e4d65d826c82f7fc596f9f933a3a37a92d613dccb7a6345851c0db9eb150c767390c68f102845f9699ed27 languageName: node linkType: hard @@ -7660,7 +7660,7 @@ __metadata: "@solana/wallet-adapter-base": ^0.9.23 "@types/keccak": 3.0.4 axios: 1.x - chain-registry: ^1.69.58 + chain-registry: ^1.69.65 cosmjs-types: ^0.9.0 create-hash: ^1.2.0 keccak: 3.0.4 @@ -7722,7 +7722,7 @@ __metadata: "@walletconnect/modal": 2.7.0 "@walletconnect/sign-client": 2.17.2 buffer: ^6.0.3 - chain-registry: ^1.69.58 + chain-registry: ^1.69.65 eslint: ^9.9.0 eslint-plugin-react-hooks: ^4.6.2 jotai: ^2.10.1 @@ -12928,12 +12928,12 @@ __metadata: languageName: node linkType: hard -"chain-registry@npm:^1.69.58": - version: 1.69.58 - resolution: "chain-registry@npm:1.69.58" +"chain-registry@npm:^1.69.65": + version: 1.69.65 + resolution: "chain-registry@npm:1.69.65" dependencies: - "@chain-registry/types": ^0.50.32 - checksum: b113a387a4e2dee5218095787b1b6057c2e3da911833b2c4cb9e5a52f398b4e52847bd2a34ff5ea0c7a4a5814b2d78e712b0ca9bd8716edea6c596525101e3bf + "@chain-registry/types": ^0.50.36 + checksum: f8594ee25432f28ecc877269e0442c262caac73a0ff59f0d2ff40f5a1c24a819ad16845076bf3d253602b4e03747517487ef6158d406c06cf5217f430434e48b languageName: node linkType: hard From 99c9744b20411b82a64fd0ddee88ce9f6210d424 Mon Sep 17 00:00:00 2001 From: plubber <51789398+ericHgorski@users.noreply.github.com> Date: Tue, 17 Dec 2024 16:01:14 -0500 Subject: [PATCH 09/24] fix: initialize query params state to undefined instead of an empty object (#590) --- .changeset/stupid-bats-buy.md | 5 +++++ examples/nextjs/src/hooks/useURLQueryParams.tsx | 4 +++- packages/widget/src/pages/SwapPage/SwapPage.tsx | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 .changeset/stupid-bats-buy.md diff --git a/.changeset/stupid-bats-buy.md b/.changeset/stupid-bats-buy.md new file mode 100644 index 000000000..1b61eaba3 --- /dev/null +++ b/.changeset/stupid-bats-buy.md @@ -0,0 +1,5 @@ +--- +'nextjs': patch +--- + +fix example default route and client asset search diff --git a/examples/nextjs/src/hooks/useURLQueryParams.tsx b/examples/nextjs/src/hooks/useURLQueryParams.tsx index 06e9b04a3..fec84b2bf 100644 --- a/examples/nextjs/src/hooks/useURLQueryParams.tsx +++ b/examples/nextjs/src/hooks/useURLQueryParams.tsx @@ -2,7 +2,7 @@ import { useState, useEffect } from 'react'; import { WidgetProps } from '@skip-go/widget'; export const useQueryParams = () => { - const [params, setParams] = useState({}); + const [params, setParams] = useState(undefined); useEffect(() => { if (typeof window !== 'undefined') { @@ -35,6 +35,8 @@ export const useQueryParams = () => { } }); + if (!Object.keys(result).length) return; + setParams(result as WidgetProps['defaultRoute']); } }, []); diff --git a/packages/widget/src/pages/SwapPage/SwapPage.tsx b/packages/widget/src/pages/SwapPage/SwapPage.tsx index 37e8d2191..f95069936 100644 --- a/packages/widget/src/pages/SwapPage/SwapPage.tsx +++ b/packages/widget/src/pages/SwapPage/SwapPage.tsx @@ -87,7 +87,7 @@ export const SwapPage = () => { (denom?: string, chainId?: string) => { if (!denom || !chainId) return; if (!assets) return; - return assets.find((a) => a.denom === denom && a.chainID === chainId); + return assets.find((a) => a.denom.toLowerCase() === denom.toLowerCase() && a.chainID === chainId); }, [assets] ); From 0398899ea84cea89a05054665701d606dd26b632 Mon Sep 17 00:00:00 2001 From: plubber <51789398+ericHgorski@users.noreply.github.com> Date: Tue, 17 Dec 2024 16:06:54 -0500 Subject: [PATCH 10/24] [FRE-1151] feat: add asset and chain filtering for excluded token combinations (#588) --- .changeset/serious-readers-beam.md | 5 +++ .../useFilteredAssets.ts | 31 ++++++++++--- .../useFilteredChains.ts | 44 ++++++++++++------- 3 files changed, 58 insertions(+), 22 deletions(-) create mode 100644 .changeset/serious-readers-beam.md diff --git a/.changeset/serious-readers-beam.md b/.changeset/serious-readers-beam.md new file mode 100644 index 000000000..6d3d3a06a --- /dev/null +++ b/.changeset/serious-readers-beam.md @@ -0,0 +1,5 @@ +--- +'@skip-go/widget': patch +--- + +exclude assets programatically diff --git a/packages/widget/src/modals/AssetAndChainSelectorModal/useFilteredAssets.ts b/packages/widget/src/modals/AssetAndChainSelectorModal/useFilteredAssets.ts index 4eed2ae4f..9f5cea7d5 100644 --- a/packages/widget/src/modals/AssetAndChainSelectorModal/useFilteredAssets.ts +++ b/packages/widget/src/modals/AssetAndChainSelectorModal/useFilteredAssets.ts @@ -9,36 +9,53 @@ export type useFilteredAssetsProps = { const PRIVILEGED_ASSETS = ["ATOM", "USDC", "USDT", "ETH", "TIA", "OSMO", "NTRN", "INJ"]; +export const EXCLUDED_TOKEN_COMBINATIONS: { + id: string; + chainIDs: string[]; +}[] = [ + { id: "SOL", chainIDs: ["solana"] }, + ]; + export const useFilteredAssets = ({ groupedAssetsByRecommendedSymbol, searchQuery, }: useFilteredAssetsProps) => { - const filteredAssets = useMemo(() => { if (!groupedAssetsByRecommendedSymbol) return; - return matchSorter(groupedAssetsByRecommendedSymbol, searchQuery, { + + // Filter out excluded assets first + const sanitizedAssets = groupedAssetsByRecommendedSymbol + .map((group) => { + const allowedAssets = group.assets.filter((asset) => { + const isExcluded = EXCLUDED_TOKEN_COMBINATIONS.some( + (ex) => ex.id === group.id && ex.chainIDs.includes(asset.chainID) + ); + return !isExcluded; + }); + + if (allowedAssets.length === 0) return null; + return { ...group, assets: allowedAssets }; + }) + .filter(Boolean) as GroupedAsset[]; + + return matchSorter(sanitizedAssets, searchQuery, { keys: ["id", "name"], }).sort((assetA, assetB) => { const bothHaveZeroBalance = assetA.totalUsd === 0 && assetB.totalUsd === 0; - // If both assets have zero balance, sort by privileged status if (bothHaveZeroBalance) { const aPrivilegedIndex = PRIVILEGED_ASSETS.indexOf(assetA.id); const bPrivilegedIndex = PRIVILEGED_ASSETS.indexOf(assetB.id); const bothArePrivileged = aPrivilegedIndex !== -1 && bPrivilegedIndex !== -1; - if (bothArePrivileged) { - // Sort by privilege order return aPrivilegedIndex - bPrivilegedIndex; } - // If only one is privileged, it should come first if (bPrivilegedIndex !== -1) return 1; if (aPrivilegedIndex !== -1) return -1; } - // Sort by USD value (higher values first) return assetB.totalUsd - assetA.totalUsd; }); }, [groupedAssetsByRecommendedSymbol, searchQuery]); diff --git a/packages/widget/src/modals/AssetAndChainSelectorModal/useFilteredChains.ts b/packages/widget/src/modals/AssetAndChainSelectorModal/useFilteredChains.ts index 3a2a7cd40..0fcdf3711 100644 --- a/packages/widget/src/modals/AssetAndChainSelectorModal/useFilteredChains.ts +++ b/packages/widget/src/modals/AssetAndChainSelectorModal/useFilteredChains.ts @@ -5,6 +5,7 @@ import { skipChainsAtom } from "@/state/skipClient"; import { useAtomValue } from "jotai"; import { useGetBalance } from "@/hooks/useGetBalance"; import { chainFilterAtom } from "@/state/swapPage"; +import { EXCLUDED_TOKEN_COMBINATIONS } from "./useFilteredAssets"; export type useFilteredChainsProps = { selectedGroup: GroupedAsset | undefined; @@ -12,6 +13,7 @@ export type useFilteredChainsProps = { context: "source" | "destination"; }; + export const useFilteredChains = ({ selectedGroup, searchQuery = "", @@ -24,21 +26,29 @@ export const useFilteredChains = ({ const filteredChains = useMemo(() => { if (!selectedGroup || !chains) return; - const chainsWithAssets = selectedGroup.assets + // Filter out excluded assets before mapping to chains + const allowedAssets = selectedGroup.assets.filter((asset) => { + const isExcluded = EXCLUDED_TOKEN_COMBINATIONS.some( + (ex) => ex.id === selectedGroup.id && ex.chainIDs.includes(asset.chainID) + ); + return !isExcluded; + }); + + const chainsWithAssets = allowedAssets .map((asset) => { const chain = chains.find((c) => c.chainID === asset.chainID); - return chain ? { ...chain, asset } : null; + return chain ? ({ ...chain, asset } as ChainWithAsset) : null; }) .filter((chain) => { if (!chain) return false; - // Check if chain is allowed based on chainFilter - const isAllowedByFilter = !chainFilter?.[context] || + const isAllowedByFilter = + !chainFilter?.[context] || Object.keys(chainFilter[context]).includes(chain.chainID); // For source context, exclude Penumbra chains - const isPenumbraAllowed = context !== "source" || - !chain.chainID.includes("penumbra"); + const isPenumbraAllowed = + context !== "source" || !chain.chainID.startsWith("penumbra"); return isAllowedByFilter && isPenumbraAllowed; }) as ChainWithAsset[]; @@ -46,18 +56,22 @@ export const useFilteredChains = ({ return matchSorter(chainsWithAssets, searchQuery, { keys: ["prettyName", "chainName", "chainID"], }).sort((chainWithAssetA, chainWithAssetB) => { - const usdValueA = Number(getBalance(chainWithAssetA.chainID, chainWithAssetA.asset.denom)?.valueUSD ?? 0); - const usdValueB = Number(getBalance(chainWithAssetB.chainID, chainWithAssetB.asset.denom)?.valueUSD ?? 0); + const usdValueA = Number( + getBalance(chainWithAssetA.chainID, chainWithAssetA.asset.denom)?.valueUSD ?? 0 + ); + const usdValueB = Number( + getBalance(chainWithAssetB.chainID, chainWithAssetB.asset.denom)?.valueUSD ?? 0 + ); - // 1. Sort by USD value first - if (usdValueB !== usdValueA) { - return usdValueB - usdValueA; - } + // 1. Sort by USD value + if (usdValueB !== usdValueA) return usdValueB - usdValueA; - const chainAIsOrigin = chainWithAssetA.asset.originChainID === chainWithAssetA.chainID; - const chainBIsOrigin = chainWithAssetB.asset.originChainID === chainWithAssetB.chainID; + const chainAIsOrigin = + chainWithAssetA.asset.originChainID === chainWithAssetA.chainID; + const chainBIsOrigin = + chainWithAssetB.asset.originChainID === chainWithAssetB.chainID; - // 2. Sort by whether it's the origin chain + // 2. If USD values are equal, sort by origin chain if (chainBIsOrigin) return 1; if (chainAIsOrigin) return -1; From b46bd1f846174c30be646085562b33f8a4d4428c Mon Sep 17 00:00:00 2001 From: plubber <51789398+ericHgorski@users.noreply.github.com> Date: Tue, 17 Dec 2024 16:12:25 -0500 Subject: [PATCH 11/24] clean example logs (#591) --- examples/nextjs/src/app/page.tsx | 36 +++++--------------------------- 1 file changed, 5 insertions(+), 31 deletions(-) diff --git a/examples/nextjs/src/app/page.tsx b/examples/nextjs/src/app/page.tsx index 41053dc04..e7f77cb3e 100644 --- a/examples/nextjs/src/app/page.tsx +++ b/examples/nextjs/src/app/page.tsx @@ -61,37 +61,11 @@ export default function Home() { { - console.log( - 'wallet connected', - walletName, - chainIdToAddressMap, - chainId, - address - ); - }} - onWalletDisconnected={({ walletName, chainType }) => { - console.log('wallet disconnected', walletName, chainType); - }} - onTransactionBroadcasted={({ txHash, chainId, explorerLink }) => { - console.log( - 'transaction broadcasted', - txHash, - chainId, - explorerLink - ); - }} - onTransactionFailed={({ error }) => { - console.log('transaction failed', error); - }} - onTransactionComplete={({ txHash, chainId, explorerLink }) => { - console.log( - 'transaction complete', - txHash, - chainId, - explorerLink - ); - }} + onWalletConnected={(props) => console.log({ props })} + onWalletDisconnected={(props) => console.log({ props })} + onTransactionBroadcasted={(props) => console.log({ props })} + onTransactionFailed={(props) => console.log({ props })} + onTransactionComplete={(props) => console.log({ props })} /> From 7ec222ef9ca4459e17f10a9a186d01e82fe0fea0 Mon Sep 17 00:00:00 2001 From: plubber <51789398+ericHgorski@users.noreply.github.com> Date: Wed, 18 Dec 2024 12:26:09 -0500 Subject: [PATCH 12/24] improve injected wallet example (#592) --- examples/nextjs/src/app/injected/page.tsx | 45 ++++++++++++++++------- 1 file changed, 31 insertions(+), 14 deletions(-) diff --git a/examples/nextjs/src/app/injected/page.tsx b/examples/nextjs/src/app/injected/page.tsx index a30a74191..101cd3d67 100644 --- a/examples/nextjs/src/app/injected/page.tsx +++ b/examples/nextjs/src/app/injected/page.tsx @@ -11,13 +11,13 @@ type Address = string; export default function Home() { // This state holds a mapping from chain IDs to connected addresses. - const [accountMap, setAccountMap] = useState>(); + const [connectedAddresses, setConnectedAddresses] = useState>(); /** - * Helper to update the accountMap with a given chainId and address. + * Helper to update the connectedAddresses with a given chainId and address. */ const updateAccount = (chainId: ChainId, address: Address) => { - setAccountMap((prev) => ({ + setConnectedAddresses((prev) => ({ ...prev, [chainId]: address, })); @@ -27,13 +27,26 @@ export default function Home() { * Connect to an EVM-compatible wallet (e.g., MetaMask). */ const connectEthereum = async () => { - const accounts = (await window.ethereum.request({ + const ethereum = window.ethereum; + if (!ethereum) { + throw new Error("MetaMask not installed"); + } + + // Request accounts + const accounts = (await ethereum.request({ method: "eth_requestAccounts", })) as string[]; + const evmAddress = accounts[0]; - // Ethereum mainnet chain ID is "1" - updateAccount("1", evmAddress); + if (!evmAddress) throw new Error("No EVM accounts found"); + + // Get currently selected chain ID from MetaMask + const chainIdHex = (await ethereum.request({ method: 'eth_chainId' })) as string; + const chainId = parseInt(chainIdHex, 16).toString(); + + updateAccount(chainId, evmAddress); }; + /** * Connect to a Solana wallet using Phantom Wallet Adapter. */ @@ -76,7 +89,6 @@ export default function Home() { return offlineSigner; } - /** * Get an EVM-compatible signer by creating a viem wallet client. */ @@ -89,12 +101,13 @@ export default function Home() { "43114": avalanche, }; - const getEVMSigner = async (targetChainId: string) => { + const getEVMSigner = async () => { const ethereum = window.ethereum; if (!ethereum) { throw new Error("MetaMask not installed"); } + // Request accounts const accounts = (await ethereum.request({ method: "eth_requestAccounts", })) as Account[]; @@ -104,12 +117,16 @@ export default function Home() { throw new Error("No EVM accounts found"); } - const selectedChain = chainConfigMap[targetChainId] ?? mainnet; + // Get the currently selected chain ID + const chainIdHex = (await ethereum.request({ method: 'eth_chainId' })) as string; + const chainId = parseInt(chainIdHex, 16).toString(); + + const selectedChain = chainConfigMap[chainId] ?? mainnet; const client = createWalletClient({ - account: evmAddress as Account, + account: evmAddress, chain: selectedChain, - transport: custom(window.ethereum), + transport: custom(ethereum), }); return client; @@ -135,7 +152,7 @@ export default function Home() { >

Connected addresses:

    - {Object.entries(accountMap ?? {}).map(([chainId, address]) => ( + {Object.entries(connectedAddresses ?? {}).map(([chainId, address]) => (
  • {chainId}: {address}
  • @@ -154,9 +171,9 @@ export default function Home() { getEVMSigner("1")} // or "1", "10", etc. + getEVMSigner={getEVMSigner} getSVMSigner={getSVMSigner} /> From a7e451eb8455f4de4b6811cf4d258d19c153b31e Mon Sep 17 00:00:00 2001 From: Nur Fikri Date: Thu, 19 Dec 2024 00:45:01 +0700 Subject: [PATCH 13/24] [FRE-1345] feat: add daodao iframe options (#593) --- .changeset/small-mayflies-change.md | 5 +++++ packages/widget/src/hooks/useCreateCosmosWallets.tsx | 6 ++++++ packages/widget/src/providers/CosmosProvider.tsx | 5 ++++- 3 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 .changeset/small-mayflies-change.md diff --git a/.changeset/small-mayflies-change.md b/.changeset/small-mayflies-change.md new file mode 100644 index 000000000..680ccb89a --- /dev/null +++ b/.changeset/small-mayflies-change.md @@ -0,0 +1,5 @@ +--- +'@skip-go/widget': patch +--- + +add daodao iframe wallet diff --git a/packages/widget/src/hooks/useCreateCosmosWallets.tsx b/packages/widget/src/hooks/useCreateCosmosWallets.tsx index d91ea0e01..1775feeb7 100644 --- a/packages/widget/src/hooks/useCreateCosmosWallets.tsx +++ b/packages/widget/src/hooks/useCreateCosmosWallets.tsx @@ -7,6 +7,7 @@ import { WalletType, connect, isWalletConnect, + checkWallet, } from "graz"; import { useAtomValue, useSetAtom } from "jotai"; import { createPenumbraClient } from "@penumbra-zone/client"; @@ -45,6 +46,8 @@ export const useCreateCosmosWallets = () => { const createCosmosWallets = useCallback( (chainID?: string) => { const mobile = isMobile(); + + const isIframeAvailable = checkWallet(WalletType.COSMIFRAME); const browserWallets = [ WalletType.KEPLR, WalletType.LEAP, @@ -54,6 +57,9 @@ export const useCreateCosmosWallets = () => { WalletType.VECTIS, WalletType.WALLETCONNECT, ]; + if (isIframeAvailable) { + browserWallets.push(WalletType.COSMIFRAME); + } const mobileCosmosWallets = [WalletType.WC_KEPLR_MOBILE]; const availableMobileCosmosWallets = [ ...browserWallets, diff --git a/packages/widget/src/providers/CosmosProvider.tsx b/packages/widget/src/providers/CosmosProvider.tsx index 207eb35e7..d51e3ba0b 100644 --- a/packages/widget/src/providers/CosmosProvider.tsx +++ b/packages/widget/src/providers/CosmosProvider.tsx @@ -28,7 +28,10 @@ export const CosmosProvider: React.FC = ({ name: walletConnect.options?.name }, walletConnectModal: walletConnect?.walletConnectModal - } + }, + iframeOptions: { + allowedIframeParentOrigins: ["https://daodao.zone", "https://dao.daodao.zone"] + }, }}> {children} From d3245211e1c35260ef85bd5bda02d5ddb9c8e9ee Mon Sep 17 00:00:00 2001 From: plubber <51789398+ericHgorski@users.noreply.github.com> Date: Wed, 18 Dec 2024 14:48:19 -0500 Subject: [PATCH 14/24] fix: handle undefined assets and chains in balance fetching logic (#594) --- .../widget/src/hooks/useFetchAllBalances.ts | 22 +++++++++---------- 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/packages/widget/src/hooks/useFetchAllBalances.ts b/packages/widget/src/hooks/useFetchAllBalances.ts index d287ef76c..617002971 100644 --- a/packages/widget/src/hooks/useFetchAllBalances.ts +++ b/packages/widget/src/hooks/useFetchAllBalances.ts @@ -10,7 +10,7 @@ import { ChainType } from '@skip-go/client'; export const useFetchAllBalances = () => { const getAccount = useGetAccount(); - const { data: assets, isFetched: assetsFetched } = + const { data: assets } = useAtomValue(skipAssetsAtom); const setSkipAllBalancesRequest = useSetAtom(skipAllBalancesRequestAtom); const { data: chains } = useAtomValue(skipChainsAtom); @@ -28,15 +28,14 @@ export const useFetchAllBalances = () => { const { chainId: evmChainId } = useAccount(); const allBalancesRequest = useMemo(() => { - return assets?.reduce((acc, asset) => { - const chain = chains?.find((chain) => chain.chainID === asset.chainID); - const isEVM = chain?.chainType === ChainType.EVM; - const evmAddress = isEVM - ? evmConnectedAddress - : evmChainId - ? getAccount(String(evmChainId))?.address - : undefined; - const addressToUse = evmAddress || getAccount(asset.chainID)?.address; + if (!assets || !chains) return {}; + + return assets.reduce((acc, asset) => { + const chain = chains.find((chain) => chain.chainID === asset.chainID); + if (!chain) return acc; + + const evmAddress = evmConnectedAddress ?? getAccount(String(evmChainId))?.address; + const addressToUse = chain.chainType === ChainType.EVM ? evmAddress : getAccount(asset.chainID)?.address; if (addressToUse && !acc[asset.chainID]) { acc[asset.chainID] = { address: addressToUse }; @@ -44,7 +43,7 @@ export const useFetchAllBalances = () => { return acc; }, {} as Record); - }, [assets, getAccount, chains, evmChainId]); + }, [assets, getAccount, chains, evmConnectedAddress, evmChainId]); useQuery({ queryKey: ['all-balances-request', allBalancesRequest], @@ -55,6 +54,5 @@ export const useFetchAllBalances = () => { setSkipAllBalancesRequest({ chains: allBalancesRequest }); return { chains: allBalancesRequest }; }, - enabled: assetsFetched, }); }; From e2c673eceeadeaeed935727ae562280e53000508 Mon Sep 17 00:00:00 2001 From: plubber <51789398+ericHgorski@users.noreply.github.com> Date: Wed, 18 Dec 2024 15:06:04 -0500 Subject: [PATCH 15/24] fix: improve loading state handling in source balance hook (#595) --- .changeset/lovely-dogs-beam.md | 5 +++++ packages/widget/src/hooks/useGetSourceBalance.ts | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changeset/lovely-dogs-beam.md diff --git a/.changeset/lovely-dogs-beam.md b/.changeset/lovely-dogs-beam.md new file mode 100644 index 000000000..25339ffe4 --- /dev/null +++ b/.changeset/lovely-dogs-beam.md @@ -0,0 +1,5 @@ +--- +'@skip-go/widget': patch +--- + +fix loading indicator diff --git a/packages/widget/src/hooks/useGetSourceBalance.ts b/packages/widget/src/hooks/useGetSourceBalance.ts index fe84d2bb1..309c3d72a 100644 --- a/packages/widget/src/hooks/useGetSourceBalance.ts +++ b/packages/widget/src/hooks/useGetSourceBalance.ts @@ -10,7 +10,7 @@ export const useGetSourceBalance = () => { const [sourceAsset] = useAtom(sourceAssetAtom); const getAccount = useGetAccount(); const sourceAccount = getAccount(sourceAsset?.chainID); - const { data: skipBalances, isLoading, refetch } = useAtomValue(skipAllBalancesAtom); + const { data: skipBalances, isFetched, isLoading, refetch } = useAtomValue(skipAllBalancesAtom); const cw20Balance = useCW20Balance({ asset: sourceAsset as ClientAsset, @@ -45,7 +45,7 @@ export const useGetSourceBalance = () => { return { data, - isLoading: isLoading || cw20Balance.isLoading, + isLoading: !isFetched || isLoading || cw20Balance.isLoading, refetch: () => { refetch(); cw20Balance.refetch(); From 3747467b6fd1d6cf3da882a034392d7b39118b87 Mon Sep 17 00:00:00 2001 From: plubber <51789398+ericHgorski@users.noreply.github.com> Date: Thu, 19 Dec 2024 13:33:00 -0500 Subject: [PATCH 16/24] =?UTF-8?q?fix:=20add=20missing=20transaction=20and?= =?UTF-8?q?=20wallet=20event=20handlers=20in=20widget=20init=E2=80=A6=20(#?= =?UTF-8?q?596)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/nextjs/src/app/page.tsx | 10 +++++----- packages/widget/src/widget/useInitWidget.ts | 5 +++++ 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/examples/nextjs/src/app/page.tsx b/examples/nextjs/src/app/page.tsx index e7f77cb3e..563193122 100644 --- a/examples/nextjs/src/app/page.tsx +++ b/examples/nextjs/src/app/page.tsx @@ -61,11 +61,11 @@ export default function Home() { console.log({ props })} - onWalletDisconnected={(props) => console.log({ props })} - onTransactionBroadcasted={(props) => console.log({ props })} - onTransactionFailed={(props) => console.log({ props })} - onTransactionComplete={(props) => console.log({ props })} + onWalletConnected={(props) => console.log('onWalletConnected', { ...props })} + onWalletDisconnected={(props) => console.log('onWalletDisconnected', { ...props })} + onTransactionBroadcasted={(props) => console.log('onTransactionBroadcasted', { ...props })} + onTransactionFailed={(props) => console.log('onTransactionFailed', { ...props })} + onTransactionComplete={(props) => console.log('onTransactionComplete', { ...props })} /> diff --git a/packages/widget/src/widget/useInitWidget.ts b/packages/widget/src/widget/useInitWidget.ts index c26469de0..3ea1b3782 100644 --- a/packages/widget/src/widget/useInitWidget.ts +++ b/packages/widget/src/widget/useInitWidget.ts @@ -114,6 +114,11 @@ export const useInitWidget = (props: WidgetProps) => { } }, [ + props.onTransactionFailed, + props.onTransactionComplete, + props.onTransactionBroadcasted, + props.onWalletDisconnected, + props.onWalletConnected, props.filter, props.onlyTestnet, props.routeConfig, From 090655d16b656b5579017852b9f6f1b0f8252ce7 Mon Sep 17 00:00:00 2001 From: thal0x <91888455+thal0x@users.noreply.github.com> Date: Thu, 19 Dec 2024 12:33:43 -0600 Subject: [PATCH 17/24] [FRE-1341] add types for Stargate operations (#577) Co-authored-by: plubber <51789398+ericHgorski@users.noreply.github.com> --- .changeset/real-wasps-cheat.md | 5 + ...altime-transaction-and-packet-tracking.mdx | 35 +++++- packages/client/src/types/converters.ts | 115 ++++++++++++++++++ packages/client/src/types/lifecycle.ts | 39 +++++- packages/client/src/types/shared.ts | 40 ++++++ packages/client/src/types/unified.ts | 11 +- .../SwapExecutionPageRouteDetailed.tsx | 2 + packages/widget/src/utils/clientType.ts | 25 +++- 8 files changed, 259 insertions(+), 13 deletions(-) create mode 100644 .changeset/real-wasps-cheat.md diff --git a/.changeset/real-wasps-cheat.md b/.changeset/real-wasps-cheat.md new file mode 100644 index 000000000..a030a9fca --- /dev/null +++ b/.changeset/real-wasps-cheat.md @@ -0,0 +1,5 @@ +--- +'@skip-go/client': minor +--- + +stargate transfer types diff --git a/docs/general/multi-chain-realtime-transaction-and-packet-tracking.mdx b/docs/general/multi-chain-realtime-transaction-and-packet-tracking.mdx index 962910636..b3b0e14a3 100644 --- a/docs/general/multi-chain-realtime-transaction-and-packet-tracking.mdx +++ b/docs/general/multi-chain-realtime-transaction-and-packet-tracking.mdx @@ -59,6 +59,7 @@ The `transfer_sequence` array consists of `TransferEvent` objects, which give de * `AxelarTransferInfo` * `HyperlaneTransferInfo` * `GoFastTransferInfo` +* `StargateTransferInfo` Each one contains slightly different data and statuses corresponding to the details of their bridge, but they all contain some standard info: * `from_chain_id` @@ -174,8 +175,8 @@ When one of the transfers is a `GoFastTransfer`, the `transfer_sequence` array w Below are detailed explanations of the different fields and their purposes: -* `fromChainID`: The chain ID where the transfer originates (source chain). -* `toChainID`: The chain ID where the assets are being sent (destination chain). +* `from_chain_id`: The chain ID where the transfer originates (source chain). +* `to_chain_id`: The chain ID where the assets are being sent (destination chain). * `state`: Indicates the current status of the transfer. Possible values are: * `GO_FAST_TRANSFER_UNKNOWN`: An unknown error has occurred. * `GO_FAST_TRANSFER_SENT`: The user's intent has been successfully submitted on the source chain. @@ -184,14 +185,36 @@ Below are detailed explanations of the different fields and their purposes: * `GO_FAST_TRANSFER_FILLED`: The transfer was successfully fulfilled on the destination chain. * `GO_FAST_TRANSFER_REFUNDED`: The user's assets have been refunded on the source chain. * `txs`: Contains transaction details related to the GoFast transfer: - * `orderSubmittedTx`: The transaction where the user called initiateIntent on the source chain. - * `orderFilledTx`: The transaction where the solver called fulfill on the destination chain. - * `orderRefundedTx`: The transaction where the user received a refund on the source chain, if applicable. - * `orderTimeoutTx`: The transaction indicating a timeout occurred in the transfer process. + * `order_submitted_tx`: The transaction where the user called initiateIntent on the source chain. + * `order_filled_tx`: The transaction where the solver called fulfill on the destination chain. + * `order_refunded_tx`: The transaction where the user received a refund on the source chain, if applicable. + * `order_timeout_tx`: The transaction indicating a timeout occurred in the transfer process. When tracking a Go Fast transfer, you can use the `GoFastTransferInfo` to monitor the progress and status of your asset transfer between chains. For instance, if the state is `GO_FAST_TRANSFER_FILLED`, you know that the transfer was successful and your assets should be available on the destination chain. If the state is `GO_FAST_TRANSFER_TIMEOUT`, you can check the `orderTimeoutTx` for details on the timeout event. +### Stargate Transfer Data + +When one of the transfers is a `StargateTransfer`, the `transfer_sequence` array will include a `stargate_transfer` (`StargateTransferInfo`). This provides detailed information about a cross-chain asset transfer powered by Stargate, a popular cross-chain bridging protocol. + +Below are detailed explanations of the fields and their purposes: + +* `from_chain_id`: The chain ID where the transfer originates (source chain). +* `to_chain_id`: The chain ID where the assets are being sent (destination chain). + +* `state`: Indicates the current status of the Stargate transfer. Possible values are: + * `STARGATE_TRANSFER_UNKNOWN`: An unknown error has occurred or the state cannot be determined. + * `STARGATE_TRANSFER_SENT`: The transfer has been successfully initiated on the source chain (i.e., the assets have left the source chain and are in transit). + * `STARGATE_TRANSFER_RECEIVED`: The transfer has been successfully completed on the destination chain (i.e., the assets are now available at the recipient address on the destination chain). + * `STARGATE_TRANSFER_FAILED`: The transfer encountered an error during bridging and did not complete as intended. + +* `txs`: Contains transaction details related to the Stargate transfer. + * `send_tx`: The transaction on the source chain that initiated the Stargate transfer. + * `receive_tx`: The transaction on the destination chain where the assets were received. + * `error_tx`: A transaction (if any) related to the failure of the transfer. + +When monitoring a Stargate transfer, you can use `StargateTransferInfo` to confirm that your assets have safely bridged between chains or identify if and where a problem has occurred. + The Go Fast Protocol involves interactions with solvers who fulfill transfer intents. The additional transaction fields help provide transparency and traceability throughout the transfer process, ensuring users can track each step and identify any issues that may arise. diff --git a/packages/client/src/types/converters.ts b/packages/client/src/types/converters.ts index 05754ec9e..914ada5d4 100644 --- a/packages/client/src/types/converters.ts +++ b/packages/client/src/types/converters.ts @@ -49,6 +49,10 @@ import { GoFastTransferInfoJSON, GoFastTransferTransactions, GoFastTransferTransactionsJSON, + StargateTransferInfo, + StargateTransferInfoJSON, + StargateTransferTransactionsJSON, + StargateTransferTransactions, } from './lifecycle'; import { Chain, @@ -129,6 +133,8 @@ import { GoFastTransferJSON, GoFastFee, GoFastFeeJSON, + StargateTransferJSON, + StargateTransfer, } from './shared'; import { AssetBetweenChains, @@ -878,6 +884,43 @@ export function goFastTransferFromJSON(goFastJSON: GoFastTransferJSON): GoFastTr destinationDomain: goFastJSON.destination_domain, }; } + +export function stargateTransferFromJSON(stargateTransferJSON: StargateTransferJSON): StargateTransfer { + return { + fromChainID: stargateTransferJSON.from_chain_id, + toChainID: stargateTransferJSON.to_chain_id, + denomIn: stargateTransferJSON.denom_in, + denomOut: stargateTransferJSON.denom_out, + poolAddress: stargateTransferJSON.pool_address, + destinationEndpointID: stargateTransferJSON.destination_endpoint_id, + oftFeeAsset: assetFromJSON(stargateTransferJSON.oft_fee_asset), + oftFeeAmount: stargateTransferJSON.oft_fee_amount, + oftFeeAmountUSD: stargateTransferJSON.oft_fee_amount_usd, + sendFeeAsset: assetFromJSON(stargateTransferJSON.send_fee_asset), + sendFeeAmount: stargateTransferJSON.send_fee_amount, + sendFeeAmountUSD: stargateTransferJSON.send_fee_amount_usd, + bridgeID: stargateTransferJSON.bridge_id, + } +} + +export function stargateTransferToJSON(stargateTransfer: StargateTransfer): StargateTransferJSON { + return { + from_chain_id: stargateTransfer.fromChainID, + to_chain_id: stargateTransfer.toChainID, + denom_in: stargateTransfer.denomIn, + denom_out: stargateTransfer.denomOut, + pool_address: stargateTransfer.poolAddress, + destination_endpoint_id: stargateTransfer.destinationEndpointID, + oft_fee_asset: assetToJSON(stargateTransfer.oftFeeAsset), + oft_fee_amount: stargateTransfer.oftFeeAmount, + oft_fee_amount_usd: stargateTransfer.oftFeeAmountUSD, + send_fee_asset: assetToJSON(stargateTransfer.sendFeeAsset), + send_fee_amount: stargateTransfer.sendFeeAmount, + send_fee_amount_usd: stargateTransfer.sendFeeAmountUSD, + bridge_id: stargateTransfer.bridgeID, + } +} + export function operationFromJSON(operationJSON: OperationJSON): Operation { const commonProps = { txIndex: operationJSON.tx_index, @@ -934,6 +977,13 @@ export function operationFromJSON(operationJSON: OperationJSON): Operation { }; } + if ('stargate_transfer' in operationJSON) { + return { + ...commonProps, + stargateTransfer: stargateTransferFromJSON(operationJSON.stargate_transfer), + }; + } + if ('swap' in operationJSON) { return { ...commonProps, @@ -1007,6 +1057,13 @@ export function operationToJSON(operation: Operation): OperationJSON { }; } + if ('stargateTransfer' in operation) { + return { + ...commonProps, + stargate_transfer: stargateTransferToJSON(operation.stargateTransfer), + }; + } + if ('swap' in operation) { return { ...commonProps, @@ -1632,6 +1689,7 @@ export function hyperlaneTransferToJSON( }; } + export function opInitTransferFromJSON( value: OPInitTransferJSON ): OPInitTransfer { @@ -2018,6 +2076,12 @@ export function transferEventFromJSON(value: TransferEventJSON): TransferEvent { }; } + if ('stargate_transfer' in value) { + return { + stargateTransfer: stargateTransferInfoFromJSON(value.stargate_transfer), + }; + } + return { axelarTransfer: axelarTransferInfoFromJSON(value.axelar_transfer), }; @@ -2053,6 +2117,11 @@ export function transferEventToJSON(value: TransferEvent): TransferEventJSON { go_fast_transfer: goFastTransferInfoToJson(value.goFastTransfer), }; } + if ('stargateTransfer' in value) { + return { + stargate_transfer: stargateTransferInfoToJSON(value.stargateTransfer), + }; + } return { axelar_transfer: axelarTransferInfoToJSON(value.axelarTransfer), @@ -2405,6 +2474,30 @@ export function opInitTransferTransactionsToJSON( }; } +export function stargateTransferTransactionsFromJSON( + value: StargateTransferTransactionsJSON +): StargateTransferTransactions { + return { + sendTx: value.send_tx ? chainTransactionFromJSON(value.send_tx) : null, + receiveTx: value.receive_tx + ? chainTransactionFromJSON(value.receive_tx) + : null, + errorTx: value.error_tx ? chainTransactionFromJSON(value.error_tx) : null, + }; +} + +export function stargateTransferTransactionsToJSON( + value: StargateTransferTransactions +): StargateTransferTransactionsJSON { + return { + send_tx: value.sendTx ? chainTransactionToJSON(value.sendTx) : null, + receive_tx: value.receiveTx + ? chainTransactionToJSON(value.receiveTx) + : null, + error_tx: value.errorTx ? chainTransactionToJSON(value.errorTx) : null, + }; +} + export function opInitTransferInfoFromJSON( value: OPInitTransferInfoJSON ): OPInitTransferInfo { @@ -2426,6 +2519,28 @@ export function opInitTransferInfoToJSON( txs: value.txs && opInitTransferTransactionsToJSON(value.txs), }; } + +export function stargateTransferInfoFromJSON( + value: StargateTransferInfoJSON +): StargateTransferInfo { + return { + fromChainID: value.from_chain_id, + toChainID: value.to_chain_id, + state: value.state, + txs: value.txs && stargateTransferTransactionsFromJSON(value.txs), + }; +} + +export function stargateTransferInfoToJSON( + value: StargateTransferInfo +): StargateTransferInfoJSON { + return { + from_chain_id: value.fromChainID, + to_chain_id: value.toChainID, + state: value.state, + txs: value.txs && stargateTransferTransactionsToJSON(value.txs), + }; +} export function msgsDirectRequestFromJSON( msgDirectRequestJSON: MsgsDirectRequestJSON ): MsgsDirectRequest { diff --git a/packages/client/src/types/lifecycle.ts b/packages/client/src/types/lifecycle.ts index 2207c516a..25caea83b 100644 --- a/packages/client/src/types/lifecycle.ts +++ b/packages/client/src/types/lifecycle.ts @@ -435,6 +435,39 @@ export type GoFastTransferInfo = { txs: GoFastTransferTransactions; }; +export type StargateTransferState = + | "STARGATE_TRANSFER_UNKNOWN" + | "STARGATE_TRANSFER_SENT" + | "STARGATE_TRANSFER_RECEIVED" + | "STARGATE_TRANSFER_FAILED" + + +export type StargateTransferTransactionsJSON = { + send_tx: ChainTransactionJSON | null; + receive_tx: ChainTransactionJSON | null; + error_tx: ChainTransactionJSON | null; +}; + +export type StargateTransferTransactions = { + sendTx: ChainTransaction | null; + receiveTx: ChainTransaction | null; + errorTx: ChainTransaction | null; +}; + +export type StargateTransferInfoJSON = { + from_chain_id: string; + to_chain_id: string; + state: StargateTransferState; + txs: StargateTransferTransactionsJSON; +}; + +export type StargateTransferInfo = { + fromChainID: string; + toChainID: string; + state: StargateTransferState; + txs: StargateTransferTransactions; +}; + export type OPInitTransferState = | 'OPINIT_TRANSFER_UNKNOWN' | 'OPINIT_TRANSFER_SENT' @@ -475,7 +508,8 @@ export type TransferEventJSON = | { cctp_transfer: CCTPTransferInfoJSON } | { hyperlane_transfer: HyperlaneTransferInfoJSON } | { op_init_transfer: OPInitTransferInfoJSON } - | { go_fast_transfer: GoFastTransferInfoJSON }; + | { go_fast_transfer: GoFastTransferInfoJSON } + | { stargate_transfer: StargateTransferInfoJSON }; export type TransferEvent = | { @@ -485,7 +519,8 @@ export type TransferEvent = | { cctpTransfer: CCTPTransferInfo } | { hyperlaneTransfer: HyperlaneTransferInfo } | { opInitTransfer: OPInitTransferInfo } - | { goFastTransfer: GoFastTransferInfo }; + | { goFastTransfer: GoFastTransferInfo } + | { stargateTransfer: StargateTransferInfo }; type CallbackStatus = 'success' | 'error' | 'pending' | 'completed'; export interface TransactionCallbacks { diff --git a/packages/client/src/types/shared.ts b/packages/client/src/types/shared.ts index e8020c909..846384dba 100644 --- a/packages/client/src/types/shared.ts +++ b/packages/client/src/types/shared.ts @@ -198,6 +198,46 @@ export type GoFastTransferJSON = { destination_domain: string; } +export type StargateTransferJSON = { + from_chain_id: string; + to_chain_id: string; + denom_in: string; + denom_out: string; + + pool_address: string; + destination_endpoint_id: number; + + oft_fee_asset: AssetJSON; + oft_fee_amount: string; + oft_fee_amount_usd: string; + + send_fee_asset: AssetJSON; + send_fee_amount: string; + send_fee_amount_usd: string; + + bridge_id: BridgeType; +}; + +export type StargateTransfer = { + fromChainID: string; + toChainID: string; + denomIn: string; + denomOut: string; + + poolAddress: string; + destinationEndpointID: number; + + oftFeeAsset: Asset; + oftFeeAmount: string; + oftFeeAmountUSD: string; + + sendFeeAsset: Asset; + sendFeeAmount: string; + sendFeeAmountUSD: string; + + bridgeID: BridgeType; +}; + export type BankSendJSON = { chain_id: string; denom: string; diff --git a/packages/client/src/types/unified.ts b/packages/client/src/types/unified.ts index fb59dee79..66771f4c9 100644 --- a/packages/client/src/types/unified.ts +++ b/packages/client/src/types/unified.ts @@ -41,6 +41,8 @@ import { SmartSwapOptionsJSON, ChainAffiliatesJSON, ChainAffiliates, + StargateTransferJSON, + StargateTransfer, } from './shared'; export type AssetsRequestJSON = { @@ -290,7 +292,8 @@ export type OperationJSON = | (BaseOperationJSON & { hyperlane_transfer: HyperlaneTransferJSON }) | (BaseOperationJSON & { evm_swap: EvmSwapJSON }) | (BaseOperationJSON & { op_init_transfer: OPInitTransferJSON }) - | (BaseOperationJSON & { go_fast_transfer: GoFastTransferJSON }); + | (BaseOperationJSON & { go_fast_transfer: GoFastTransferJSON }) + | (BaseOperationJSON & { stargate_transfer: StargateTransferJSON }); interface BaseOperation { txIndex: number; @@ -307,7 +310,8 @@ export type Operation = | (BaseOperation & { hyperlaneTransfer: HyperlaneTransfer }) | (BaseOperation & { evmSwap: EvmSwap }) | (BaseOperation & { opInitTransfer: OPInitTransfer }) - | (BaseOperation & { goFastTransfer: GoFastTransfer }); + | (BaseOperation & { goFastTransfer: GoFastTransfer }) + | (BaseOperation & { stargateTransfer: StargateTransfer }); export type RouteResponseJSON = { source_asset_denom: string; @@ -527,13 +531,14 @@ export type MsgsResponse = { warning?: MsgsWarning; }; -export type BridgeType = 'IBC' | 'AXELAR' | 'CCTP' | 'HYPERLANE' | 'OPINIT' | 'GO_FAST'; +export type BridgeType = 'IBC' | 'AXELAR' | 'CCTP' | 'HYPERLANE' | 'OPINIT' | 'GO_FAST' | 'STARGATE'; export enum ChainType { Cosmos = 'cosmos', EVM = 'evm', SVM = 'svm', } + export type TxResult = { txHash: string chainID: string diff --git a/packages/widget/src/pages/SwapExecutionPage/SwapExecutionPageRouteDetailed.tsx b/packages/widget/src/pages/SwapExecutionPage/SwapExecutionPageRouteDetailed.tsx index 68e1576df..c8c270d24 100644 --- a/packages/widget/src/pages/SwapExecutionPage/SwapExecutionPageRouteDetailed.tsx +++ b/packages/widget/src/pages/SwapExecutionPage/SwapExecutionPageRouteDetailed.tsx @@ -28,6 +28,7 @@ const operationTypeToIcon: operationTypeToIcon = { [OperationType.hyperlaneTransfer]: , [OperationType.opInitTransfer]: , [OperationType.goFastTransfer]: , + [OperationType.stargateTransfer]: , // send icon [OperationType.bankSend]: , }; @@ -42,6 +43,7 @@ const operationTypeToSimpleOperationType = { opInitTransfer: "Bridged", bankSend: "Sent", goFastTransfer: "Bridged", + stargateTransfer: "Bridged", }; type tooltipMap = Record; diff --git a/packages/widget/src/utils/clientType.ts b/packages/widget/src/utils/clientType.ts index 88c38bf76..7cb73e11e 100644 --- a/packages/widget/src/utils/clientType.ts +++ b/packages/widget/src/utils/clientType.ts @@ -13,6 +13,9 @@ import { HyperlaneTransfer, HyperlaneTransferInfo, HyperlaneTransferState, + StargateTransferInfo, + StargateTransfer, + StargateTransferState, OPInitTransfer, OPInitTransferInfo, OPInitTransferState, @@ -39,6 +42,7 @@ export enum OperationType { opInitTransfer = "opInitTransfer", bankSend = "bankSend", goFastTransfer = "goFastTransfer", + stargateTransfer = "stargateTransfer", } type CombinedOperation = { @@ -54,6 +58,7 @@ type CombinedOperation = { evmSwap?: EvmSwap; opInitTransfer?: OPInitTransfer; goFastTransfer?: GoFastTransfer; + stargateTransfer?: StargateTransfer; }; type OperationDetails = CombineObjectTypes< @@ -64,6 +69,7 @@ type OperationDetails = CombineObjectTypes< CCTPTransfer & HyperlaneTransfer & EvmSwap & + StargateTransfer & OPInitTransfer & GoFastTransfer > & { @@ -220,6 +226,7 @@ function getClientTransferEvent(transferEvent: TransferEvent) { const opInitTransfer = combinedTransferEvent?.opInitTransfer as OPInitTransferInfo; const goFastTransfer = combinedTransferEvent?.goFastTransfer as GoFastTransferInfo; + const stargateTransfer = combinedTransferEvent?.stargateTransfer as StargateTransferInfo; let transferType = "" as TransferType; if (axelarTransfer) { @@ -234,6 +241,8 @@ function getClientTransferEvent(transferEvent: TransferEvent) { transferType = TransferType.opInitTransfer; } else if (goFastTransfer) { transferType = TransferType.goFastTransfer; + } else if (stargateTransfer) { + transferType = TransferType.stargateTransfer; } const getExplorerLink = (type: "send" | "receive") => { @@ -254,7 +263,9 @@ function getClientTransferEvent(transferEvent: TransferEvent) { type RemainingTransferTypes = | CCTPTransferInfo | HyperlaneTransferInfo - | OPInitTransferInfo; + | OPInitTransferInfo + | StargateTransferInfo; + if (type === "send") { return (combinedTransferEvent[transferType] as RemainingTransferTypes) ?.txs.sendTx?.explorerLink; @@ -268,8 +279,11 @@ function getClientTransferEvent(transferEvent: TransferEvent) { ...axelarTransfer, ...cctpTransfer, ...hyperlaneTransfer, + ...stargateTransfer, + ...hyperlaneTransfer, ...opInitTransfer, ...goFastTransfer, + ...stargateTransfer, fromExplorerLink: getExplorerLink("send"), toExplorerLink: getExplorerLink("receive"), } as ClientTransferEvent; @@ -314,6 +328,7 @@ export function getSimpleStatus( | HyperlaneTransferState | OPInitTransferState | GoFastTransferState + | StargateTransferState ): SimpleStatus { switch (state) { case "TRANSFER_PENDING": @@ -326,12 +341,14 @@ export function getSimpleStatus( case "HYPERLANE_TRANSFER_SENT": case "OPINIT_TRANSFER_SENT": case "GO_FAST_TRANSFER_SENT": + case "STARGATE_TRANSFER_SENT": return "pending"; case "TRANSFER_SUCCESS": case "AXELAR_TRANSFER_SUCCESS": case "CCTP_TRANSFER_RECEIVED": case "HYPERLANE_TRANSFER_RECEIVED": case "OPINIT_TRANSFER_RECEIVED": + case "STARGATE_TRANSFER_RECEIVED": case "GO_FAST_TRANSFER_FILLED": return "completed"; default: @@ -346,6 +363,8 @@ type CombinedTransferEvent = { [TransferType.hyperlaneTransfer]: HyperlaneTransferInfo; [TransferType.opInitTransfer]: OPInitTransferInfo; [TransferType.goFastTransfer]: GoFastTransferInfo; + [TransferType.stargateTransfer]: StargateTransferInfo; + }; export enum TransferType { @@ -355,6 +374,7 @@ export enum TransferType { hyperlaneTransfer = "hyperlaneTransfer", opInitTransfer = "opInitTransfer", goFastTransfer = "goFastTransfer", + stargateTransfer = "stargateTransfer", } export type SimpleStatus = @@ -376,7 +396,8 @@ export type ClientTransferEvent = { | CCTPTransferState | HyperlaneTransferState | OPInitTransferState - | GoFastTransferState; + | GoFastTransferState + | StargateTransferState; status?: SimpleStatus; fromExplorerLink?: string; toExplorerLink?: string; From 38b19cb92e64870b5424f741a3022669381d829c Mon Sep 17 00:00:00 2001 From: Nur Fikri Date: Fri, 20 Dec 2024 02:27:10 +0700 Subject: [PATCH 18/24] sync staging to main 19 dec (#601) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] --- .changeset/calm-deers-sniff.md | 5 ----- .changeset/curvy-windows-flash.md | 5 ----- .changeset/good-pans-unite.md | 5 ----- .changeset/lovely-dogs-beam.md | 5 ----- .changeset/nice-rivers-mix.md | 5 ----- .changeset/real-wasps-cheat.md | 5 ----- .changeset/serious-readers-beam.md | 5 ----- .changeset/small-mayflies-change.md | 5 ----- .changeset/strange-readers-relax.md | 5 ----- .changeset/stupid-bats-buy.md | 5 ----- examples/nextjs/CHANGELOG.md | 14 ++++++++++++++ examples/nextjs/package.json | 2 +- packages/client/CHANGELOG.md | 10 ++++++++++ packages/client/package.json | 2 +- packages/widget/CHANGELOG.md | 18 ++++++++++++++++++ packages/widget/package.json | 2 +- 16 files changed, 45 insertions(+), 53 deletions(-) delete mode 100644 .changeset/calm-deers-sniff.md delete mode 100644 .changeset/curvy-windows-flash.md delete mode 100644 .changeset/good-pans-unite.md delete mode 100644 .changeset/lovely-dogs-beam.md delete mode 100644 .changeset/nice-rivers-mix.md delete mode 100644 .changeset/real-wasps-cheat.md delete mode 100644 .changeset/serious-readers-beam.md delete mode 100644 .changeset/small-mayflies-change.md delete mode 100644 .changeset/strange-readers-relax.md delete mode 100644 .changeset/stupid-bats-buy.md diff --git a/.changeset/calm-deers-sniff.md b/.changeset/calm-deers-sniff.md deleted file mode 100644 index b6bd04a9b..000000000 --- a/.changeset/calm-deers-sniff.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@skip-go/widget': patch ---- - -ability to pass signer and account diff --git a/.changeset/curvy-windows-flash.md b/.changeset/curvy-windows-flash.md deleted file mode 100644 index fbffcb1ba..000000000 --- a/.changeset/curvy-windows-flash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@skip-go/client': patch ---- - -update getCosmosSigner type diff --git a/.changeset/good-pans-unite.md b/.changeset/good-pans-unite.md deleted file mode 100644 index 362deb904..000000000 --- a/.changeset/good-pans-unite.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@skip-go/widget': patch ---- - -fix balance loading display state diff --git a/.changeset/lovely-dogs-beam.md b/.changeset/lovely-dogs-beam.md deleted file mode 100644 index 25339ffe4..000000000 --- a/.changeset/lovely-dogs-beam.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@skip-go/widget': patch ---- - -fix loading indicator diff --git a/.changeset/nice-rivers-mix.md b/.changeset/nice-rivers-mix.md deleted file mode 100644 index e35bf858d..000000000 --- a/.changeset/nice-rivers-mix.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@skip-go/widget': patch ---- - -Add callback functions for wallet connect/disconnect and transaction broadcasted / completed / failed diff --git a/.changeset/real-wasps-cheat.md b/.changeset/real-wasps-cheat.md deleted file mode 100644 index a030a9fca..000000000 --- a/.changeset/real-wasps-cheat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@skip-go/client': minor ---- - -stargate transfer types diff --git a/.changeset/serious-readers-beam.md b/.changeset/serious-readers-beam.md deleted file mode 100644 index 6d3d3a06a..000000000 --- a/.changeset/serious-readers-beam.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@skip-go/widget': patch ---- - -exclude assets programatically diff --git a/.changeset/small-mayflies-change.md b/.changeset/small-mayflies-change.md deleted file mode 100644 index 680ccb89a..000000000 --- a/.changeset/small-mayflies-change.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@skip-go/widget': patch ---- - -add daodao iframe wallet diff --git a/.changeset/strange-readers-relax.md b/.changeset/strange-readers-relax.md deleted file mode 100644 index 1d90dbfa0..000000000 --- a/.changeset/strange-readers-relax.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@skip-go/widget': minor ---- - -evm mobile wallet support diff --git a/.changeset/stupid-bats-buy.md b/.changeset/stupid-bats-buy.md deleted file mode 100644 index 1b61eaba3..000000000 --- a/.changeset/stupid-bats-buy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'nextjs': patch ---- - -fix example default route and client asset search diff --git a/examples/nextjs/CHANGELOG.md b/examples/nextjs/CHANGELOG.md index 70b9b841d..6124cf553 100644 --- a/examples/nextjs/CHANGELOG.md +++ b/examples/nextjs/CHANGELOG.md @@ -1,5 +1,19 @@ # nextjs +## 0.1.28 + +### Patch Changes + +- dacf973: fix example default route and client asset search +- Updated dependencies [dacf973] +- Updated dependencies [dacf973] +- Updated dependencies [dacf973] +- Updated dependencies [dacf973] +- Updated dependencies [dacf973] +- Updated dependencies [dacf973] +- Updated dependencies [dacf973] + - @skip-go/widget@3.1.0 + ## 0.1.27 ### Patch Changes diff --git a/examples/nextjs/package.json b/examples/nextjs/package.json index 2a35124ba..5404ccc79 100644 --- a/examples/nextjs/package.json +++ b/examples/nextjs/package.json @@ -1,6 +1,6 @@ { "name": "nextjs", - "version": "0.1.27", + "version": "0.1.28", "private": true, "scripts": { "dev": "next dev", diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index 8e3f3082e..19aec65a5 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -1,5 +1,15 @@ # @skip-go/client +## 0.16.0 + +### Minor Changes + +- dacf973: stargate transfer types + +### Patch Changes + +- dacf973: update getCosmosSigner type + ## 0.15.6 ### Patch Changes diff --git a/packages/client/package.json b/packages/client/package.json index a15917055..a716cf10e 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,7 +1,7 @@ { "name": "@skip-go/client", "description": "JavaScript SDK for Skip Go API", - "version": "0.15.6", + "version": "0.16.0", "repository": "https://github.com/skip-mev/skip-go", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/packages/widget/CHANGELOG.md b/packages/widget/CHANGELOG.md index a40b4ccc7..3b0ea5265 100644 --- a/packages/widget/CHANGELOG.md +++ b/packages/widget/CHANGELOG.md @@ -1,5 +1,23 @@ ## 0.0.15 +## 3.1.0 + +### Minor Changes + +- dacf973: evm mobile wallet support + +### Patch Changes + +- dacf973: ability to pass signer and account +- dacf973: fix balance loading display state +- dacf973: fix loading indicator +- dacf973: Add callback functions for wallet connect/disconnect and transaction broadcasted / completed / failed +- dacf973: exclude assets programatically +- dacf973: add daodao iframe wallet +- Updated dependencies [dacf973] +- Updated dependencies [dacf973] + - @skip-go/client@0.16.0 + ## 3.0.25 ### Patch Changes diff --git a/packages/widget/package.json b/packages/widget/package.json index 8a99eb486..d03e9a863 100644 --- a/packages/widget/package.json +++ b/packages/widget/package.json @@ -1,7 +1,7 @@ { "name": "@skip-go/widget", "description": "Swap widget", - "version": "3.0.25", + "version": "3.1.0", "repository": { "url": "https://github.com/skip-mev/skip-go", "directory": "packages/widget" From ea59c36c3401db3e424defe37192f723d5699db7 Mon Sep 17 00:00:00 2001 From: plubber <51789398+ericHgorski@users.noreply.github.com> Date: Mon, 23 Dec 2024 09:53:49 -0500 Subject: [PATCH 19/24] [FRE-1360] fix: update button label and remove unused hook in SwapExecutionButton (#608) Co-authored-by: Nur Fikri --- .changeset/gentle-suns-decide.md | 5 +++++ .../src/pages/SwapExecutionPage/SwapExecutionButton.tsx | 6 ++---- packages/widget/src/stories/MainButton.stories.tsx | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) create mode 100644 .changeset/gentle-suns-decide.md diff --git a/.changeset/gentle-suns-decide.md b/.changeset/gentle-suns-decide.md new file mode 100644 index 000000000..7910ea7c0 --- /dev/null +++ b/.changeset/gentle-suns-decide.md @@ -0,0 +1,5 @@ +--- +'@skip-go/widget': patch +--- + +Update post tx button to Go again diff --git a/packages/widget/src/pages/SwapExecutionPage/SwapExecutionButton.tsx b/packages/widget/src/pages/SwapExecutionPage/SwapExecutionButton.tsx index 7d5f3057a..bbedeb978 100644 --- a/packages/widget/src/pages/SwapExecutionPage/SwapExecutionButton.tsx +++ b/packages/widget/src/pages/SwapExecutionPage/SwapExecutionButton.tsx @@ -14,7 +14,7 @@ import { Modals } from "@/modals/registerModals"; import { RouteResponse } from "@skip-go/client"; import { ClientOperation } from "@/utils/clientType"; import { GoFastSymbol } from "@/components/GoFastSymbol"; -import { useIsGoFast, useIsSwapOperation } from "@/hooks/useIsGoFast"; +import { useIsGoFast } from "@/hooks/useIsGoFast"; type SwapExecutionButtonProps = { swapExecutionState: SwapExecutionState | undefined; @@ -38,8 +38,6 @@ export const SwapExecutionButton: React.FC = ({ const setCurrentPage = useSetAtom(currentPageAtom); const clearAssetInputAmounts = useSetAtom(clearAssetInputAmountsAtom); const isGoFast = useIsGoFast(route); - const isSwapOperation = useIsSwapOperation(route); - const operationText = isSwapOperation ? "Swap" : "Send"; switch (swapExecutionState) { case SwapExecutionState.recoveryAddressUnset: @@ -131,7 +129,7 @@ export const SwapExecutionButton: React.FC = ({ case SwapExecutionState.confirmed: return ( { diff --git a/packages/widget/src/stories/MainButton.stories.tsx b/packages/widget/src/stories/MainButton.stories.tsx index 547c00a69..71d4c89e3 100644 --- a/packages/widget/src/stories/MainButton.stories.tsx +++ b/packages/widget/src/stories/MainButton.stories.tsx @@ -94,7 +94,7 @@ export const SwapAgain: Story = { ); }, args: { - label: "Swap Again", + label: "Go Again", icon: ICONS.checkmark, onClick: () => alert("should trigger"), }, From 40a922980022890161ffdf224d1b330e5824997f Mon Sep 17 00:00:00 2001 From: plubber <51789398+ericHgorski@users.noreply.github.com> Date: Mon, 23 Dec 2024 09:55:02 -0500 Subject: [PATCH 20/24] =?UTF-8?q?[FRE-1357]=20fix:=20update=20SetAddressMo?= =?UTF-8?q?dal=20to=20use=20theme=20from=20useTheme=20and=20improve=20wi?= =?UTF-8?q?=E2=80=A6=20(#607)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .changeset/beige-terms-cheat.md | 5 +++++ .../SetAddressModal/SetAddressModal.tsx | 20 +++++++++++++++---- 2 files changed, 21 insertions(+), 4 deletions(-) create mode 100644 .changeset/beige-terms-cheat.md diff --git a/.changeset/beige-terms-cheat.md b/.changeset/beige-terms-cheat.md new file mode 100644 index 000000000..391e9eed9 --- /dev/null +++ b/.changeset/beige-terms-cheat.md @@ -0,0 +1,5 @@ +--- +'@skip-go/widget': patch +--- + +show warning if ends in ibc transfer diff --git a/packages/widget/src/modals/SetAddressModal/SetAddressModal.tsx b/packages/widget/src/modals/SetAddressModal/SetAddressModal.tsx index e18125cc8..a1c53c3d7 100644 --- a/packages/widget/src/modals/SetAddressModal/SetAddressModal.tsx +++ b/packages/widget/src/modals/SetAddressModal/SetAddressModal.tsx @@ -1,6 +1,6 @@ import { createModal, ModalProps } from "@/components/Modal"; import { Row } from "@/components/Layout"; -import { css, styled } from "styled-components"; +import { css, styled, useTheme } from "styled-components"; import { useCallback, useMemo, useState } from "react"; import { RightArrowIcon } from "@/icons/ArrowIcon"; import { @@ -9,7 +9,7 @@ import { } from "@/components/RenderWalletList"; import { Button } from "@/components/Button"; import { SmallText, Text } from "@/components/Typography"; -import { useAtomValue, useSetAtom } from "jotai"; +import { useAtom, useAtomValue } from "jotai"; import { skipChainsAtom } from "@/state/skipClient"; import { isValidWalletAddress } from "./isValidWalletAddress"; import { useWalletList } from "@/hooks/useWalletList"; @@ -33,7 +33,9 @@ export enum WalletSource { export const SetAddressModal = createModal((modalProps: SetAddressModalProps) => { const isMobileScreenSize = useIsMobileScreenSize(); - const { theme, chainId, chainAddressIndex } = modalProps; + const { chainId, chainAddressIndex } = modalProps; + // TODO: get theme from modal props (currently being passed in as undefined from createModal function) + const theme = useTheme(); const { data: chains } = useAtomValue(skipChainsAtom); const chain = chains?.find(c => c.chainID === chainId); const chainName = chain?.prettyName; @@ -41,7 +43,12 @@ export const SetAddressModal = createModal((modalProps: SetAddressModalProps) => const [showManualAddressInput, setShowManualAddressInput] = useState(false); const [manualWalletAddress, setManualWalletAddress] = useState(""); const _walletList = useWalletList({ chainID: chainId, destinationWalletList: true }); - const setChainAddresses = useSetAtom(chainAddressesAtom); + const [chainAddresses, setChainAddresses] = useAtom(chainAddressesAtom); + + // If not same chain transaction, show warning + const showWithdrawalWarning = ( + new Set(Object.values(chainAddresses).map(({ chainID }) => chainID)) + ).size > 1; const walletList = [ ..._walletList, @@ -122,6 +129,11 @@ export const SetAddressModal = createModal((modalProps: SetAddressModalProps) => )} /> + {showWithdrawalWarning && ( + + Avoid transfers to centralized exchanges. Your assets may be lost. + + )} Date: Mon, 23 Dec 2024 08:59:23 -0600 Subject: [PATCH 21/24] add error message field to GoFastTransferInfo (#606) Co-authored-by: Nur Fikri --- .changeset/modern-ravens-smile.md | 5 +++++ .../multi-chain-realtime-transaction-and-packet-tracking.mdx | 3 ++- packages/client/src/types/converters.ts | 2 ++ packages/client/src/types/lifecycle.ts | 2 ++ vendor/noble-cctp | 2 +- 5 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 .changeset/modern-ravens-smile.md diff --git a/.changeset/modern-ravens-smile.md b/.changeset/modern-ravens-smile.md new file mode 100644 index 000000000..6d3b34b13 --- /dev/null +++ b/.changeset/modern-ravens-smile.md @@ -0,0 +1,5 @@ +--- +'@skip-go/client': patch +--- + +add error message field on GoFastTransferInfo diff --git a/docs/general/multi-chain-realtime-transaction-and-packet-tracking.mdx b/docs/general/multi-chain-realtime-transaction-and-packet-tracking.mdx index b3b0e14a3..2c3ebaf7f 100644 --- a/docs/general/multi-chain-realtime-transaction-and-packet-tracking.mdx +++ b/docs/general/multi-chain-realtime-transaction-and-packet-tracking.mdx @@ -180,7 +180,7 @@ Below are detailed explanations of the different fields and their purposes: * `state`: Indicates the current status of the transfer. Possible values are: * `GO_FAST_TRANSFER_UNKNOWN`: An unknown error has occurred. * `GO_FAST_TRANSFER_SENT`: The user's intent has been successfully submitted on the source chain. - * `GO_FAST_POST_ACTION_FAILED`: The transfer failed after the initial intent submission. + * `GO_FAST_POST_ACTION_FAILED`: The transfer's post-intent action failed. For example a swap on the destination chain failed due to slippage. * `GO_FAST_TRANSFER_TIMEOUT`: The transfer did not complete within the expected time frame. * `GO_FAST_TRANSFER_FILLED`: The transfer was successfully fulfilled on the destination chain. * `GO_FAST_TRANSFER_REFUNDED`: The user's assets have been refunded on the source chain. @@ -189,6 +189,7 @@ Below are detailed explanations of the different fields and their purposes: * `order_filled_tx`: The transaction where the solver called fulfill on the destination chain. * `order_refunded_tx`: The transaction where the user received a refund on the source chain, if applicable. * `order_timeout_tx`: The transaction indicating a timeout occurred in the transfer process. +* `error_message`: A message describing the error that occurred during the transfer, if applicable. When tracking a Go Fast transfer, you can use the `GoFastTransferInfo` to monitor the progress and status of your asset transfer between chains. For instance, if the state is `GO_FAST_TRANSFER_FILLED`, you know that the transfer was successful and your assets should be available on the destination chain. If the state is `GO_FAST_TRANSFER_TIMEOUT`, you can check the `orderTimeoutTx` for details on the timeout event. diff --git a/packages/client/src/types/converters.ts b/packages/client/src/types/converters.ts index 914ada5d4..694111010 100644 --- a/packages/client/src/types/converters.ts +++ b/packages/client/src/types/converters.ts @@ -2014,6 +2014,7 @@ export function goFastTransferInfoFromJSON( toChainID: value.to_chain_id, state: value.state, txs: value.txs && goFastTransferTransactionsFromJSON(value.txs), + errorMessage: value.error_message, }; } @@ -2025,6 +2026,7 @@ export function goFastTransferInfoToJson( to_chain_id: value.toChainID, state: value.state, txs: value.txs && goFastTransferTransactionsToJSON(value.txs), + error_message: value.errorMessage, }; } diff --git a/packages/client/src/types/lifecycle.ts b/packages/client/src/types/lifecycle.ts index 25caea83b..658e7fbe0 100644 --- a/packages/client/src/types/lifecycle.ts +++ b/packages/client/src/types/lifecycle.ts @@ -426,6 +426,7 @@ export type GoFastTransferInfoJSON = { to_chain_id: string; state: GoFastTransferState; txs: GoFastTransferTransactionsJSON; + error_message: string | null; }; export type GoFastTransferInfo = { @@ -433,6 +434,7 @@ export type GoFastTransferInfo = { toChainID: string; state: GoFastTransferState; txs: GoFastTransferTransactions; + errorMessage: string | null; }; export type StargateTransferState = diff --git a/vendor/noble-cctp b/vendor/noble-cctp index 4285c94ec..253cf7eb9 160000 --- a/vendor/noble-cctp +++ b/vendor/noble-cctp @@ -1 +1 @@ -Subproject commit 4285c94ec19438ad1e05ba3e5106a5e7980cfffd +Subproject commit 253cf7eb943669e283b4dcb25f83c7096080e67a From 96281652c4ec2e26dce8a66220506de49bb8bc6f Mon Sep 17 00:00:00 2001 From: Nur Fikri Date: Mon, 23 Dec 2024 22:43:37 +0700 Subject: [PATCH 22/24] Update registries 23 dec 2024 (#609) --- .changeset/red-olives-do.md | 6 +++++ packages/client/package.json | 2 +- packages/client/src/codegen/chains.json | 2 +- packages/widget/package.json | 2 +- .../src/constants/cosmosChains/explorers.json | 2 +- .../src/constants/cosmosChains/mainnet.json | 2 +- .../src/constants/cosmosChains/testnet.json | 2 +- vendor/noble-cctp | 2 +- yarn.lock | 22 +++++++++---------- 9 files changed, 24 insertions(+), 18 deletions(-) create mode 100644 .changeset/red-olives-do.md diff --git a/.changeset/red-olives-do.md b/.changeset/red-olives-do.md new file mode 100644 index 000000000..576a82a37 --- /dev/null +++ b/.changeset/red-olives-do.md @@ -0,0 +1,6 @@ +--- +'@skip-go/client': patch +'@skip-go/widget': patch +--- + +update registries diff --git a/packages/client/package.json b/packages/client/package.json index a716cf10e..7e7a9b390 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -35,7 +35,7 @@ "@protobufs/gogoproto": "0.0.10", "@protobufs/google": "0.0.10", "@types/keccak": "3.0.4", - "chain-registry": "^1.69.65", + "chain-registry": "^1.69.71", "minimatch": "^9.0.3", "proxy-from-env": "^1.1.0", "vitest": "^1.2.2" diff --git a/packages/client/src/codegen/chains.json b/packages/client/src/codegen/chains.json index f77197fb0..c42d4ef7b 100644 --- a/packages/client/src/codegen/chains.json +++ b/packages/client/src/codegen/chains.json @@ -1 +1 @@ -[{"chain_id":"aaronetwork","fees":{"fee_tokens":[{"denom":"uaaron","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://mainnet-rpc.aaronetwork.xyz","provider":"Aaron Network Foundation"},{"address":"https://aaronetwork_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"acre_9052-1","fees":{"fee_tokens":[{"denom":"aacre","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc-acre.synergynodes.com","provider":"Synergy Nodes"},{"address":"https://acrechain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.acre.tcnetwork.io","provider":"TC Network"},{"address":"https://mainnet-acre-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://acred-rpc.staketab.org:443","provider":"Staketab"}]}},{"chain_id":"agoric-3","fees":{"fee_tokens":[{"denom":"ubld","low_gas_price":0.03,"average_gas_price":0.05,"high_gas_price":0.07},{"denom":"uist","low_gas_price":0.0034,"average_gas_price":0.007,"high_gas_price":0.02}]},"apis":{"rpc":[{"address":"https://main.rpc.agoric.net:443"},{"address":"https://agoric-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.agoric.nodestake.org","provider":"NodeStake"},{"address":"https://agoric.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://agoric-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-agoric-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://agoric-rpc.0base.dev","provider":"0base.vc"},{"address":"https://agoric-rpc.stakeangle.com","provider":"StakeAngle"},{"address":"https://agoric-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc.agoric.stakewith.us","provider":"StakeWithUs"},{"address":"https://rpc-agoric-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://agoric-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.agoric.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"aioz_168-1","fees":{"fee_tokens":[{"denom":"attoaioz","fixed_min_gas_price":7000000000,"low_gas_price":7000000000,"average_gas_price":7000000000,"high_gas_price":10000000000}]},"apis":{"rpc":[{"address":"https://rpc-dataseed.aioz.network:443","provider":"AIOZ Network"}]}},{"chain_id":"akashnet-2","fees":{"fee_tokens":[{"denom":"uakt","fixed_min_gas_price":0.00025,"low_gas_price":0.00025,"average_gas_price":0.0025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://rpc.akash.forbole.com:443","provider":"forbole"},{"address":"https://rpc-akash.ecostake.com:443","provider":"ecostake"},{"address":"https://rpc.lavenderfive.com:443/akash","provider":"Lavender.Five Nodes"},{"address":"https://akash-rpc.polkachu.com","provider":"Polkachu"},{"address":"http://akash.c29r3.xyz:80/rpc","provider":"c29r3"},{"address":"https://akash-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://akash-mainnet-rpc.cosmonautstakes.com:443","provider":"Cosmonaut Stakes"},{"address":"https://akash-rpc.w3coins.io","provider":"w3coins"},{"address":"https://akash-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://akash.declab.pro:26601","provider":"Decloud Nodes Lab"},{"address":"https://rpc.akash.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"althea_258432-1","fees":{"fee_tokens":[{"denom":"aalthea","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":100000000000,"high_gas_price":300000000000}]},"apis":{"rpc":[{"address":"https://nodes.chandrastation.com/rpc/althea/","provider":"Chandra Station"},{"address":"https://althea.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/althea","provider":"Lavender.Five Nodes 🐝"}]}},{"chain_id":"andromeda-1","fees":{"fee_tokens":[{"denom":"uandr","low_gas_price":0.03,"average_gas_price":0.05,"high_gas_price":0.075}]},"apis":{"rpc":[{"address":"https://rpc.andromeda-1.andromeda.aviaone.com","provider":"AviaOne 🟒"},{"address":"https://andromeda.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://andromeda.rpc.nodex.one","provider":"nodex"},{"address":"https://andro.rpc.m.stavr.tech/","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/andromeda","provider":"Lavender.Five Nodes 🐝"},{"address":"https://andromeda-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://andromeda-rpc.stakerhouse.com:443","provider":"StakerHouse"},{"address":"https://andromeda-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://andromeda-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://andromeda.rpc.kjnodes.com","provider":"kjnodes.com πŸ¦„"},{"address":"andromeda-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"rpc-andromeda.blockval.io","provider":"Blockval"},{"address":"https://andromeda.rpc.liveraven.net","provider":"LiveRaveN"}]}},{"chain_id":"archway-1","fees":{"fee_tokens":[{"denom":"aarch","fixed_min_gas_price":140000000000,"low_gas_price":196000000000,"average_gas_price":225400000000,"high_gas_price":254800000000}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.archway.io","provider":"Archway Foundation"},{"address":"https://archway-mainnet-archive.allthatnode.com:26657","provider":"All That Node"},{"address":"https://m-archway.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc-1.archway.nodes.guru","provider":"Nodes.Guru"},{"address":"https://archway.rpc.silknodes.io/","provider":"Silk Nodes"},{"address":"https://archway.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-archway.cryptech.com.ua","provider":"cryptech"},{"address":"https://rpc-archway.theamsolutions.info","provider":"AM Solutions"},{"address":"https://archway-rpc.w3coins.io","provider":"w3coins"},{"address":"https://m-archway.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc.lavenderfive.com:443/archway","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-archway.mms.team","provider":"MMS"},{"address":"https://rpc-archway.mzonder.com","provider":"MZONDER"},{"address":"https://rpc.archway.lgns.net","provider":"Luganodes"},{"address":"https://archway-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://archway-rpc.0base.dev","provider":"0base.vc"},{"address":"https://archway-mainnet.rpc.l0vd.com","provider":"L0vd.com"},{"address":"https://archway-rpc.openbitlab.com","provider":"openbitlab"},{"address":"https://rpc-archway.mzonder.com","provider":"MZONDER"},{"address":"https://rpc-archway.mainnet.validatrium.club","provider":"Validatrium"},{"address":"https://rpc.archway.stakeup.tech","provider":"StakeUp"},{"address":"https://archway-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.archway.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc-archway.luckyfriday.io/","provider":"GlobalStake"},{"address":"https://archway-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://archway-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"arkh","fees":{"fee_tokens":[{"denom":"arkh","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://asc-dataseed.arkhadian.com/","provider":"arkhnetwork"},{"address":"https://arkh_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"mantle-1","fees":{"fee_tokens":[{"denom":"umntl","low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.assetmantle.one","provider":"AssetMantle"},{"address":"https://assetmantle-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.assetmantle.nodestake.org","provider":"NodeStake"},{"address":"https://rpc-assetmantle-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.mantle.paranorm.pro:443","provider":"paranorm"},{"address":"https://assetmantle-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://assetmantle-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"atomone-1","fees":{"fee_tokens":[{"denom":"uatone","fixed_min_gas_price":0.001,"low_gas_price":0.006,"average_gas_price":0.006,"high_gas_price":0.009}]},"apis":{"rpc":[{"address":"https://atomone-rpc.allinbits.com:443","provider":"AllInBits"},{"address":"https://atomone-rpc.cogwheel.zone","provider":"Cogwheel βš™οΈ"},{"address":"https://atomone.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://rpc-atomone.nodeist.net","provider":"Nodeist"},{"address":"https://rpc-atomone-1.cros-nest.com:443","provider":"crosnest"},{"address":"https://community.nuxian-node.ch:6797/atomone/trpc","provider":"PRO Delegators"},{"address":"https://atomone-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://atomone_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://atomone-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://atomone-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"aura_6322-2","fees":{"fee_tokens":[{"denom":"uaura","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://rpc.aura.network/","provider":"Aura Network Foundation"},{"address":"https://m-aura.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://aura.rpc.m.stavr.tech:11047","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://aura-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://aura.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://mainnet-aura-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.lavenderfive.com:443/aura","provider":"Lavender.Five Nodes 🐝"},{"address":"https://aura-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc.aura.safeblock.space","provider":"Safe Block"},{"address":"https://rpc.aura.silentvalidator.com","provider":"silent"},{"address":"https://rpc-aura.mms.team","provider":"MMS"},{"address":"https://aura-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://aura-rpc.palamar.io","provider":"Palamar"},{"address":"https://aura.rpc.srv.stakr.space","provider":"STAKR.space"},{"address":"https://aura-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://aura-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"axelar-dojo-1","fees":{"fee_tokens":[{"denom":"uaxl","fixed_min_gas_price":0.007,"low_gas_price":0.007,"average_gas_price":0.007,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc-axelar.imperator.co:443","provider":"Imperator.co"},{"address":"https://axelar-rpc.quickapi.com:443","provider":"chainlayer"},{"address":"https://rpc-axelar.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://axelar-rpc.pops.one:443","provider":"p-ops"},{"address":"https://axelar-rpc.qubelabs.io:443","provider":"Qubelabs"},{"address":"https://rpc-1.axelar.nodes.guru:443","provider":"nodes.guru"},{"address":"https://rpc-axelar-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://axelar-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://axelar.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://rpc.axelar.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://axelar-rpc.validatrium.club","provider":"Validatrium"},{"address":"https://rpc-axelar.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://axelar-rpc.quantnode.tech/","provider":"QuantNode"},{"address":"https://axelar-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://axelar-rpc.rockrpc.net/","provider":"RockawayX Infra"},{"address":"https://axelar-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc-axelar-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://axelar-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://axelar-rpc.w3coins.io","provider":"w3coins"},{"address":"https://axelar-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://axelar.drpc.org","provider":"dRPC"}]}},{"chain_id":"laozi-mainnet","fees":{"fee_tokens":[{"denom":"uband","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.005}]},"apis":{"rpc":[{"address":"http://rpc.laozi1.bandchain.org:80","provider":"bandprotocol"},{"address":"https://rpc-bandchain-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://band-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://bandchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://band.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-band-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-band.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://band-rpc.w3coins.io","provider":"w3coins"},{"address":"https://bandprotocol-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://public.stakewolle.com/cosmos/bandchain/rpc","provider":"Stakewolle"},{"address":"https://rpc.band.bronbro.io/","provider":"Bro_n_Bro"},{"address":"https://rpc.band.roomit.xyz/","provider":"Roomit"},{"address":"https://band-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"beezee-1","fees":{"fee_tokens":[{"denom":"ubze","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.getbze.com","provider":"AlphaTeam"},{"address":"https://rpc-1.getbze.com","provider":"AlphaTeam"},{"address":"https://rpc-2.getbze.com","provider":"AlphaTeam"},{"address":"https://beezee_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bitbadges-1","fees":{"fee_tokens":[{"denom":"ubadge","fixed_min_gas_price":0,"low_gas_price":0.00025,"average_gas_price":0.0025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"http://134.122.12.165:26657","provider":"bitbadges"},{"address":"https://bitbadges_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bitcanna-1","fees":{"fee_tokens":[{"denom":"ubcna","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.bitcanna.io/","provider":"bitcanna"},{"address":"https://bcna-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://bitcanna-rpc.panthea.eu/","provider":"Panthea EU"},{"address":"https://rpc.bitcanna.sgtstake.com/","provider":"SGTstake"},{"address":"https://bitcanna.rpc.m.anode.team/","provider":"AlxVoy ⚑ ANODE.TEAM"},{"address":"https://bitcanna.rpc.m.stavr.tech/","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-bcna.kjinc.io/","provider":"KJINC.io"},{"address":"https://mainnet-bitcanna-rpc.konsortech.xyz/","provider":"KonsorTech"},{"address":"https://bitcanna.rpc.kjnodes.com/","provider":"kjnodes"},{"address":"https://bitcanna-rpc.genznodes.dev/","provider":"genznodes"},{"address":"https://rpc.bitcanna-1.bitcanna.aviaone.com/","provider":"AVIAONE 🟒"},{"address":"https://rpc.bitcanna-mainnet.hexnodes.one/","provider":"Hexnodes"},{"address":"https://rpc.bitcanna.citizenweb3.com/","provider":"Citizen Web3"},{"address":"https://bitcanna-mainnet.rpc.l0vd.com/","provider":"L0vd.com"},{"address":"https://bitcanna-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.bitcanna.safeblock.space","provider":"Safe Block"},{"address":"https://bitcanna.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://rpc.bitcanna.indonode.net/","provider":"Indonode"},{"address":"https://rpc-bitcanna.mms.team:443","provider":"MMS"},{"address":"https://bitcanna-rpc.validatornode.com","provider":"ValidatorNode"},{"address":"https://bitcanna.rpc.nodex.one","provider":"NodeX Emperor ⚑ Bitcanna"},{"address":"https://bcna.rpc.arcturian.tech/","provider":"Arcturian Tech"},{"address":"https://rpc.bitcanna.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://bitcanna-rpc.bluestake.net","provider":"BlueStake"},{"address":"https://rpc-bitcanna.cryptech.com.ua","provider":"CrypTech"},{"address":"https://bitcanna-rpc.kalia.network/","provider":"Kalia Network"},{"address":"https://bitcanna.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://bitcanna_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bitsong-2b","fees":{"fee_tokens":[{"denom":"ubtsg","fixed_min_gas_price":0,"low_gas_price":3,"average_gas_price":10,"high_gas_price":20}]},"apis":{"rpc":[{"address":"https://rpc-bitsong-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.explorebitsong.com","provider":"stake.systems"},{"address":"https://bitsong-rpc.validatrium.club","provider":"Validatrium"},{"address":"https://rpc.bitsong.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.bitsong.quokkastake.io","provider":"🐹 Quokka Stake"},{"address":"https://rpc-bitsong.starsquid.io","provider":"Starsquid"},{"address":"https://rpc-bitsong.architectnodes.com","provider":"Architect Nodes"},{"address":"http://bitsong.statesync.nodersteam.com:11657","provider":"[NODERS]TEAM"},{"address":"https://rpc.bitsong.safeblock.space","provider":"Safe Block"},{"address":"https://bitsong.tdrsys.com:2053","provider":"TdrSys"},{"address":"https://bitsong-rpc.panthea.eu","provider":"Panthea EU"},{"address":"https://rpc.bitsong.mathnodes.com","provider":"MathNodes"},{"address":"https://bitsong-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://bitsong-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://bitsong.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"blockx_19191-1","apis":{"rpc":[{"address":"https://rpc-blockx.nodeist.net","provider":"Nodeist"},{"address":"https://blockx_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bluechip-2","fees":{"fee_tokens":[{"denom":"ubluechip","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[]}},{"chain_id":"bluzelle-9","fees":{"fee_tokens":[{"denom":"ubnt","fixed_min_gas_price":0.002,"low_gas_price":0.002,"average_gas_price":0.002,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://a.client.sentry.net.bluzelle.com:26657","provider":"Bluzelle"},{"address":"https://b.client.sentry.net.bluzelle.com:26657","provider":"Bluzelle"},{"address":"https://c.client.sentry.net.bluzelle.com:26657","provider":"Bluzelle"},{"address":"https://bluzelle_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bostrom","fees":{"fee_tokens":[{"denom":"boot","low_gas_price":0,"average_gas_price":0,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.bostrom.cybernode.ai","provider":"cybercongress"},{"address":"https://rpc-cyber-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.cyber.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"bouachain","fees":{"fee_tokens":[{"denom":"ubouacoin","fixed_min_gas_price":0,"low_gas_price":0.0006,"average_gas_price":0.012,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.bouachain.com","provider":"BouaValidator"}]}},{"chain_id":"canto_7700-1","fees":{"fee_tokens":[{"denom":"acanto","fixed_min_gas_price":1000000000000,"low_gas_price":1000000000000,"average_gas_price":2000000000000,"high_gas_price":3000000000000}]},"apis":{"rpc":[{"address":"https://rpc.canto.nodestake.top","provider":"NodeStake"},{"address":"https://canto-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.canto.silentvalidator.com/","provider":"silent"},{"address":"https://canto.gravitychain.io:26657","provider":"Althea"},{"address":"https://canto-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-canto.kewrnode.com","provider":"Kewr Node"}]}},{"chain_id":"carbon-1","fees":{"fee_tokens":[{"denom":"swth","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1,"high_gas_price":1,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"usc","fixed_min_gas_price":0,"low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.0001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"bnb.1.6.773edb","fixed_min_gas_price":0,"low_gas_price":1000000,"average_gas_price":1000000,"high_gas_price":1000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"bneo.1.14.e2e5f6","fixed_min_gas_price":0,"low_gas_price":0.0015,"average_gas_price":0.0015,"high_gas_price":0.0015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"busd.1.6.754a80","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"cglp.1.19.1698d3","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"cgt/1","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"eth.1.19.c3b805","fixed_min_gas_price":0,"low_gas_price":100000,"average_gas_price":100000,"high_gas_price":100000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"eth.1.2.942d87","fixed_min_gas_price":0,"low_gas_price":100000,"average_gas_price":100000,"high_gas_price":100000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C","fixed_min_gas_price":0,"low_gas_price":0.0035,"average_gas_price":0.0035,"high_gas_price":0.0035,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","fixed_min_gas_price":0,"low_gas_price":0.0000075,"average_gas_price":0.0000075,"high_gas_price":0.0000075,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5","fixed_min_gas_price":0,"low_gas_price":0.00005,"average_gas_price":0.00005,"high_gas_price":0.00005,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5","fixed_min_gas_price":0,"low_gas_price":0.00032,"average_gas_price":0.00032,"high_gas_price":0.00032,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364","fixed_min_gas_price":0,"low_gas_price":300000000,"average_gas_price":300000000,"high_gas_price":300000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118","fixed_min_gas_price":0,"low_gas_price":0.0006,"average_gas_price":0.0006,"high_gas_price":0.0006,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5","fixed_min_gas_price":0,"low_gas_price":0.00015,"average_gas_price":0.00015,"high_gas_price":0.00015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","fixed_min_gas_price":0,"low_gas_price":0.0000075,"average_gas_price":0.0000075,"high_gas_price":0.0000075,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93","fixed_min_gas_price":0,"low_gas_price":0.00015,"average_gas_price":0.00015,"high_gas_price":0.00015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861","fixed_min_gas_price":0,"low_gas_price":200000000,"average_gas_price":200000000,"high_gas_price":200000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701","fixed_min_gas_price":0,"low_gas_price":0.00001,"average_gas_price":0.00001,"high_gas_price":0.00001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C","fixed_min_gas_price":0,"low_gas_price":0.00001,"average_gas_price":0.00001,"high_gas_price":0.00001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","fixed_min_gas_price":0,"low_gas_price":0.00015,"average_gas_price":0.00015,"high_gas_price":0.00015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"usdc.1.2.343151","fixed_min_gas_price":0,"low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.0001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"usdc.1.6.53ff75","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"zil.1.18.1a4a06","fixed_min_gas_price":0,"low_gas_price":6000,"average_gas_price":6000,"high_gas_price":6000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}}]},"apis":{"rpc":[{"address":"https://tm-api.carbon.network","provider":"switcheo-labs"},{"address":"https://rpc.lavenderfive.com:443/carbon","provider":"Lavender.Five Nodes 🐝"},{"address":"https://carbon-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.carbon.blockhunters.org","provider":"BlockHunters"}]}},{"chain_id":"celestia","fees":{"fee_tokens":[{"denom":"utia","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://public-celestia-rpc.numia.xyz","provider":"Numia"},{"address":"https://celestia-rpc.mesa.newmetric.xyz","provider":"Newmetric"},{"address":"https://rpc.lunaroasis.net","provider":"Lunar Oasis"},{"address":"https://rpc.celestia.nodestake.org","provider":"NodeStake"},{"address":"https://rpc.lavenderfive.com:443/celestia","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-celestia-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-celestia.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"http://celestia.rpc.nodersteam.com:29657","provider":"[NODERS]TEAM"},{"address":"https://celestia.rpc.interchain.validao.xyz","provider":"ValiDAO"},{"address":"https://celestia-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://celestia.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://celestia.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://celestia-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-celestia.mzonder.com","provider":"MZONDER"},{"address":"https://celestia-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://rpc-celestia.theamsolutions.info","provider":"AM Solutions"},{"address":"https://celestia-mainnet-rpc.autostake.com:443","provider":"AutoStake | Delegate for StakeDrops"},{"address":"https://rpc.celestia.validatus.com","provider":"Validatus"},{"address":"https://celestia-rpc.sr20de.xyz","provider":"Sr20de"},{"address":"https://rpc-celestia-full.avril14th.org","provider":"Avril 14th"},{"address":"https://rpc.freshstaking.com/celestia","provider":"FreshSTAKING"},{"address":"https://celestia.cumulo.org.es/","provider":"Cumulo"},{"address":"https://celestia-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.celestia-app.bronbro.io","provider":"Bro_n_Bro"},{"address":"https://celestia-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc.celestia.citizenweb3.com","provider":"Citizen Web3"},{"address":"https://celestia-mainnet-rpc.itrocket.net","provider":"πŸš€ itrocket πŸš€"},{"address":"https://rpc.celestia.mainnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://celestia-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"}]}},{"chain_id":"perun-1","fees":{"fee_tokens":[{"denom":"uc4e","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.c4e.io/","provider":"C4E"},{"address":"https://rpc.c4e.mainnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://rpc.c4e.nodestake.top","provider":"NodeStake"},{"address":"https://c4e.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://chain4energy-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://c4e.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-c4e.takeshi.team","provider":"TAKESHI"},{"address":"https://rpc-c4e.mzonder.com","provider":"MZONDER"},{"address":"https://rpc.cros-nest.com/chain4energy","provider":"Crosnest"},{"address":"https://rpc.c4e.indonode.net","provider":"Indonode"},{"address":"https://c4e-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.c4e.silentvalidator.com","provider":"silent"},{"address":"http://rpc.c4e.stakeup.tech","provider":"StakeUp"},{"address":"https://chain4energy-rpc.stakeangle.com","provider":"StakeAngle"},{"address":"https://c4e-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://rpc-c4e.theamsolutions.info","provider":"AM Solutions"},{"address":"https://c4e.rpc.m.anode.team","provider":"AlxVoy ⚑ ANODE.TEAM"},{"address":"http://185.245.182.192:46657","provider":"Meerlabs"},{"address":"http://89.117.58.109:26657","provider":"medes"},{"address":"http://c4e.rpc.node75.org:26957","provider":"Pro-nodes75"},{"address":"http://164.68.125.243:26657","provider":"Smt Network"},{"address":"https://c4e-rpc.antrixy.org/","provider":"Antrix Validators"},{"address":"https://c4e.doubletop.tech/","provider":"DOUBLETOP"},{"address":"https://c4e-rpc.kalia.network:443","provider":"Kalia Network"},{"address":"http://38.242.220.64:16657","provider":"mahof"},{"address":"http://209.182.239.169:46657","provider":"SECARD"},{"address":"https://rpc.c4e.validatus.com:443","provider":"Validatus"},{"address":"https://rpc-m-c4e.apeironnodes.com:443","provider":"Apeiron Nodes"},{"address":"http://rpc-c4e.cryptech.com.ua:443","provider":"Cryptech"},{"address":"http://37.60.240.43:46657","provider":"NakoTurk"},{"address":"https://chain4energy_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"cheqd-mainnet-1","fees":{"fee_tokens":[{"denom":"ncheq","fixed_min_gas_price":25,"low_gas_price":50,"average_gas_price":75,"high_gas_price":100}]},"apis":{"rpc":[{"address":"https://rpc.cheqd.net","provider":"cheqd"},{"address":"https://rpc.lavenderfive.com:443/cheqd","provider":"Lavender.Five Nodes"},{"address":"https://cheqd.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-cheqd-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.cheqd.nodestake.org","provider":"NodeStake"},{"address":"https://rpc-cheqd.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://cheqd-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-cheqd.blockval.io","provider":"Blockval"},{"address":"https://public.stakewolle.com/cosmos/cheqd/rpc","provider":"Stakewolle"},{"address":"https://cheq-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://cheqd-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"chihuahua-1","fees":{"fee_tokens":[{"denom":"uhuahua","fixed_min_gas_price":0,"low_gas_price":500,"average_gas_price":1250,"high_gas_price":2000}]},"apis":{"rpc":[{"address":"https://rpc.chihuahua.wtf","provider":"Chihuahua"},{"address":"https://rpc-chihuahua.ecostake.com","provider":"ecostake"},{"address":"https://chihua.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://chihuahua-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-chihuahua-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/chihuahua","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.huahua.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://chihuahua-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://rpc-chihuahua.pupmos.network","provider":"PUPMØS"},{"address":"https://chihuahua-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://chihuahua-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.chihuahua.validatus.com","provider":"Validatus"},{"address":"https://chihuahua-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://chihuahua.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"}]}},{"chain_id":"chimba","fees":{"fee_tokens":[{"denom":"ucmba","fixed_min_gas_price":0.25,"low_gas_price":1,"average_gas_price":5,"high_gas_price":10}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.chimba.ooo","provider":"chimba"}]}},{"chain_id":"cifer-2","fees":{"fee_tokens":[{"denom":"ucif","fixed_min_gas_price":0.0025,"low_gas_price":1,"average_gas_price":5,"high_gas_price":10}]},"apis":{"rpc":[{"address":"http://34.128.114.243:26657","provider":"Cifer"}]}},{"chain_id":"cnho_stables-1","fees":{"fee_tokens":[{"denom":"ucnho","fixed_min_gas_price":0.000005,"low_gas_price":0.000001,"average_gas_price":0.00001,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://rpc.cnho.io","provider":"CNHO Stables"},{"address":"https://cnhostables_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"comdex-1","fees":{"fee_tokens":[{"denom":"ucmdx","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.comdex.one","provider":"comdex"},{"address":"https://comdex-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://comdex.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.comdex.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.lavenderfive.com:443/comdex","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-comdex.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://comdex-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://comdex-rpc.w3coins.io","provider":"w3coins"},{"address":"https://comdex-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://comdex-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-comdex-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://comdex-rpc.validatornode.com","provider":"ValidatorNode"},{"address":"https://rpc-comdex.blockval.io","provider":"Blockval"},{"address":"https://comdex-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://comdex-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"commercio-3","fees":{"fee_tokens":[{"denom":"ucommercio"}]},"apis":{"rpc":[{"address":"https://rpc-mainnet.commercio.network"}]}},{"chain_id":"centauri-1","fees":{"fee_tokens":[{"denom":"ppica","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-composable-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://composable-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://picasso-rpc.cogwheel.zone:443","provider":"Cogwheel βš™οΈ"},{"address":"https://rpc.lavenderfive.com:443/picasso","provider":"Lavender.Five Nodes 🐝"},{"address":"https://composable-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://picasso-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://composable.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://picasso-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.centauri.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://composable.rpc.moonbridge.team","provider":"Moonbridge"},{"address":"https://rpc.composable.citizenweb3.com:443","provider":"Citizen Web3"},{"address":"https://composable.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"cvn_2032-1","fees":{"fee_tokens":[{"denom":"acvnt","fixed_min_gas_price":100000000,"low_gas_price":100000000,"average_gas_price":200000000,"high_gas_price":300000000}]},"apis":{"rpc":[{"address":"https://rpc.cvn.io/","provider":"cvn.io"},{"address":"https://conscious_mainnet_rpc.chain.whenmoonwhenlambo.money/","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"coreum-mainnet-1","fees":{"fee_tokens":[{"denom":"ucore","fixed_min_gas_price":0.03125,"low_gas_price":0.0625,"average_gas_price":0.0625,"high_gas_price":62.5}]},"apis":{"rpc":[{"address":"https://full-node.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-californium.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-curium.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-uranium.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://rpc-coreum.ecostake.com","provider":"ecostake"},{"address":"https://coreum.rpc.silknodes.io","provider":"Silk Nodes"},{"address":"https://coreum-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.m.core.solonation.io","provider":"#SoloNation"},{"address":"https://coreum-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://coreum-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://public.stakewolle.com/cosmos/coreum/rpc","provider":"Stakewolle"},{"address":"https://coreum-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"cosmoshub-4","fees":{"fee_tokens":[{"denom":"uatom","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://cosmoshub.tendermintrpc.lava.build:443","provider":"Lava"},{"address":"https://cosmos-rpc.quickapi.com:443","provider":"Chainlayer"},{"address":"https://cosmos-rpc.onivalidator.com","provider":"Oni Validator ⛩️"},{"address":"https://rpc-cosmoshub.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc.lavenderfive.com:443/cosmoshub","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-cosmoshub.ecostake.com","provider":"ecostake"},{"address":"https://go.getblock.io/17515cb3ec0e43b7817f182e5de6066a","provider":"GetBlock RPC Nodes"},{"address":"https://rpc-cosmoshub.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-cosmoshub.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://cosmos-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://cosmos-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-cosmoshub-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-cosmoshub.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc.cosmos.dragonstake.io","provider":"DragonStake"},{"address":"https://cosmoshub.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://rpc.cosmos.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://cosmos-rpc.rockrpc.net","provider":"RockawayX Infra"},{"address":"http://rpc-cosmoshub.freshstaking.com:26657","provider":"FreshSTAKING"},{"address":"https://cosmos-rpc.easy2stake.com/","provider":"Easy 2 Stake"},{"address":"https://rpc.cosmos.nodestake.org","provider":"NodeStake"},{"address":"https://cosmos.rpc.silknodes.io","provider":"Silk Nodes"},{"address":"https://cosmos-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://cosmoshub.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.cosmoshub.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://rpc-cosmos-hub-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://cosmos-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-cosmoshub.mms.team","provider":"MMS"},{"address":"https://cosmos-rpc.tienthuattoan.com","provider":"TTT πŸ‡»πŸ‡³"},{"address":"https://community.nuxian-node.ch:6797/gaia/trpc","provider":"PRO Delegators"},{"address":"https://cosmos-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://cosmoshub-rpc.cosmosrescue.dev","provider":"cosmosrescue"},{"address":"https://cosmos.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"},{"address":"https://public.stakewolle.com/cosmos/cosmoshub/rpc","provider":"Stakewolle"},{"address":"https://rpc-cosmos.kewrnode.com","provider":"Kewr Node"},{"address":"https://rpc.cosmoshub-4.citizenweb3.com","provider":"Citizen Web3"},{"address":"https://cosmos-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://cosmos-hub.drpc.org","provider":"dRPC"},{"address":"https://cosmoshub-mainnet-rpc.itrocket.net","provider":"ITRocket"},{"address":"https://cosmoshub.rpc.quasarstaking.ai","provider":"Quasar"}]}},{"chain_id":"coss-1","fees":{"fee_tokens":[{"denom":"ucoss","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"ucgas","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"ucias","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://coss-rpc.coss.ink","provider":"StellarGuardian"},{"address":"https://coss-rpc.cias.network","provider":"CelestialPhoenix"}]}},{"chain_id":"crescent-1","fees":{"fee_tokens":[{"denom":"ucre","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://mainnet.crescent.network:26657","provider":"crescent"},{"address":"https://crescent-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-crescent.pupmos.network","provider":"PUPMØS"},{"address":"https://crescent.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://crescent-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-crescent.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://rpc-crescent-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://crescent-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc.crescent.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"cronosmainnet_25-1","fees":{"fee_tokens":[{"denom":"basecro"}]},"apis":{"rpc":[{"address":"https://rpc.cronos.org/","provider":"cronos.org"},{"address":"https://cronos-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://cronos.drpc.org","provider":"dRPC"}]}},{"chain_id":"crypto-org-chain-mainnet-1","fees":{"fee_tokens":[{"denom":"basecro","low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.crypto.org/","provider":"cronos.org"},{"address":"https://rpc-cryptoorgchain-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-cryptoorgchain.ecostake.com","provider":"ecostake"},{"address":"https://cryptocom-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://cryptocom-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-cryptoorg.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://cro-chain-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"mainnet-3","fees":{"fee_tokens":[{"denom":"udec","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://poseidon.mainnet.decentr.xyz","provider":"decentr"},{"address":"https://rpc.decentr.chaintools.tech/","provider":"ChainTools"},{"address":"https://decentr.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://decentr-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc-dcntr.nodine.id/","provider":"Nodine.ID"},{"address":"https://rpc-decentr.mms.team/","provider":"MMS"}]}},{"chain_id":"desmos-mainnet","fees":{"fee_tokens":[{"denom":"udsm","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.03,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.desmos.network","provider":"desmos"},{"address":"https://desmos-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://desmos-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc.desmos.tcnetwork.io","provider":"TC Network"},{"address":"https://rpc.desmos.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://desmos.declab.pro:26613","provider":"Decloud Nodes Lab"},{"address":"https://desmos-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"dhealth","fees":{"fee_tokens":[{"denom":"udhp","fixed_min_gas_price":0.01,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc.dhealth.com","provider":"dhealth"},{"address":"https://rpc.dhealth.nodestake.org","provider":"NodeStake"},{"address":"https://dhealth.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"}]}},{"chain_id":"vota-ash","fees":{"fee_tokens":[{"denom":"peaka","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":100000000000,"high_gas_price":100000000000}]},"apis":{"rpc":[{"address":"https://vota-rpc.dorafactory.org/","provider":"dorafactory"},{"address":"https://m-dora.rpc.utsa.tech","provider":"lesnik | UTSA"},{"address":"https://dora-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://doravota-mainnet-rpc.itrocket.net:443","provider":"ITRocket"}]}},{"chain_id":"dungeon-1","fees":{"fee_tokens":[{"denom":"udgn","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://dungeon.rpc.quasarstaking.ai","provider":"Quasar"},{"address":"https://rpc-dungeon-1.seraphim.zone","provider":"Seraphim"},{"address":"https://rpc-dungeonchain.apeironnodes.com","provider":"ApeironNodes"},{"address":"https://dungeon_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"dydx-mainnet-1","fees":{"fee_tokens":[{"denom":"adydx","fixed_min_gas_price":12500000000,"low_gas_price":12500000000,"average_gas_price":12500000000,"high_gas_price":20000000000},{"denom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://dydx-rpc.kingnodes.com:443","provider":"Kingnodes πŸ‘‘"},{"address":"https://dydx-dao-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://dydx-mainnet-full-rpc.public.blastapi.io","provider":"Bware Labs"},{"address":"https://rpc.lavenderfive.com:443/dydx","provider":"Lavender.Five Nodes 🐝"},{"address":"https://dydx-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-dydx.ecostake.com:443","provider":"ecostake"},{"address":"https://rpc.dydx.nodestake.top:443","provider":"NodeStake"},{"address":"https://rpc-dydx.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://dydx-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-dydx.cros-nest.com:443","provider":"Crosnest"},{"address":"https://dydx-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://community.nuxian-node.ch:6797/dydx/trpc","provider":"PRO Delegators"},{"address":"https://dydx-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://dydx.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"}]}},{"chain_id":"dymension_1100-1","fees":{"fee_tokens":[{"denom":"adym","fixed_min_gas_price":5000000000,"low_gas_price":5000000000,"average_gas_price":5000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://dym-m-rpc.agoranodes.com","provider":"AgoraNodes"},{"address":"https://rpc.dymension.nodestake.org","provider":"NodeStake"},{"address":"http://dymension.mainnet.rpc.noders.team:42657","provider":"[NODERS]TEAM"},{"address":"https://dymension-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.lavenderfive.com:443/dymension","provider":"Lavender.Five Nodes 🐝"},{"address":"https://dymension-rpc.kynraze.com","provider":"Kynraze"},{"address":"https://m-dymension.rpc.utsa.tech","provider":"lesnik | UTSA"},{"address":"https://rpc-dymension.nodeist.net","provider":"Nodeist"},{"address":"https://dym.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://dym.rpc-archive.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.dymension.hexnodes.co","provider":"Hexnodes"},{"address":"https://dymension.rpc.kjnodes.com:443","provider":"kjnodes.com πŸ¦„"},{"address":"https://dymension-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://dymension-rpc.takeshi.team","provider":"TAKESHI"},{"address":"https://dymension-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.dymension.silentvalidator.com:443","provider":"silent"},{"address":"https://rpc-dymension.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://community.nuxian-node.ch:6797/dymension/trpc","provider":"PRO Delegators"},{"address":"https://dymension-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://dymension-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://dymension.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://rpc-dymension.hoodrun.io:443","provider":"HoodRun"},{"address":"https://dymension.0xwave.com:2053","provider":"Wave"},{"address":"https://archive.rpc.dym.cumulo.com.es:443","provider":"Cumulo"},{"address":"https://rpc.dymension.posthuman.digital","provider":"posthuman"},{"address":"https://rpc.dymension.node75.org","provider":"Pro-Nodes75"},{"address":"https://rpc.dymension.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://dymension-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc.mainnet.dymension.aviaone.com","provider":"AVIAONE 🟒"},{"address":"https://rpc.archive.dymension.mainnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://dymension.drpc.org","provider":"dRPC"}]}},{"chain_id":"dyson-mainnet-01","fees":{"fee_tokens":[{"denom":"dys","low_gas_price":0.0001,"average_gas_price":0.0002,"high_gas_price":0.0003}]},"apis":{"rpc":[{"address":"https://dys-tm.dysonprotocol.com:443","provider":"dysonprotocol"},{"address":"https://dyson-rpc.cogwheel.zone:443","provider":"cogwheel"}]}},{"chain_id":"echelon_3000-3","fees":{"fee_tokens":[{"denom":"aechelon","low_gas_price":10000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://ech01trpc.mindheartsoul.org","provider":"Mind Heart Soul"},{"address":"https://rpc.echjoker.lol","provider":"⚑ Echelon Joker βš› πŸƒ"}]}},{"chain_id":"elys-1","fees":{"fee_tokens":[{"denom":"uelys","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.elys.network:443","provider":"Elys Network"},{"address":"https://elys-rpc.polkachu.com:443","provider":"Polkachu"},{"address":"https://elys-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://elys-mainnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://rpc.elys.nodestake.org:443","provider":"NodeStake"}]}},{"chain_id":"emoney-3","fees":{"fee_tokens":[{"denom":"ungm","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"eeur","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"echf","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"enok","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"esek","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"edkk","low_gas_price":1,"average_gas_price":1,"high_gas_price":1}]},"apis":{"rpc":[{"address":"https://emoney.validator.network","provider":"e-Money"},{"address":"https://rpc-emoney-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.emoney.bh.rocks","provider":"BlockHunters 🎯"}]}},{"chain_id":"empowerchain-1","fees":{"fee_tokens":[{"denom":"umpwr","fixed_min_gas_price":0,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-empowerchain.ecostake.com:443","provider":"ecostake"},{"address":"https://empowerchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://empower.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"http://empw.rpc.m.stavr.tech:22057","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-empowerchain.mzonder.com:443","provider":"MZONDER"},{"address":"https://empower-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-empower.vinjan.xyz:443","provider":"vinjan"},{"address":"https://rpc.empower.nodestake.top","provider":"NodeStake"},{"address":"https://mainnet-empower-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://empower.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://rpc.empowerchain.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://empower.declab.pro:26607","provider":"Decloud Nodes Lab"},{"address":"https://empower-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://empower-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"epix_4242-1","fees":{"fee_tokens":[{"denom":"aepix","fixed_min_gas_price":1000000000000,"low_gas_price":1000000000000,"average_gas_price":2000000000000,"high_gas_price":3000000000000}]},"apis":{"rpc":[{"address":"https://epix.rpc.silknodes.io/","provider":"Silk Nodes"}]}},{"chain_id":"1","fees":{"fee_tokens":[{"denom":"wei","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"ethos_7003-1","fees":{"fee_tokens":[{"denom":"aRYT"}]},"apis":{"rpc":[{"address":"https://ethos-rpc.provable.dev:443/","provider":"laurel.provable"}]}},{"chain_id":"evmos_9001-2","fees":{"fee_tokens":[{"denom":"aevmos","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/evmos","provider":"Lavender.Five Nodes 🐝"},{"address":"https://tendermint.bd.evmos.org:26657","provider":"Blockdaemon"},{"address":"https://rpc-evmos-ia.cosmosia.notional.ventures:443","provider":"Notional"},{"address":"https://rpc.evmos.testnet.run","provider":"TestNetRun"},{"address":"https://rpc.evmos.nodestake.top","provider":"NodeStake"},{"address":"https://rpc.evmos.chaintools.tech/","provider":"ChainTools"},{"address":"https://evmos-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.evmos.silentvalidator.com/","provider":"silent"},{"address":"https://rpc.evmos.tcnetwork.io","provider":"TC Network"},{"address":"https://evmos.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://rpc-evmos.architectnodes.com","provider":"Architect Nodes"},{"address":"https://evmos-rpc.validatrium.club","provider":"Validatrium"},{"address":"https://evmos-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-evmos-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://evmos-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://rpc-evmos.validavia.me","provider":"Validavia"},{"address":"https://evmos-rpc.w3coins.io","provider":"w3coins"},{"address":"https://evmos-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://evmos.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://evmos-rpc.antrixy.org/","provider":"Antrix Validators"},{"address":"https://evmos-mainnet.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://rpc.evmos.validatus.com","provider":"Validatus"},{"address":"https://rpc.evmos.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.evmos.citizenweb3.com:443","provider":"Citizen Web3"},{"address":"https://evmos.drpc.org","provider":"dRPC"}]}},{"chain_id":"fetchhub-4","fees":{"fee_tokens":[{"denom":"afet","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc-fetchhub.fetch.ai:443","provider":"fetch.ai"},{"address":"https://rpc-fetchhub-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://fetch-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://fetchai-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://fetch-rpc.antrixy.org","provider":"Antrix"},{"address":"https://rpc-fetch.architectnodes.com","provider":"Architect Nodes"},{"address":"https://fetchhub-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://fetch-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://fetch-rpc.cosmosrescue.com","provider":"cosmosrescue"},{"address":"https://fetch-rpc.w3coins.io","provider":"w3coins"},{"address":"https://fetch-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://fetch-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://public.stakewolle.com/cosmos/fetchhub/rpc","provider":"Stakewolle"},{"address":"https://fetch.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://rpc.fetchhub-4.fetch.aviaone.com","provider":"AVIAONE 🟒"},{"address":"https://fetchai-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"finschia-2","fees":{"fee_tokens":[{"denom":"cony","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.015,"high_gas_price":0.015}]},"apis":{"rpc":[{"address":"https://finschia-rpc.finschia.io"}]}},{"chain_id":"colosseum-1","fees":{"fee_tokens":[{"denom":"ufct","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.15,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://lcd-mainnet.firmachain.dev:26657","provider":"FirmaChain"},{"address":"https://firma.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.firmachain.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.lavenderfive.com:443/firmachain","provider":"Lavender.Five Nodes 🐝"},{"address":"https://firmachain-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://firmachain.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://firmachain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"furya-1","fees":{"fee_tokens":[{"denom":"ufury","low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.5}]},"apis":{"rpc":[{"address":"https://furya-rpc.synergynodes.com","provider":"synergynodes"},{"address":"https://furya.rpc.nodeshub.online:443","provider":"nodeshub"}]}},{"chain_id":"fxcore","fees":{"fee_tokens":[{"denom":"FX","fixed_min_gas_price":4000000000000,"low_gas_price":4000000000000,"average_gas_price":4200000000000,"high_gas_price":5000000000000}]},"apis":{"rpc":[{"address":"https://fx-json.functionx.io","provider":"Function X"},{"address":"https://functionx.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"}]}},{"chain_id":"galaxy-1","fees":{"fee_tokens":[{"denom":"uglx","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[]}},{"chain_id":"wormchain","fees":{"fee_tokens":[{"denom":"utest","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://tncnt-eu-wormchain-main-01.rpc.p2p.world/","provider":"P2P"},{"address":"https://wormchain-rpc.quickapi.com/","provider":"ChainLayer"}]}},{"chain_id":"genesis_29-2","fees":{"fee_tokens":[{"denom":"el1","low_gas_price":51000000000,"average_gas_price":52000000000,"high_gas_price":53000000000}]},"apis":{"rpc":[{"address":"https://26657.genesisl1.org","provider":"GenesisL1"},{"address":"https://genesisl1-rpc.zenode.app","provider":"anodeofzen"}]}},{"chain_id":"gitopia","fees":{"fee_tokens":[{"denom":"ulore","fixed_min_gas_price":0.001,"low_gas_price":0.0012,"average_gas_price":0.0016,"high_gas_price":0.0024}]},"apis":{"rpc":[{"address":"https://gitopia-rpc.polkachu.com:443","provider":"polkachu"},{"address":"https://rpc.lavenderfive.com:443/gitopia","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.gitopia.nodestake.org:443","provider":"nodestake"},{"address":"https://gitopia-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://gitopia-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://m-gitopia.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://gitopia.rpc.m.stavr.tech:51057","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://gitopia-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://gitopia.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://gitopia-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.gitopia.silentvalidator.com","provider":"silent"},{"address":"https://gitopia-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://rpc-gitopia.mzonder.com","provider":"MZONDER"},{"address":"https://gitopia.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.gitopia.sgtstake.com","provider":"SGTstake"},{"address":"https://mainnet-gitopia-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.gitopia.roomit.xyz","provider":"Roomit"},{"address":"https://gitopia.rpc.moonbridge.team","provider":"Moonbridge"},{"address":"https://gitopia-rpc.stakeangle.com","provider":"StakeAngle"},{"address":"https://gitopia.rpc.m.anode.team","provider":"AlxVoy ⚑ ANODE.TEAM"},{"address":"https://gitopia.rpc.stakevillage.net","provider":"Stake Village"},{"address":"https://gitopia-rpc.enigma-validator.com/","provider":"Enigma"},{"address":"https://rpc.gitopia.tcnetwork.io/","provider":"TC Network"},{"address":"https://gitopia.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://rpc.gitopia.stakeup.tech/","provider":"StakeUp"},{"address":"https://gitopia-mainnet.rpc.l0vd.com:443","provider":"L0vd.com ❀️"},{"address":"https://gitopia-rpc.tothemars.network:443","provider":"ToTheMars"},{"address":"https://gitopia.declab.pro:26625","provider":"Decloud Nodes Lab"},{"address":"https://gitopia-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"govgen-1","fees":{"fee_tokens":[{"denom":"ugovgen","fixed_min_gas_price":0.001,"low_gas_price":0.006,"average_gas_price":0.006,"high_gas_price":0.009}]},"apis":{"rpc":[{"address":"https://rpc.govgen.io:443","provider":"AllInBits"},{"address":"https://rpc-govgen.sg-1.online/","provider":"SG-1"},{"address":"https://govgen.rpc.nodeshub.online:443","provider":"Nodes Hub"},{"address":"https://govgen-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.govgen.posthuman.digital:443","provider":"posthuman"},{"address":"https://rpc-govgen.kewrnode.com/","provider":"Kewr Node"}]}},{"chain_id":"gravity-bridge-3","fees":{"fee_tokens":[{"denom":"ugraviton","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.035},{"denom":"gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","low_gas_price":0.0002,"average_gas_price":0.0005,"high_gas_price":0.0008},{"denom":"gravity0xdAC17F958D2ee523a2206206994597C13D831ec7","low_gas_price":0.0002,"average_gas_price":0.0005,"high_gas_price":0.0008}]},"apis":{"rpc":[{"address":"https://gravitychain.io:26657","provider":"althea"},{"address":"http://gravity-bridge-1-08.nodes.amhost.net:26657","provider":"amhost"},{"address":"https://gravity-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-gravitybridge-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/gravitybridge","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.gravity.bh.rocks/","provider":"BlockHunters 🎯"},{"address":"https://gravity-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://gravity-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://rpc-gravity-bridge-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://gravity-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://gravity-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc.g-bridge.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.gravity-bridge-3.gravity.aviaone.com:443","provider":"AviaOne 🟒"}]}},{"chain_id":"haqq_11235-1","fees":{"fee_tokens":[{"denom":"aISLM","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.tm.haqq.network","provider":"Haqq"},{"address":"https://rpc.haqq.sh","provider":"kioqq"},{"address":"https://rpc.haqq.nodestake.org","provider":"NodeStake"},{"address":"https://haqq-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.lavenderfive.com:443/haqq","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-haqq.sr20de.xyz:443","provider":"Sr20de"},{"address":"https://haqq-rpc.palamar.io","provider":"Palamar"},{"address":"https://haqq-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://haqq.drpc.org","provider":"dRPC"},{"address":"https://haqq.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"helichain","fees":{"fee_tokens":[{"denom":"uheli","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://rpc.helichain.com/","provider":"HeliChain"}]}},{"chain_id":"highbury_710-1","fees":{"fee_tokens":[{"denom":"ufury","low_gas_price":0.05,"average_gas_price":0.1,"high_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://gridiron.furya.io","provider":"fanfury"}]}},{"chain_id":"humans_1089-1","fees":{"fee_tokens":[{"denom":"aheart","fixed_min_gas_price":250000000,"low_gas_price":80000000000,"average_gas_price":100000000000,"high_gas_price":160000000000}]},"apis":{"rpc":[{"address":"https://rpc.humans.nodestake.org","provider":"NodeStake"},{"address":"https://humans.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://humans.rpc.nodeshub.online","provider":"NodesHub"},{"address":"https://humans-mainnet-rpc.itrocket.net","provider":"itrocket"},{"address":"https://humans-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-humansai.thenop.io:443","provider":"TheNOP.io"},{"address":"https://humans-rpc.stakeangle.com/","provider":"StakeAngle"},{"address":"https://humans-rpc.anyvalid.com:26627","provider":"AnyValid"},{"address":"https://mainnet-humans-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"http://65.21.46.90:5657","provider":"PPNV Service"},{"address":"https://rpc.humans-mainnet.stake-take.com/","provider":"Stake-Take"},{"address":"https://rpc.humans.posthuman.digital","provider":"posthuman"},{"address":"https://humans-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://humans-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://humans-mainnet-rpc.cosmonautstakes.com","provider":"Cosmonaut Stakes πŸ€–"}]}},{"chain_id":"Antora","fees":{"fee_tokens":[{"denom":"idep","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"ixo-5","fees":{"fee_tokens":[{"denom":"uixo","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://proxies.sifchain.finance/api/impacthub-3/rpc","provider":"sifchain"},{"address":"https://impacthub.ixo.world/rpc/","provider":"ixoworld"},{"address":"https://ixo.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-ixo-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/impacthub","provider":"Lavender.Five Nodes 🐝"},{"address":"https://ixo-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://ixo-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://impacthub_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"imversed_5555555-1","fees":{"fee_tokens":[{"denom":"aimv","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[]}},{"chain_id":"injective-1","fees":{"fee_tokens":[{"denom":"inj","fixed_min_gas_price":160000000,"low_gas_price":500000000,"average_gas_price":700000000,"high_gas_price":900000000}]},"apis":{"rpc":[{"address":"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rpc.newmetric.xyz","provider":"NewMetric"},{"address":"https://rpc.injective.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://injective-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.lavenderfive.com:443/injective","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-injective-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://injective-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-injective.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc-injective-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://injective-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://injective-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://public.stakewolle.com/cosmos/injective/rpc","provider":"Stakewolle"},{"address":"https://rpc.injective.bronbro.io/","provider":"Bro_n_Bro"},{"address":"https://injective-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc-injective.ecostake.com","provider":"ecostake"},{"address":"https://rpc-injective.kewrnode.com","provider":"Kewr Node"}]}},{"chain_id":"int3face-1","fees":{"fee_tokens":[{"denom":"uint3","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc","fixed_min_gas_price":1e-7,"low_gas_price":1e-7,"average_gas_price":0.0000025,"high_gas_price":0.000004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch","fixed_min_gas_price":0.000001,"low_gas_price":0.000001,"average_gas_price":0.000025,"high_gas_price":0.00004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc","fixed_min_gas_price":0.000001,"low_gas_price":0.000001,"average_gas_price":0.000025,"high_gas_price":0.00004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/ton-ton","fixed_min_gas_price":0.0001,"low_gas_price":0.0001,"average_gas_price":0.00025,"high_gas_price":0.0004}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.int3face.zone","provider":"Int3face.io"}]}},{"chain_id":"irishub-1","fees":{"fee_tokens":[{"denom":"uiris","low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc-irisnet-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-irisnet-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://irisnet-rpc.w3coins.io","provider":"w3coins"},{"address":"https://iris-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://iris-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://mainnet-iris-rpc.konsortech.xyz","provider":"KonsorTech"}]}},{"chain_id":"jackal-1","fees":{"fee_tokens":[{"denom":"ujkl","fixed_min_gas_price":0,"low_gas_price":0.002,"average_gas_price":0.002,"high_gas_price":0.02}]},"apis":{"rpc":[{"address":"https://rpc.jackalprotocol.com","provider":"Jackal Labs"},{"address":"https://rpc.lavenderfive.com:443/jackal","provider":"Lavender.Five Nodes 🐝"},{"address":"http://jkl.rpc.m.stavr.tech:11127","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://jackal.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://rpc.jackal.nodestake.org","provider":"NodeStake"},{"address":"https://rpc-jackal.nodeist.net","provider":"Nodeist"},{"address":"https://jackal-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://m-jackal.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc-jackal.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://jackal-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://jackal.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://jackal.rpc.silknodes.io","provider":"Silk Nodes"},{"address":"https://jackal.rpc.skynodejs.net","provider":"skynodejs"},{"address":"https://public.stakewolle.com/cosmos/jackal/rpc","provider":"Stakewolle"},{"address":"https://rpc.jackal.silentvalidator.com","provider":"silent"},{"address":"https://rpc.jackal.mathnodes.com","provider":"MathNodes"},{"address":"https://jackal-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://jackal-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"joltify_1729-1","fees":{"fee_tokens":[{"denom":"ujolt","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.joltify.io","provider":"joltify"},{"address":"https://joltify_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"juno-1","fees":{"fee_tokens":[{"denom":"ujuno","fixed_min_gas_price":0.075,"low_gas_price":0.075,"average_gas_price":0.1,"high_gas_price":0.125},{"denom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","fixed_min_gas_price":0.003,"low_gas_price":0.003,"average_gas_price":0.0035,"high_gas_price":0.004}]},"apis":{"rpc":[{"address":"https://rpc-juno.itastakers.com","provider":"itastakers"},{"address":"http://juno.rpc.m.stavr.tech:1067","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://juno-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.lavenderfive.com:443/juno","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-juno.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-juno.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://rpc-juno-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.juno.chaintools.tech/","provider":"ChainTools"},{"address":"https://juno-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://juno-rpc.icycro.org","provider":"IcyCRO 🧊"},{"address":"https://rpc.juno.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://juno-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://juno-rpc.reece.sh","provider":"Reecepbcups"},{"address":"https://juno-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"},{"address":"https://rpc-juno.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc-juno-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-juno.validavia.me","provider":"Validavia"},{"address":"https://juno-rpc.w3coins.io","provider":"w3coins"},{"address":"https://juno-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://juno-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc-juno.mainnet.validatrium.club:443","provider":"Validatrium"},{"address":"https://juno-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.juno.validatus.com","provider":"Validatus"},{"address":"https://rpc.juno.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://juno-rpc.cogwheel.zone","provider":"Cogwheel"},{"address":"https://juno.declab.pro:26610","provider":"Decloud Nodes Lab"},{"address":"https://juno.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://juno-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"kava_2222-10","fees":{"fee_tokens":[{"denom":"ukava","low_gas_price":0.05,"average_gas_price":0.1,"high_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://rpc.data.kava.io","provider":"kava"},{"address":"https://kava-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-kava-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://kava-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://kava-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc-kava-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://kava-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://kava.drpc.org","provider":"dRPC"}]}},{"chain_id":"kichain-2","fees":{"fee_tokens":[{"denom":"uxki","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc-mainnet.blockchain.ki","provider":"kifoundation"},{"address":"https://kichain-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-kichain-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://kichain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.kichain.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.lavenderfive.com:443/kichain","provider":"Lavender.Five Nodes 🐝"},{"address":"http://ki-chain.statesync.nodersteam.com:14657","provider":"[NODERS]TEAM"},{"address":"https://ki-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc.kichain-2.kichain.aviaone.com","provider":"AVIAONE 🟒"}]}},{"chain_id":"kima_network","fees":{"fee_tokens":[{"denom":"uKIMA","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.kima.network/","provider":"Kima Network"}]}},{"chain_id":"darchub","fees":{"fee_tokens":[{"denom":"udarc","fixed_min_gas_price":0,"low_gas_price":0.0001,"average_gas_price":0.001,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc-konstellation-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://konstellation-rpc.stakerhouse.com","provider":"StakerHouse"}]}},{"chain_id":"luwak-1","fees":{"fee_tokens":[{"denom":"ukopi","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.kopi.money","provider":"Kopi Foundation"},{"address":"https://rpc.kopi.chaintools.tech","provider":"Chaintools"},{"address":"https://kopi-rpc.cosmoscan.com","provider":"Cosmoscan"},{"address":"https://kopi-rpc.stakerhouse.com","provider":"Stakerhouse"},{"address":"https://kopi.rpc.moonbridge.team","provider":"Moonbridge"},{"address":"https://rpc-kopid.vinjan.xyz/","provider":"Vinjan"},{"address":"https://kopi-mainnet-rpc.bonynode.online","provider":"Bony"},{"address":"https://kopi-rpc.bluestake.net:443","provider":"Bluestake"},{"address":"https://rpc-kopi.sychonix.com","provider":"Sychonix"},{"address":"https://kopi-rpc.node9x.com/","provider":"Node9x"},{"address":"https://kopi.rpc.nodeshub.online/","provider":"NodesHub"},{"address":"https://kopi-rpc.polkachu.com/","provider":"Polkachu"}]}},{"chain_id":"kaiyo-1","fees":{"fee_tokens":[{"denom":"ukuji","fixed_min_gas_price":0.0034,"low_gas_price":0.0034,"average_gas_price":0.0051,"high_gas_price":0.00681},{"denom":"factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk","fixed_min_gas_price":0.01186,"low_gas_price":0.01186,"average_gas_price":0.01779,"high_gas_price":0.02372},{"denom":"ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F","fixed_min_gas_price":0.0119,"low_gas_price":0.0119,"average_gas_price":0.01785,"high_gas_price":0.02379},{"denom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","fixed_min_gas_price":0.00129,"low_gas_price":0.00129,"average_gas_price":0.00193,"high_gas_price":0.00258},{"denom":"ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23","fixed_min_gas_price":0.01795,"low_gas_price":0.01795,"average_gas_price":0.02692,"high_gas_price":0.0359},{"denom":"ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07","fixed_min_gas_price":0.65943,"low_gas_price":0.65943,"average_gas_price":0.98915,"high_gas_price":1.31887},{"denom":"ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10","fixed_min_gas_price":160416396197,"low_gas_price":160416396197,"average_gas_price":240624594296,"high_gas_price":320832792394},{"denom":"ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5","fixed_min_gas_price":0.02689,"low_gas_price":0.02689,"average_gas_price":0.04034,"high_gas_price":0.05379},{"denom":"ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986","fixed_min_gas_price":0.01495,"low_gas_price":0.01495,"average_gas_price":0.02243,"high_gas_price":0.02991},{"denom":"ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5","fixed_min_gas_price":0.03139,"low_gas_price":0.03139,"average_gas_price":0.04709,"high_gas_price":0.06278},{"denom":"ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602","fixed_min_gas_price":0.90403,"low_gas_price":0.90403,"average_gas_price":1.35605,"high_gas_price":1.80806},{"denom":"ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2","fixed_min_gas_price":559196837,"low_gas_price":559196837,"average_gas_price":838795256,"high_gas_price":1118393675},{"denom":"ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7","fixed_min_gas_price":5772801,"low_gas_price":5772801,"average_gas_price":8659201,"high_gas_price":11545602},{"denom":"factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta","fixed_min_gas_price":0.01807,"low_gas_price":0.01807,"average_gas_price":0.02711,"high_gas_price":0.03615},{"denom":"ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9","fixed_min_gas_price":0.01194,"low_gas_price":0.01194,"average_gas_price":0.01792,"high_gas_price":0.02389},{"denom":"ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3","fixed_min_gas_price":0.00019,"low_gas_price":0.00019,"average_gas_price":0.00029,"high_gas_price":0.00039}]},"apis":{"rpc":[{"address":"https://rpc.kaiyo.kujira.setten.io","provider":"setten.io"},{"address":"https://kujira-rpc.polkachu.com","provider":"polkachu"},{"address":"https://rpc.lavenderfive.com:443/kujira","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.kujira.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc-kujira-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://kujira-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc-kujira.starsquid.io","provider":"Starsquid"},{"address":"https://kujira.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://kuji-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://rpc-kujira.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://kujira-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.kujira.rektdao.club","provider":"rektDAO"},{"address":"https://kujira-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://kujira-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-kujira.mms.team","provider":"MMS"},{"address":"https://kujira-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://kujira.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"}]}},{"chain_id":"kyve-1","fees":{"fee_tokens":[{"denom":"ukyve","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc.kyve.network","provider":"kyve"},{"address":"https://rpc-kyve.ecostake.com","provider":"ecostake"},{"address":"https://rpc.lavenderfive.com:443/kyve","provider":"Lavender.Five Nodes 🐝"},{"address":"http://kyve.rpc.m.stavr.tech:12357","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-kyve.imperator.co","provider":"Imperator.co"},{"address":"https://kyve-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc.kyve.nodestake.top","provider":"NodeStake"},{"address":"https://kyve.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://rpc-kyve.mms.team","provider":"MMS"},{"address":"https://kyve.declab.pro:26616","provider":"Decloud Nodes Lab"},{"address":"https://kyve-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://kyve_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://kyve-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"lambda_92000-1","fees":{"fee_tokens":[{"denom":"ulamb","low_gas_price":10000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.lambda.im","provider":"Lambda"},{"address":"http://lambda.rpc.m.stavr.tech:31327","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lambda.nodestake.top","provider":"NodeStake"},{"address":"https://lambda-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://lambda_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"lava-mainnet-1","fees":{"fee_tokens":[{"denom":"ulava","fixed_min_gas_price":0.00002,"low_gas_price":0.00002,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://lava.tendermintrpc.lava.build","provider":"Lava Over Lava"},{"address":"https://lava-rpc.w3coins.io:443","provider":"w3coins"},{"address":"https://lava-rpc.finteh.org:26657","provider":"finteh"},{"address":"https://lava-rpc.y2.finance:443","provider":"YTWOFUND"},{"address":"https://lava-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://rpc.lava-mainnet-1.lava.aviaone.com:443","provider":"AVIAONE 🟒"},{"address":"https://rpc-lava.r93axnodes.cloud:443","provider":"r93AX Nodes"},{"address":"https://lava-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://lava.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://lava.rpc-archive.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://lava-rpc.stake-town.com:443","provider":"StakeTown"},{"address":"https://lava.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://lava-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://lava-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://lava.rpc.stakevillage.net:443","provider":"Stake Village"}]}},{"chain_id":"likecoin-mainnet-2","fees":{"fee_tokens":[{"denom":"nanolike","fixed_min_gas_price":1000,"low_gas_price":1000,"average_gas_price":10000,"high_gas_price":1000000}]},"apis":{"rpc":[{"address":"https://mainnet-node.like.co/rpc/","provider":"like.co"},{"address":"https://likecoin-node.oldcat.io:443/rpc/","provider":"Oldcat"},{"address":"https://like.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-likecoin-mainnet.pikaser.net","provider":"PikaSer"},{"address":"https://rpc.likecoin.citizenweb3.com:443","provider":"Citizen Web3"}]}},{"chain_id":"logos_7002-1","fees":{"fee_tokens":[{"denom":"aLYT"}]},"apis":{"rpc":[{"address":"https://logos-rpc.provable.dev:443/","provider":"laurel.provable"}]}},{"chain_id":"loop-1","fees":{"fee_tokens":[{"denom":"token","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.loop.pfc.zone/","provider":"PFC"}]}},{"chain_id":"lorenzo_8329-1","fees":{"fee_tokens":[{"denom":"stBTC","fixed_min_gas_price":2000000,"low_gas_price":2000000,"average_gas_price":2000000,"high_gas_price":8000000}]},"apis":{"rpc":[{"address":"https://rpc-cosmos.lorenzo-protocol.xyz/","provider":"Lorenzo Protocol"}]}},{"chain_id":"loyal-main-02","fees":{"fee_tokens":[{"denom":"ulyl","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-main.joinloyal.io/"},{"address":"https://loyal-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"lum-network-1","fees":{"fee_tokens":[{"denom":"ulum","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.node0.mainnet.lum.network","provider":"Lum Foundation"},{"address":"https://lum.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/lumnetwork","provider":"Lavender.Five Nodes 🐝"},{"address":"https://lum-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://lum-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://lumnetwork_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"mande_18071918-1","fees":{"fee_tokens":[{"denom":"amand","low_gas_price":20000000000,"average_gas_price":20000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://mande-mainnet-tendermint.public.blastapi.io","provider":"BlastAPI"}]}},{"chain_id":"mantra-1","fees":{"fee_tokens":[{"denom":"uom","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.mantrachain.io","provider":"MANTRACHAIN"},{"address":"https://rpc-mantra.r93axnodes.cloud:443","provider":"r93AX Nodes"},{"address":"https://mantrachain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://mantra-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://mantra-mainnet-rpc.itrocket.net:443","provider":"ITRocket"},{"address":"https://mantra.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"mars-1","fees":{"fee_tokens":[{"denom":"umars","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.marsprotocol.io:443","provider":"Delphi Labs"},{"address":"https://rpc.lavenderfive.com:443/mars","provider":"Lavender.Five Nodes 🐝"},{"address":"https://mars-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://mars-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.expedition-mars.com","provider":"Expedition Mars"},{"address":"https://mars-rpc.genznodes.dev:443","provider":"genznodes"},{"address":"https://mars-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"},{"address":"https://mars-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://mars-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"}]}},{"chain_id":"mayachain-mainnet-v1","apis":{"rpc":[{"address":"https://tendermint.mayachain.info","provider":"tendermint"}]}},{"chain_id":"medasdigital-2","fees":{"fee_tokens":[{"denom":"umedas","low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc.medas-digital.io:26657/","provider":"Neptun Validator"}]}},{"chain_id":"meme-1","fees":{"fee_tokens":[{"denom":"umeme","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.035,"high_gas_price":0.045}]},"apis":{"rpc":[{"address":"https://rpc-meme-1.meme.sx/","provider":"MEME Foundation"},{"address":"https://meme-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-meme.pupmos.network/","provider":"PUPMØS"},{"address":"https://meme.rpc.m.anode.team","provider":"ANODE TEAM"}]}},{"chain_id":"migaloo-1","fees":{"fee_tokens":[{"denom":"uwhale","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":2,"high_gas_price":3}]},"apis":{"rpc":[{"address":"https://migaloo-rpc.polkachu.com:443","provider":"Polkachu"},{"address":"https://rpc-migaloo.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://migaloo-rpc.kleomedes.network:443","provider":"Kleomedes"},{"address":"https://rpc.whitewhale.nodestake.top","provider":"NodeStake"},{"address":"https://migaloo-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://migaloo-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"milkyway","fees":{"fee_tokens":[{"denom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035},{"denom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035},{"denom":"ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035},{"denom":"ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0","fixed_min_gas_price":0.02,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.milkyway.zone/","provider":"MilkyWay Labs"}]}},{"chain_id":"mainnet","fees":{"fee_tokens":[{"denom":"umis","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.gw.mises.site:443","provider":"Mises-1"},{"address":"https://e2.mises.site:443","provider":"Mises-3"}]}},{"chain_id":"mtgbp-1","fees":{"fee_tokens":[{"denom":"mtgbp","low_gas_price":0.000001,"average_gas_price":0.000005,"high_gas_price":0.0001}]},"apis":{"rpc":[{"address":"https://rcp.mtgbp.com","provider":"mtgbp"}]}},{"chain_id":"mun-1","fees":{"fee_tokens":[{"denom":"umun","fixed_min_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://mainnet1rpc.mun.money","provider":"Mun"},{"address":"https://mainnet-mun-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.mun.tcnetwork.io","provider":"TC Network"},{"address":"https://mun_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"mythos_7001-1","fees":{"fee_tokens":[{"denom":"aMYT"}]},"apis":{"rpc":[{"address":"https://mythos-rpc.provable.dev:443/","provider":"laurel.provable"}]}},{"chain_id":"neura_266-1","fees":{"fee_tokens":[{"denom":"atankr"}]},"apis":{"rpc":[]}},{"chain_id":"Neutaro-1","fees":{"fee_tokens":[{"denom":"uneutaro","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc2.neutaro.io:443","provider":"Neutaro"},{"address":"https://rpc3.neutaro.io:443","provider":"Neutaro"}]}},{"chain_id":"neutron-1","fees":{"fee_tokens":[{"denom":"untrn","low_gas_price":0.0053,"average_gas_price":0.0053,"high_gas_price":0.0053},{"denom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","low_gas_price":0.0008,"average_gas_price":0.0008,"high_gas_price":0.0008},{"denom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","low_gas_price":0.008,"average_gas_price":0.008,"high_gas_price":0.008},{"denom":"factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH","low_gas_price":2903231.6597,"average_gas_price":2903231.6597,"high_gas_price":2903231.6597},{"denom":"ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130","low_gas_price":2564102564.1026,"average_gas_price":2564102564.1026,"high_gas_price":2564102564.1026},{"denom":"ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7","low_gas_price":0.0004,"average_gas_price":0.0004,"high_gas_price":0.0004}]},"apis":{"rpc":[{"address":"https://rpc-voidara.neutron-1.neutron.org","provider":"Neutron"},{"address":"https://rpc-pulsarix.neutron-1.neutron.org","provider":"Neutron"},{"address":"https://rpc.novel.remedy.tm.p2p.org","provider":"P2P"},{"address":"https://rpc.lavenderfive.com:443/neutron","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-neutron.whispernode.com","provider":"WhisperNode 🀐"},{"address":"https://rpc-neutron.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"http://rpc.neutron.nodestake.org","provider":"NodeStake"},{"address":"https://neutron-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://community.nuxian-node.ch:6797/neutron/trpc","provider":"PRO Delegators"},{"address":"https://rpc.neutron.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.neutron.quokkastake.io","provider":"🐹 Quokka Stake"},{"address":"https://neutron.drpc.org","provider":"dRPC"}]}},{"chain_id":"cataclysm-1","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.nibiru.fi","provider":"Nibiru Foundation"},{"address":"https://nibiru.rpc.kjnodes.com","provider":"kjnodes.com πŸ¦„"},{"address":"https://rpc.nibiru.nodestake.org","provider":"NodeStake"},{"address":"https://rpc.lavenderfive.com:443/nibiru","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.nibiru.silentvalidator.com","provider":"silent"},{"address":"https://nibiru.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://nibiru-rpc.cogwheel.zone","provider":"Cogwheel βš™οΈ"},{"address":"https://nibiru.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://nibiru.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://nibiru-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://nibiru-mainnet.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://nibiru-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.nibiru.roomit.xyz","provider":"Roomit"},{"address":"https://nibiru_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"nim_1122-1","fees":{"fee_tokens":[{"denom":"anim","low_gas_price":20000000000,"average_gas_price":20000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.nimnet.tech","provider":"NIM Foundation"}]}},{"chain_id":"noble-1","fees":{"fee_tokens":[{"denom":"uusdc","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.1,"high_gas_price":0.2},{"denom":"ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.01,"high_gas_price":0.02}]},"apis":{"rpc":[{"address":"https://noble-rpc.polkachu.com","provider":"polkachu"},{"address":"https://rpc.lavenderfive.com:443/noble","provider":"Lavender.Five Nodes 🐝"},{"address":"https://noble-rpc.owallet.io","provider":"OWALLET"}]}},{"chain_id":"pirin-1","fees":{"fee_tokens":[{"denom":"unls","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"rpc.nolus.network","provider":"NolusProtocol"},{"address":"https://nolus-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.lavenderfive.com:443/nolus","provider":"Lavender.Five Nodes 🐝"},{"address":"https://nolus.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://rpc-nolus.architectnodes.com","provider":"Architect Nodes"},{"address":"https://nolus.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://nolus-rpc.enigma-validator.com/","provider":"Enigma"},{"address":"https://nolus-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-nolus.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://nolus-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://nolus-rpc.ibs.team","provider":"Inter Blockchain Services"}]}},{"chain_id":"nomic-stakenet-3","fees":{"fee_tokens":[{"denom":"unom","low_gas_price":0,"average_gas_price":0,"high_gas_price":0},{"denom":"usat","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://stakenet-rpc.nomic.io:2096","provider":"nomic-io"},{"address":"https://nomic-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-nomic.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc.nomic.basementnodes.ca:443","provider":"Basement Nodes ⚑️"},{"address":"https://rpc.nomic.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"nyx","fees":{"fee_tokens":[{"denom":"unym","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"unyx","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.nymtech.net/","provider":"Nym"},{"address":"https://rpc.nyx.nodes.guru/","provider":"nodes guru"},{"address":"https://rpc.nym.forbole.com/","provider":"forbole"},{"address":"https://nym-mainnet-rpc.commodum.io/","provider":"commodum"},{"address":"https://nym-rpc.polkachu.com/","provider":"Polkachu"}]}},{"chain_id":"octa","fees":{"fee_tokens":[{"denom":"uocta","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"odin-mainnet-freya","fees":{"fee_tokens":[{"denom":"loki","fixed_min_gas_price":0.0125,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc.odinprotocol.io","provider":"Heimdall Gateway"},{"address":"https://odin.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/odin","provider":"Lavender.Five Nodes 🐝"},{"address":"https://odin-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"exchain-66","fees":{"fee_tokens":[{"denom":"wei","low_gas_price":200000000,"average_gas_price":250000000,"high_gas_price":400000000}]},"apis":{"rpc":[{"address":"https://exchaintmrpc.okex.org","provider":"okx chain"}]}},{"chain_id":"omniflixhub-1","fees":{"fee_tokens":[{"denom":"uflix","fixed_min_gas_price":0,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://omniflix-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://rpc.omniflix.nodestake.org","provider":"NodeStake"},{"address":"https://rpc.omniflix.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc-omniflixhub-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/omniflixhub","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.omniflix.silentvalidator.com/","provider":"silent"},{"address":"https://omniflixhub-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-omniflix.architectnodes.com","provider":"Architect Nodes"},{"address":"https://omniflix-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-omniflixhub.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://omniflix-rpc.dakshavalidator.in","provider":"Daksha Validator"},{"address":"https://rpc-omniflix.mzonder.com:443","provider":"MZONDER"},{"address":"https://rpc.omniflix.stakeup.tech:443","provider":"StakeUp"},{"address":"https://rpc.omniflix.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://omniflix-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://mainnet.omniflix.rpc.srv.stakr.space","provider":"STAKR.space"}]}},{"chain_id":"onex-mainnet-1","fees":{"fee_tokens":[{"denom":"aonex","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.onex.onomy.io","provider":"pendulum"}]}},{"chain_id":"onomy-mainnet-1","fees":{"fee_tokens":[{"denom":"anom","low_gas_price":0,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc-mainnet.onomy.io","provider":"onomy"},{"address":"https://onomy-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"Oraichain","fees":{"fee_tokens":[{"denom":"orai","fixed_min_gas_price":0,"low_gas_price":0.003,"average_gas_price":0.005,"high_gas_price":0.007}]},"apis":{"rpc":[{"address":"https://rpc.orai.io","provider":"oraichain-team"},{"address":"https://rpc.orai.pfc.zone/","provider":"PFC"},{"address":"https://rpc-orai.nodine.id/","provider":"Nodine.ID"},{"address":"https://oraichain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-oraichain.mms.team","provider":"MMS"},{"address":"https://rpc-orai.blockval.io/","provider":"Blockval"},{"address":"https://mainnet-orai-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.orai.mortysnode.nl","provider":"Morty's Nodes"},{"address":"https://orai.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://oraichain-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://orai-rpc.imdev.app","provider":"imORAI"},{"address":"https://orai-rpc.owallet.io","provider":"OWALLET"}]}},{"chain_id":"osmosis-1","fees":{"fee_tokens":[{"denom":"uosmo","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.osmosis.zone/","provider":"Osmosis Foundation"},{"address":"https://rpc-osmosis.blockapsis.com","provider":"chainapsis"},{"address":"https://osmosis-rpc.onivalidator.com","provider":"Oni Validator ⛩️"},{"address":"https://osmosis-rpc.quickapi.com:443","provider":"Chainlayer"},{"address":"https://rpc-osmosis.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc.lavenderfive.com:443/osmosis","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-osmosis.ecostake.com","provider":"ecostake"},{"address":"https://rpc-osmosis.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://osmosis-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-osmosis-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://osmosis.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://osmosis-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://osmosis.api.onfinality.io/public","provider":"OnFinality"},{"address":"https://rpc-osmosis-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://osmosis-rpc.w3coins.io","provider":"w3coins"},{"address":"https://osmosis-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://community.nuxian-node.ch:6797/osmosis/trpc","provider":"PRO Delegators"},{"address":"http://rpc-osmosis.freshstaking.com:31657","provider":"FreshSTAKING"},{"address":"https://osmosis-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://osmosis-mainnet.rpc.l0vd.com:443","provider":"L0vd.com ❀️"},{"address":"https://osmosis-rpc.reece.sh","provider":"Reecepbcups"},{"address":"https://rpc.osmosis.validatus.com","provider":"Validatus"},{"address":"https://rpc.osmosis.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://osmosis.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"},{"address":"https://public.stakewolle.com/cosmos/osmosis/rpc","provider":"Stakewolle"},{"address":"https://rpc.cros-nest.com/osmosis","provider":"Crosnest"},{"address":"https://rpc-osmo.kewrnode.com","provider":"Kewr Node"},{"address":"https://rpc.osmosis.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://osmosis-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://osmosis.drpc.org","provider":"dRPC"},{"address":"https://osmosis-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"tumbler","fees":{"fee_tokens":[{"denom":"ugrain","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-1.paloma.nodes.guru/","provider":"Nodes.Guru"}]}},{"chain_id":"panacea-3","fees":{"fee_tokens":[{"denom":"umed","fixed_min_gas_price":5,"low_gas_price":5,"average_gas_price":7,"high_gas_price":9}]},"apis":{"rpc":[{"address":"https://rpc.gopanacea.org","provider":"medibloc"},{"address":"https://panacea-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://panacea_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"passage-2","fees":{"fee_tokens":[{"denom":"upasg","fixed_min_gas_price":0,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.passage.vitwit.com","provider":"vitwit"},{"address":"https://passage-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-passage.ecostake.com","provider":"ecostake"},{"address":"https://rpc.lavenderfive.com:443/passage","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-passage-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-passage.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://rpc.passage.nodestake.top","provider":"NodeStake"},{"address":"https://passage-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://passage-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc-passage.d-stake.xyz","provider":"D-stake"},{"address":"https://passage-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://passage-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://passage-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://passage-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc-passage.mainnet.validatrium.club","provider":"Validatrium"},{"address":"https://rpc.passage.silentvalidator.com","provider":"silent"},{"address":"https://passage-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"core-1","fees":{"fee_tokens":[{"denom":"uxprt","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.core.persistence.one","provider":"Persistence"},{"address":"https://rpc-persistent-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://persistence.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://persistence-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://persistence-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://rpc-persistence.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc-persistence.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://persistence-mainnet-rpc.cosmonautstakes.com","provider":"Cosmonaut Stakes"},{"address":"https://persistence-rpc.quantnode.tech","provider":"QuantNode"},{"address":"https://persistence-rpc.zenscape.one","provider":"Zenscape"},{"address":"https://persistence-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://persistence-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"},{"address":"https://rpc.persistence.posthuman.digital:443","provider":"POSTHUMAN∞DVS"},{"address":"https://rpc-persistence-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://persistence-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://persistence-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://persistence-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.persistence.validatus.com","provider":"Validatus"},{"address":"https://public.stakewolle.com/cosmos/persistence/rpc","provider":"Stakewolle"},{"address":"https://xprt-rpc.antrixy.org/","provider":"Antrix Validators"},{"address":"https://persistence-rpc.stake-town.com","provider":"StakeTown"}]}},{"chain_id":"planq_7070-2","fees":{"fee_tokens":[{"denom":"aplanq","fixed_min_gas_price":20000000000,"low_gas_price":30000000000,"average_gas_price":35000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.planq.network","provider":"planq.network"},{"address":"https://planq.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://planq.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.planq.nodestake.org","provider":"NodeStake"},{"address":"https://planq-rpc.kynraze.com","provider":"Kynraze"},{"address":"https://rpc.planq.indonode.net","provider":"Indonode"},{"address":"https://rpc.planq.roomit.xyz","provider":"Roomit"},{"address":"https://planq-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://rpc.planq.safeblock.space","provider":"Safe Block"},{"address":"https://planq.rpc.skynodejs.net","provider":"skynodejs"},{"address":"https://planq-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://mainnet-planq-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://planq_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc-planq.blockval.io","provider":"Blockval"}]}},{"chain_id":"point_10687-1","fees":{"fee_tokens":[{"denom":"apoint","low_gas_price":5000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc-mainnet-1.point.space:26657","provider":"Point Network"},{"address":"https://rpc.point.nodestake.org","provider":"NodeStake"},{"address":"https://point.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.point.indonode.net","provider":"Indonode"}]}},{"chain_id":"pio-mainnet-1","fees":{"fee_tokens":[{"denom":"nhash","fixed_min_gas_price":1905,"low_gas_price":1905,"average_gas_price":2100,"high_gas_price":2500}]},"apis":{"rpc":[{"address":"https://rpc-provenance.takeshi.team/","provider":"TAKESHI"},{"address":"https://rpc.provenance.io/","provider":"Figure"},{"address":"https://rpc-provenance-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://provenance-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://provenance-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://provenance-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://rpc.provenance.blockval.io/","provider":"Blockval"},{"address":"https://provenance-rpc.panthea.eu","provider":"Panthea EU"},{"address":"https://provenance_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc.pio-mainnet-1.provenance.aviaone.com","provider":"AVIAONE 🟒"}]}},{"chain_id":"pryzm-1","fees":{"fee_tokens":[{"denom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.004},{"denom":"ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255","fixed_min_gas_price":500000000,"low_gas_price":500000000,"average_gas_price":600000000,"high_gas_price":700000000},{"denom":"ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"ibc/BF28D9C17E0306B194D50F51C3B2590BEAD15E04E03ADD34C3A26E62D85C9676","fixed_min_gas_price":0.002,"low_gas_price":0.002,"average_gas_price":0.003,"high_gas_price":0.004},{"denom":"ibc/B8AF5D92165F35AB31F3FC7C7B444B9D240760FA5D406C49D24862BD0284E395","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.02,"high_gas_price":0.03},{"denom":"ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.015,"high_gas_price":0.02},{"denom":"ibc/F8CA5236869F819BC006EEF088E67889A26E4140339757878F0F4E229CDDA858","fixed_min_gas_price":10000000000,"low_gas_price":10000000000,"average_gas_price":12000000000,"high_gas_price":14000000000},{"denom":"ibc/FA78980867B7E87F382CDA00275C55DDC248CABC7DEE27AC6868CCF97DD5E02F","fixed_min_gas_price":0.002,"low_gas_price":0.002,"average_gas_price":0.003,"high_gas_price":0.004},{"denom":"ibc/120DC39B61CC121E91525C1D51624E41BBE74C537D7B0BE50BBFF9A00E37B6EE","fixed_min_gas_price":10000000000,"low_gas_price":10000000000,"average_gas_price":12000000000,"high_gas_price":14000000000},{"denom":"ibc/EA6E1E8BA2EB9F681C4BD12C8C81A46530A62934F2BD561B120A00F46946CE87","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.004}]},"apis":{"rpc":[{"address":"https://rpc.pryzm.zone","provider":"PRYZM"},{"address":"https://rpc.lavenderfive.com:443/pryzm","provider":"Lavender.Five Nodes 🐝"},{"address":"https://pryzm-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://pryzm-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"PUNDIX","fees":{"fee_tokens":[{"denom":"ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78","fixed_min_gas_price":2000000000000,"low_gas_price":2000000000000,"average_gas_price":2500000000000,"high_gas_price":3000000000000}]},"apis":{"rpc":[{"address":"https://px-json.pundix.com","provider":"Pundi X"},{"address":"https://pundix.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"}]}},{"chain_id":"pylons-mainnet-1","fees":{"fee_tokens":[{"denom":"ubedrock","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.5,"high_gas_price":1}]},"apis":{"rpc":[{"address":"https://rpc.nodejumper.io:443/pylons","provider":"Nodejumper.io"},{"address":"https:/pylons-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"qfs-1","fees":{"fee_tokens":[{"denom":"qfs","low_gas_price":0.000001,"average_gas_price":0.000005,"high_gas_price":0.0001}]},"apis":{"rpc":[{"address":"https://rcp.qfsone.com","provider":"qfs"}]}},{"chain_id":"quasar-1","fees":{"fee_tokens":[{"denom":"uqsr","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.3},{"denom":"ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/quasar","provider":"Lavender.Five Nodes 🐝"},{"address":"https://quasar-rpc.polkachu.com","provider":"polkachu"},{"address":"https://quasar-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://rpc-quasar.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://quasar-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://quasar.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-quasar.validavia.me","provider":"Validavia"},{"address":"https://quasar-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://quasar-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://quasar-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://quasar-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://quasar-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://quasar-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"quicksilver-2","fees":{"fee_tokens":[{"denom":"uqck","fixed_min_gas_price":0.0001,"low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.00025}]},"apis":{"rpc":[{"address":"https://rpc-quicksilver.takeshi.team:443","provider":"TAKESHI"},{"address":"https://rpc.quicksilver.zone:443","provider":"Quicksilver"},{"address":"https://rpc-quicksilver-ia.cosmosia.notional.ventures:443","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/quicksilver","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-quicksilver.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://m-quicksilver.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://quick.rpc.m.stavr.tech:21027","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://quicksilver-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://quicksilver-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://quicksilver.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-quicksilver.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc.quicksilver.indonode.net","provider":"Indonode"},{"address":"https://quicksilver-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://quicksilver-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://quicksilver-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-quicksilver.mms.team/","provider":"MMS"},{"address":"https://quicksilver-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://quicksilver-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://mainnet-quicksilver-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://quicksilver.tdrsys.com:2053","provider":"TdrSys"},{"address":"https://rpc.quicksilver.validatus.com","provider":"Validatus"},{"address":"https://quicksilver-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"qwoyn-1","fees":{"fee_tokens":[{"denom":"uqwoyn","fixed_min_gas_price":0.03,"low_gas_price":0.03,"average_gas_price":0.05,"high_gas_price":0.075}]},"apis":{"rpc":[{"address":"https://rpc.qwoyn.studio:443","provider":"Qwoyn Studios"},{"address":"https://rpc-qwoyn.theamsolutions.info:443","provider":"AM Solutions"},{"address":"https://qwoyn.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://qwoyn-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://qwoyn-rpc-archive.staketab.org:443","provider":"Staketab archive"},{"address":"https://rpc.lavenderfive.com:443/qwoyn","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-qwoyn.mzonder.com:443","provider":"MZONDER"},{"address":"https://rpc.qwoyn.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"realionetwork_3301-1","fees":{"fee_tokens":[{"denom":"ario","fixed_min_gas_price":1000000000,"low_gas_price":4000000000,"average_gas_price":5000000000,"high_gas_price":8000000000}]},"apis":{"rpc":[{"address":"https://realio-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://realio.rpc.bccnodes.com/","provider":"BccNodes"},{"address":"https://rpc-realio-network.nodeist.net","provider":"Nodeist"},{"address":"http://realio.rpc.m.stavr.tech:21097","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.realio.indonode.net","provider":"Indonode"},{"address":"https://rpc-realio.vinjan.xyz","provider":"vinjan"},{"address":"https://api-realio.sr20de.xyz","provider":"Sr20de"},{"address":"https://rpc.realio.safeblock.space","provider":"Safe Block"},{"address":"https://realio.declab.pro:26622","provider":"Decloud Nodes Lab"},{"address":"https://realio-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc-realio.blockval.io","provider":"Blockval"},{"address":"https://realio_rio_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"reb_1111-1","fees":{"fee_tokens":[{"denom":"arebus","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://api.rebuschain.com:26657/","provider":"Rebuschain"},{"address":"https://rebus.rpc.bccnodes.com:443","provider":"BccNodes"},{"address":"https://rebus.rpc.manticore.team:443/","provider":"MantiCore"},{"address":"https://rpc.rebus.nodestake.top/","provider":"NodeStake"},{"address":"http://rebus.rpc.m.stavr.tech:40107","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-1.rebus.nodes.guru","provider":"Nodes.Guru"},{"address":"https://api.mainnet.rebus.money:26657","provider":"Rebuschain"},{"address":"https://rebus-rpc.brocha.in","provider":"Brochain"},{"address":"https://rebus-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rebus.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://rebus-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rebus-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"regen-1","fees":{"fee_tokens":[{"denom":"uregen","low_gas_price":0.015,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc-regen.ecostake.com","provider":"ecostake"},{"address":"http://public-rpc.regen.vitwit.com:26657","provider":"vitwit"},{"address":"https://regen.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://regen.stakesystems.io:2053","provider":"stakesystems"},{"address":"http://rpc.regen.forbole.com:80","provider":"forbole"},{"address":"https://rpc-regen-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://regen-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://regen-rpc.easy2stake.com","provider":"Easy 2 Stake"},{"address":"https://regen-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://regen-rpc.w3coins.io","provider":"w3coins"},{"address":"https://regen-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"titan-1","fees":{"fee_tokens":[{"denom":"uatolo","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpcapi.rizon.world/","provider":"HDAC Technology AG"},{"address":"https://rpc.rizon.chaintools.tech/","provider":"ChainTools"},{"address":"https://rizon-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rizon-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"30","fees":{"fee_tokens":[{"denom":"sat"}]},"apis":{"rpc":[]}},{"chain_id":"router_9600-1","fees":{"fee_tokens":[{"denom":"route","fixed_min_gas_price":7,"low_gas_price":7,"average_gas_price":7,"high_gas_price":10}]},"apis":{"rpc":[{"address":"https://sentry.tm.rpc.routerprotocol.com/","provider":"Router"},{"address":"https://router-rpc.genznodes.dev/","provider":"genznodes"},{"address":"https://router.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://router-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://routerchain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc.router.nodestake.org","provider":"NodeStake"}]}},{"chain_id":"ssc-1","fees":{"fee_tokens":[{"denom":"usaga","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc-saga.keplr.app","provider":"chainapsis"},{"address":"https://saga-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://saga-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.saga.nodestake.org","provider":"NodeStake"},{"address":"https://saga.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.saga.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://rpc.saga.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.lavenderfive.com:443/saga","provider":"Lavender.Five Nodes 🐝"},{"address":"https://saga-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://saga-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"scorum-1","fees":{"fee_tokens":[{"denom":"gas","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1,"high_gas_price":1}]},"apis":{"rpc":[{"address":"https://scorum-blockchain-mainnet-rpc.scorum.com","provider":"scorum"}]}},{"chain_id":"secret-4","fees":{"fee_tokens":[{"denom":"uscrt","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.1,"high_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://scrt.public-rpc.com","provider":"ANKR"},{"address":"https://rpc.lavenderfive.com:443/secretnetwork","provider":"Lavender.Five Nodes 🐝"},{"address":"https://1rpc.io/scrt-rpc","provider":"1RPC - Automata Network"},{"address":"https://secretnetwork-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://rpc.mainnet.secretsaturn.net","provider":"πŸͺ π•Šecret π•Šaturn"},{"address":"https://rpc-secret.01node.com","provider":"01node"},{"address":"https://public.stakewolle.com/cosmos/secretnetwork/rpc","provider":"Stakewolle"}]}},{"chain_id":"seda-1","fees":{"fee_tokens":[{"denom":"aseda","fixed_min_gas_price":10000000000,"low_gas_price":10000000000,"average_gas_price":10000000000,"high_gas_price":14000000000}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.seda.xyz/","provider":"SEDA"},{"address":"https://seda-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://seda.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://seda-rpc.synergynodes.com/","provider":"Synergy Nodes"},{"address":"https://rpc.lavenderfive.com:443/seda","provider":"Lavender.Five Nodes 🐝"},{"address":"https://seda-rpc.kleomedes.network/","provider":"Kleomedes"},{"address":"https://seda-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://seda-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.seda.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc-seda.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://seda-rpc.applejuice.256x25.tech:443","provider":"Apple juice πŸ§ƒ"},{"address":"https://seda-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://seda_mainnet_rpc.chain.whenmoonwhenlambo.money:443","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc-seda-mainnet.keepitstaked.com:443","provider":"KeepItStaked.com"}]}},{"chain_id":"pacific-1","fees":{"fee_tokens":[{"denom":"usei","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.02,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.sei-apis.com","provider":"Rhino Stake"},{"address":"https://rpc.lavenderfive.com:443/sei","provider":"Lavender.Five Nodes 🐝"},{"address":"https://sei-rpc.polkachu.com","provider":"polkachu.com"},{"address":"https://sei-rpc.brocha.in","provider":"Brochain"},{"address":"https://rpc-sei.stingray.plus","provider":"StingRay"},{"address":"https://rpc-sei.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://sei.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://sei-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://sei.drpc.org","provider":"dRPC - All chains in one place"}]}},{"chain_id":"self-1","fees":{"fee_tokens":[{"denom":"uslf","fixed_min_gas_price":0.005,"low_gas_price":0.005,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.selfchain.io:26657","provider":"Self Chain"},{"address":"https://rpc.selfchain.roomit.xyz","provider":"Roomit"},{"address":"https://selfchain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://selfchain.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://selfchain-mainnet.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://selfchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.selfchain.nodestake.org","provider":"NodeStake"},{"address":"https://selfchain.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"sentinelhub-2","fees":{"fee_tokens":[{"denom":"udvpn","low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc-sentinel.busurnode.com","provider":"Busurnode"},{"address":"https://rpc-sentinel-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.sentinel.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.sentinel.quokkastake.io","provider":"🐹 Quokka Stake"},{"address":"https://rpc.dvpn.roomit.xyz","provider":"Roomit"},{"address":"https://sentinel-rpc.badgerbite.io/","provider":"BadgerBite"},{"address":"https://sentinel-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://sentinel-rpc.validatornode.com/","provider":"ValidatorNode"},{"address":"https://rpc.trinitystake.io","provider":"Trinity Stake"},{"address":"https://rpc.sentineldao.com","provider":"Sentinel Growth DAO"},{"address":"https://public.stakewolle.com/cosmos/sentinel/rpc","provider":"Stakewolle"},{"address":"http://163.197.193.2:26657","provider":"Tesla Full Node"},{"address":"https://sentinel.declab.pro:26628","provider":"Decloud Nodes Lab"},{"address":"https://sentinel.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://rpc.dvpn.me:443","provider":"MathNodes China"},{"address":"https://rpc.ro.mathnodes.com:443","provider":"MathNodes Romania"},{"address":"https://rpc.noncompliant.network:443","provider":"Noncompliant Network"},{"address":"https://rpc-sentinel.chainvibes.com:443","provider":"chainvibes"},{"address":"https://sentinel-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"sgenet-1","fees":{"fee_tokens":[{"denom":"usge","fixed_min_gas_price":0.001,"low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.5}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/sge","provider":"Lavenderfive"},{"address":"https://sge-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc.sge.nodestake.org/","provider":"NodeStake"},{"address":"https://rpc.sge.roomit.xyz/","provider":"Roomit"},{"address":"https://sge.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-sge.nodeist.net/","provider":"Nodeist"},{"address":"https://sge-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://sge-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://rpc.sge.tcnetwork.io","provider":"TC Network"},{"address":"https://sge-rpc.sr20de.xyz","provider":"Sr20de"},{"address":"https://rpc.sge.safeblock.space","provider":"Safe Block"},{"address":"https://mainnet-sge-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://sge-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://sge_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"ShareRing-VoyagerNet","fees":{"fee_tokens":[{"denom":"nshr","fixed_min_gas_price":0,"low_gas_price":2000,"average_gas_price":3000,"high_gas_price":4000}]},"apis":{"rpc":[{"address":"https://rpc.explorer.shareri.ng","provider":"ShareRing"}]}},{"chain_id":"shentu-2.2","fees":{"fee_tokens":[{"denom":"uctk","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.shentu.org:443","provider":"Shentu"},{"address":"https://shentu-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://shentu.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://shentu-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://rpc-shentu-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://shentu-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://shentu-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://shentu-rpc.panthea.eu","provider":"Panthea EU"},{"address":"https://shentu-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://shentu-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"shido_9008-1","fees":{"fee_tokens":[{"denom":"shido","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://tendermint.shidoscan.com","provider":"Shido"},{"address":"https://shidochain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc.shido.256x25.tech:443","provider":"256x25"},{"address":"https://rpc.shido.indonode.net:443","provider":"Indonode"},{"address":"https://rpc-maverick.mavnode.io","provider":"MavNode"},{"address":"https://rpc.kenseishido.com","provider":"KENSEI"}]}},{"chain_id":"sifchain-1","fees":{"fee_tokens":[{"denom":"rowan","low_gas_price":1000000000000,"average_gas_price":1500000000000,"high_gas_price":2000000000000}]},"apis":{"rpc":[{"address":"https://sifchain-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://sifchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://sifchain-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://sifchain_mainnet_rpc.chain.whenmoonwhenlambo.money:443","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"sixnet","fees":{"fee_tokens":[{"denom":"usix","fixed_min_gas_price":1.25,"low_gas_price":1.25,"average_gas_price":1.5,"high_gas_price":1.75}]},"apis":{"rpc":[{"address":"https://sixnet-rpc.sixprotocol.net:443"}]}},{"fees":{"fee_tokens":[{"denom":"Lamport","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"sommelier-3","fees":{"fee_tokens":[{"denom":"usomm","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://sommelier-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-sommelier.pupmos.network","provider":"PUPMØS"},{"address":"https://somm.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/sommelier","provider":"Lavender.Five Nodes 🐝"},{"address":"https://sommelier-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://somm-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://sommelier-rpc.w3coins.io","provider":"w3coins"}]}},{"chain_id":"source-1","fees":{"fee_tokens":[{"denom":"usource","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.075,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.source.nodestake.org","provider":"NodeStake"},{"address":"https://source.rpc.bccnodes.com/","provider":"BccNodes"},{"address":"https://source.rpc.moonbridge.team/","provider":"MoonBridge"},{"address":"https://source.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-source.nodeist.net","provider":"Nodeist"},{"address":"https://source-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://source-mainnet-rpc.itrocket.net:443","provider":"ITRocket"},{"address":"https://rpc-source.sr20de.xyz:443","provider":"Sr20de"},{"address":"https://source-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.source.tcnetwork.io","provider":"TC Network"},{"address":"https://rpc.source.indonode.net","provider":"Indonode"},{"address":"https://source.rpc.skynodejs.net/","provider":"skynodejs"},{"address":"https://source.rpc.nodeshub.online/","provider":"Nodes Hub"},{"address":"https://rpc.source.roomit.xyz/","provider":"Roomit"},{"address":"https://rpc.source.posthuman.digital","provider":"posthuman"},{"address":"https://source.declab.pro:26604","provider":"Decloud Nodes Lab"},{"address":"https://rpc.source.stakeup.tech","provider":"StakeUp"},{"address":"https://source_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://source-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"stafihub-1","fees":{"fee_tokens":[{"denom":"ufis","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://public-rpc1.stafihub.io:443","provider":"StaFiHub"},{"address":"https://public-rpc2.stafihub.io:443","provider":"StaFiHub"},{"address":"https://rpc.stafihub.nodestake.org:443","provider":"NodeStake"}]}},{"chain_id":"stargaze-1","fees":{"fee_tokens":[{"denom":"ustars","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1.1,"high_gas_price":1.2}]},"apis":{"rpc":[{"address":"https://rpc.stargaze-apis.com/","provider":"Stargaze Foundation"},{"address":"https://rpc-stargaze.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-stargaze.ezstaking.dev","provider":"EZStaking.io"},{"address":"https://stargaze-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-stargaze-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://stargaze.c29r3.xyz:443/rpc/","provider":"c29r3"},{"address":"https://rpc-stargaze.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://stargaze-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc-stargaze.d-stake.xyz","provider":"D-stake"},{"address":"https://rpc.stargaze.silentvalidator.com/","provider":"silent"},{"address":"https://stargaze-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://stargaze-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://stargaze-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://stargaze-rpc.w3coins.io","provider":"w3coins"},{"address":"https://stargaze-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://stargaze-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://stargaze-rpc.reece.sh:443","provider":"Reecepbcups"},{"address":"https://rpc.stargaze.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://stargaze-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://stargaze-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"iov-mainnet-ibc","fees":{"fee_tokens":[{"denom":"uiov","low_gas_price":1,"average_gas_price":2,"high_gas_price":3}]},"apis":{"rpc":[{"address":"https://rpc-starname-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.starname.app","provider":"Chainmasters"}]}},{"chain_id":"stratos-1","fees":{"fee_tokens":[{"denom":"wei","low_gas_price":1000000000,"average_gas_price":1200000000,"high_gas_price":1600000000}]},"apis":{"rpc":[{"address":"https://rpc.thestratos.org","provider":"thestratos.org"},{"address":"http://stratos.rpc.nodersteam.com:26657/","provider":"[NODERS]TEAM"},{"address":"https://stratos-rpc.noders.services:443","provider":"[NODERS]TEAM"},{"address":"https://rpc.stratos.nodestake.org","provider":"NodeStake"}]}},{"chain_id":"stride-1","fees":{"fee_tokens":[{"denom":"ustrd","fixed_min_gas_price":0.0005,"low_gas_price":0.005,"average_gas_price":0.005,"high_gas_price":0.05},{"denom":"stuatom","fixed_min_gas_price":0.0001,"low_gas_price":0.0001,"average_gas_price":0.0002,"high_gas_price":0.0005},{"denom":"stuosmo","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.004},{"denom":"stustars","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1.1,"high_gas_price":1.2},{"denom":"stujuno","fixed_min_gas_price":0.075,"low_gas_price":0.075,"average_gas_price":0.1,"high_gas_price":0.125},{"denom":"stuluna","fixed_min_gas_price":0.0125,"low_gas_price":0.0125,"average_gas_price":0.015,"high_gas_price":0.04},{"denom":"staevmos","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000},{"denom":"stinj","fixed_min_gas_price":500000000,"low_gas_price":500000000,"average_gas_price":700000000,"high_gas_price":900000000},{"denom":"stucmdx","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"stuumee","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.12,"high_gas_price":0.2},{"denom":"stutia","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1},{"denom":"stadydx","fixed_min_gas_price":15000000000,"low_gas_price":15000000000,"average_gas_price":15000000000,"high_gas_price":20000000000},{"denom":"stadym","fixed_min_gas_price":15000000000,"low_gas_price":15000000000,"average_gas_price":15000000000,"high_gas_price":20000000000},{"denom":"stusaga","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.015,"high_gas_price":0.03},{"denom":"ibc/BF3B4F53F3694B66E13C23107C84B6485BD2B96296BB7EC680EA77BBA75B4801","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://stride-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://stride-rpc.onivalidator.com","provider":"Oni Validator ⛩️"},{"address":"https://rpc.lavenderfive.com:443/stride","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.stride.silentvalidator.com/","provider":"silent"},{"address":"https://rpc-stride.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://stride.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-stride.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-stride.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc-stride.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://stride-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-stride-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://stride-rpc.w3coins.io","provider":"w3coins"},{"address":"https://stride-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://community.nuxian-node.ch:6797/stride/trpc","provider":"PRO Delegators"},{"address":"https://stride-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.stride.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://public.stakewolle.com/cosmos/stride/rpc","provider":"Stakewolle"}]}},{"chain_id":"sunrise-1","fees":{"fee_tokens":[{"denom":"urise","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[]}},{"chain_id":"synternet-1","fees":{"fee_tokens":[{"denom":"usynt","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.synternet.com/","provider":"Synternet"},{"address":"https://synternet_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://synternet-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"taketitan-12","fees":{"fee_tokens":[{"denom":"ttnc","low_gas_price":0.000001,"average_gas_price":0.000005,"high_gas_price":0.0001}]},"apis":{"rpc":[{"address":"https://rcpttnc.taketitan.com","provider":"taketitan"}]}},{"chain_id":"tenet_1559-1","fees":{"fee_tokens":[{"denom":"atenet","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://tendermint-1.rpc.tenet.org","provider":"tenet"},{"address":"https://tenet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://tenet_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"teritori-1","fees":{"fee_tokens":[{"denom":"utori","low_gas_price":0,"average_gas_price":0.25,"high_gas_price":0.5}]},"apis":{"rpc":[{"address":"https://teritori-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://teritori.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.teritori.silentvalidator.com/","provider":"silent"},{"address":"https://teritori-rpc.brocha.in","provider":"Brochain"},{"address":"https://teritori-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://teritori.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.tori.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://teritori-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://m-teritori.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc-teritori.pupmos.network","provider":"PUPMØS"},{"address":"https://teritori-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-teritori.ecostake.com","provider":"ecostake"},{"address":"https://teritori-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://teritori-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://teritori_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://teritori-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"morocco-1","fees":{"fee_tokens":[{"denom":"uthiol","fixed_min_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc-terp.zenchainlabs.io/","provider":"ZenChainLabs"},{"address":"https://terp-mainnet-rpc.itrocket.net:443","provider":"itrocket.net"},{"address":"https://terp.rpc.nodex.one:443","provider":"nodex.one"}]}},{"chain_id":"columbus-5","fees":{"fee_tokens":[{"denom":"uluna","low_gas_price":28.325,"average_gas_price":28.325,"high_gas_price":50},{"denom":"usdr","low_gas_price":0.52469,"average_gas_price":0.52469,"high_gas_price":0.52469},{"denom":"uusd","low_gas_price":0.75,"average_gas_price":0.75,"high_gas_price":0.75},{"denom":"ukrw","low_gas_price":850,"average_gas_price":850,"high_gas_price":850},{"denom":"umnt","low_gas_price":2142.855,"average_gas_price":2142.855,"high_gas_price":2142.855},{"denom":"ueur","low_gas_price":0.625,"average_gas_price":0.625,"high_gas_price":0.625},{"denom":"ucny","low_gas_price":4.9,"average_gas_price":4.9,"high_gas_price":4.9},{"denom":"ujpy","low_gas_price":81.85,"average_gas_price":81.85,"high_gas_price":81.85},{"denom":"ugbp","low_gas_price":0.55,"average_gas_price":0.55,"high_gas_price":0.55},{"denom":"uinr","low_gas_price":54.4,"average_gas_price":54.4,"high_gas_price":54.4},{"denom":"ucad","low_gas_price":0.95,"average_gas_price":0.95,"high_gas_price":0.95},{"denom":"uchf","low_gas_price":0.7,"average_gas_price":0.7,"high_gas_price":0.7},{"denom":"uaud","low_gas_price":0.95,"average_gas_price":0.95,"high_gas_price":0.95},{"denom":"usgd","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"uthb","low_gas_price":23.1,"average_gas_price":23.1,"high_gas_price":23.1},{"denom":"usek","low_gas_price":6.25,"average_gas_price":6.25,"high_gas_price":6.25},{"denom":"unok","low_gas_price":6.25,"average_gas_price":6.25,"high_gas_price":6.25},{"denom":"udkk","low_gas_price":4.5,"average_gas_price":4.5,"high_gas_price":4.5},{"denom":"uidr","low_gas_price":10900,"average_gas_price":10900,"high_gas_price":10900},{"denom":"uphp","low_gas_price":38,"average_gas_price":38,"high_gas_price":38},{"denom":"uhkd","low_gas_price":5.85,"average_gas_price":5.85,"high_gas_price":5.85},{"denom":"umyr","low_gas_price":3,"average_gas_price":3,"high_gas_price":3},{"denom":"utwd","low_gas_price":20,"average_gas_price":20,"high_gas_price":20}]},"apis":{"rpc":[{"address":"https://terra-classic-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-terra-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://terraclassic-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://terraclassic-rpc-server-01.stakely.io","provider":"Stakely"}]}},{"chain_id":"phoenix-1","fees":{"fee_tokens":[{"denom":"uluna","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.015,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/terra2","provider":"Lavender.Five Nodes 🐝"},{"address":"https://terra-rpc.polkachu.com","provider":"polkachu"},{"address":"https://terra-rpc.stakely.io:443/","provider":"stakely"},{"address":"https://phoenix-rpc.terra.dev:443","provider":"Terraform Labs"},{"address":"https://terra-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-terra-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-archive-terra.r93axnodes.cloud:443","provider":"r93AX Nodes"},{"address":"https://rpc-terra.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://terra-phoenix-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://rpc-terra.wildsage.io","provider":"πŸ§™ WildSage Labs"},{"address":"https://terra.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"},{"address":"https://terra2.tdrsys.com:2053","provider":"TdrSys"},{"address":"https://terra-rpc.cosmosrescue.dev:8443","provider":"cosmosrescue"}]}},{"chain_id":"tgrade-mainnet-1","fees":{"fee_tokens":[{"denom":"utgd","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.075,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.mainnet-1.tgrade.confio.run","provider":"Confio"},{"address":"https://rpc.tgrade.posthuman.digital","provider":"POSTHUMAN ꝏ DVS"}]}},{"chain_id":"thorchain-1","apis":{"rpc":[]}},{"chain_id":"titan_18888-1","fees":{"fee_tokens":[{"denom":"atkx","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":110000000000,"high_gas_price":200000000000}]},"apis":{"rpc":[{"address":"https://titan-rpc.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc-tokyo.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc-seoul.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc-hongkong.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc.ibs.team","provider":"ibs.team"}]}},{"fees":{"fee_tokens":[{"denom":"nanoton","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"fees":{"fee_tokens":[{"denom":"sun","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"umee-1","fees":{"fee_tokens":[{"denom":"uumee","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.12,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://umee-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-umee-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://umee-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"http://umee.rpc.m.stavr.tech:10457","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"http://rpc-umee-0.node75.org:26657","provider":"Pro-Nodes75"},{"address":"https://umee-rpc.quantnode.tech","provider":"QuantNode"},{"address":"https://umee-rpc.tienthuattoan.com","provider":"TTT πŸ‡»πŸ‡³"},{"address":"https://rpc-umee-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://umee-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://umee-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://umee.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://umee-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-umee.mms.team","provider":"MMS"},{"address":"https://rpc-umee.mzonder.com","provider":"MZONDER"},{"address":"https://umee-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://umee-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://umee.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://umee-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://umee_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"unicorn-420","fees":{"fee_tokens":[{"denom":"uwunicorn","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[]}},{"chain_id":"FUND-MainNet-2","fees":{"fee_tokens":[{"denom":"nund","fixed_min_gas_price":25,"low_gas_price":100,"average_gas_price":200,"high_gas_price":300}]},"apis":{"rpc":[{"address":"https://rpc.unification.io:443","provider":"Unification"},{"address":"https://rpc.unification.chainmasters.ninja/","provider":"Chainmasters"}]}},{"chain_id":"ununifi-beta-v1","fees":{"fee_tokens":[{"denom":"uguu","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"http://a.lcd.ununifi.cauchye.net:26657","provider":"CauchyE"},{"address":"https://rpc.ununifi.nodestake.top","provider":"NodeStake"},{"address":"https://rpc.lavenderfive.com:443/ununifi","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.lavenderfive.com:443/ununifi","provider":"Lavender.Five Nodes 🐝"},{"address":"https://ununifi-rpc.genznodes.dev","provider":"genznodes"}]}},{"chain_id":"uptick_117-1","fees":{"fee_tokens":[{"denom":"auptick","fixed_min_gas_price":13000000000,"low_gas_price":13000000000,"average_gas_price":16000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://uptick-rpc.brocha.in:443","provider":"Brochain"},{"address":"https://uptick.rpc.bccnodes.com:443","provider":"BccNodes"},{"address":"https://rpc.uptick.nodestake.org","provider":"NodeStake"},{"address":"https://uptick.rpc.kjnodes.com","provider":"kjnodes"},{"address":"http://uptick.rpc.m.stavr.tech:3157","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://m-uptick.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://uptick-mainnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://uptick.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://uptick-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://uptick-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://rpc-uptick.cakralabs.site","provider":"Cakra Labs"},{"address":"https://rpc-uptick.sr20de.xyz","provider":"Sr20de"},{"address":"https://uptick-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"xion-mainnet-1","fees":{"fee_tokens":[{"denom":"uxion","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.001,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.xion-mainnet-1.burnt.com","provider":"πŸ”₯BurntLabsπŸ”₯"},{"address":"https://xion-rpc.lavenderfive.com","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-burnt.imperator.co/","provider":"Imperator.co"},{"address":"https://xion-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://xion-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://xion_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc.xion.nodestake.org","provider":"NodeStake"}]}},{"chain_id":"dimension_37-1","fees":{"fee_tokens":[{"denom":"axpla","fixed_min_gas_price":850000000000,"low_gas_price":850000000000,"average_gas_price":1147500000000,"high_gas_price":1487500000000}]},"apis":{"rpc":[{"address":"https://dimension-rpc.xpla.dev","provider":"Holdings"},{"address":"https://xpla.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/xpla","provider":"Lavender.Five Nodes 🐝"},{"address":"https://xpla-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://xpla.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"zetachain_7000-1","fees":{"fee_tokens":[{"denom":"azeta","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://zetachain.blockpi.network/rpc/v1/public","provider":"BlockPI"},{"address":"https://zetachain-mainnet-archive.allthatnode.com:26657","provider":"All That Node"},{"address":"https://rpc.lavenderfive.com:443/zetachain","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.zetachain.nodestake.org","provider":"NodeStake"},{"address":"https://zetachain-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://zetachain.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://zeta-chain.drpc.org","provider":"dRPC"},{"address":"https://zeta.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"junction","fees":{"fee_tokens":[{"denom":"amf","fixed_min_gas_price":0,"low_gas_price":0.00025,"average_gas_price":0.005,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://junction-rpc.validatorvn.com/","provider":"Validator VN"},{"address":"https://airchains-testnet-rpc.cosmonautstakes.com/","provider":"Cosmonaut Stakes"},{"address":"https://junction-testnet-rpc.synergynodes.com/","provider":"Synergy Nodes"},{"address":"https://airchains-rpc.anonid.top/","provider":"Anonid Top"},{"address":"https://airchains-test.rpc.moonbridge.team/","provider":"Moonbridge Team"},{"address":"https://airchains-rpc.chainad.org/","provider":"Coin Hunterstr"},{"address":"https://airchains.rpc.t.stavr.tech/","provider":"Stavr Tech"},{"address":"https://rpc.nodejumper.io/airchainstestnet","provider":"Nodejumper"},{"address":"https://t-airchains.rpc.utsa.tech/","provider":"UTSA"},{"address":"https://junction-rpc.kzvn.xyz/","provider":"KZVN"},{"address":"https://airchains-rpc.elessarnodes.xyz/","provider":"Elessar Nodes"},{"address":"https://junction-rpc.apollo-sync.com/","provider":"Apollo Sync"},{"address":"https://rpc-airchain.danggia.xyz/","provider":"DANGGIA"},{"address":"https://airchains-rpc.stakeme.pro/","provider":"Stakeme"},{"address":"https://airchains-testnet-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://airchains-testnet-rpc.crouton.digital/","provider":"Crouton Digital"},{"address":"https://airchains-testnet-rpc.itrocket.net/","provider":"IT Rocket"},{"address":"https://rpc1.airchains.t.cosmostaking.com/","provider":"Cosmostaking"}]}},{"chain_id":"sandbox-01","fees":{"fee_tokens":[{"denom":"uakt","fixed_min_gas_price":0,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.sandbox-01.aksh.pw:443","provider":"akash"}]}},{"chain_id":"constantine-3","fees":{"fee_tokens":[{"denom":"aconst","low_gas_price":1000000000000,"average_gas_price":1500000000000,"high_gas_price":2000000000000}]},"apis":{"rpc":[{"address":"https://rpc.constantine.archway.io","provider":"Archway"},{"address":"https://archway-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"arkeo","fees":{"fee_tokens":[{"denom":"uarkeo"}]},"apis":{"rpc":[{"address":"https://arkeonetwork-testnet.nodejumper.io:26657","provider":"NODEJUMPER"},{"address":"https://test-arkeo-rpc.kynraze.com","provider":"kynraze"},{"address":"https://testnet-arkeo-rpc.lavenderfive.com","provider":"lavenderfive"},{"address":"https://arkeo-rpc.siriusnodes.uk","provider":"siriusnodes"},{"address":"http://seed.arkeo.network:26657","provider":"arkeo"}]}},{"chain_id":"artela_11820-1","fees":{"fee_tokens":[{"denom":"uart","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://testnet-rpc1.artela.network","provider":"Artela Foundation"},{"address":"https://testnet-rpc2.artela.network","provider":"Artela Foundation"}]}},{"chain_id":"aura_6321-3","fees":{"fee_tokens":[{"denom":"ueaura","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://rpc.euphoria.aura.network/","provider":"Aura Network Foundation"}]}},{"chain_id":"axelar-testnet-lisbon-3","fees":{"fee_tokens":[{"denom":"uaxl","low_gas_price":0.007,"average_gas_price":0.007,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc-axelar-testnet.imperator.co:443","provider":"Imperator.co"},{"address":"https://axelartest-rpc.quickapi.com/","provider":"Quickapi"},{"address":"https://axelar-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"bbn-test3","fees":{"fee_tokens":[{"denom":"ubbn"}]},"apis":{"rpc":[{"address":"rpc.testnet3.babylonchain.io:443","provider":"Babylon foundation"}]}},{"chain_id":"bitcanna-dev-1","fees":{"fee_tokens":[{"denom":"ubcna","fixed_min_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://rpc-testnet.bitcanna.io","provider":"bitcanna"},{"address":"https://bitcanna-testnet.rpc.kjnodes.com/","provider":"kjnodes.com"},{"address":"https://testnet-bitcanna-rpc.konsortech.xyz/","provider":"konsortech.xyz"},{"address":"https://rpc.bitcanna-dev-1.bitcanna.aviaone.com/","provider":"aviaone.com"},{"address":"https://bitcanna-testnet.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://bcna-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"blockx_19077-1","apis":{"rpc":[]}},{"chain_id":"cascadia_6102-1","fees":{"fee_tokens":[{"denom":"aCC","fixed_min_gas_price":0,"low_gas_price":7,"average_gas_price":10,"high_gas_price":15}]},"apis":{"rpc":[{"address":"https://rpc.cascadia.foundation:443","provider":"cascadia"},{"address":"https://cscd-rpc.systemd.run:443","provider":"systemd"},{"address":"https://api.cascadia-t.indonode.net:443","provider":"Indonode"},{"address":"https://rpc-test.cascadia.hexnodes.co:443","provider":"Hexnodes"}]}},{"chain_id":"mocha-4","fees":{"fee_tokens":[{"denom":"utia","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc-mocha.pops.one","provider":"P-OPs"},{"address":"https://celestia-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-mocha-full.avril14th.org","provider":"Avril 14th"},{"address":"https://celestia-testnet-rpc.itrocket.net","provider":"πŸš€ITRocketπŸš€"},{"address":"https://rpc-celestia-testnet.cryptech.com.ua","provider":"CrypTech"},{"address":"https://rpc.celestia.testnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://celestia-testnet-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"}]}},{"chain_id":"babajaga-1","fees":{"fee_tokens":[{"denom":"uc4e","fixed_min_gas_price":0,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc-testnet.c4e.io","provider":"C4E"}]}},{"chain_id":"cheqd-testnet-6","fees":{"fee_tokens":[{"denom":"ncheq","fixed_min_gas_price":25,"low_gas_price":50,"average_gas_price":75,"high_gas_price":100}]},"apis":{"rpc":[{"address":"https://rpc.cheqd.network","provider":"cheqd"}]}},{"chain_id":"chimba-testnet","fees":{"fee_tokens":[{"denom":"ucmba","fixed_min_gas_price":0.25,"low_gas_price":1,"average_gas_price":5,"high_gas_price":10}]},"apis":{"rpc":[{"address":"https://rpc.testnet.chimba.ooo","provider":"chimba"}]}},{"chain_id":"banksy-testnet-3","fees":{"fee_tokens":[{"denom":"ppica","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.composable-t.indonode.net:443","provider":"Indonode"},{"address":"https://rpc-composable-testnet.sr20de.xyz:443","provider":"Sr20de"}]}},{"chain_id":"kitten-04","fees":{"fee_tokens":[{"denom":"uccat","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":1,"high_gas_price":2}]},"apis":{"rpc":[{"address":"https://rpc.coolcat.space","provider":"Digital Kitchen"}]}},{"chain_id":"coreum-testnet-1","fees":{"fee_tokens":[{"denom":"utestcore","fixed_min_gas_price":0.03125,"low_gas_price":0.0625,"average_gas_price":0.0625,"high_gas_price":62.5}]},"apis":{"rpc":[{"address":"https://full-node.testnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-eris.testnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://coreum-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"theta-testnet-001","fees":{"fee_tokens":[{"denom":"uatom","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://cosmoshubt.tendermintrpc.lava.build:443","provider":"Lava"},{"address":"https://rpc.sentry-01.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.sentry-02.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.state-sync-01.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.state-sync-02.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://public-cosmos-theta.w3node.com","provider":"Interchain.FM"},{"address":"https://rpc-theta.osmotest5.osmosis.zone/","provider":"Osmosis"}]}},{"chain_id":"provider","fees":{"fee_tokens":[{"denom":"uatom","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.provider-sentry-01.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.provider-sentry-02.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.provider-state-sync-01.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.provider-state-sync-02.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://cosmos-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"malaga-420","fees":{"fee_tokens":[{"denom":"umlg","low_gas_price":0.03,"average_gas_price":0.04,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.malaga-420.cosmwasm.com:443","provider":"Confio"}]}},{"chain_id":"coss-testnet-1","fees":{"fee_tokens":[{"denom":"ucgas","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://coss-testnet-rpc.coss.ink","provider":"COSS"}]}},{"chain_id":"cudos-testnet-public-3","apis":{"rpc":[{"address":"https://rpc.testnet.cudos.org:443/","provider":"cudo"},{"address":"http://sentry-01.hosts.testnet.cudos.org:26657","provider":"cudo"},{"address":"http://sentry-02.hosts.testnet.cudos.org:26657","provider":"cudo"},{"address":"http://sentry-03.hosts.testnet.cudos.org:26657","provider":"cudo"}]}},{"chain_id":"deardoge-testnet","fees":{"fee_tokens":[{"denom":"udear","fixed_min_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://testnet-rpc.deardoge.org","provider":"dorafactory"}]}},{"chain_id":"morpheus-apollo-3","fees":{"fee_tokens":[{"denom":"udaric","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.03,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.morpheus.desmos.network","provider":"desmos"}]}},{"chain_id":"dhealth-testnet-2","fees":{"fee_tokens":[{"denom":"utdhp","fixed_min_gas_price":0.01,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc-testnet.dhealth.dev","provider":"dHealth"}]}},{"chain_id":"vota-testnet","fees":{"fee_tokens":[{"denom":"peaka","fixed_min_gas_price":100000000000}]},"apis":{"rpc":[{"address":"https://vota-testnet-rpc.dorafactory.org/","provider":"dorafactory"}]}},{"chain_id":"dydx-testnet-4","fees":{"fee_tokens":[{"denom":"adv4tnt","fixed_min_gas_price":12500000000,"low_gas_price":12500000000,"average_gas_price":12500000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://dydx-rpc-testnet.enigma-validator.com","provider":"Enigma"},{"address":"https://testnet-dydx-rpc.lavenderfive.com","provider":"Lavender Five"},{"address":"https://test-dydx-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://dydx-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://dydx-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"dymension_1405-1","fees":{"fee_tokens":[{"denom":"adym","low_gas_price":5000000000,"average_gas_price":5500000000,"high_gas_price":6000000000}]},"apis":{"rpc":[{"address":"https://rpc-dym-migration-test-2.mzonder.com","provider":"mzonder"}]}},{"chain_id":"elysicstestnet-1","fees":{"fee_tokens":[{"denom":"uelys","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.testnet.elys.network","provider":"Elys Network"},{"address":"https://elys-testnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://elys-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"empe-testnet-2","fees":{"fee_tokens":[{"denom":"uempe","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-testnet.empe.io/","provider":"empe"},{"address":"https://rpc-archive-testnet.empe.io/","provider":"empe-archive"}]}},{"chain_id":"circulus-1","fees":{"fee_tokens":[{"denom":"umpwr","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://empower-testnet-rpc.polkachu.com:443","provider":"Polkachu"},{"address":"https://empower.rpc.cumulo.com.es:443","provider":"Cumulo"},{"address":"https://rpc-t.empower.nodestake.top:443","provider":"NodeStake"},{"address":"https://rpc-empower.nodeist.net:443","provider":"Nodeist"},{"address":"https://empower-testnet.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://empower-testnet-rpc.itrocket.net:443","provider":"ITRocket"},{"address":"https://rpc.circulus-1.empower.aviaone.com:443","provider":"AviaOne"}]}},{"chain_id":"epix_4243-1","fees":{"fee_tokens":[{"denom":"aepix","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.testnet.epix.zone","provider":"Epix Testnet"}]}},{"chain_id":"evmos_9000-4","fees":{"fee_tokens":[{"denom":"atevmos","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://evmos.test.rpc.coldyvalidator.net","provider":"coldy"},{"address":"https://evmos-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://evmos-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"dorado-1","fees":{"fee_tokens":[{"denom":"atestfet","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc-dorado.fetch.ai:443","provider":"fetch.ai"}]}},{"chain_id":"fiamma-testnet-1","fees":{"fee_tokens":[{"denom":"ufia"}]},"apis":{"rpc":[{"address":"https://testnet-rpc.fiammachain.io","provider":"Fiamma"}]}},{"chain_id":"ebony-2","fees":{"fee_tokens":[{"denom":"tcony","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.015,"high_gas_price":0.015}]},"apis":{"rpc":[{"address":"https://ebony-rpc.finschia.io"}]}},{"chain_id":"galactica_9302-1","fees":{"fee_tokens":[{"denom":"agnet","fixed_min_gas_price":10,"low_gas_price":10,"average_gas_price":10,"high_gas_price":20}]},"apis":{"rpc":[{"address":"https://rpc.galactica.test.pfc.zone/","provider":"PFC"},{"address":"https://galactica-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"gitopia-janus-testnet-2","fees":{"fee_tokens":[{"denom":"utlore","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://gitopia-testnet.nodejumper.io","provider":"NODEJUMPER"}]}},{"chain_id":"berberis-1","fees":{"fee_tokens":[{"denom":"uhedge","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-berberis.hedgeblock.io","provider":"Hedge"}]}},{"chain_id":"testnet-1","fees":{"fee_tokens":[{"denom":"uheart","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://humans-testnet.nodejumper.io","provider":"NODEJUMPER"},{"address":"https://humans-testnet-rpc.cosmonautstakes.com","provider":"Cosmonaut Stakes πŸ€–"}]}},{"chain_id":"prajna-1","fees":{"fee_tokens":[{"denom":"uhid","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.prajna.hypersign.id","provider":"Hypersign"}]}},{"chain_id":"pandora-8","fees":{"fee_tokens":[{"denom":"uixo","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.testnet.ixo.earth/","provider":"ixoworld"}]}},{"chain_id":"imversed-test-1","fees":{"fee_tokens":[{"denom":"nimv","fixed_min_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://tx-endpoint-test.imversed.com/","provider":"imversed"}]}},{"chain_id":"injective-888","fees":{"fee_tokens":[{"denom":"inj","fixed_min_gas_price":160000000,"low_gas_price":500000000,"average_gas_price":700000000,"high_gas_price":900000000}]},"apis":{"rpc":[{"address":"https://injective-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://testnet.sentry.tm.injective.network:443","provider":"injectiveLabs"},{"address":"https://testnet.tm.injective.network","provider":"injectiveLabs"},{"address":"https://injective-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"canine-1","fees":{"fee_tokens":[{"denom":"ujkl","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"http://jkl.rpc.t.stavr.tech:19127","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://testnet-rpc.jackalprotocol.com","provider":"Jackal Labs"}]}},{"chain_id":"mesomelas-1","fees":{"fee_tokens":[{"denom":"ujkl","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://jackal-testnet-v4-rpc.brocha.in","provider":"Brochain"}]}},{"chain_id":"uni-6","fees":{"fee_tokens":[{"denom":"ujunox","low_gas_price":0.003,"average_gas_price":0.0045,"high_gas_price":0.006}]},"apis":{"rpc":[{"address":"https://juno-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"kichain-t-4","fees":{"fee_tokens":[{"denom":"utki","fixed_min_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://rpc-challenge.blockchain.ki/","provider":"kifoundation"}]}},{"chain_id":"kima_testnet","fees":{"fee_tokens":[{"denom":"uKIMA","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc-testnet.kima.finance/","provider":"Kima Network"}]}},{"chain_id":"harpoon-4","fees":{"fee_tokens":[{"denom":"ukuji","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://kujira-testnet-rpc.polkachu.com","provider":"polkachu"}]}},{"chain_id":"kaon-1","fees":{"fee_tokens":[{"denom":"tkyve","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc.kaon.kyve.network","provider":"kyve"},{"address":"https://rpc-kyve-test.ecostake.com","provider":"ecostake"},{"address":"https://kyve-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"lava-testnet-2","fees":{"fee_tokens":[{"denom":"ulava","fixed_min_gas_price":0.000001,"low_gas_price":0.000001,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://lav1.tendermintrpc.lava.build:443","provider":"Lava"},{"address":"http://lava.rpc.t.stavr.tech:198","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://lava-testnet-rpc.itrocket.net:443","provider":"πŸš€ITRocketπŸš€"},{"address":"https://lava-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"likecoin-public-testnet-5","fees":{"fee_tokens":[{"denom":"nanoekil","fixed_min_gas_price":1000,"low_gas_price":1000,"average_gas_price":10000,"high_gas_price":1000000}]},"apis":{"rpc":[{"address":"https://node.testnet.like.co/rpc/","provider":"like.co"}]}},{"chain_id":"lumenx-test","fees":{"fee_tokens":[{"denom":"ulumen","fixed_min_gas_price":0.0025,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://testnet-rpc.lumenx.chaintools.tech/","provider":"ChainTools"},{"address":"https://testrpc-lumenx.cryptonet.pl/","provider":"CryptoNet"}]}},{"chain_id":"manifest-ledger-beta","fees":{"fee_tokens":[{"denom":"umfx","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.007,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://nodes.chandrastation.com/rpc/manifest/","provider":"Chandra Station"},{"address":"https://manifest-beta-rpc.liftedinit.tech/","provider":"Lifted Initiative"}]}},{"chain_id":"mantra-hongbai-1","fees":{"fee_tokens":[{"denom":"uom","fixed_min_gas_price":0,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.003}]},"apis":{"rpc":[{"address":"https://rpc.hongbai.mantrachain.io","provider":"MANTRACHAIN"},{"address":"https://mantra-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"mantra-dukong-1","fees":{"fee_tokens":[{"denom":"uom","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.dukong.mantrachain.io","provider":"MANTRACHAIN"},{"address":"https://mantra-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"ares-1","fees":{"fee_tokens":[{"denom":"umars","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://testnet-rpc.marsprotocol.io/","provider":"Mars Protocol"},{"address":"https://rpc-mars.nodeist.net/","provider":"Nodeist"}]}},{"chain_id":"mnova_10096-1","apis":{"rpc":[]}},{"chain_id":"narwhal-2","fees":{"fee_tokens":[{"denom":"uwhale","fixed_min_gas_price":0.25,"low_gas_price":0.25,"average_gas_price":0.5,"high_gas_price":0.75}]},"apis":{"rpc":[{"address":"https://migaloo-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"neura_267-1","fees":{"fee_tokens":[{"denom":"atankr"}]},"apis":{"rpc":[{"address":"https://rpc.ankr.com/neura_testnet","provider":"ankr"}]}},{"chain_id":"pion-1","fees":{"fee_tokens":[{"denom":"untrn","low_gas_price":0.0053,"average_gas_price":0.0053,"high_gas_price":0.0053}]},"apis":{"rpc":[{"address":"https://rpc-falcron.pion-1.ntrn.tech","provider":"Neutron"},{"address":"https://neutron-testnet-rpc.polkachu.com/","provider":"Polkachu"}]}},{"chain_id":"nibiru-testnet-1","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet-1.nibiru.fi","provider":"Nibiru Foundation"}]}},{"chain_id":"nibiru-testnet-2","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet-2.nibiru.fi","provider":"Nibiru Foundation"}]}},{"chain_id":"nibiru-testnet-3","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet-3.nibiru.fi","provider":"Nibiru Foundation"}]}},{"chain_id":"nillion-chain-testnet-1","fees":{"fee_tokens":[{"denom":"unil","low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.00025}]},"apis":{"rpc":[{"address":"https://nillion-testnet-rpc.polkachu.com/","provider":"polkachu"},{"address":"https://testnet-nillion-rpc.lavenderfive.com","provider":"lavenderfive"},{"address":"https://nillion-testnet.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://nillion-testnet.rpc.nodex.one","provider":"NodeX Emperor"}]}},{"chain_id":"grand-1","fees":{"fee_tokens":[{"denom":"uusdc","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://noble-testnet-rpc.polkachu.com","provider":"polkachu"},{"address":"https://rpc.testnet.noble.strange.love:443","provider":"strangelove"}]}},{"chain_id":"nois-testnet-005","fees":{"fee_tokens":[{"denom":"unois","fixed_min_gas_price":0,"low_gas_price":0.05,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://nois-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://nois-testnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://rpc.nois.mcbnode.online:443","provider":"mcbnode"},{"address":"https://nois-testnet.rpc.kjnodes.com:443","provider":"kjnodes"},{"address":"https://tnois-rpc.systemd.run:443","provider":"systemd"}]}},{"chain_id":"rila-1","fees":{"fee_tokens":[{"denom":"unls","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rila-cl.nolus.network:26657","provider":"NolusProtocol"}]}},{"chain_id":"nomic-testnet-6","fees":{"fee_tokens":[{"denom":"unom","low_gas_price":0,"average_gas_price":0,"high_gas_price":0},{"denom":"usat","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://testnet-rpc.nomic.io:2096","provider":"nomic"}]}},{"chain_id":"sandbox","fees":{"fee_tokens":[{"denom":"unym","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"unyx","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.sandbox.nymtech.net","provider":"Nym"}]}},{"chain_id":"okp4-nemeton-1","fees":{"fee_tokens":[{"denom":"uknow","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://api.testnet.okp4.network/rpc","provider":"OKP4"},{"address":"https://okptest-rpc.quickapi.com","provider":"Chainlayer"},{"address":"http://okp.rpc.t.stavr.tech:10097","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://okp4-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"osmo-test-5","fees":{"fee_tokens":[{"denom":"uosmo","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.osmotest5.osmosis.zone/","provider":"Osmosis"}]}},{"chain_id":"INVALID-ID-permtestnet-testnet-1","fees":{"fee_tokens":[{"denom":"uperm","low_gas_price":0.0025,"average_gas_price":0.0025,"high_gas_price":0.0024}]},"apis":{"rpc":[{"address":"https://rpc.3.finance/","provider":"Perm Network"}]}},{"chain_id":"test-core-1","fees":{"fee_tokens":[{"denom":"uxprt","fixed_min_gas_price":0,"low_gas_price":0.05,"average_gas_price":0.125,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://rpc-testnet-persistence.architectnodes.com/","provider":"Architect Nodes"},{"address":"https://persistence-testnet-rpc.baryon.dev/","provider":"Baryon"},{"address":"https://persistence-testnet-rpc.cosmonautstakes.com/","provider":"Cosmonaut Stakes"},{"address":"https://rpc.testnet.persistence.one/","provider":"Persistence"},{"address":"https://persistence-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://xprt-trpc.antrixy.org/","provider":"Antrix Validators"}]}},{"chain_id":"test-core-2","fees":{"fee_tokens":[{"denom":"uxprt","fixed_min_gas_price":0,"low_gas_price":0.05,"average_gas_price":0.125,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://rpc-persistence-testnet-01.stakeflow.io/","provider":"StakeFlow"},{"address":"https://persistence-testnet-rpc.baryon.dev/","provider":"Baryon"},{"address":"https://persistence-testnet-rpc.cosmonautstakes.com/","provider":"Cosmonaut Stakes"},{"address":"https://rpc.testnet2.persistence.one/","provider":"Persistence"},{"address":"https://persistence-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://persistencecoretest-rpc.ytwofund.pro/","provider":"YTWOFUND"},{"address":"http://persistence-testnet.paranorm.pro:24657/","provider":"Paranorm"}]}},{"chain_id":"planq_7077-1","fees":{"fee_tokens":[{"denom":"atplanq","fixed_min_gas_price":20000000000,"low_gas_price":30000000000,"average_gas_price":35000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc-atlas.planq.network","provider":"Planq Network"},{"address":"https://planq_testnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"pocket-beta","fees":{"fee_tokens":[{"denom":"upokt","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://shannon-testnet-grove-rpc.beta.poktroll.com","provider":"Grove"}]}},{"chain_id":"indigo-1","fees":{"fee_tokens":[{"denom":"upryzm","fixed_min_gas_price":0,"low_gas_price":0.015,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://testnet-rpc.pryzm.zone","provider":"PRYZM"},{"address":"https://pryzm-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"quasar-test-1","fees":{"fee_tokens":[{"denom":"uqsr","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://quasar-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://quasar-testnet-rpc.stakeandrelax.net/","provider":"Stake and Relax"},{"address":"https://quasar-testnet.rpc.kjnodes.com","provider":"KJNodes.com"}]}},{"chain_id":"rhye-2","fees":{"fee_tokens":[{"denom":"uqck","low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.00025}]},"apis":{"rpc":[{"address":"http://quick.rpc.t.stavr.tech:20027","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://quicksilver-testnet-rpc.polkachu.com/","provider":"polkachu"},{"address":"https://quicksilver-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"earendel-1","fees":{"fee_tokens":[{"denom":"uqwoyn"}]},"apis":{"rpc":[{"address":"https://testnet-rpc.qwoyn.studio","provider":"Qwoyn Studios"}]}},{"chain_id":"ssc-testnet-2","fees":{"fee_tokens":[{"denom":"utsaga","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://testnet-ssc.sagarpc.io/","provider":"Saga"}]}},{"chain_id":"pulsar-3","fees":{"fee_tokens":[{"denom":"uscrt","fixed_min_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet.secretsaturn.net","provider":"π•Šecret π•Šaturn"},{"address":"https://rpc.pulsar.scrttestnet.com","provider":"SCRT Testnet Committee"}]}},{"chain_id":"atlantic-1","fees":{"fee_tokens":[{"denom":"usei","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://sei-testnet-rpc.brocha.in","provider":"Brochain"}]}},{"chain_id":"atlantic-2","fees":{"fee_tokens":[{"denom":"usei","fixed_min_gas_price":0.08}]},"apis":{"rpc":[{"address":"https://sei-testnet-2-rpc.brocha.in","provider":"Brochain"},{"address":"https://rpc-testnet-sei.stingray.plus","provider":"StingRay"}]}},{"chain_id":"self-dev-1","fees":{"fee_tokens":[{"denom":"uself","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-devnet.selfchain.xyz","provider":"Selfchain"}]}},{"chain_id":"sge-network-3","fees":{"fee_tokens":[{"denom":"usge","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.testnet.sgenetwork.io","provider":"Sge Network"},{"address":"https://testnet-saage-rpc.lavenderfive.com/ ","provider":"Lavender.Five"},{"address":"https://saage-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-t.sge.nodestake.top/","provider":"Nodestake.top"},{"address":"https://sge.rpc.t.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"sge-network-4","fees":{"fee_tokens":[{"denom":"usge","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.testnet.sgenetwork.io","provider":"Sge Network"},{"address":"https://testnet-saage-rpc.lavenderfive.com/ ","provider":"Lavender.Five"},{"address":"https://saage-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-t.sge.nodestake.top/","provider":"Nodestake.top"}]}},{"chain_id":"yulei-2.1","fees":{"fee_tokens":[{"denom":"uctk","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://yulei-rpc.shentu.org:443","provider":"Shentu"}]}},{"chain_id":"fivenet","fees":{"fee_tokens":[{"denom":"usix","fixed_min_gas_price":1.25,"low_gas_price":1.25,"average_gas_price":1.5,"high_gas_price":1.75}]},"apis":{"rpc":[{"address":"https://rpc1.fivenet.sixprotocol.net:443"}]}},{"chain_id":"soarchaintestnet","fees":{"fee_tokens":[{"denom":"utsoar","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc1.testnet.soarchain.com","provider":"soarchain"},{"address":"https://rpc2.testnet.soarchain.com/","provider":"soarchain"},{"address":"https://soarchain-testnet-rpc.tienthuattoan.com","provider":"tienthuattoan"},{"address":"https://soarchain-testnet.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-t.soarchain.nodestake.org","provider":"nodeStake"},{"address":"https://soarchain-testnet-rpc.stakerhouse.com","provider":"stakerHouse"}]}},{"chain_id":"sourcetest-1","fees":{"fee_tokens":[{"denom":"usource","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.075,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://source-testnet-rpc.itrocket.net/","provider":"ITRocket"},{"address":"https://source-test.rpc.moonbridge.team/","provider":"MoonBridge"},{"address":"https://source-testnet-rpc.stake-town.com:443","provider":"StakeTown"},{"address":"https://rpc-testnet-source.sr20de.xyz","provider":"SR20DE"},{"address":"https://source-testnet.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://source_testnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"elgafar-1","fees":{"fee_tokens":[{"denom":"ustars","low_gas_price":0.03,"average_gas_price":0.04,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.elgafar-1.stargaze-apis.com","provider":"Stargaze Foundation"},{"address":"https://stargaze-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"stateset-1-testnet","fees":{"fee_tokens":[{"denom":"ustate","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.stateset.zone/","provider":"stateset"}]}},{"chain_id":"stride-internal-1","fees":{"fee_tokens":[{"denom":"ustrd","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://stride.testnet-1.stridenet.co","provider":"Stride"}]}},{"chain_id":"sunrise-test-0.1","fees":{"fee_tokens":[{"denom":"urise","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://a-node.sunrise-test-1.cauchye.net/","provider":"CauchyE"},{"address":"https://b-node.sunrise-test-1.cauchye.net/","provider":"CauchyE"}]}},{"chain_id":"swisstronik_1291-1","fees":{"fee_tokens":[{"denom":"aswtr","fixed_min_gas_price":7}]},"apis":{"rpc":[{"address":"https://rpc.testnet.swisstronik.com","provider":"Swisstronik"},{"address":"https://testnet-swisstronik-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://rpc.swisstronik.comunitynode.my.id","provider":"ComunityNode"}]}},{"chain_id":"symphony-testnet-3","fees":{"fee_tokens":[{"denom":"note","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://symphony.test.rpc.nodeshub.online/","provider":"Nodes Hub"},{"address":"https://symphony-testnet-rpc.cogwheel.zone/","provider":"Cogwheel βš™οΈ"}]}},{"chain_id":"amber-2","fees":{"fee_tokens":[{"denom":"uamber","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-testnet.synternet.com/","provider":"Synternet"}]}},{"chain_id":"90u-4","fees":{"fee_tokens":[{"denom":"uthiolx","fixed_min_gas_price":0.5,"low_gas_price":0.75,"average_gas_price":1,"high_gas_price":1.25}]},"apis":{"rpc":[{"address":"https://testnet-rpc.terp.network:443/","provider":"Terpnet Foundation"},{"address":"https://terp-testnet-rpc.itrocket.net:443/","provider":"itrocket"}]}},{"chain_id":"90u-2","fees":{"fee_tokens":[{"denom":"uthiolx","fixed_min_gas_price":0.5,"low_gas_price":0.75,"average_gas_price":1,"high_gas_price":1.25}]},"apis":{"rpc":[{"address":"https://terp-testnet-rpc.itrocket.net:443/","provider":"itrocket"}]}},{"chain_id":"pisco-1","fees":{"fee_tokens":[{"denom":"uluna","fixed_min_gas_price":0.0125,"low_gas_price":0.0125,"average_gas_price":0.015,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://pisco-rpc.terra.dev:443","provider":"Terraform Labs"},{"address":"https://terra-testnet-rpc.polkachu.com:443","provider":"Polkachu"}]}},{"chain_id":"titan_18889-1","fees":{"fee_tokens":[{"denom":"atkx","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":110000000000,"high_gas_price":200000000000}]},"apis":{"rpc":[{"address":"https://titan-testnet-rpc.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-1.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-2.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-3.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-4.titanlab.io:443","provider":"Titanlab.io"}]}},{"chain_id":"tucana_712-1","fees":{"fee_tokens":[{"denom":"atuc","fixed_min_gas_price":5000000000,"low_gas_price":10000000000,"average_gas_price":25000000000,"high_gas_price":30000000000}]},"apis":{"rpc":[{"address":"https://rpc.birdee-2.tucana.zone/","provider":"Tucana"}]}},{"chain_id":"ulas","apis":{"rpc":[{"address":"http://65.49.204.199:26657","provider":"UlasNetwork"}]}},{"chain_id":"FUND-TestNet-2","fees":{"fee_tokens":[{"denom":"nund","fixed_min_gas_price":25,"low_gas_price":100,"average_gas_price":200,"high_gas_price":300}]},"apis":{"rpc":[{"address":"https://rpc-testnet.unification.io:443","provider":"Unification"}]}},{"chain_id":"union-testnet-8","fees":{"fee_tokens":[{"denom":"muno","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.testnet-8.union.build","provider":"union"},{"address":"https://union-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-testnet-union.nodeist.net","provider":"Nodeist"},{"address":"https://union-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"uptick_7000-2","fees":{"fee_tokens":[{"denom":"auptick","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://uptick-7000-2-rpc.staketab.org:443","provider":"Staketab"}]}},{"chain_id":"buenavista-1","fees":{"fee_tokens":[{"denom":"uward","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.buenavista.wardenprotocol.org/","provider":"Warden Protocol"}]}},{"chain_id":"INVALID-ID-wavehashtestnet-testnet-1","fees":{"fee_tokens":[{"denom":"uwahax","low_gas_price":0.0025,"average_gas_price":0.0025,"high_gas_price":0.0024}]},"apis":{"rpc":[{"address":"https://rpc.wavehash.online/","provider":"WaveHash Network"}]}},{"chain_id":"xion-testnet-1","fees":{"fee_tokens":[{"denom":"uxion","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.001,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.xion-testnet-1.burnt.com","provider":"πŸ”₯BurntLabsπŸ”₯"},{"address":"https://testnet-burnt-rpc.lavenderfive.com","provider":"Lavender.Five Nodes 🐝"},{"address":"https://xion-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://burnt-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"cube_47-5","fees":{"fee_tokens":[{"denom":"axpla","fixed_min_gas_price":850000000000,"low_gas_price":850000000000,"average_gas_price":1147500000000,"high_gas_price":1487500000000}]},"apis":{"rpc":[{"address":"https://cube-rpc.xpla.dev","provider":"Holdings"}]}},{"chain_id":"gardia-2","fees":{"fee_tokens":[{"denom":"urock","fixed_min_gas_price":0.5,"low_gas_price":0.5,"average_gas_price":0.55,"high_gas_price":0.6}]},"apis":{"rpc":[{"address":"https://rpc.gardia.zenrocklabs.io/","provider":"zenrock"}]}},{"chain_id":"athens_7001-1","fees":{"fee_tokens":[{"denom":"azeta","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://zetachain-athens.blockpi.network/rpc/v1/public","provider":"BlockPI"},{"address":"https://zetachain-testnet-archive.allthatnode.com:26657","provider":"All That Node"}]}},{"chain_id":"landlord-2","fees":{"fee_tokens":[{"denom":"l2/1666ede2bf1985307a86de36a6b78411cbf1edeffc2ac569e6a7b2f8753db4bb","fixed_min_gas_price":0.15,"low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://maze-rpc-sequencer-53ecf1d6-4fa1-4103-827f-a9430df97cef.ane1-prod-nocsm.newmetric.xyz","provider":"Civitia"}]}},{"chain_id":"initiation-2","fees":{"fee_tokens":[{"denom":"uinit","fixed_min_gas_price":0.15,"low_gas_price":0.15,"average_gas_price":0.15,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc.testnet.initia.xyz/","provider":"Initia Labs"},{"address":"https://rpc-skip.testnet.initia.xyz/","provider":"Initia Labs","authorizedUser":"skip"}]}},{"chain_id":"glados-2.1","fees":{"fee_tokens":[{"denom":"umilk","fixed_min_gas_price":0.15,"low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4},{"denom":"ibc/37A3FB4FED4CA04ED6D9E5DA36C6D27248645F0E22F585576A1488B8A89C5A50","fixed_min_gas_price":0.15,"low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc.testnet.milkyway.zone","provider":"MilkyWay Labs"},{"address":"https://rpc-skip.testnet.milkyway.zone","provider":"MilkyWay Labs","authorizedUser":"skip","indexForSkip":0}]}},{"chain_id":"minievm-2","fees":{"fee_tokens":[{"denom":"GAS","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.minievm-2.initia.xyz","provider":"Initia Labs"},{"address":"https://rpc-skip.minievm-2.initia.xyz","provider":"Initia Labs","authorizedUser":"skip","indexForSkip":0}]}},{"chain_id":"minimove-2","fees":{"fee_tokens":[{"denom":"umin","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.minimove-2.initia.xyz","provider":"Initia Labs"},{"address":"https://rpc-skip.minimove-2.initia.xyz","provider":"Initia Labs","authorizedUser":"skip","indexForSkip":0}]}},{"chain_id":"miniwasm-2","fees":{"fee_tokens":[{"denom":"umin","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.miniwasm-2.initia.xyz","provider":"Initia Labs"},{"address":"https://rpc-skip.miniwasm-2.initia.xyz","provider":"Initia Labs","authorizedUser":"skip","indexForSkip":0}]}}] \ No newline at end of file +[{"chain_id":"aaronetwork","fees":{"fee_tokens":[{"denom":"uaaron","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://mainnet-rpc.aaronetwork.xyz","provider":"Aaron Network Foundation"},{"address":"https://aaronetwork_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://aaron.rpc.nodeshub.online","provider":"NodesHub"}]}},{"chain_id":"acre_9052-1","fees":{"fee_tokens":[{"denom":"aacre","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc-acre.synergynodes.com","provider":"Synergy Nodes"},{"address":"https://acrechain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.acre.tcnetwork.io","provider":"TC Network"},{"address":"https://mainnet-acre-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://acred-rpc.staketab.org:443","provider":"Staketab"}]}},{"chain_id":"agoric-3","fees":{"fee_tokens":[{"denom":"ubld","low_gas_price":0.03,"average_gas_price":0.05,"high_gas_price":0.07},{"denom":"uist","low_gas_price":0.0034,"average_gas_price":0.007,"high_gas_price":0.02}]},"apis":{"rpc":[{"address":"https://main.rpc.agoric.net:443"},{"address":"https://agoric-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.agoric.nodestake.org","provider":"NodeStake"},{"address":"https://agoric.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://agoric-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-agoric-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://agoric-rpc.0base.dev","provider":"0base.vc"},{"address":"https://agoric-rpc.stakeangle.com","provider":"StakeAngle"},{"address":"https://agoric-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc.agoric.stakewith.us","provider":"StakeWithUs"},{"address":"https://rpc-agoric-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://agoric-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.agoric.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"aioz_168-1","fees":{"fee_tokens":[{"denom":"attoaioz","fixed_min_gas_price":7000000000,"low_gas_price":7000000000,"average_gas_price":7000000000,"high_gas_price":10000000000}]},"apis":{"rpc":[{"address":"https://rpc-dataseed.aioz.network:443","provider":"AIOZ Network"}]}},{"chain_id":"akashnet-2","fees":{"fee_tokens":[{"denom":"uakt","fixed_min_gas_price":0.00025,"low_gas_price":0.00025,"average_gas_price":0.0025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://rpc.akash.forbole.com:443","provider":"forbole"},{"address":"https://rpc-akash.ecostake.com:443","provider":"ecostake"},{"address":"https://rpc.lavenderfive.com:443/akash","provider":"Lavender.Five Nodes"},{"address":"https://akash-rpc.polkachu.com","provider":"Polkachu"},{"address":"http://akash.c29r3.xyz:80/rpc","provider":"c29r3"},{"address":"https://akash-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://akash-mainnet-rpc.cosmonautstakes.com:443","provider":"Cosmonaut Stakes"},{"address":"https://akash-rpc.w3coins.io","provider":"w3coins"},{"address":"https://akash-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://akash.declab.pro:26601","provider":"Decloud Nodes Lab"},{"address":"https://rpc.akash.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"althea_258432-1","fees":{"fee_tokens":[{"denom":"aalthea","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":100000000000,"high_gas_price":300000000000}]},"apis":{"rpc":[{"address":"https://nodes.chandrastation.com/rpc/althea/","provider":"Chandra Station"},{"address":"https://althea.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/althea","provider":"Lavender.Five Nodes 🐝"}]}},{"chain_id":"andromeda-1","fees":{"fee_tokens":[{"denom":"uandr","low_gas_price":0.03,"average_gas_price":0.05,"high_gas_price":0.075}]},"apis":{"rpc":[{"address":"https://rpc.andromeda-1.andromeda.aviaone.com","provider":"AviaOne 🟒"},{"address":"https://andromeda.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://andromeda.rpc.nodex.one","provider":"nodex"},{"address":"https://andro.rpc.m.stavr.tech/","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/andromeda","provider":"Lavender.Five Nodes 🐝"},{"address":"https://andromeda-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://andromeda-rpc.stakerhouse.com:443","provider":"StakerHouse"},{"address":"https://andromeda-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://andromeda-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://andromeda.rpc.kjnodes.com","provider":"kjnodes.com πŸ¦„"},{"address":"andromeda-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"rpc-andromeda.blockval.io","provider":"Blockval"},{"address":"https://andromeda.rpc.liveraven.net","provider":"LiveRaveN"}]}},{"chain_id":"archway-1","fees":{"fee_tokens":[{"denom":"aarch","fixed_min_gas_price":140000000000,"low_gas_price":196000000000,"average_gas_price":225400000000,"high_gas_price":254800000000}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.archway.io","provider":"Archway Foundation"},{"address":"https://archway-mainnet-archive.allthatnode.com:26657","provider":"All That Node"},{"address":"https://m-archway.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc-1.archway.nodes.guru","provider":"Nodes.Guru"},{"address":"https://archway.rpc.silknodes.io/","provider":"Silk Nodes"},{"address":"https://archway.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-archway.cryptech.com.ua","provider":"cryptech"},{"address":"https://rpc-archway.theamsolutions.info","provider":"AM Solutions"},{"address":"https://archway-rpc.w3coins.io","provider":"w3coins"},{"address":"https://m-archway.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc.lavenderfive.com:443/archway","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-archway.mms.team","provider":"MMS"},{"address":"https://rpc-archway.mzonder.com","provider":"MZONDER"},{"address":"https://rpc.archway.lgns.net","provider":"Luganodes"},{"address":"https://archway-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://archway-rpc.0base.dev","provider":"0base.vc"},{"address":"https://archway-mainnet.rpc.l0vd.com","provider":"L0vd.com"},{"address":"https://archway-rpc.openbitlab.com","provider":"openbitlab"},{"address":"https://rpc-archway.mzonder.com","provider":"MZONDER"},{"address":"https://rpc-archway.mainnet.validatrium.club","provider":"Validatrium"},{"address":"https://rpc.archway.stakeup.tech","provider":"StakeUp"},{"address":"https://archway-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.archway.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc-archway.luckyfriday.io/","provider":"GlobalStake"},{"address":"https://archway-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://archway-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"arkh","fees":{"fee_tokens":[{"denom":"arkh","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://asc-dataseed.arkhadian.com/","provider":"arkhnetwork"},{"address":"https://arkh_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"mantle-1","fees":{"fee_tokens":[{"denom":"umntl","low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.assetmantle.one","provider":"AssetMantle"},{"address":"https://assetmantle-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.assetmantle.nodestake.org","provider":"NodeStake"},{"address":"https://rpc-assetmantle-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.mantle.paranorm.pro:443","provider":"paranorm"},{"address":"https://assetmantle-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://assetmantle-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"atomone-1","fees":{"fee_tokens":[{"denom":"uatone","fixed_min_gas_price":0.001,"low_gas_price":0.006,"average_gas_price":0.006,"high_gas_price":0.009}]},"apis":{"rpc":[{"address":"https://atomone-rpc.allinbits.com:443","provider":"AllInBits"},{"address":"https://atomone-rpc.cogwheel.zone","provider":"Cogwheel βš™οΈ"},{"address":"https://atomone.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://rpc-atomone.nodeist.net","provider":"Nodeist"},{"address":"https://rpc-atomone-1.cros-nest.com:443","provider":"crosnest"},{"address":"https://community.nuxian-node.ch:6797/atomone/trpc","provider":"PRO Delegators"},{"address":"https://atomone-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://atomone_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://atomone-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://atomone-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"aura_6322-2","fees":{"fee_tokens":[{"denom":"uaura","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://rpc.aura.network/","provider":"Aura Network Foundation"},{"address":"https://m-aura.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://aura.rpc.m.stavr.tech:11047","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://aura-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://aura.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://mainnet-aura-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.lavenderfive.com:443/aura","provider":"Lavender.Five Nodes 🐝"},{"address":"https://aura-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc.aura.safeblock.space","provider":"Safe Block"},{"address":"https://rpc.aura.silentvalidator.com","provider":"silent"},{"address":"https://rpc-aura.mms.team","provider":"MMS"},{"address":"https://aura-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://aura-rpc.palamar.io","provider":"Palamar"},{"address":"https://aura.rpc.srv.stakr.space","provider":"STAKR.space"},{"address":"https://aura-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://aura-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"axelar-dojo-1","fees":{"fee_tokens":[{"denom":"uaxl","fixed_min_gas_price":0.007,"low_gas_price":0.007,"average_gas_price":0.007,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc-axelar.imperator.co:443","provider":"Imperator.co"},{"address":"https://axelar-rpc.quickapi.com:443","provider":"chainlayer"},{"address":"https://rpc-axelar.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://axelar-rpc.pops.one:443","provider":"p-ops"},{"address":"https://axelar-rpc.qubelabs.io:443","provider":"Qubelabs"},{"address":"https://rpc-1.axelar.nodes.guru:443","provider":"nodes.guru"},{"address":"https://rpc-axelar-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://axelar-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://axelar.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://rpc.axelar.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://axelar-rpc.validatrium.club","provider":"Validatrium"},{"address":"https://rpc-axelar.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://axelar-rpc.quantnode.tech/","provider":"QuantNode"},{"address":"https://axelar-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://axelar-rpc.rockrpc.net/","provider":"RockawayX Infra"},{"address":"https://axelar-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc-axelar-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://axelar-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://axelar-rpc.w3coins.io","provider":"w3coins"},{"address":"https://axelar-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://axelar.drpc.org","provider":"dRPC"}]}},{"chain_id":"laozi-mainnet","fees":{"fee_tokens":[{"denom":"uband","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.005}]},"apis":{"rpc":[{"address":"http://rpc.laozi1.bandchain.org:80","provider":"bandprotocol"},{"address":"https://rpc-bandchain-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://band-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://bandchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://band.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-band-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-band.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://band-rpc.w3coins.io","provider":"w3coins"},{"address":"https://bandprotocol-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://public.stakewolle.com/cosmos/bandchain/rpc","provider":"Stakewolle"},{"address":"https://rpc.band.bronbro.io/","provider":"Bro_n_Bro"},{"address":"https://rpc.band.roomit.xyz/","provider":"Roomit"},{"address":"https://band-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"beezee-1","fees":{"fee_tokens":[{"denom":"ubze","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.getbze.com","provider":"AlphaTeam"},{"address":"https://rpc-1.getbze.com","provider":"AlphaTeam"},{"address":"https://rpc-2.getbze.com","provider":"AlphaTeam"},{"address":"https://beezee_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bitbadges-1","fees":{"fee_tokens":[{"denom":"ubadge","fixed_min_gas_price":0,"low_gas_price":0.00025,"average_gas_price":0.0025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"http://134.122.12.165:26657","provider":"bitbadges"},{"address":"https://bitbadges_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bitcanna-1","fees":{"fee_tokens":[{"denom":"ubcna","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.bitcanna.io/","provider":"bitcanna"},{"address":"https://bcna-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://bitcanna-rpc.panthea.eu/","provider":"Panthea EU"},{"address":"https://rpc.bitcanna.sgtstake.com/","provider":"SGTstake"},{"address":"https://bitcanna.rpc.m.anode.team/","provider":"AlxVoy ⚑ ANODE.TEAM"},{"address":"https://bitcanna.rpc.m.stavr.tech/","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-bcna.kjinc.io/","provider":"KJINC.io"},{"address":"https://mainnet-bitcanna-rpc.konsortech.xyz/","provider":"KonsorTech"},{"address":"https://bitcanna.rpc.kjnodes.com/","provider":"kjnodes"},{"address":"https://bitcanna-rpc.genznodes.dev/","provider":"genznodes"},{"address":"https://rpc.bitcanna-1.bitcanna.aviaone.com/","provider":"AVIAONE 🟒"},{"address":"https://rpc.bitcanna-mainnet.hexnodes.one/","provider":"Hexnodes"},{"address":"https://rpc.bitcanna.citizenweb3.com/","provider":"Citizen Web3"},{"address":"https://bitcanna-mainnet.rpc.l0vd.com/","provider":"L0vd.com"},{"address":"https://bitcanna-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.bitcanna.safeblock.space","provider":"Safe Block"},{"address":"https://bitcanna.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://rpc.bitcanna.indonode.net/","provider":"Indonode"},{"address":"https://rpc-bitcanna.mms.team:443","provider":"MMS"},{"address":"https://bitcanna-rpc.validatornode.com","provider":"ValidatorNode"},{"address":"https://bitcanna.rpc.nodex.one","provider":"NodeX Emperor ⚑ Bitcanna"},{"address":"https://bcna.rpc.arcturian.tech/","provider":"Arcturian Tech"},{"address":"https://rpc.bitcanna.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://bitcanna-rpc.bluestake.net","provider":"BlueStake"},{"address":"https://rpc-bitcanna.cryptech.com.ua","provider":"CrypTech"},{"address":"https://bitcanna-rpc.kalia.network/","provider":"Kalia Network"},{"address":"https://bitcanna.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://bitcanna_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bitsong-2b","fees":{"fee_tokens":[{"denom":"ubtsg","fixed_min_gas_price":0,"low_gas_price":3,"average_gas_price":10,"high_gas_price":20}]},"apis":{"rpc":[{"address":"https://rpc-bitsong-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.explorebitsong.com","provider":"stake.systems"},{"address":"https://bitsong-rpc.validatrium.club","provider":"Validatrium"},{"address":"https://rpc.bitsong.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.bitsong.quokkastake.io","provider":"🐹 Quokka Stake"},{"address":"https://rpc-bitsong.starsquid.io","provider":"Starsquid"},{"address":"https://rpc-bitsong.architectnodes.com","provider":"Architect Nodes"},{"address":"http://bitsong.statesync.nodersteam.com:11657","provider":"[NODERS]TEAM"},{"address":"https://rpc.bitsong.safeblock.space","provider":"Safe Block"},{"address":"https://bitsong.tdrsys.com:2053","provider":"TdrSys"},{"address":"https://bitsong-rpc.panthea.eu","provider":"Panthea EU"},{"address":"https://rpc.bitsong.mathnodes.com","provider":"MathNodes"},{"address":"https://bitsong-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://bitsong-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://bitsong.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"blockx_19191-1","apis":{"rpc":[{"address":"https://rpc-blockx.nodeist.net","provider":"Nodeist"},{"address":"https://blockx_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bluechip-2","fees":{"fee_tokens":[{"denom":"ubluechip","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[]}},{"chain_id":"bluzelle-9","fees":{"fee_tokens":[{"denom":"ubnt","fixed_min_gas_price":0.002,"low_gas_price":0.002,"average_gas_price":0.002,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://a.client.sentry.net.bluzelle.com:26657","provider":"Bluzelle"},{"address":"https://b.client.sentry.net.bluzelle.com:26657","provider":"Bluzelle"},{"address":"https://c.client.sentry.net.bluzelle.com:26657","provider":"Bluzelle"},{"address":"https://bluzelle_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"bostrom","fees":{"fee_tokens":[{"denom":"boot","low_gas_price":0,"average_gas_price":0,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.bostrom.cybernode.ai","provider":"cybercongress"},{"address":"https://rpc-cyber-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.cyber.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"bouachain","fees":{"fee_tokens":[{"denom":"ubouacoin","fixed_min_gas_price":0,"low_gas_price":0.0006,"average_gas_price":0.012,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.bouachain.com","provider":"BouaValidator"}]}},{"chain_id":"canto_7700-1","fees":{"fee_tokens":[{"denom":"acanto","fixed_min_gas_price":1000000000000,"low_gas_price":1000000000000,"average_gas_price":2000000000000,"high_gas_price":3000000000000}]},"apis":{"rpc":[{"address":"https://rpc.canto.nodestake.top","provider":"NodeStake"},{"address":"https://canto-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.canto.silentvalidator.com/","provider":"silent"},{"address":"https://canto.gravitychain.io:26657","provider":"Althea"},{"address":"https://canto-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-canto.kewrnode.com","provider":"Kewr Node"}]}},{"chain_id":"carbon-1","fees":{"fee_tokens":[{"denom":"swth","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1,"high_gas_price":1,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"usc","fixed_min_gas_price":0,"low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.0001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"bnb.1.6.773edb","fixed_min_gas_price":0,"low_gas_price":1000000,"average_gas_price":1000000,"high_gas_price":1000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"bneo.1.14.e2e5f6","fixed_min_gas_price":0,"low_gas_price":0.0015,"average_gas_price":0.0015,"high_gas_price":0.0015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"busd.1.6.754a80","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"cglp.1.19.1698d3","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"cgt/1","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"eth.1.19.c3b805","fixed_min_gas_price":0,"low_gas_price":100000,"average_gas_price":100000,"high_gas_price":100000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"eth.1.2.942d87","fixed_min_gas_price":0,"low_gas_price":100000,"average_gas_price":100000,"high_gas_price":100000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C","fixed_min_gas_price":0,"low_gas_price":0.0035,"average_gas_price":0.0035,"high_gas_price":0.0035,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","fixed_min_gas_price":0,"low_gas_price":0.0000075,"average_gas_price":0.0000075,"high_gas_price":0.0000075,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5","fixed_min_gas_price":0,"low_gas_price":0.00005,"average_gas_price":0.00005,"high_gas_price":0.00005,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5","fixed_min_gas_price":0,"low_gas_price":0.00032,"average_gas_price":0.00032,"high_gas_price":0.00032,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364","fixed_min_gas_price":0,"low_gas_price":300000000,"average_gas_price":300000000,"high_gas_price":300000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118","fixed_min_gas_price":0,"low_gas_price":0.0006,"average_gas_price":0.0006,"high_gas_price":0.0006,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5","fixed_min_gas_price":0,"low_gas_price":0.00015,"average_gas_price":0.00015,"high_gas_price":0.00015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","fixed_min_gas_price":0,"low_gas_price":0.0000075,"average_gas_price":0.0000075,"high_gas_price":0.0000075,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93","fixed_min_gas_price":0,"low_gas_price":0.00015,"average_gas_price":0.00015,"high_gas_price":0.00015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861","fixed_min_gas_price":0,"low_gas_price":200000000,"average_gas_price":200000000,"high_gas_price":200000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701","fixed_min_gas_price":0,"low_gas_price":0.00001,"average_gas_price":0.00001,"high_gas_price":0.00001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C","fixed_min_gas_price":0,"low_gas_price":0.00001,"average_gas_price":0.00001,"high_gas_price":0.00001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","fixed_min_gas_price":0,"low_gas_price":0.00015,"average_gas_price":0.00015,"high_gas_price":0.00015,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"usdc.1.2.343151","fixed_min_gas_price":0,"low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.0001,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"usdc.1.6.53ff75","fixed_min_gas_price":0,"low_gas_price":100000000,"average_gas_price":100000000,"high_gas_price":100000000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}},{"denom":"zil.1.18.1a4a06","fixed_min_gas_price":0,"low_gas_price":6000,"average_gas_price":6000,"high_gas_price":6000,"gas_costs":{"cosmos_send":10000000,"ibc_transfer":10000000}}]},"apis":{"rpc":[{"address":"https://tm-api.carbon.network","provider":"switcheo-labs"},{"address":"https://rpc.lavenderfive.com:443/carbon","provider":"Lavender.Five Nodes 🐝"},{"address":"https://carbon-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.carbon.blockhunters.org","provider":"BlockHunters"}]}},{"chain_id":"celestia","fees":{"fee_tokens":[{"denom":"utia","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://public-celestia-rpc.numia.xyz","provider":"Numia"},{"address":"https://celestia-rpc.mesa.newmetric.xyz","provider":"Newmetric"},{"address":"https://rpc.lunaroasis.net","provider":"Lunar Oasis"},{"address":"https://rpc.celestia.nodestake.org","provider":"NodeStake"},{"address":"https://rpc.lavenderfive.com:443/celestia","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-celestia-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-celestia.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"http://celestia.rpc.nodersteam.com:29657","provider":"[NODERS]TEAM"},{"address":"https://celestia.rpc.interchain.validao.xyz","provider":"ValiDAO"},{"address":"https://celestia-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://celestia.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://celestia.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://celestia-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-celestia.mzonder.com","provider":"MZONDER"},{"address":"https://celestia-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://rpc-celestia.theamsolutions.info","provider":"AM Solutions"},{"address":"https://celestia-mainnet-rpc.autostake.com:443","provider":"AutoStake | Delegate for StakeDrops"},{"address":"https://rpc.celestia.validatus.com","provider":"Validatus"},{"address":"https://celestia-rpc.sr20de.xyz","provider":"Sr20de"},{"address":"https://rpc-celestia-full.avril14th.org","provider":"Avril 14th"},{"address":"https://rpc.freshstaking.com/celestia","provider":"FreshSTAKING"},{"address":"https://celestia.cumulo.org.es/","provider":"Cumulo"},{"address":"https://celestia-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.celestia-app.bronbro.io","provider":"Bro_n_Bro"},{"address":"https://celestia-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc.celestia.citizenweb3.com","provider":"Citizen Web3"},{"address":"https://celestia-mainnet-rpc.itrocket.net","provider":"πŸš€ itrocket πŸš€"},{"address":"https://rpc.celestia.mainnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://celestia-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"}]}},{"chain_id":"perun-1","fees":{"fee_tokens":[{"denom":"uc4e","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.c4e.io/","provider":"C4E"},{"address":"https://rpc.c4e.mainnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://rpc.c4e.nodestake.top","provider":"NodeStake"},{"address":"https://c4e.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://chain4energy-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://c4e.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-c4e.takeshi.team","provider":"TAKESHI"},{"address":"https://rpc-c4e.mzonder.com","provider":"MZONDER"},{"address":"https://rpc.cros-nest.com/chain4energy","provider":"Crosnest"},{"address":"https://rpc.c4e.indonode.net","provider":"Indonode"},{"address":"https://c4e-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.c4e.silentvalidator.com","provider":"silent"},{"address":"http://rpc.c4e.stakeup.tech","provider":"StakeUp"},{"address":"https://chain4energy-rpc.stakeangle.com","provider":"StakeAngle"},{"address":"https://c4e-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://rpc-c4e.theamsolutions.info","provider":"AM Solutions"},{"address":"https://c4e.rpc.m.anode.team","provider":"AlxVoy ⚑ ANODE.TEAM"},{"address":"http://185.245.182.192:46657","provider":"Meerlabs"},{"address":"http://89.117.58.109:26657","provider":"medes"},{"address":"http://c4e.rpc.node75.org:26957","provider":"Pro-nodes75"},{"address":"http://164.68.125.243:26657","provider":"Smt Network"},{"address":"https://c4e-rpc.antrixy.org/","provider":"Antrix Validators"},{"address":"https://c4e.doubletop.tech/","provider":"DOUBLETOP"},{"address":"https://c4e-rpc.kalia.network:443","provider":"Kalia Network"},{"address":"http://38.242.220.64:16657","provider":"mahof"},{"address":"http://209.182.239.169:46657","provider":"SECARD"},{"address":"https://rpc.c4e.validatus.com:443","provider":"Validatus"},{"address":"https://rpc-m-c4e.apeironnodes.com:443","provider":"Apeiron Nodes"},{"address":"http://rpc-c4e.cryptech.com.ua:443","provider":"Cryptech"},{"address":"http://37.60.240.43:46657","provider":"NakoTurk"},{"address":"https://chain4energy_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"cheqd-mainnet-1","fees":{"fee_tokens":[{"denom":"ncheq","fixed_min_gas_price":25,"low_gas_price":50,"average_gas_price":75,"high_gas_price":100}]},"apis":{"rpc":[{"address":"https://rpc.cheqd.net","provider":"cheqd"},{"address":"https://rpc.lavenderfive.com:443/cheqd","provider":"Lavender.Five Nodes"},{"address":"https://cheqd.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-cheqd-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.cheqd.nodestake.org","provider":"NodeStake"},{"address":"https://rpc-cheqd.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://cheqd-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-cheqd.blockval.io","provider":"Blockval"},{"address":"https://public.stakewolle.com/cosmos/cheqd/rpc","provider":"Stakewolle"},{"address":"https://cheq-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://cheqd-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"chihuahua-1","fees":{"fee_tokens":[{"denom":"uhuahua","fixed_min_gas_price":0,"low_gas_price":500,"average_gas_price":1250,"high_gas_price":2000}]},"apis":{"rpc":[{"address":"https://rpc.chihuahua.wtf","provider":"Chihuahua"},{"address":"https://rpc-chihuahua.ecostake.com","provider":"ecostake"},{"address":"https://chihua.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://chihuahua-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-chihuahua-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/chihuahua","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.huahua.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://chihuahua-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://rpc-chihuahua.pupmos.network","provider":"PUPMØS"},{"address":"https://chihuahua-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://chihuahua-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.chihuahua.validatus.com","provider":"Validatus"},{"address":"https://chihuahua-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://chihuahua.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"}]}},{"chain_id":"chimba","fees":{"fee_tokens":[{"denom":"ucmba","fixed_min_gas_price":0.25,"low_gas_price":1,"average_gas_price":5,"high_gas_price":10}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.chimba.ooo","provider":"chimba"}]}},{"chain_id":"cifer-2","fees":{"fee_tokens":[{"denom":"ucif","fixed_min_gas_price":0.0025,"low_gas_price":1,"average_gas_price":5,"high_gas_price":10}]},"apis":{"rpc":[{"address":"http://34.128.114.243:26657","provider":"Cifer"}]}},{"chain_id":"cnho_stables-1","fees":{"fee_tokens":[{"denom":"ucnho","fixed_min_gas_price":0.000005,"low_gas_price":0.000001,"average_gas_price":0.00001,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://rpc.cnho.io","provider":"CNHO Stables"},{"address":"https://cnhostables_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"comdex-1","fees":{"fee_tokens":[{"denom":"ucmdx","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.comdex.one","provider":"comdex"},{"address":"https://comdex-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://comdex.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.comdex.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.lavenderfive.com:443/comdex","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-comdex.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://comdex-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://comdex-rpc.w3coins.io","provider":"w3coins"},{"address":"https://comdex-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://comdex-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-comdex-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://comdex-rpc.validatornode.com","provider":"ValidatorNode"},{"address":"https://rpc-comdex.blockval.io","provider":"Blockval"},{"address":"https://comdex-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://comdex-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"commercio-3","fees":{"fee_tokens":[{"denom":"ucommercio"}]},"apis":{"rpc":[{"address":"https://rpc-mainnet.commercio.network"}]}},{"chain_id":"centauri-1","fees":{"fee_tokens":[{"denom":"ppica","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-composable-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://composable-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://picasso-rpc.cogwheel.zone:443","provider":"Cogwheel βš™οΈ"},{"address":"https://rpc.lavenderfive.com:443/picasso","provider":"Lavender.Five Nodes 🐝"},{"address":"https://composable-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://picasso-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://composable.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://picasso-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.centauri.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://picasso-rpc.moonbridge.org","provider":"Moonbridge"},{"address":"https://rpc.composable.citizenweb3.com:443","provider":"Citizen Web3"},{"address":"https://composable.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"cvn_2032-1","fees":{"fee_tokens":[{"denom":"acvnt","fixed_min_gas_price":100000000,"low_gas_price":100000000,"average_gas_price":200000000,"high_gas_price":300000000}]},"apis":{"rpc":[{"address":"https://rpc.cvn.io/","provider":"cvn.io"},{"address":"https://conscious_mainnet_rpc.chain.whenmoonwhenlambo.money/","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"coreum-mainnet-1","fees":{"fee_tokens":[{"denom":"ucore","fixed_min_gas_price":0.03125,"low_gas_price":0.0625,"average_gas_price":0.0625,"high_gas_price":62.5}]},"apis":{"rpc":[{"address":"https://full-node.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-californium.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-curium.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-uranium.mainnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://rpc-coreum.ecostake.com","provider":"ecostake"},{"address":"https://coreum.rpc.silknodes.io","provider":"Silk Nodes"},{"address":"https://coreum-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.m.core.solonation.io","provider":"#SoloNation"},{"address":"https://coreum-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://coreum-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://public.stakewolle.com/cosmos/coreum/rpc","provider":"Stakewolle"},{"address":"https://coreum-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"cosmoshub-4","fees":{"fee_tokens":[{"denom":"uatom","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://cosmoshub.tendermintrpc.lava.build:443","provider":"Lava"},{"address":"https://cosmos-rpc.quickapi.com:443","provider":"Chainlayer"},{"address":"https://cosmos-rpc.onivalidator.com","provider":"Oni Validator ⛩️"},{"address":"https://rpc-cosmoshub.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc.lavenderfive.com:443/cosmoshub","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-cosmoshub.ecostake.com","provider":"ecostake"},{"address":"https://go.getblock.io/17515cb3ec0e43b7817f182e5de6066a","provider":"GetBlock RPC Nodes"},{"address":"https://rpc-cosmoshub.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-cosmoshub.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://cosmos-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://cosmos-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-cosmoshub-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-cosmoshub.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc.cosmos.dragonstake.io","provider":"DragonStake"},{"address":"https://cosmoshub.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://rpc.cosmos.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://cosmos-rpc.rockrpc.net","provider":"RockawayX Infra"},{"address":"http://rpc-cosmoshub.freshstaking.com:26657","provider":"FreshSTAKING"},{"address":"https://cosmos-rpc.easy2stake.com/","provider":"Easy 2 Stake"},{"address":"https://rpc.cosmos.nodestake.org","provider":"NodeStake"},{"address":"https://cosmos.rpc.silknodes.io","provider":"Silk Nodes"},{"address":"https://cosmos-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://cosmoshub.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.cosmoshub.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://rpc-cosmos-hub-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://cosmos-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-cosmoshub.mms.team","provider":"MMS"},{"address":"https://cosmos-rpc.tienthuattoan.com","provider":"TTT πŸ‡»πŸ‡³"},{"address":"https://community.nuxian-node.ch:6797/gaia/trpc","provider":"PRO Delegators"},{"address":"https://cosmos-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://cosmoshub-rpc.cosmosrescue.dev","provider":"cosmosrescue"},{"address":"https://cosmos.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"},{"address":"https://public.stakewolle.com/cosmos/cosmoshub/rpc","provider":"Stakewolle"},{"address":"https://rpc-cosmos.kewrnode.com","provider":"Kewr Node"},{"address":"https://rpc.cosmoshub-4.citizenweb3.com","provider":"Citizen Web3"},{"address":"https://cosmos-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://cosmos-hub.drpc.org","provider":"dRPC"},{"address":"https://cosmoshub-mainnet-rpc.itrocket.net","provider":"ITRocket"},{"address":"https://cosmoshub.rpc.quasarstaking.ai","provider":"Quasar"},{"address":"https://cosmos-rpc.ibs.team","provider":"Inter Blockchain Services"}]}},{"chain_id":"coss-1","fees":{"fee_tokens":[{"denom":"ucoss","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"ucgas","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"ucias","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://coss-rpc.coss.ink","provider":"StellarGuardian"},{"address":"https://coss-rpc.cias.network","provider":"CelestialPhoenix"}]}},{"chain_id":"crescent-1","fees":{"fee_tokens":[{"denom":"ucre","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://mainnet.crescent.network:26657","provider":"crescent"},{"address":"https://crescent-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-crescent.pupmos.network","provider":"PUPMØS"},{"address":"https://crescent.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://crescent-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-crescent.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://rpc-crescent-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://crescent-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc.crescent.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"cronosmainnet_25-1","fees":{"fee_tokens":[{"denom":"basecro"}]},"apis":{"rpc":[{"address":"https://rpc.cronos.org/","provider":"cronos.org"},{"address":"https://cronos-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://cronos.drpc.org","provider":"dRPC"}]}},{"chain_id":"crypto-org-chain-mainnet-1","fees":{"fee_tokens":[{"denom":"basecro","low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.crypto.org/","provider":"cronos.org"},{"address":"https://rpc-cryptoorgchain-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-cryptoorgchain.ecostake.com","provider":"ecostake"},{"address":"https://cryptocom-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://cryptocom-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-cryptoorg.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://cro-chain-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"mainnet-3","fees":{"fee_tokens":[{"denom":"udec","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://poseidon.mainnet.decentr.xyz","provider":"decentr"},{"address":"https://rpc.decentr.chaintools.tech/","provider":"ChainTools"},{"address":"https://decentr.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://decentr-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc-dcntr.nodine.id/","provider":"Nodine.ID"},{"address":"https://rpc-decentr.mms.team/","provider":"MMS"}]}},{"chain_id":"desmos-mainnet","fees":{"fee_tokens":[{"denom":"udsm","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.03,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.desmos.network","provider":"desmos"},{"address":"https://desmos-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://desmos-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc.desmos.tcnetwork.io","provider":"TC Network"},{"address":"https://rpc.desmos.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://desmos.declab.pro:26613","provider":"Decloud Nodes Lab"},{"address":"https://desmos-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"dhealth","fees":{"fee_tokens":[{"denom":"udhp","fixed_min_gas_price":0.01,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc.dhealth.com","provider":"dhealth"},{"address":"https://rpc.dhealth.nodestake.org","provider":"NodeStake"},{"address":"https://dhealth.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"}]}},{"chain_id":"vota-ash","fees":{"fee_tokens":[{"denom":"peaka","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":100000000000,"high_gas_price":100000000000}]},"apis":{"rpc":[{"address":"https://vota-rpc.dorafactory.org/","provider":"dorafactory"},{"address":"https://m-dora.rpc.utsa.tech","provider":"lesnik | UTSA"},{"address":"https://dora-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://doravota-mainnet-rpc.itrocket.net:443","provider":"ITRocket"}]}},{"chain_id":"dungeon-1","fees":{"fee_tokens":[{"denom":"udgn","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://dungeon.rpc.quasarstaking.ai","provider":"Quasar"},{"address":"https://rpc-dungeon-1.seraphim.zone","provider":"Seraphim"},{"address":"https://dungeon_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://dungeon-rpc.ibs;team","provider":"Inter Blockchain Services"}]}},{"chain_id":"dydx-mainnet-1","fees":{"fee_tokens":[{"denom":"adydx","fixed_min_gas_price":12500000000,"low_gas_price":12500000000,"average_gas_price":12500000000,"high_gas_price":20000000000},{"denom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://dydx-rpc.kingnodes.com:443","provider":"Kingnodes πŸ‘‘"},{"address":"https://dydx-dao-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://dydx-mainnet-full-rpc.public.blastapi.io","provider":"Bware Labs"},{"address":"https://rpc.lavenderfive.com:443/dydx","provider":"Lavender.Five Nodes 🐝"},{"address":"https://dydx-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-dydx.ecostake.com:443","provider":"ecostake"},{"address":"https://rpc.dydx.nodestake.top:443","provider":"NodeStake"},{"address":"https://rpc-dydx.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://dydx-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-dydx.cros-nest.com:443","provider":"Crosnest"},{"address":"https://dydx-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://community.nuxian-node.ch:6797/dydx/trpc","provider":"PRO Delegators"},{"address":"https://dydx-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://dydx.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"}]}},{"chain_id":"dymension_1100-1","fees":{"fee_tokens":[{"denom":"adym","fixed_min_gas_price":5000000000,"low_gas_price":5000000000,"average_gas_price":5000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://dym-m-rpc.agoranodes.com","provider":"AgoraNodes"},{"address":"https://rpc.dymension.nodestake.org","provider":"NodeStake"},{"address":"http://dymension.mainnet.rpc.noders.team:42657","provider":"[NODERS]TEAM"},{"address":"https://dymension-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.lavenderfive.com:443/dymension","provider":"Lavender.Five Nodes 🐝"},{"address":"https://dymension-rpc.kynraze.com","provider":"Kynraze"},{"address":"https://m-dymension.rpc.utsa.tech","provider":"lesnik | UTSA"},{"address":"https://rpc-dymension.nodeist.net","provider":"Nodeist"},{"address":"https://dym.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://dym.rpc-archive.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.dymension.hexnodes.co","provider":"Hexnodes"},{"address":"https://dymension.rpc.kjnodes.com:443","provider":"kjnodes.com πŸ¦„"},{"address":"https://dymension-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://dymension-rpc.takeshi.team","provider":"TAKESHI"},{"address":"https://dymension-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.dymension.silentvalidator.com:443","provider":"silent"},{"address":"https://rpc-dymension.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://community.nuxian-node.ch:6797/dymension/trpc","provider":"PRO Delegators"},{"address":"https://dymension-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://dymension-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://dymension.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://rpc-dymension.hoodrun.io:443","provider":"HoodRun"},{"address":"https://dymension.0xwave.com:2053","provider":"Wave"},{"address":"https://archive.rpc.dym.cumulo.com.es:443","provider":"Cumulo"},{"address":"https://rpc.dymension.posthuman.digital","provider":"posthuman"},{"address":"https://rpc.dymension.node75.org","provider":"Pro-Nodes75"},{"address":"https://rpc.dymension.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://dymension-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc.mainnet.dymension.aviaone.com","provider":"AVIAONE 🟒"},{"address":"https://rpc.archive.dymension.mainnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://dymension.drpc.org","provider":"dRPC"}]}},{"chain_id":"dyson-mainnet-01","fees":{"fee_tokens":[{"denom":"dys","low_gas_price":0.0001,"average_gas_price":0.0002,"high_gas_price":0.0003}]},"apis":{"rpc":[{"address":"https://dys-tm.dysonprotocol.com:443","provider":"dysonprotocol"},{"address":"https://dyson-rpc.cogwheel.zone:443","provider":"cogwheel"}]}},{"chain_id":"echelon_3000-3","fees":{"fee_tokens":[{"denom":"aechelon","low_gas_price":10000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://ech01trpc.mindheartsoul.org","provider":"Mind Heart Soul"},{"address":"https://rpc.echjoker.lol","provider":"⚑ Echelon Joker βš› πŸƒ"}]}},{"chain_id":"elys-1","fees":{"fee_tokens":[{"denom":"uelys","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.elys.network:443","provider":"Elys Network"},{"address":"https://elys-rpc.polkachu.com:443","provider":"Polkachu"},{"address":"https://elys-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://elys-mainnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://rpc.elys.nodestake.org:443","provider":"NodeStake"},{"address":"https://elys.rpc.liveraven.net:443","provider":"LiveRaveN"},{"address":"https://community.nuxian-node.ch:6797/elys/trpc","provider":"PRO Delegators"},{"address":"https://elys-rpc.highstakes.ch","provider":"High Stakes"},{"address":"https://elys-rpc.stake-town.com:443","provider":"StakeTown"},{"address":"https://elys.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://elys-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://elys-rpc.cogwheel.zone:443","provider":"Cogwheel βš™οΈ"},{"address":"https://elys.rpc.quasarstaking.ai:443","provider":"Quasar"},{"address":"https://elys-rpc.moonbridge.org:443","provider":"Moonbridge"},{"address":"https://elys_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"emoney-3","fees":{"fee_tokens":[{"denom":"ungm","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"eeur","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"echf","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"enok","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"esek","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"edkk","low_gas_price":1,"average_gas_price":1,"high_gas_price":1}]},"apis":{"rpc":[{"address":"https://emoney.validator.network","provider":"e-Money"},{"address":"https://rpc-emoney-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.emoney.bh.rocks","provider":"BlockHunters 🎯"}]}},{"chain_id":"empowerchain-1","fees":{"fee_tokens":[{"denom":"umpwr","fixed_min_gas_price":0,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-empowerchain.ecostake.com:443","provider":"ecostake"},{"address":"https://empowerchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://empower.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"http://empw.rpc.m.stavr.tech:22057","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-empowerchain.mzonder.com:443","provider":"MZONDER"},{"address":"https://empower-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-empower.vinjan.xyz:443","provider":"vinjan"},{"address":"https://rpc.empower.nodestake.top","provider":"NodeStake"},{"address":"https://mainnet-empower-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://empower.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://rpc.empowerchain.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://empower.declab.pro:26607","provider":"Decloud Nodes Lab"},{"address":"https://empower-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://empower-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://empower-rpc.moonbridge.org","provider":"Moonbridge"}]}},{"chain_id":"epix_4242-1","fees":{"fee_tokens":[{"denom":"aepix","fixed_min_gas_price":1000000000000,"low_gas_price":1000000000000,"average_gas_price":2000000000000,"high_gas_price":3000000000000}]},"apis":{"rpc":[{"address":"https://epix.rpc.silknodes.io/","provider":"Silk Nodes"}]}},{"chain_id":"1","fees":{"fee_tokens":[{"denom":"wei","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"ethos_7003-1","fees":{"fee_tokens":[{"denom":"aRYT"}]},"apis":{"rpc":[{"address":"https://ethos-rpc.provable.dev:443/","provider":"laurel.provable"}]}},{"chain_id":"evmos_9001-2","fees":{"fee_tokens":[{"denom":"aevmos","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/evmos","provider":"Lavender.Five Nodes 🐝"},{"address":"https://tendermint.bd.evmos.org:26657","provider":"Blockdaemon"},{"address":"https://rpc-evmos-ia.cosmosia.notional.ventures:443","provider":"Notional"},{"address":"https://rpc.evmos.testnet.run","provider":"TestNetRun"},{"address":"https://rpc.evmos.nodestake.top","provider":"NodeStake"},{"address":"https://rpc.evmos.chaintools.tech/","provider":"ChainTools"},{"address":"https://evmos-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.evmos.silentvalidator.com/","provider":"silent"},{"address":"https://rpc.evmos.tcnetwork.io","provider":"TC Network"},{"address":"https://evmos.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://rpc-evmos.architectnodes.com","provider":"Architect Nodes"},{"address":"https://evmos-rpc.validatrium.club","provider":"Validatrium"},{"address":"https://evmos-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-evmos-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://evmos-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://rpc-evmos.validavia.me","provider":"Validavia"},{"address":"https://evmos-rpc.w3coins.io","provider":"w3coins"},{"address":"https://evmos-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://evmos.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://evmos-rpc.antrixy.org/","provider":"Antrix Validators"},{"address":"https://evmos-mainnet.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://rpc.evmos.validatus.com","provider":"Validatus"},{"address":"https://rpc.evmos.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.evmos.citizenweb3.com:443","provider":"Citizen Web3"},{"address":"https://evmos.drpc.org","provider":"dRPC"}]}},{"chain_id":"fetchhub-4","fees":{"fee_tokens":[{"denom":"afet","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc-fetchhub.fetch.ai:443","provider":"fetch.ai"},{"address":"https://rpc-fetchhub-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://fetch-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://fetchai-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://fetch-rpc.antrixy.org","provider":"Antrix"},{"address":"https://rpc-fetch.architectnodes.com","provider":"Architect Nodes"},{"address":"https://fetchhub-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://fetch-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://fetch-rpc.cosmosrescue.com","provider":"cosmosrescue"},{"address":"https://fetch-rpc.w3coins.io","provider":"w3coins"},{"address":"https://fetch-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://fetch-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://public.stakewolle.com/cosmos/fetchhub/rpc","provider":"Stakewolle"},{"address":"https://fetch.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://rpc.fetchhub-4.fetch.aviaone.com","provider":"AVIAONE 🟒"},{"address":"https://fetchai-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"finschia-2","fees":{"fee_tokens":[{"denom":"cony","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.015,"high_gas_price":0.015}]},"apis":{"rpc":[{"address":"https://finschia-rpc.finschia.io"}]}},{"chain_id":"colosseum-1","fees":{"fee_tokens":[{"denom":"ufct","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.15,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://lcd-mainnet.firmachain.dev:26657","provider":"FirmaChain"},{"address":"https://firma.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.firmachain.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.lavenderfive.com:443/firmachain","provider":"Lavender.Five Nodes 🐝"},{"address":"https://firmachain-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://firmachain.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://firmachain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"furya-1","fees":{"fee_tokens":[{"denom":"ufury","low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.5}]},"apis":{"rpc":[{"address":"https://furya-rpc.synergynodes.com","provider":"synergynodes"},{"address":"https://furya.rpc.nodeshub.online:443","provider":"nodeshub"}]}},{"chain_id":"fxcore","fees":{"fee_tokens":[{"denom":"FX","fixed_min_gas_price":4000000000000,"low_gas_price":4000000000000,"average_gas_price":4200000000000,"high_gas_price":5000000000000}]},"apis":{"rpc":[{"address":"https://fx-json.functionx.io","provider":"Function X"},{"address":"https://functionx.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"}]}},{"chain_id":"galaxy-1","fees":{"fee_tokens":[{"denom":"uglx","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[]}},{"chain_id":"wormchain","fees":{"fee_tokens":[{"denom":"utest","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://tncnt-eu-wormchain-main-01.rpc.p2p.world/","provider":"P2P"},{"address":"https://wormchain-rpc.quickapi.com/","provider":"ChainLayer"}]}},{"chain_id":"genesis_29-2","fees":{"fee_tokens":[{"denom":"el1","low_gas_price":51000000000,"average_gas_price":52000000000,"high_gas_price":53000000000}]},"apis":{"rpc":[{"address":"https://26657.genesisl1.org","provider":"GenesisL1"},{"address":"https://genesisl1-rpc.zenode.app","provider":"anodeofzen"}]}},{"chain_id":"gitopia","fees":{"fee_tokens":[{"denom":"ulore","fixed_min_gas_price":0.001,"low_gas_price":0.0012,"average_gas_price":0.0016,"high_gas_price":0.0024}]},"apis":{"rpc":[{"address":"https://gitopia-rpc.polkachu.com:443","provider":"polkachu"},{"address":"https://rpc.lavenderfive.com:443/gitopia","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.gitopia.nodestake.org:443","provider":"nodestake"},{"address":"https://gitopia-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://gitopia-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://m-gitopia.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://gitopia.rpc.m.stavr.tech:51057","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://gitopia-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://gitopia.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://gitopia-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.gitopia.silentvalidator.com","provider":"silent"},{"address":"https://gitopia-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://rpc-gitopia.mzonder.com","provider":"MZONDER"},{"address":"https://gitopia.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.gitopia.sgtstake.com","provider":"SGTstake"},{"address":"https://mainnet-gitopia-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.gitopia.roomit.xyz","provider":"Roomit"},{"address":"https://gitopia-rpc.moonbridge.org","provider":"Moonbridge"},{"address":"https://gitopia-rpc.stakeangle.com","provider":"StakeAngle"},{"address":"https://gitopia.rpc.m.anode.team","provider":"AlxVoy ⚑ ANODE.TEAM"},{"address":"https://gitopia.rpc.stakevillage.net","provider":"Stake Village"},{"address":"https://gitopia-rpc.enigma-validator.com/","provider":"Enigma"},{"address":"https://rpc.gitopia.tcnetwork.io/","provider":"TC Network"},{"address":"https://gitopia.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://rpc.gitopia.stakeup.tech/","provider":"StakeUp"},{"address":"https://gitopia-mainnet.rpc.l0vd.com:443","provider":"L0vd.com ❀️"},{"address":"https://gitopia-rpc.tothemars.network:443","provider":"ToTheMars"},{"address":"https://gitopia.declab.pro:26625","provider":"Decloud Nodes Lab"},{"address":"https://gitopia-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"govgen-1","fees":{"fee_tokens":[{"denom":"ugovgen","fixed_min_gas_price":0.001,"low_gas_price":0.006,"average_gas_price":0.006,"high_gas_price":0.009}]},"apis":{"rpc":[{"address":"https://rpc.govgen.io:443","provider":"AllInBits"},{"address":"https://rpc-govgen.sg-1.online/","provider":"SG-1"},{"address":"https://govgen.rpc.nodeshub.online:443","provider":"Nodes Hub"},{"address":"https://govgen-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.govgen.posthuman.digital:443","provider":"posthuman"},{"address":"https://rpc-govgen.kewrnode.com/","provider":"Kewr Node"}]}},{"chain_id":"gravity-bridge-3","fees":{"fee_tokens":[{"denom":"ugraviton","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.035},{"denom":"gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","low_gas_price":0.0002,"average_gas_price":0.0005,"high_gas_price":0.0008},{"denom":"gravity0xdAC17F958D2ee523a2206206994597C13D831ec7","low_gas_price":0.0002,"average_gas_price":0.0005,"high_gas_price":0.0008}]},"apis":{"rpc":[{"address":"https://gravitychain.io:26657","provider":"althea"},{"address":"http://gravity-bridge-1-08.nodes.amhost.net:26657","provider":"amhost"},{"address":"https://gravity-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-gravitybridge-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/gravitybridge","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.gravity.bh.rocks/","provider":"BlockHunters 🎯"},{"address":"https://gravity-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://gravity-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://rpc-gravity-bridge-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://gravity-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://gravity-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc.g-bridge.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.gravity-bridge-3.gravity.aviaone.com:443","provider":"AviaOne 🟒"}]}},{"chain_id":"haqq_11235-1","fees":{"fee_tokens":[{"denom":"aISLM","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.tm.haqq.network","provider":"Haqq"},{"address":"https://rpc.haqq.sh","provider":"kioqq"},{"address":"https://rpc.haqq.nodestake.org","provider":"NodeStake"},{"address":"https://haqq-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.lavenderfive.com:443/haqq","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-haqq.sr20de.xyz:443","provider":"Sr20de"},{"address":"https://haqq-rpc.palamar.io","provider":"Palamar"},{"address":"https://haqq-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://haqq.drpc.org","provider":"dRPC"},{"address":"https://haqq.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"helichain","fees":{"fee_tokens":[{"denom":"uheli","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://rpc.helichain.com/","provider":"HeliChain"}]}},{"chain_id":"highbury_710-1","fees":{"fee_tokens":[{"denom":"ufury","low_gas_price":0.05,"average_gas_price":0.1,"high_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://gridiron.furya.io","provider":"fanfury"}]}},{"chain_id":"humans_1089-1","fees":{"fee_tokens":[{"denom":"aheart","fixed_min_gas_price":250000000,"low_gas_price":80000000000,"average_gas_price":100000000000,"high_gas_price":160000000000}]},"apis":{"rpc":[{"address":"https://rpc.humans.nodestake.org","provider":"NodeStake"},{"address":"https://humans.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://humans.rpc.nodeshub.online","provider":"NodesHub"},{"address":"https://humans-mainnet-rpc.itrocket.net","provider":"itrocket"},{"address":"https://humans-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-humansai.thenop.io:443","provider":"TheNOP.io"},{"address":"https://humans-rpc.stakeangle.com/","provider":"StakeAngle"},{"address":"https://humans-rpc.anyvalid.com:26627","provider":"AnyValid"},{"address":"https://mainnet-humans-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"http://65.21.46.90:5657","provider":"PPNV Service"},{"address":"https://rpc.humans-mainnet.stake-take.com/","provider":"Stake-Take"},{"address":"https://rpc.humans.posthuman.digital","provider":"posthuman"},{"address":"https://humans-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://humans-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://humans-mainnet-rpc.cosmonautstakes.com","provider":"Cosmonaut Stakes πŸ€–"}]}},{"chain_id":"Antora","fees":{"fee_tokens":[{"denom":"idep","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"ixo-5","fees":{"fee_tokens":[{"denom":"uixo","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://proxies.sifchain.finance/api/impacthub-3/rpc","provider":"sifchain"},{"address":"https://impacthub.ixo.world/rpc/","provider":"ixoworld"},{"address":"https://ixo.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-ixo-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/impacthub","provider":"Lavender.Five Nodes 🐝"},{"address":"https://ixo-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://ixo-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://impacthub_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"imversed_5555555-1","fees":{"fee_tokens":[{"denom":"aimv","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[]}},{"chain_id":"injective-1","fees":{"fee_tokens":[{"denom":"inj","fixed_min_gas_price":160000000,"low_gas_price":500000000,"average_gas_price":700000000,"high_gas_price":900000000}]},"apis":{"rpc":[{"address":"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rpc.newmetric.xyz","provider":"NewMetric"},{"address":"https://rpc.injective.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://injective-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.lavenderfive.com:443/injective","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-injective-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://injective-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-injective.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc-injective-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://injective-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://injective-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://public.stakewolle.com/cosmos/injective/rpc","provider":"Stakewolle"},{"address":"https://rpc.injective.bronbro.io/","provider":"Bro_n_Bro"},{"address":"https://injective-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc-injective.ecostake.com","provider":"ecostake"},{"address":"https://rpc-injective.kewrnode.com","provider":"Kewr Node"}]}},{"chain_id":"int3face-1","fees":{"fee_tokens":[{"denom":"uint3","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc","fixed_min_gas_price":1e-7,"low_gas_price":1e-7,"average_gas_price":0.0000025,"high_gas_price":0.000004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch","fixed_min_gas_price":0.000001,"low_gas_price":0.000001,"average_gas_price":0.000025,"high_gas_price":0.00004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc","fixed_min_gas_price":0.000001,"low_gas_price":0.000001,"average_gas_price":0.000025,"high_gas_price":0.00004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.004},{"denom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/ton-ton","fixed_min_gas_price":0.0001,"low_gas_price":0.0001,"average_gas_price":0.00025,"high_gas_price":0.0004}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.int3face.zone","provider":"Int3face.io"}]}},{"chain_id":"irishub-1","fees":{"fee_tokens":[{"denom":"uiris","low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc-irisnet-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-irisnet-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://irisnet-rpc.w3coins.io","provider":"w3coins"},{"address":"https://iris-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://iris-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://mainnet-iris-rpc.konsortech.xyz","provider":"KonsorTech"}]}},{"chain_id":"jackal-1","fees":{"fee_tokens":[{"denom":"ujkl","fixed_min_gas_price":0,"low_gas_price":0.002,"average_gas_price":0.002,"high_gas_price":0.02}]},"apis":{"rpc":[{"address":"https://rpc.jackalprotocol.com","provider":"Jackal Labs"},{"address":"https://rpc.lavenderfive.com:443/jackal","provider":"Lavender.Five Nodes 🐝"},{"address":"http://jkl.rpc.m.stavr.tech:11127","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://jackal.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://rpc.jackal.nodestake.org","provider":"NodeStake"},{"address":"https://rpc-jackal.nodeist.net","provider":"Nodeist"},{"address":"https://jackal-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://m-jackal.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc-jackal.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://jackal-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://jackal.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://jackal.rpc.silknodes.io","provider":"Silk Nodes"},{"address":"https://jackal.rpc.skynodejs.net","provider":"skynodejs"},{"address":"https://public.stakewolle.com/cosmos/jackal/rpc","provider":"Stakewolle"},{"address":"https://rpc.jackal.silentvalidator.com","provider":"silent"},{"address":"https://rpc.jackal.mathnodes.com","provider":"MathNodes"},{"address":"https://jackal-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://jackal-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"joltify_1729-1","fees":{"fee_tokens":[{"denom":"ujolt","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.joltify.io","provider":"joltify"},{"address":"https://joltify_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"juno-1","fees":{"fee_tokens":[{"denom":"ujuno","fixed_min_gas_price":0.075,"low_gas_price":0.075,"average_gas_price":0.1,"high_gas_price":0.125},{"denom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","fixed_min_gas_price":0.003,"low_gas_price":0.003,"average_gas_price":0.0035,"high_gas_price":0.004}]},"apis":{"rpc":[{"address":"https://rpc-juno.itastakers.com","provider":"itastakers"},{"address":"http://juno.rpc.m.stavr.tech:1067","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://juno-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.lavenderfive.com:443/juno","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-juno.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-juno.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://rpc-juno-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.juno.chaintools.tech/","provider":"ChainTools"},{"address":"https://juno-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://juno-rpc.icycro.org","provider":"IcyCRO 🧊"},{"address":"https://rpc.juno.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://juno-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://juno-rpc.reece.sh","provider":"Reecepbcups"},{"address":"https://juno-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"},{"address":"https://rpc-juno.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc-juno-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-juno.validavia.me","provider":"Validavia"},{"address":"https://juno-rpc.w3coins.io","provider":"w3coins"},{"address":"https://juno-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://juno-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc-juno.mainnet.validatrium.club:443","provider":"Validatrium"},{"address":"https://juno-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.juno.validatus.com","provider":"Validatus"},{"address":"https://rpc.juno.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://juno-rpc.cogwheel.zone","provider":"Cogwheel"},{"address":"https://juno.declab.pro:26610","provider":"Decloud Nodes Lab"},{"address":"https://juno.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://juno-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"kava_2222-10","fees":{"fee_tokens":[{"denom":"ukava","low_gas_price":0.05,"average_gas_price":0.1,"high_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://rpc.data.kava.io","provider":"kava"},{"address":"https://kava-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-kava-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://kava-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://kava-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc-kava-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://kava-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://kava.drpc.org","provider":"dRPC"}]}},{"chain_id":"kichain-2","fees":{"fee_tokens":[{"denom":"uxki","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc-mainnet.blockchain.ki","provider":"kifoundation"},{"address":"https://kichain-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-kichain-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://kichain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.kichain.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.lavenderfive.com:443/kichain","provider":"Lavender.Five Nodes 🐝"},{"address":"http://ki-chain.statesync.nodersteam.com:14657","provider":"[NODERS]TEAM"},{"address":"https://ki-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc.kichain-2.kichain.aviaone.com","provider":"AVIAONE 🟒"}]}},{"chain_id":"kima_network","fees":{"fee_tokens":[{"denom":"uKIMA","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.kima.network/","provider":"Kima Network"}]}},{"chain_id":"darchub","fees":{"fee_tokens":[{"denom":"udarc","fixed_min_gas_price":0,"low_gas_price":0.0001,"average_gas_price":0.001,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc-konstellation-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://konstellation-rpc.stakerhouse.com","provider":"StakerHouse"}]}},{"chain_id":"luwak-1","fees":{"fee_tokens":[{"denom":"ukopi","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.kopi.money","provider":"Kopi Foundation"},{"address":"https://rpc.kopi.chaintools.tech","provider":"Chaintools"},{"address":"https://kopi-rpc.cosmoscan.com","provider":"Cosmoscan"},{"address":"https://kopi-rpc.stakerhouse.com","provider":"Stakerhouse"},{"address":"https://kopi-rpc.moonbridge.org","provider":"Moonbridge"},{"address":"https://rpc-kopid.vinjan.xyz/","provider":"Vinjan"},{"address":"https://kopi-mainnet-rpc.bonynode.online","provider":"Bony"},{"address":"https://kopi-rpc.bluestake.net:443","provider":"Bluestake"},{"address":"https://rpc-kopi.sychonix.com","provider":"Sychonix"},{"address":"https://kopi-rpc.node9x.com/","provider":"Node9x"},{"address":"https://kopi.rpc.nodeshub.online/","provider":"NodesHub"},{"address":"https://kopi-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc.kopi.nodestake.org","provider":"NodeStake"}]}},{"chain_id":"kaiyo-1","fees":{"fee_tokens":[{"denom":"ukuji","fixed_min_gas_price":0.0034,"low_gas_price":0.0034,"average_gas_price":0.0051,"high_gas_price":0.00681},{"denom":"factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk","fixed_min_gas_price":0.01186,"low_gas_price":0.01186,"average_gas_price":0.01779,"high_gas_price":0.02372},{"denom":"ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F","fixed_min_gas_price":0.0119,"low_gas_price":0.0119,"average_gas_price":0.01785,"high_gas_price":0.02379},{"denom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","fixed_min_gas_price":0.00129,"low_gas_price":0.00129,"average_gas_price":0.00193,"high_gas_price":0.00258},{"denom":"ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23","fixed_min_gas_price":0.01795,"low_gas_price":0.01795,"average_gas_price":0.02692,"high_gas_price":0.0359},{"denom":"ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07","fixed_min_gas_price":0.65943,"low_gas_price":0.65943,"average_gas_price":0.98915,"high_gas_price":1.31887},{"denom":"ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10","fixed_min_gas_price":160416396197,"low_gas_price":160416396197,"average_gas_price":240624594296,"high_gas_price":320832792394},{"denom":"ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5","fixed_min_gas_price":0.02689,"low_gas_price":0.02689,"average_gas_price":0.04034,"high_gas_price":0.05379},{"denom":"ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986","fixed_min_gas_price":0.01495,"low_gas_price":0.01495,"average_gas_price":0.02243,"high_gas_price":0.02991},{"denom":"ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5","fixed_min_gas_price":0.03139,"low_gas_price":0.03139,"average_gas_price":0.04709,"high_gas_price":0.06278},{"denom":"ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602","fixed_min_gas_price":0.90403,"low_gas_price":0.90403,"average_gas_price":1.35605,"high_gas_price":1.80806},{"denom":"ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2","fixed_min_gas_price":559196837,"low_gas_price":559196837,"average_gas_price":838795256,"high_gas_price":1118393675},{"denom":"ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7","fixed_min_gas_price":5772801,"low_gas_price":5772801,"average_gas_price":8659201,"high_gas_price":11545602},{"denom":"factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta","fixed_min_gas_price":0.01807,"low_gas_price":0.01807,"average_gas_price":0.02711,"high_gas_price":0.03615},{"denom":"ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9","fixed_min_gas_price":0.01194,"low_gas_price":0.01194,"average_gas_price":0.01792,"high_gas_price":0.02389},{"denom":"ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3","fixed_min_gas_price":0.00019,"low_gas_price":0.00019,"average_gas_price":0.00029,"high_gas_price":0.00039}]},"apis":{"rpc":[{"address":"https://rpc.kaiyo.kujira.setten.io","provider":"setten.io"},{"address":"https://kujira-rpc.polkachu.com","provider":"polkachu"},{"address":"https://rpc.lavenderfive.com:443/kujira","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.kujira.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc-kujira-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://kujira-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc-kujira.starsquid.io","provider":"Starsquid"},{"address":"https://kujira.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://kuji-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://rpc-kujira.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://kujira-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.kujira.rektdao.club","provider":"rektDAO"},{"address":"https://kujira-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://kujira-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-kujira.mms.team","provider":"MMS"},{"address":"https://kujira-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://kujira.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"}]}},{"chain_id":"kyve-1","fees":{"fee_tokens":[{"denom":"ukyve","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc.kyve.network","provider":"kyve"},{"address":"https://rpc-kyve.ecostake.com","provider":"ecostake"},{"address":"https://rpc.lavenderfive.com:443/kyve","provider":"Lavender.Five Nodes 🐝"},{"address":"http://kyve.rpc.m.stavr.tech:12357","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-kyve.imperator.co","provider":"Imperator.co"},{"address":"https://kyve-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc.kyve.nodestake.top","provider":"NodeStake"},{"address":"https://kyve.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://rpc-kyve.mms.team","provider":"MMS"},{"address":"https://kyve.declab.pro:26616","provider":"Decloud Nodes Lab"},{"address":"https://kyve-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://kyve_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://kyve-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"lambda_92000-1","fees":{"fee_tokens":[{"denom":"ulamb","low_gas_price":10000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.lambda.im","provider":"Lambda"},{"address":"http://lambda.rpc.m.stavr.tech:31327","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lambda.nodestake.top","provider":"NodeStake"},{"address":"https://lambda-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://lambda_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"lava-mainnet-1","fees":{"fee_tokens":[{"denom":"ulava","fixed_min_gas_price":0.00002,"low_gas_price":0.00002,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://lava.tendermintrpc.lava.build","provider":"Lava Over Lava"},{"address":"https://lava-rpc.w3coins.io:443","provider":"w3coins"},{"address":"https://lava-rpc.finteh.org:26657","provider":"finteh"},{"address":"https://lava-rpc.y2.finance:443","provider":"YTWOFUND"},{"address":"https://lava-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://rpc.lava-mainnet-1.lava.aviaone.com:443","provider":"AVIAONE 🟒"},{"address":"https://rpc-lava.r93axnodes.cloud:443","provider":"r93AX Nodes"},{"address":"https://lava-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://lava.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://lava.rpc-archive.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://lava-rpc.stake-town.com:443","provider":"StakeTown"},{"address":"https://lava.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://lava-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://lava-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://lava.rpc.stakevillage.net:443","provider":"Stake Village"}]}},{"chain_id":"likecoin-mainnet-2","fees":{"fee_tokens":[{"denom":"nanolike","fixed_min_gas_price":1000,"low_gas_price":1000,"average_gas_price":10000,"high_gas_price":1000000}]},"apis":{"rpc":[{"address":"https://mainnet-node.like.co/rpc/","provider":"like.co"},{"address":"https://likecoin-node.oldcat.io:443/rpc/","provider":"Oldcat"},{"address":"https://like.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-likecoin-mainnet.pikaser.net","provider":"PikaSer"},{"address":"https://rpc.likecoin.citizenweb3.com:443","provider":"Citizen Web3"}]}},{"chain_id":"logos_7002-1","fees":{"fee_tokens":[{"denom":"aLYT"}]},"apis":{"rpc":[{"address":"https://logos-rpc.provable.dev:443/","provider":"laurel.provable"}]}},{"chain_id":"loop-1","fees":{"fee_tokens":[{"denom":"token","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.loop.pfc.zone/","provider":"PFC"}]}},{"chain_id":"lorenzo_8329-1","fees":{"fee_tokens":[{"denom":"stBTC","fixed_min_gas_price":2000000,"low_gas_price":2000000,"average_gas_price":2000000,"high_gas_price":8000000}]},"apis":{"rpc":[{"address":"https://rpc-cosmos.lorenzo-protocol.xyz/","provider":"Lorenzo Protocol"}]}},{"chain_id":"loyal-main-02","fees":{"fee_tokens":[{"denom":"ulyl","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-main.joinloyal.io/"},{"address":"https://loyal-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"lum-network-1","fees":{"fee_tokens":[{"denom":"ulum","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.node0.mainnet.lum.network","provider":"Lum Foundation"},{"address":"https://lum.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/lumnetwork","provider":"Lavender.Five Nodes 🐝"},{"address":"https://lum-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://lum-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://lumnetwork_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"mande_18071918-1","fees":{"fee_tokens":[{"denom":"amand","low_gas_price":20000000000,"average_gas_price":20000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://mande-mainnet-tendermint.public.blastapi.io","provider":"BlastAPI"}]}},{"chain_id":"mantra-1","fees":{"fee_tokens":[{"denom":"uom","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.mantrachain.io","provider":"MANTRACHAIN"},{"address":"https://rpc-mantra.r93axnodes.cloud:443","provider":"r93AX Nodes"},{"address":"https://mantrachain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://mantra-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://mantra-mainnet-rpc.itrocket.net:443","provider":"ITRocket"},{"address":"https://mantra.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"mars-1","fees":{"fee_tokens":[{"denom":"umars","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.marsprotocol.io:443","provider":"Delphi Labs"},{"address":"https://rpc.lavenderfive.com:443/mars","provider":"Lavender.Five Nodes 🐝"},{"address":"https://mars-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://mars-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc.expedition-mars.com","provider":"Expedition Mars"},{"address":"https://mars-rpc.genznodes.dev:443","provider":"genznodes"},{"address":"https://mars-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"},{"address":"https://mars-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://mars-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"}]}},{"chain_id":"mayachain-mainnet-v1","apis":{"rpc":[{"address":"https://tendermint.mayachain.info","provider":"tendermint"}]}},{"chain_id":"medasdigital-2","fees":{"fee_tokens":[{"denom":"umedas","low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc.medas-digital.io:26657/","provider":"Neptun Validator"},{"address":"https://medasdigital_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"meme-1","fees":{"fee_tokens":[{"denom":"umeme","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.035,"high_gas_price":0.045}]},"apis":{"rpc":[{"address":"https://rpc-meme-1.meme.sx/","provider":"MEME Foundation"},{"address":"https://meme-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-meme.pupmos.network/","provider":"PUPMØS"},{"address":"https://meme.rpc.m.anode.team","provider":"ANODE TEAM"}]}},{"chain_id":"migaloo-1","fees":{"fee_tokens":[{"denom":"uwhale","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":2,"high_gas_price":3}]},"apis":{"rpc":[{"address":"https://migaloo-rpc.polkachu.com:443","provider":"Polkachu"},{"address":"https://rpc-migaloo.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://migaloo-rpc.kleomedes.network:443","provider":"Kleomedes"},{"address":"https://rpc.whitewhale.nodestake.top","provider":"NodeStake"},{"address":"https://migaloo-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://migaloo-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"milkyway","fees":{"fee_tokens":[{"denom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","fixed_min_gas_price":0.002,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.0035},{"denom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","fixed_min_gas_price":0.002,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.0035},{"denom":"ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157","fixed_min_gas_price":0.002,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.0035},{"denom":"ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0","fixed_min_gas_price":0.002,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.0035}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.milkyway.zone/","provider":"MilkyWay Labs"}]}},{"chain_id":"mainnet","fees":{"fee_tokens":[{"denom":"umis","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.gw.mises.site:443","provider":"Mises-1"},{"address":"https://e2.mises.site:443","provider":"Mises-3"}]}},{"chain_id":"mtgbp-1","fees":{"fee_tokens":[{"denom":"mtgbp","low_gas_price":0.000001,"average_gas_price":0.000005,"high_gas_price":0.0001}]},"apis":{"rpc":[{"address":"https://rcp.mtgbp.com","provider":"mtgbp"}]}},{"chain_id":"mun-1","fees":{"fee_tokens":[{"denom":"umun","fixed_min_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://mainnet1rpc.mun.money","provider":"Mun"},{"address":"https://mainnet-mun-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.mun.tcnetwork.io","provider":"TC Network"},{"address":"https://mun_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"mythos_7001-1","fees":{"fee_tokens":[{"denom":"aMYT"}]},"apis":{"rpc":[{"address":"https://mythos-rpc.provable.dev:443/","provider":"laurel.provable"}]}},{"chain_id":"neura_266-1","fees":{"fee_tokens":[{"denom":"atankr"}]},"apis":{"rpc":[]}},{"chain_id":"Neutaro-1","fees":{"fee_tokens":[{"denom":"uneutaro","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc2.neutaro.io:443","provider":"Neutaro"},{"address":"https://rpc3.neutaro.io:443","provider":"Neutaro"}]}},{"chain_id":"neutron-1","fees":{"fee_tokens":[{"denom":"untrn","low_gas_price":0.0053,"average_gas_price":0.0053,"high_gas_price":0.0053},{"denom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","low_gas_price":0.0008,"average_gas_price":0.0008,"high_gas_price":0.0008},{"denom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","low_gas_price":0.008,"average_gas_price":0.008,"high_gas_price":0.008},{"denom":"factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH","low_gas_price":2903231.6597,"average_gas_price":2903231.6597,"high_gas_price":2903231.6597},{"denom":"ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130","low_gas_price":2564102564.1026,"average_gas_price":2564102564.1026,"high_gas_price":2564102564.1026},{"denom":"ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7","low_gas_price":0.0004,"average_gas_price":0.0004,"high_gas_price":0.0004}]},"apis":{"rpc":[{"address":"https://rpc-voidara.neutron-1.neutron.org","provider":"Neutron"},{"address":"https://rpc-pulsarix.neutron-1.neutron.org","provider":"Neutron"},{"address":"https://rpc.novel.remedy.tm.p2p.org","provider":"P2P"},{"address":"https://rpc.lavenderfive.com:443/neutron","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-neutron.whispernode.com","provider":"WhisperNode 🀐"},{"address":"https://rpc-neutron.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"http://rpc.neutron.nodestake.org","provider":"NodeStake"},{"address":"https://neutron-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://community.nuxian-node.ch:6797/neutron/trpc","provider":"PRO Delegators"},{"address":"https://rpc.neutron.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.neutron.quokkastake.io","provider":"🐹 Quokka Stake"},{"address":"https://neutron.drpc.org","provider":"dRPC"},{"address":"https://neutron-rpc.ibs.team","provider":"Inter Blockchain Services"}]}},{"chain_id":"cataclysm-1","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.nibiru.fi","provider":"Nibiru Foundation"},{"address":"https://nibiru.rpc.kjnodes.com","provider":"kjnodes.com πŸ¦„"},{"address":"https://rpc.nibiru.nodestake.org","provider":"NodeStake"},{"address":"https://rpc.lavenderfive.com:443/nibiru","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.nibiru.silentvalidator.com","provider":"silent"},{"address":"https://nibiru.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://nibiru-rpc.cogwheel.zone","provider":"Cogwheel βš™οΈ"},{"address":"https://nibiru.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://nibiru.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://nibiru-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://nibiru-mainnet.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://nibiru-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.nibiru.roomit.xyz","provider":"Roomit"},{"address":"https://nibiru_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"nim_1122-1","fees":{"fee_tokens":[{"denom":"anim","low_gas_price":20000000000,"average_gas_price":20000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.nimnet.tech","provider":"NIM Foundation"}]}},{"chain_id":"noble-1","fees":{"fee_tokens":[{"denom":"uusdc","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.1,"high_gas_price":0.2},{"denom":"ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.01,"high_gas_price":0.02}]},"apis":{"rpc":[{"address":"https://noble-rpc.polkachu.com","provider":"polkachu"},{"address":"https://rpc.lavenderfive.com:443/noble","provider":"Lavender.Five Nodes 🐝"},{"address":"https://noble-rpc.owallet.io","provider":"OWALLET"}]}},{"chain_id":"pirin-1","fees":{"fee_tokens":[{"denom":"unls","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"rpc.nolus.network","provider":"NolusProtocol"},{"address":"https://nolus-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.lavenderfive.com:443/nolus","provider":"Lavender.Five Nodes 🐝"},{"address":"https://nolus.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://rpc-nolus.architectnodes.com","provider":"Architect Nodes"},{"address":"https://nolus.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://nolus-rpc.enigma-validator.com/","provider":"Enigma"},{"address":"https://nolus-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-nolus.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://nolus-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://nolus-rpc.ibs.team","provider":"Inter Blockchain Services"}]}},{"chain_id":"nomic-stakenet-3","fees":{"fee_tokens":[{"denom":"unom","low_gas_price":0,"average_gas_price":0,"high_gas_price":0},{"denom":"usat","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://stakenet-rpc.nomic.io:2096","provider":"nomic-io"},{"address":"https://nomic-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-nomic.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc.nomic.basementnodes.ca:443","provider":"Basement Nodes ⚑️"},{"address":"https://rpc.nomic.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"nyx","fees":{"fee_tokens":[{"denom":"unym","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"unyx","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.nymtech.net/","provider":"Nym"},{"address":"https://rpc.nyx.nodes.guru/","provider":"nodes guru"},{"address":"https://rpc.nym.forbole.com/","provider":"forbole"},{"address":"https://nym-mainnet-rpc.commodum.io/","provider":"commodum"},{"address":"https://nym-rpc.polkachu.com/","provider":"Polkachu"}]}},{"chain_id":"octa","fees":{"fee_tokens":[{"denom":"uocta","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"odin-mainnet-freya","fees":{"fee_tokens":[{"denom":"loki","fixed_min_gas_price":0.0125,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc.odinprotocol.io","provider":"Heimdall Gateway"},{"address":"https://odin.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/odin","provider":"Lavender.Five Nodes 🐝"},{"address":"https://odin-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"exchain-66","fees":{"fee_tokens":[{"denom":"wei","low_gas_price":200000000,"average_gas_price":250000000,"high_gas_price":400000000}]},"apis":{"rpc":[{"address":"https://exchaintmrpc.okex.org","provider":"okx chain"}]}},{"chain_id":"omniflixhub-1","fees":{"fee_tokens":[{"denom":"uflix","fixed_min_gas_price":0,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://omniflix-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://rpc.omniflix.nodestake.org","provider":"NodeStake"},{"address":"https://rpc.omniflix.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc-omniflixhub-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/omniflixhub","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.omniflix.silentvalidator.com/","provider":"silent"},{"address":"https://omniflixhub-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-omniflix.architectnodes.com","provider":"Architect Nodes"},{"address":"https://omniflix-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-omniflixhub.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://omniflix-rpc.dakshavalidator.in","provider":"Daksha Validator"},{"address":"https://rpc-omniflix.mzonder.com:443","provider":"MZONDER"},{"address":"https://rpc.omniflix.stakeup.tech:443","provider":"StakeUp"},{"address":"https://rpc.omniflix.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://omniflix-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://mainnet.omniflix.rpc.srv.stakr.space","provider":"STAKR.space"}]}},{"chain_id":"onex-mainnet-1","fees":{"fee_tokens":[{"denom":"aonex","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.onex.onomy.io","provider":"pendulum"}]}},{"chain_id":"onomy-mainnet-1","fees":{"fee_tokens":[{"denom":"anom","low_gas_price":0,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc-mainnet.onomy.io","provider":"onomy"},{"address":"https://onomy-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"Oraichain","fees":{"fee_tokens":[{"denom":"orai","fixed_min_gas_price":0,"low_gas_price":0.003,"average_gas_price":0.005,"high_gas_price":0.007}]},"apis":{"rpc":[{"address":"https://rpc.orai.io","provider":"oraichain-team"},{"address":"https://rpc.orai.pfc.zone/","provider":"PFC"},{"address":"https://rpc-orai.nodine.id/","provider":"Nodine.ID"},{"address":"https://oraichain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-oraichain.mms.team","provider":"MMS"},{"address":"https://rpc-orai.blockval.io/","provider":"Blockval"},{"address":"https://mainnet-orai-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://rpc.orai.mortysnode.nl","provider":"Morty's Nodes"},{"address":"https://orai.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://oraichain-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://orai-rpc.imdev.app","provider":"imORAI"},{"address":"https://orai-rpc.owallet.io","provider":"OWALLET"}]}},{"chain_id":"osmosis-1","fees":{"fee_tokens":[{"denom":"uosmo","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.osmosis.zone/","provider":"Osmosis Foundation"},{"address":"https://rpc-osmosis.blockapsis.com","provider":"chainapsis"},{"address":"https://osmosis-rpc.onivalidator.com","provider":"Oni Validator ⛩️"},{"address":"https://osmosis-rpc.quickapi.com:443","provider":"Chainlayer"},{"address":"https://rpc-osmosis.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://rpc.lavenderfive.com:443/osmosis","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-osmosis.ecostake.com","provider":"ecostake"},{"address":"https://rpc-osmosis.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://osmosis-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-osmosis-ia.cosmosia.notional.ventures","provider":"Notional"},{"address":"https://osmosis.rpc.stakin-nodes.com","provider":"Stakin"},{"address":"https://osmosis-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://osmosis.api.onfinality.io/public","provider":"OnFinality"},{"address":"https://rpc-osmosis-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://osmosis-rpc.w3coins.io","provider":"w3coins"},{"address":"https://osmosis-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://community.nuxian-node.ch:6797/osmosis/trpc","provider":"PRO Delegators"},{"address":"http://rpc-osmosis.freshstaking.com:31657","provider":"FreshSTAKING"},{"address":"https://osmosis-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://osmosis-mainnet.rpc.l0vd.com:443","provider":"L0vd.com ❀️"},{"address":"https://osmosis-rpc.reece.sh","provider":"Reecepbcups"},{"address":"https://rpc.osmosis.validatus.com","provider":"Validatus"},{"address":"https://rpc.osmosis.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://osmosis.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"},{"address":"https://public.stakewolle.com/cosmos/osmosis/rpc","provider":"Stakewolle"},{"address":"https://rpc.cros-nest.com/osmosis","provider":"Crosnest"},{"address":"https://rpc-osmo.kewrnode.com","provider":"Kewr Node"},{"address":"https://rpc.osmosis.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://osmosis-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://osmosis.drpc.org","provider":"dRPC"},{"address":"https://osmosis-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"tumbler","fees":{"fee_tokens":[{"denom":"ugrain","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-1.paloma.nodes.guru/","provider":"Nodes.Guru"}]}},{"chain_id":"panacea-3","fees":{"fee_tokens":[{"denom":"umed","fixed_min_gas_price":5,"low_gas_price":5,"average_gas_price":7,"high_gas_price":9}]},"apis":{"rpc":[{"address":"https://rpc.gopanacea.org","provider":"medibloc"},{"address":"https://panacea-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://panacea_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"passage-2","fees":{"fee_tokens":[{"denom":"upasg","fixed_min_gas_price":0,"low_gas_price":0.001,"average_gas_price":0.0025,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.passage.vitwit.com","provider":"vitwit"},{"address":"https://passage-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://rpc-passage.ecostake.com","provider":"ecostake"},{"address":"https://rpc.lavenderfive.com:443/passage","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-passage-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc-passage.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://rpc.passage.nodestake.top","provider":"NodeStake"},{"address":"https://passage-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://passage-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rpc-passage.d-stake.xyz","provider":"D-stake"},{"address":"https://passage-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://passage-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://passage-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://passage-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc-passage.mainnet.validatrium.club","provider":"Validatrium"},{"address":"https://rpc.passage.silentvalidator.com","provider":"silent"},{"address":"https://passage-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"core-1","fees":{"fee_tokens":[{"denom":"uxprt","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.core.persistence.one","provider":"Persistence"},{"address":"https://rpc-persistent-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://persistence.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://persistence-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://persistence-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://rpc-persistence.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc-persistence.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://persistence-mainnet-rpc.cosmonautstakes.com","provider":"Cosmonaut Stakes"},{"address":"https://persistence-rpc.quantnode.tech","provider":"QuantNode"},{"address":"https://persistence-rpc.zenscape.one","provider":"Zenscape"},{"address":"https://persistence-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://persistence-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"},{"address":"https://rpc.persistence.posthuman.digital:443","provider":"POSTHUMAN∞DVS"},{"address":"https://rpc-persistence-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://persistence-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://persistence-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://persistence-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.persistence.validatus.com","provider":"Validatus"},{"address":"https://public.stakewolle.com/cosmos/persistence/rpc","provider":"Stakewolle"},{"address":"https://xprt-rpc.antrixy.org/","provider":"Antrix Validators"},{"address":"https://persistence-rpc.stake-town.com","provider":"StakeTown"}]}},{"chain_id":"planq_7070-2","fees":{"fee_tokens":[{"denom":"aplanq","fixed_min_gas_price":20000000000,"low_gas_price":30000000000,"average_gas_price":35000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.planq.network","provider":"planq.network"},{"address":"https://planq.rpc.bccnodes.com","provider":"BccNodes"},{"address":"https://planq.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.planq.nodestake.org","provider":"NodeStake"},{"address":"https://planq-rpc.kynraze.com","provider":"Kynraze"},{"address":"https://rpc.planq.indonode.net","provider":"Indonode"},{"address":"https://rpc.planq.roomit.xyz","provider":"Roomit"},{"address":"https://planq-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://rpc.planq.safeblock.space","provider":"Safe Block"},{"address":"https://planq.rpc.skynodejs.net","provider":"skynodejs"},{"address":"https://planq-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://mainnet-planq-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://planq_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc-planq.blockval.io","provider":"Blockval"}]}},{"chain_id":"point_10687-1","fees":{"fee_tokens":[{"denom":"apoint","low_gas_price":5000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc-mainnet-1.point.space:26657","provider":"Point Network"},{"address":"https://rpc.point.nodestake.org","provider":"NodeStake"},{"address":"https://point.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.point.indonode.net","provider":"Indonode"}]}},{"chain_id":"pio-mainnet-1","fees":{"fee_tokens":[{"denom":"nhash","fixed_min_gas_price":1905,"low_gas_price":1905,"average_gas_price":2100,"high_gas_price":2500}]},"apis":{"rpc":[{"address":"https://rpc-provenance.takeshi.team/","provider":"TAKESHI"},{"address":"https://rpc.provenance.io/","provider":"Figure"},{"address":"https://rpc-provenance-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://provenance-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://provenance-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://provenance-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://rpc.provenance.blockval.io/","provider":"Blockval"},{"address":"https://provenance-rpc.panthea.eu","provider":"Panthea EU"},{"address":"https://provenance_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc.pio-mainnet-1.provenance.aviaone.com","provider":"AVIAONE 🟒"}]}},{"chain_id":"pryzm-1","fees":{"fee_tokens":[{"denom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.004},{"denom":"ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255","fixed_min_gas_price":500000000,"low_gas_price":500000000,"average_gas_price":600000000,"high_gas_price":700000000},{"denom":"ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"ibc/BF28D9C17E0306B194D50F51C3B2590BEAD15E04E03ADD34C3A26E62D85C9676","fixed_min_gas_price":0.002,"low_gas_price":0.002,"average_gas_price":0.003,"high_gas_price":0.004},{"denom":"ibc/B8AF5D92165F35AB31F3FC7C7B444B9D240760FA5D406C49D24862BD0284E395","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.02,"high_gas_price":0.03},{"denom":"ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.04},{"denom":"factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.015,"high_gas_price":0.02},{"denom":"ibc/F8CA5236869F819BC006EEF088E67889A26E4140339757878F0F4E229CDDA858","fixed_min_gas_price":10000000000,"low_gas_price":10000000000,"average_gas_price":12000000000,"high_gas_price":14000000000},{"denom":"ibc/FA78980867B7E87F382CDA00275C55DDC248CABC7DEE27AC6868CCF97DD5E02F","fixed_min_gas_price":0.002,"low_gas_price":0.002,"average_gas_price":0.003,"high_gas_price":0.004},{"denom":"ibc/120DC39B61CC121E91525C1D51624E41BBE74C537D7B0BE50BBFF9A00E37B6EE","fixed_min_gas_price":10000000000,"low_gas_price":10000000000,"average_gas_price":12000000000,"high_gas_price":14000000000},{"denom":"ibc/EA6E1E8BA2EB9F681C4BD12C8C81A46530A62934F2BD561B120A00F46946CE87","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.003,"high_gas_price":0.004}]},"apis":{"rpc":[{"address":"https://rpc.pryzm.zone","provider":"PRYZM"},{"address":"https://rpc.lavenderfive.com:443/pryzm","provider":"Lavender.Five Nodes 🐝"},{"address":"https://pryzm-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://pryzm-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"PUNDIX","fees":{"fee_tokens":[{"denom":"ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78","fixed_min_gas_price":2000000000000,"low_gas_price":2000000000000,"average_gas_price":2500000000000,"high_gas_price":3000000000000}]},"apis":{"rpc":[{"address":"https://px-json.pundix.com","provider":"Pundi X"},{"address":"https://pundix.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"}]}},{"chain_id":"pylons-mainnet-1","fees":{"fee_tokens":[{"denom":"ubedrock","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.5,"high_gas_price":1}]},"apis":{"rpc":[{"address":"https://rpc.nodejumper.io:443/pylons","provider":"Nodejumper.io"},{"address":"https:/pylons-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"qfs-1","fees":{"fee_tokens":[{"denom":"qfs","low_gas_price":0.000001,"average_gas_price":0.000005,"high_gas_price":0.0001}]},"apis":{"rpc":[{"address":"https://rcp.qfsone.com","provider":"qfs"}]}},{"chain_id":"quasar-1","fees":{"fee_tokens":[{"denom":"uqsr","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.3},{"denom":"ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/quasar","provider":"Lavender.Five Nodes 🐝"},{"address":"https://quasar-rpc.polkachu.com","provider":"polkachu"},{"address":"https://quasar-rpc.enigma-validator.com","provider":"Enigma"},{"address":"https://rpc-quasar.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://quasar-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://quasar.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-quasar.validavia.me","provider":"Validavia"},{"address":"https://quasar-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://quasar-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://quasar-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://quasar-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://quasar-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://quasar-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"quicksilver-2","fees":{"fee_tokens":[{"denom":"uqck","fixed_min_gas_price":0.0001,"low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.00025}]},"apis":{"rpc":[{"address":"https://rpc-quicksilver.takeshi.team:443","provider":"TAKESHI"},{"address":"https://rpc.quicksilver.zone:443","provider":"Quicksilver"},{"address":"https://rpc-quicksilver-ia.cosmosia.notional.ventures:443","provider":"Notional"},{"address":"https://rpc.lavenderfive.com:443/quicksilver","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-quicksilver.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://m-quicksilver.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"http://quick.rpc.m.stavr.tech:21027","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://quicksilver-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://quicksilver-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://quicksilver.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-quicksilver.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc.quicksilver.indonode.net","provider":"Indonode"},{"address":"https://quicksilver-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://quicksilver-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://quicksilver-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-quicksilver.mms.team/","provider":"MMS"},{"address":"https://quicksilver-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://quicksilver-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://mainnet-quicksilver-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://quicksilver.tdrsys.com:2053","provider":"TdrSys"},{"address":"https://rpc.quicksilver.validatus.com","provider":"Validatus"},{"address":"https://quicksilver-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"qwoyn-1","fees":{"fee_tokens":[{"denom":"uqwoyn","fixed_min_gas_price":0.03,"low_gas_price":0.03,"average_gas_price":0.05,"high_gas_price":0.075}]},"apis":{"rpc":[{"address":"https://rpc.qwoyn.studio:443","provider":"Qwoyn Studios"},{"address":"https://rpc-qwoyn.theamsolutions.info:443","provider":"AM Solutions"},{"address":"https://qwoyn.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://qwoyn-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://qwoyn-rpc-archive.staketab.org:443","provider":"Staketab archive"},{"address":"https://rpc.lavenderfive.com:443/qwoyn","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-qwoyn.mzonder.com:443","provider":"MZONDER"},{"address":"https://rpc.qwoyn.bronbro.io:443","provider":"Bro_n_Bro"}]}},{"chain_id":"realionetwork_3301-1","fees":{"fee_tokens":[{"denom":"ario","fixed_min_gas_price":1000000000,"low_gas_price":4000000000,"average_gas_price":5000000000,"high_gas_price":8000000000}]},"apis":{"rpc":[{"address":"https://realio-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://realio.rpc.bccnodes.com/","provider":"BccNodes"},{"address":"https://rpc-realio-network.nodeist.net","provider":"Nodeist"},{"address":"http://realio.rpc.m.stavr.tech:21097","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.realio.indonode.net","provider":"Indonode"},{"address":"https://rpc-realio.vinjan.xyz","provider":"vinjan"},{"address":"https://api-realio.sr20de.xyz","provider":"Sr20de"},{"address":"https://rpc.realio.safeblock.space","provider":"Safe Block"},{"address":"https://realio.declab.pro:26622","provider":"Decloud Nodes Lab"},{"address":"https://realio-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://rpc-realio.blockval.io","provider":"Blockval"},{"address":"https://realio_rio_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://realio-rpc.moonbridge.org","provider":"Moonbridge"}]}},{"chain_id":"reb_1111-1","fees":{"fee_tokens":[{"denom":"arebus","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://api.rebuschain.com:26657/","provider":"Rebuschain"},{"address":"https://rebus.rpc.bccnodes.com:443","provider":"BccNodes"},{"address":"https://rebus.rpc.manticore.team:443/","provider":"MantiCore"},{"address":"https://rpc.rebus.nodestake.top/","provider":"NodeStake"},{"address":"http://rebus.rpc.m.stavr.tech:40107","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-1.rebus.nodes.guru","provider":"Nodes.Guru"},{"address":"https://api.mainnet.rebus.money:26657","provider":"Rebuschain"},{"address":"https://rebus-rpc.brocha.in","provider":"Brochain"},{"address":"https://rebus-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rebus.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://rebus-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rebus-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"regen-1","fees":{"fee_tokens":[{"denom":"uregen","low_gas_price":0.015,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc-regen.ecostake.com","provider":"ecostake"},{"address":"http://public-rpc.regen.vitwit.com:26657","provider":"vitwit"},{"address":"https://regen.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://regen.stakesystems.io:2053","provider":"stakesystems"},{"address":"http://rpc.regen.forbole.com:80","provider":"forbole"},{"address":"https://rpc-regen-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://regen-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://regen-rpc.easy2stake.com","provider":"Easy 2 Stake"},{"address":"https://regen-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://regen-rpc.w3coins.io","provider":"w3coins"},{"address":"https://regen-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"titan-1","fees":{"fee_tokens":[{"denom":"uatolo","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpcapi.rizon.world/","provider":"HDAC Technology AG"},{"address":"https://rpc.rizon.chaintools.tech/","provider":"ChainTools"},{"address":"https://rizon-rpc.ibs.team/","provider":"Inter Blockchain Services"},{"address":"https://rizon-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"30","fees":{"fee_tokens":[{"denom":"sat"}]},"apis":{"rpc":[]}},{"chain_id":"router_9600-1","fees":{"fee_tokens":[{"denom":"route","fixed_min_gas_price":7,"low_gas_price":7,"average_gas_price":7,"high_gas_price":10}]},"apis":{"rpc":[{"address":"https://sentry.tm.rpc.routerprotocol.com/","provider":"Router"},{"address":"https://router-rpc.genznodes.dev/","provider":"genznodes"},{"address":"https://router.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://router-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://routerchain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc.router.nodestake.org","provider":"NodeStake"}]}},{"chain_id":"ssc-1","fees":{"fee_tokens":[{"denom":"usaga","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc-saga.keplr.app","provider":"chainapsis"},{"address":"https://saga-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://saga-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc.saga.nodestake.org","provider":"NodeStake"},{"address":"https://saga.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.saga.goldenratiostaking.net","provider":"Golden Ratio Staking"},{"address":"https://rpc.saga.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc.lavenderfive.com:443/saga","provider":"Lavender.Five Nodes 🐝"},{"address":"https://saga-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://saga-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"scorum-1","fees":{"fee_tokens":[{"denom":"gas","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1,"high_gas_price":1}]},"apis":{"rpc":[{"address":"https://scorum-blockchain-mainnet-rpc.scorum.com","provider":"scorum"}]}},{"chain_id":"secret-4","fees":{"fee_tokens":[{"denom":"uscrt","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.1,"high_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://scrt.public-rpc.com","provider":"ANKR"},{"address":"https://rpc.lavenderfive.com:443/secretnetwork","provider":"Lavender.Five Nodes 🐝"},{"address":"https://1rpc.io/scrt-rpc","provider":"1RPC - Automata Network"},{"address":"https://secretnetwork-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://rpc.mainnet.secretsaturn.net","provider":"πŸͺ π•Šecret π•Šaturn"},{"address":"https://rpc-secret.01node.com","provider":"01node"},{"address":"https://public.stakewolle.com/cosmos/secretnetwork/rpc","provider":"Stakewolle"}]}},{"chain_id":"seda-1","fees":{"fee_tokens":[{"denom":"aseda","fixed_min_gas_price":10000000000,"low_gas_price":10000000000,"average_gas_price":10000000000,"high_gas_price":14000000000}]},"apis":{"rpc":[{"address":"https://rpc.mainnet.seda.xyz/","provider":"SEDA"},{"address":"https://seda-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://seda.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://seda-rpc.synergynodes.com/","provider":"Synergy Nodes"},{"address":"https://rpc.lavenderfive.com:443/seda","provider":"Lavender.Five Nodes 🐝"},{"address":"https://seda-rpc.kleomedes.network/","provider":"Kleomedes"},{"address":"https://seda-rpc.ibs.team:443","provider":"Inter Blockchain Services"},{"address":"https://seda-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.seda.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://rpc-seda.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://seda-rpc.applejuice.256x25.tech:443","provider":"Apple juice πŸ§ƒ"},{"address":"https://seda-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://seda_mainnet_rpc.chain.whenmoonwhenlambo.money:443","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc-seda-mainnet.keepitstaked.com:443","provider":"KeepItStaked.com"}]}},{"chain_id":"pacific-1","fees":{"fee_tokens":[{"denom":"usei","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.02,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.sei-apis.com","provider":"Rhino Stake"},{"address":"https://rpc.lavenderfive.com:443/sei","provider":"Lavender.Five Nodes 🐝"},{"address":"https://sei-rpc.polkachu.com","provider":"polkachu.com"},{"address":"https://sei-rpc.brocha.in","provider":"Brochain"},{"address":"https://rpc-sei.stingray.plus","provider":"StingRay"},{"address":"https://rpc-sei.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://sei.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://sei-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://sei.drpc.org","provider":"dRPC - All chains in one place"}]}},{"chain_id":"self-1","fees":{"fee_tokens":[{"denom":"uslf","fixed_min_gas_price":0.005,"low_gas_price":0.005,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.selfchain.io:26657","provider":"Self Chain"},{"address":"https://rpc.selfchain.roomit.xyz","provider":"Roomit"},{"address":"https://selfchain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://selfchain.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ"},{"address":"https://selfchain-mainnet.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://selfchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.selfchain.nodestake.org","provider":"NodeStake"},{"address":"https://selfchain.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"sentinelhub-2","fees":{"fee_tokens":[{"denom":"udvpn","low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc-sentinel.busurnode.com","provider":"Busurnode"},{"address":"https://rpc-sentinel-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.sentinel.chaintools.tech/","provider":"ChainTools"},{"address":"https://rpc.sentinel.quokkastake.io","provider":"🐹 Quokka Stake"},{"address":"https://rpc.dvpn.roomit.xyz","provider":"Roomit"},{"address":"https://sentinel-rpc.badgerbite.io/","provider":"BadgerBite"},{"address":"https://sentinel-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://sentinel-rpc.validatornode.com/","provider":"ValidatorNode"},{"address":"https://rpc.trinitystake.io","provider":"Trinity Stake"},{"address":"https://rpc.sentineldao.com","provider":"Sentinel Growth DAO"},{"address":"https://public.stakewolle.com/cosmos/sentinel/rpc","provider":"Stakewolle"},{"address":"http://163.197.193.2:26657","provider":"Tesla Full Node"},{"address":"https://sentinel.declab.pro:26628","provider":"Decloud Nodes Lab"},{"address":"https://sentinel.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://rpc.dvpn.me:443","provider":"MathNodes China"},{"address":"https://rpc.ro.mathnodes.com:443","provider":"MathNodes Romania"},{"address":"https://rpc.noncompliant.network:443","provider":"Noncompliant Network"},{"address":"https://rpc-sentinel.chainvibes.com:443","provider":"chainvibes"},{"address":"https://sentinel-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"sgenet-1","fees":{"fee_tokens":[{"denom":"usge","fixed_min_gas_price":0.001,"low_gas_price":0.1,"average_gas_price":0.25,"high_gas_price":0.5}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/sge","provider":"Lavenderfive"},{"address":"https://sge-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc.sge.nodestake.org/","provider":"NodeStake"},{"address":"https://rpc.sge.roomit.xyz/","provider":"Roomit"},{"address":"https://sge.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-sge.nodeist.net/","provider":"Nodeist"},{"address":"https://sge-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://sge-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://rpc.sge.tcnetwork.io","provider":"TC Network"},{"address":"https://sge-rpc.sr20de.xyz","provider":"Sr20de"},{"address":"https://rpc.sge.safeblock.space","provider":"Safe Block"},{"address":"https://mainnet-sge-rpc.konsortech.xyz","provider":"KonsorTech"},{"address":"https://sge-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://sge_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"ShareRing-VoyagerNet","fees":{"fee_tokens":[{"denom":"nshr","fixed_min_gas_price":0,"low_gas_price":2000,"average_gas_price":3000,"high_gas_price":4000}]},"apis":{"rpc":[{"address":"https://rpc.explorer.shareri.ng","provider":"ShareRing"}]}},{"chain_id":"shentu-2.2","fees":{"fee_tokens":[{"denom":"uctk","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.shentu.org:443","provider":"Shentu"},{"address":"https://shentu-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://shentu.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://shentu-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://rpc-shentu-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://shentu-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://shentu-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://shentu-rpc.panthea.eu","provider":"Panthea EU"},{"address":"https://shentu-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://shentu-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"shido_9008-1","fees":{"fee_tokens":[{"denom":"shido","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://tendermint.shidoscan.com","provider":"Shido"},{"address":"https://shidochain_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://rpc.shido.256x25.tech:443","provider":"256x25"},{"address":"https://rpc.shido.indonode.net:443","provider":"Indonode"},{"address":"https://rpc-maverick.mavnode.io","provider":"MavNode"},{"address":"https://rpc.kenseishido.com","provider":"KENSEI"}]}},{"chain_id":"sifchain-1","fees":{"fee_tokens":[{"denom":"rowan","low_gas_price":1000000000000,"average_gas_price":1500000000000,"high_gas_price":2000000000000}]},"apis":{"rpc":[{"address":"https://sifchain-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://sifchain-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://sifchain-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://sifchain_mainnet_rpc.chain.whenmoonwhenlambo.money:443","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"sixnet","fees":{"fee_tokens":[{"denom":"usix","fixed_min_gas_price":1.25,"low_gas_price":1.25,"average_gas_price":1.5,"high_gas_price":1.75}]},"apis":{"rpc":[{"address":"https://sixnet-rpc.sixprotocol.net:443"}]}},{"fees":{"fee_tokens":[{"denom":"Lamport","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"sommelier-3","fees":{"fee_tokens":[{"denom":"usomm","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://sommelier-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-sommelier.pupmos.network","provider":"PUPMØS"},{"address":"https://somm.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/sommelier","provider":"Lavender.Five Nodes 🐝"},{"address":"https://sommelier-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://somm-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://sommelier-rpc.w3coins.io","provider":"w3coins"}]}},{"chain_id":"source-1","fees":{"fee_tokens":[{"denom":"usource","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.075,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.source.nodestake.org","provider":"NodeStake"},{"address":"https://source.rpc.bccnodes.com/","provider":"BccNodes"},{"address":"https://source-rpc.moonbridge.org","provider":"Moonbridge"},{"address":"https://source.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc-source.nodeist.net","provider":"Nodeist"},{"address":"https://source-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://source-mainnet-rpc.itrocket.net:443","provider":"ITRocket"},{"address":"https://rpc-source.sr20de.xyz:443","provider":"Sr20de"},{"address":"https://source-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://rpc.source.tcnetwork.io","provider":"TC Network"},{"address":"https://rpc.source.indonode.net","provider":"Indonode"},{"address":"https://source.rpc.skynodejs.net/","provider":"skynodejs"},{"address":"https://source.rpc.nodeshub.online/","provider":"Nodes Hub"},{"address":"https://rpc.source.roomit.xyz/","provider":"Roomit"},{"address":"https://rpc.source.posthuman.digital","provider":"posthuman"},{"address":"https://source.declab.pro:26604","provider":"Decloud Nodes Lab"},{"address":"https://rpc.source.stakeup.tech","provider":"StakeUp"},{"address":"https://source_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://source-rpc.bluestake.net:443","provider":"BlueStake πŸš€"}]}},{"chain_id":"stafihub-1","fees":{"fee_tokens":[{"denom":"ufis","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://public-rpc1.stafihub.io:443","provider":"StaFiHub"},{"address":"https://public-rpc2.stafihub.io:443","provider":"StaFiHub"},{"address":"https://rpc.stafihub.nodestake.org:443","provider":"NodeStake"}]}},{"chain_id":"stargaze-1","fees":{"fee_tokens":[{"denom":"ustars","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1.1,"high_gas_price":1.2}]},"apis":{"rpc":[{"address":"https://rpc.stargaze-apis.com/","provider":"Stargaze Foundation"},{"address":"https://rpc-stargaze.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-stargaze.ezstaking.dev","provider":"EZStaking.io"},{"address":"https://stargaze-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-stargaze-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://stargaze.c29r3.xyz:443/rpc/","provider":"c29r3"},{"address":"https://rpc-stargaze.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://stargaze-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://rpc-stargaze.d-stake.xyz","provider":"D-stake"},{"address":"https://rpc.stargaze.silentvalidator.com/","provider":"silent"},{"address":"https://stargaze-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://stargaze-rpc.ramuchi.tech","provider":"ramuchi.tech"},{"address":"https://stargaze-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://stargaze-rpc.w3coins.io","provider":"w3coins"},{"address":"https://stargaze-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://stargaze-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://stargaze-rpc.reece.sh:443","provider":"Reecepbcups"},{"address":"https://rpc.stargaze.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://stargaze-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://stargaze-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"iov-mainnet-ibc","fees":{"fee_tokens":[{"denom":"uiov","low_gas_price":1,"average_gas_price":2,"high_gas_price":3}]},"apis":{"rpc":[{"address":"https://rpc-starname-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://rpc.starname.app","provider":"Chainmasters"}]}},{"chain_id":"stratos-1","fees":{"fee_tokens":[{"denom":"wei","low_gas_price":1000000000,"average_gas_price":1200000000,"high_gas_price":1600000000}]},"apis":{"rpc":[{"address":"https://rpc.thestratos.org","provider":"thestratos.org"},{"address":"http://stratos.rpc.nodersteam.com:26657/","provider":"[NODERS]TEAM"},{"address":"https://stratos-rpc.noders.services:443","provider":"[NODERS]TEAM"},{"address":"https://rpc.stratos.nodestake.org","provider":"NodeStake"}]}},{"chain_id":"stride-1","fees":{"fee_tokens":[{"denom":"ustrd","fixed_min_gas_price":0.0005,"low_gas_price":0.005,"average_gas_price":0.005,"high_gas_price":0.05},{"denom":"stuatom","fixed_min_gas_price":0.0001,"low_gas_price":0.0001,"average_gas_price":0.0002,"high_gas_price":0.0005},{"denom":"stuosmo","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.004},{"denom":"stustars","fixed_min_gas_price":1,"low_gas_price":1,"average_gas_price":1.1,"high_gas_price":1.2},{"denom":"stujuno","fixed_min_gas_price":0.075,"low_gas_price":0.075,"average_gas_price":0.1,"high_gas_price":0.125},{"denom":"stuluna","fixed_min_gas_price":0.0125,"low_gas_price":0.0125,"average_gas_price":0.015,"high_gas_price":0.04},{"denom":"staevmos","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000},{"denom":"stinj","fixed_min_gas_price":500000000,"low_gas_price":500000000,"average_gas_price":700000000,"high_gas_price":900000000},{"denom":"stucmdx","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"stuumee","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.12,"high_gas_price":0.2},{"denom":"stutia","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1},{"denom":"stadydx","fixed_min_gas_price":15000000000,"low_gas_price":15000000000,"average_gas_price":15000000000,"high_gas_price":20000000000},{"denom":"stadym","fixed_min_gas_price":15000000000,"low_gas_price":15000000000,"average_gas_price":15000000000,"high_gas_price":20000000000},{"denom":"stusaga","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.015,"high_gas_price":0.03},{"denom":"ibc/BF3B4F53F3694B66E13C23107C84B6485BD2B96296BB7EC680EA77BBA75B4801","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://stride-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://stride-rpc.onivalidator.com","provider":"Oni Validator ⛩️"},{"address":"https://rpc.lavenderfive.com:443/stride","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.stride.silentvalidator.com/","provider":"silent"},{"address":"https://rpc-stride.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://stride.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-stride.pupmos.network","provider":"PUPMØS"},{"address":"https://rpc-stride.architectnodes.com","provider":"Architect Nodes"},{"address":"https://rpc-stride.whispernode.com:443","provider":"WhisperNode 🀐"},{"address":"https://stride-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-stride-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://stride-rpc.w3coins.io","provider":"w3coins"},{"address":"https://stride-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://community.nuxian-node.ch:6797/stride/trpc","provider":"PRO Delegators"},{"address":"https://stride-rpc.stakeandrelax.net","provider":"Stake&Relax πŸ¦₯"},{"address":"https://rpc.stride.bronbro.io:443","provider":"Bro_n_Bro"},{"address":"https://public.stakewolle.com/cosmos/stride/rpc","provider":"Stakewolle"},{"address":"https://stride-rpc.ibs.team","provider":"Inter Blockchain Services"}]}},{"chain_id":"sunrise-1","fees":{"fee_tokens":[{"denom":"urise","fixed_min_gas_price":0.002,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[]}},{"chain_id":"synternet-1","fees":{"fee_tokens":[{"denom":"usynt","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.synternet.com/","provider":"Synternet"},{"address":"https://synternet_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://synternet-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"}]}},{"chain_id":"taketitan-12","fees":{"fee_tokens":[{"denom":"ttnc","low_gas_price":0.000001,"average_gas_price":0.000005,"high_gas_price":0.0001}]},"apis":{"rpc":[{"address":"https://rcpttnc.taketitan.com","provider":"taketitan"}]}},{"chain_id":"tenet_1559-1","fees":{"fee_tokens":[{"denom":"atenet","fixed_min_gas_price":250000000,"low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://tendermint-1.rpc.tenet.org","provider":"tenet"},{"address":"https://tenet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://tenet_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"teritori-1","fees":{"fee_tokens":[{"denom":"utori","low_gas_price":0,"average_gas_price":0.25,"high_gas_price":0.5}]},"apis":{"rpc":[{"address":"https://teritori-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://teritori.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.teritori.silentvalidator.com/","provider":"silent"},{"address":"https://teritori-rpc.brocha.in","provider":"Brochain"},{"address":"https://teritori-rpc.ibs.team","provider":"Inter Blockchain Services"},{"address":"https://teritori.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc.tori.bh.rocks","provider":"BlockHunters 🎯"},{"address":"https://teritori-rpc.kleomedes.network","provider":"Kleomedes"},{"address":"https://m-teritori.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://rpc-teritori.pupmos.network","provider":"PUPMØS"},{"address":"https://teritori-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc-teritori.ecostake.com","provider":"ecostake"},{"address":"https://teritori-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://teritori-rpc.bluestake.net:443","provider":"BlueStake πŸš€"},{"address":"https://teritori_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"},{"address":"https://teritori-rpc.chainroot.io","provider":"Chainroot"}]}},{"chain_id":"morocco-1","fees":{"fee_tokens":[{"denom":"uthiol","fixed_min_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc-terp.zenchainlabs.io/","provider":"ZenChainLabs"},{"address":"https://terp-mainnet-rpc.itrocket.net:443","provider":"itrocket.net"},{"address":"https://terp.rpc.nodex.one:443","provider":"nodex.one"}]}},{"chain_id":"columbus-5","fees":{"fee_tokens":[{"denom":"uluna","low_gas_price":28.325,"average_gas_price":28.325,"high_gas_price":50},{"denom":"usdr","low_gas_price":0.52469,"average_gas_price":0.52469,"high_gas_price":0.52469},{"denom":"uusd","low_gas_price":0.75,"average_gas_price":0.75,"high_gas_price":0.75},{"denom":"ukrw","low_gas_price":850,"average_gas_price":850,"high_gas_price":850},{"denom":"umnt","low_gas_price":2142.855,"average_gas_price":2142.855,"high_gas_price":2142.855},{"denom":"ueur","low_gas_price":0.625,"average_gas_price":0.625,"high_gas_price":0.625},{"denom":"ucny","low_gas_price":4.9,"average_gas_price":4.9,"high_gas_price":4.9},{"denom":"ujpy","low_gas_price":81.85,"average_gas_price":81.85,"high_gas_price":81.85},{"denom":"ugbp","low_gas_price":0.55,"average_gas_price":0.55,"high_gas_price":0.55},{"denom":"uinr","low_gas_price":54.4,"average_gas_price":54.4,"high_gas_price":54.4},{"denom":"ucad","low_gas_price":0.95,"average_gas_price":0.95,"high_gas_price":0.95},{"denom":"uchf","low_gas_price":0.7,"average_gas_price":0.7,"high_gas_price":0.7},{"denom":"uaud","low_gas_price":0.95,"average_gas_price":0.95,"high_gas_price":0.95},{"denom":"usgd","low_gas_price":1,"average_gas_price":1,"high_gas_price":1},{"denom":"uthb","low_gas_price":23.1,"average_gas_price":23.1,"high_gas_price":23.1},{"denom":"usek","low_gas_price":6.25,"average_gas_price":6.25,"high_gas_price":6.25},{"denom":"unok","low_gas_price":6.25,"average_gas_price":6.25,"high_gas_price":6.25},{"denom":"udkk","low_gas_price":4.5,"average_gas_price":4.5,"high_gas_price":4.5},{"denom":"uidr","low_gas_price":10900,"average_gas_price":10900,"high_gas_price":10900},{"denom":"uphp","low_gas_price":38,"average_gas_price":38,"high_gas_price":38},{"denom":"uhkd","low_gas_price":5.85,"average_gas_price":5.85,"high_gas_price":5.85},{"denom":"umyr","low_gas_price":3,"average_gas_price":3,"high_gas_price":3},{"denom":"utwd","low_gas_price":20,"average_gas_price":20,"high_gas_price":20}]},"apis":{"rpc":[{"address":"https://terra-classic-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-terra-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://terraclassic-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://terraclassic-rpc-server-01.stakely.io","provider":"Stakely"}]}},{"chain_id":"phoenix-1","fees":{"fee_tokens":[{"denom":"uluna","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.015,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.lavenderfive.com:443/terra2","provider":"Lavender.Five Nodes 🐝"},{"address":"https://terra-rpc.polkachu.com","provider":"polkachu"},{"address":"https://terra-rpc.stakely.io:443/","provider":"stakely"},{"address":"https://phoenix-rpc.terra.dev:443","provider":"Terraform Labs"},{"address":"https://terra-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-terra-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://rpc-archive-terra.r93axnodes.cloud:443","provider":"r93AX Nodes"},{"address":"https://rpc-terra.cosmos-spaces.cloud","provider":"Cosmos Spaces"},{"address":"https://terra-phoenix-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://rpc-terra.wildsage.io","provider":"πŸ§™ WildSage Labs"},{"address":"https://terra.interstellar-lounge.org","provider":"Interstellar Lounge 🍸"},{"address":"https://terra2.tdrsys.com:2053","provider":"TdrSys"},{"address":"https://terra-rpc.cosmosrescue.dev:8443","provider":"cosmosrescue"}]}},{"chain_id":"tgrade-mainnet-1","fees":{"fee_tokens":[{"denom":"utgd","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.075,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.mainnet-1.tgrade.confio.run","provider":"Confio"},{"address":"https://rpc.tgrade.posthuman.digital","provider":"POSTHUMAN ꝏ DVS"}]}},{"chain_id":"thorchain-1","apis":{"rpc":[]}},{"chain_id":"titan_18888-1","fees":{"fee_tokens":[{"denom":"atkx","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":110000000000,"high_gas_price":200000000000}]},"apis":{"rpc":[{"address":"https://titan-rpc.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc-tokyo.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc-seoul.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc-hongkong.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-rpc.ibs.team","provider":"Inter Blockchain Services"}]}},{"fees":{"fee_tokens":[{"denom":"nanoton","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"fees":{"fee_tokens":[{"denom":"sun","fixed_min_gas_price":0}]},"apis":{"rpc":[]}},{"chain_id":"umee-1","fees":{"fee_tokens":[{"denom":"uumee","fixed_min_gas_price":0.1,"low_gas_price":0.1,"average_gas_price":0.12,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://umee-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-umee-ia.cosmosia.notional.ventures/","provider":"Notional"},{"address":"https://umee-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"http://umee.rpc.m.stavr.tech:10457","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"http://rpc-umee-0.node75.org:26657","provider":"Pro-Nodes75"},{"address":"https://umee-rpc.quantnode.tech","provider":"QuantNode"},{"address":"https://umee-rpc.tienthuattoan.com","provider":"TTT πŸ‡»πŸ‡³"},{"address":"https://rpc-umee-01.stakeflow.io","provider":"Stakeflow"},{"address":"https://umee-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://umee-rpc.theamsolutions.info","provider":"AM Solutions"},{"address":"https://umee.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://umee-rpc.w3coins.io","provider":"w3coins"},{"address":"https://rpc-umee.mms.team","provider":"MMS"},{"address":"https://rpc-umee.mzonder.com","provider":"MZONDER"},{"address":"https://umee-rpc.stake-town.com","provider":"StakeTown"},{"address":"https://umee-rpc.highstakes.ch","provider":"High Stakes πŸ‡¨πŸ‡­"},{"address":"https://umee.rpc.stakevillage.net:443","provider":"Stake Village"},{"address":"https://umee-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://umee_mainnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"unicorn-420","fees":{"fee_tokens":[{"denom":"uwunicorn","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[]}},{"chain_id":"FUND-MainNet-2","fees":{"fee_tokens":[{"denom":"nund","fixed_min_gas_price":25,"low_gas_price":100,"average_gas_price":200,"high_gas_price":300}]},"apis":{"rpc":[{"address":"https://rpc.unification.io:443","provider":"Unification"},{"address":"https://rpc.unification.chainmasters.ninja/","provider":"Chainmasters"}]}},{"chain_id":"ununifi-beta-v1","fees":{"fee_tokens":[{"denom":"uguu","fixed_min_gas_price":0.0025,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"http://a.lcd.ununifi.cauchye.net:26657","provider":"CauchyE"},{"address":"https://rpc.ununifi.nodestake.top","provider":"NodeStake"},{"address":"https://rpc.lavenderfive.com:443/ununifi","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.lavenderfive.com:443/ununifi","provider":"Lavender.Five Nodes 🐝"},{"address":"https://ununifi-rpc.genznodes.dev","provider":"genznodes"}]}},{"chain_id":"uptick_117-1","fees":{"fee_tokens":[{"denom":"auptick","fixed_min_gas_price":13000000000,"low_gas_price":13000000000,"average_gas_price":16000000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://uptick-rpc.brocha.in:443","provider":"Brochain"},{"address":"https://uptick.rpc.bccnodes.com:443","provider":"BccNodes"},{"address":"https://rpc.uptick.nodestake.org","provider":"NodeStake"},{"address":"https://uptick.rpc.kjnodes.com","provider":"kjnodes"},{"address":"http://uptick.rpc.m.stavr.tech:3157","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://m-uptick.rpc.utsa.tech","provider":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀"},{"address":"https://uptick-mainnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://uptick.rpc.liveraven.net","provider":"LiveRaveN"},{"address":"https://uptick-rpc.staketab.org:443","provider":"Staketab"},{"address":"https://uptick-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://rpc-uptick.cakralabs.site","provider":"Cakra Labs"},{"address":"https://rpc-uptick.sr20de.xyz","provider":"Sr20de"},{"address":"https://uptick-rpc.noders.services","provider":"[NODERS]TEAM"}]}},{"chain_id":"xion-mainnet-1","fees":{"fee_tokens":[{"denom":"uxion","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.001,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.xion-mainnet-1.burnt.com","provider":"πŸ”₯BurntLabsπŸ”₯"},{"address":"https://xion-rpc.lavenderfive.com","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc-burnt.imperator.co/","provider":"Imperator.co"},{"address":"https://xion-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://xion-mainnet-rpc.autostake.com:443","provider":"AutoStake πŸ›‘οΈ Slash Protected"},{"address":"https://rpc.xion.nodestake.org","provider":"NodeStake"}]}},{"chain_id":"dimension_37-1","fees":{"fee_tokens":[{"denom":"axpla","fixed_min_gas_price":850000000000,"low_gas_price":850000000000,"average_gas_price":1147500000000,"high_gas_price":1487500000000}]},"apis":{"rpc":[{"address":"https://dimension-rpc.xpla.dev","provider":"Holdings"},{"address":"https://xpla.rpc.m.stavr.tech","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://rpc.lavenderfive.com:443/xpla","provider":"Lavender.Five Nodes 🐝"},{"address":"https://xpla-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://xpla.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"diamond-1","fees":{"fee_tokens":[{"denom":"urock","fixed_min_gas_price":0.5,"low_gas_price":0.5,"average_gas_price":0.55,"high_gas_price":0.6}]},"apis":{"rpc":[{"address":"https://rpc.diamond.zenrocklabs.io/","provider":"zenrock"}]}},{"chain_id":"zetachain_7000-1","fees":{"fee_tokens":[{"denom":"azeta","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://zetachain.blockpi.network/rpc/v1/public","provider":"BlockPI"},{"address":"https://zetachain-mainnet-archive.allthatnode.com:26657","provider":"All That Node"},{"address":"https://rpc.lavenderfive.com:443/zetachain","provider":"Lavender.Five Nodes 🐝"},{"address":"https://rpc.zetachain.nodestake.org","provider":"NodeStake"},{"address":"https://zetachain-rpc.noders.services","provider":"[NODERS]TEAM"},{"address":"https://zetachain.rpc.nodeshub.online:443","provider":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…"},{"address":"https://zeta-chain.drpc.org","provider":"dRPC"},{"address":"https://zeta.rpc.m.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://zetachain-mainnet-rpc.cosmonautstakes.com","provider":"Cosmonaut Stakes"}]}},{"chain_id":"junction","fees":{"fee_tokens":[{"denom":"amf","fixed_min_gas_price":0,"low_gas_price":0.00025,"average_gas_price":0.005,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://junction-rpc.validatorvn.com/","provider":"Validator VN"},{"address":"https://airchains-testnet-rpc.cosmonautstakes.com/","provider":"Cosmonaut Stakes"},{"address":"https://junction-testnet-rpc.synergynodes.com/","provider":"Synergy Nodes"},{"address":"https://airchains-rpc.anonid.top/","provider":"Anonid Top"},{"address":"https://airchains-test.rpc.moonbridge.team/","provider":"Moonbridge Team"},{"address":"https://airchains-rpc.chainad.org/","provider":"Coin Hunterstr"},{"address":"https://airchains.rpc.t.stavr.tech/","provider":"Stavr Tech"},{"address":"https://rpc.nodejumper.io/airchainstestnet","provider":"Nodejumper"},{"address":"https://t-airchains.rpc.utsa.tech/","provider":"UTSA"},{"address":"https://junction-rpc.kzvn.xyz/","provider":"KZVN"},{"address":"https://airchains-rpc.elessarnodes.xyz/","provider":"Elessar Nodes"},{"address":"https://junction-rpc.apollo-sync.com/","provider":"Apollo Sync"},{"address":"https://rpc-airchain.danggia.xyz/","provider":"DANGGIA"},{"address":"https://airchains-rpc.stakeme.pro/","provider":"Stakeme"},{"address":"https://airchains-testnet-rpc.stakerhouse.com","provider":"StakerHouse"},{"address":"https://airchains-testnet-rpc.crouton.digital/","provider":"Crouton Digital"},{"address":"https://airchains-testnet-rpc.itrocket.net/","provider":"IT Rocket"},{"address":"https://rpc1.airchains.t.cosmostaking.com/","provider":"Cosmostaking"}]}},{"chain_id":"sandbox-01","fees":{"fee_tokens":[{"denom":"uakt","fixed_min_gas_price":0,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.sandbox-01.aksh.pw:443","provider":"akash"}]}},{"chain_id":"constantine-3","fees":{"fee_tokens":[{"denom":"aconst","low_gas_price":1000000000000,"average_gas_price":1500000000000,"high_gas_price":2000000000000}]},"apis":{"rpc":[{"address":"https://rpc.constantine.archway.io","provider":"Archway"},{"address":"https://archway-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"arkeo","fees":{"fee_tokens":[{"denom":"uarkeo"}]},"apis":{"rpc":[{"address":"https://arkeonetwork-testnet.nodejumper.io:26657","provider":"NODEJUMPER"},{"address":"https://test-arkeo-rpc.kynraze.com","provider":"kynraze"},{"address":"https://testnet-arkeo-rpc.lavenderfive.com","provider":"lavenderfive"},{"address":"https://arkeo-rpc.siriusnodes.uk","provider":"siriusnodes"},{"address":"http://seed.arkeo.network:26657","provider":"arkeo"}]}},{"chain_id":"artela_11820-1","fees":{"fee_tokens":[{"denom":"uart","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://testnet-rpc1.artela.network","provider":"Artela Foundation"},{"address":"https://testnet-rpc2.artela.network","provider":"Artela Foundation"}]}},{"chain_id":"aura_6321-3","fees":{"fee_tokens":[{"denom":"ueaura","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://rpc.euphoria.aura.network/","provider":"Aura Network Foundation"}]}},{"chain_id":"axelar-testnet-lisbon-3","fees":{"fee_tokens":[{"denom":"uaxl","low_gas_price":0.007,"average_gas_price":0.007,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc-axelar-testnet.imperator.co:443","provider":"Imperator.co"},{"address":"https://axelartest-rpc.quickapi.com/","provider":"Quickapi"},{"address":"https://axelar-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"bbn-test3","fees":{"fee_tokens":[{"denom":"ubbn"}]},"apis":{"rpc":[{"address":"rpc.testnet3.babylonchain.io:443","provider":"Babylon foundation"}]}},{"chain_id":"bitcanna-dev-1","fees":{"fee_tokens":[{"denom":"ubcna","fixed_min_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://rpc-testnet.bitcanna.io","provider":"bitcanna"},{"address":"https://bitcanna-testnet.rpc.kjnodes.com/","provider":"kjnodes.com"},{"address":"https://testnet-bitcanna-rpc.konsortech.xyz/","provider":"konsortech.xyz"},{"address":"https://rpc.bitcanna-dev-1.bitcanna.aviaone.com/","provider":"aviaone.com"},{"address":"https://bitcanna-testnet.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://bcna-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"blockx_19077-1","apis":{"rpc":[]}},{"chain_id":"cascadia_6102-1","fees":{"fee_tokens":[{"denom":"aCC","fixed_min_gas_price":0,"low_gas_price":7,"average_gas_price":10,"high_gas_price":15}]},"apis":{"rpc":[{"address":"https://rpc.cascadia.foundation:443","provider":"cascadia"},{"address":"https://cscd-rpc.systemd.run:443","provider":"systemd"},{"address":"https://api.cascadia-t.indonode.net:443","provider":"Indonode"},{"address":"https://rpc-test.cascadia.hexnodes.co:443","provider":"Hexnodes"}]}},{"chain_id":"mocha-4","fees":{"fee_tokens":[{"denom":"utia","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc-mocha.pops.one","provider":"P-OPs"},{"address":"https://celestia-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"},{"address":"https://rpc-mocha-full.avril14th.org","provider":"Avril 14th"},{"address":"https://celestia-testnet-rpc.itrocket.net","provider":"πŸš€ITRocketπŸš€"},{"address":"https://rpc-celestia-testnet.cryptech.com.ua","provider":"CrypTech"},{"address":"https://rpc.celestia.testnet.dteam.tech:443","provider":"DTEAM"},{"address":"https://celestia-testnet-rpc.stakeandrelax.net","provider":"Stake&Relax Validator πŸ¦₯"}]}},{"chain_id":"babajaga-1","fees":{"fee_tokens":[{"denom":"uc4e","fixed_min_gas_price":0,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc-testnet.c4e.io","provider":"C4E"}]}},{"chain_id":"cheqd-testnet-6","fees":{"fee_tokens":[{"denom":"ncheq","fixed_min_gas_price":25,"low_gas_price":50,"average_gas_price":75,"high_gas_price":100}]},"apis":{"rpc":[{"address":"https://rpc.cheqd.network","provider":"cheqd"}]}},{"chain_id":"chimba-testnet","fees":{"fee_tokens":[{"denom":"ucmba","fixed_min_gas_price":0.25,"low_gas_price":1,"average_gas_price":5,"high_gas_price":10}]},"apis":{"rpc":[{"address":"https://rpc.testnet.chimba.ooo","provider":"chimba"}]}},{"chain_id":"banksy-testnet-3","fees":{"fee_tokens":[{"denom":"ppica","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.composable-t.indonode.net:443","provider":"Indonode"},{"address":"https://rpc-composable-testnet.sr20de.xyz:443","provider":"Sr20de"}]}},{"chain_id":"kitten-04","fees":{"fee_tokens":[{"denom":"uccat","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":1,"high_gas_price":2}]},"apis":{"rpc":[{"address":"https://rpc.coolcat.space","provider":"Digital Kitchen"}]}},{"chain_id":"coreum-testnet-1","fees":{"fee_tokens":[{"denom":"utestcore","fixed_min_gas_price":0.03125,"low_gas_price":0.0625,"average_gas_price":0.0625,"high_gas_price":62.5}]},"apis":{"rpc":[{"address":"https://full-node.testnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://full-node-eris.testnet-1.coreum.dev:26657","provider":"Coreum Foundation"},{"address":"https://coreum-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"theta-testnet-001","fees":{"fee_tokens":[{"denom":"uatom","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://cosmoshubt.tendermintrpc.lava.build:443","provider":"Lava"},{"address":"https://rpc.sentry-01.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.sentry-02.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.state-sync-01.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.state-sync-02.theta-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://public-cosmos-theta.w3node.com","provider":"Interchain.FM"},{"address":"https://rpc-theta.osmotest5.osmosis.zone/","provider":"Osmosis"}]}},{"chain_id":"provider","fees":{"fee_tokens":[{"denom":"uatom","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.provider-sentry-01.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.provider-sentry-02.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.provider-state-sync-01.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://rpc.provider-state-sync-02.ics-testnet.polypore.xyz","provider":"Hypha"},{"address":"https://cosmos-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"malaga-420","fees":{"fee_tokens":[{"denom":"umlg","low_gas_price":0.03,"average_gas_price":0.04,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.malaga-420.cosmwasm.com:443","provider":"Confio"}]}},{"chain_id":"coss-testnet-1","fees":{"fee_tokens":[{"denom":"ucgas","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://coss-testnet-rpc.coss.ink","provider":"COSS"}]}},{"chain_id":"cudos-testnet-public-3","apis":{"rpc":[{"address":"https://rpc.testnet.cudos.org:443/","provider":"cudo"},{"address":"http://sentry-01.hosts.testnet.cudos.org:26657","provider":"cudo"},{"address":"http://sentry-02.hosts.testnet.cudos.org:26657","provider":"cudo"},{"address":"http://sentry-03.hosts.testnet.cudos.org:26657","provider":"cudo"}]}},{"chain_id":"deardoge-testnet","fees":{"fee_tokens":[{"denom":"udear","fixed_min_gas_price":0.25}]},"apis":{"rpc":[{"address":"https://testnet-rpc.deardoge.org","provider":"dorafactory"}]}},{"chain_id":"morpheus-apollo-3","fees":{"fee_tokens":[{"denom":"udaric","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.03,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.morpheus.desmos.network","provider":"desmos"}]}},{"chain_id":"dhealth-testnet-2","fees":{"fee_tokens":[{"denom":"utdhp","fixed_min_gas_price":0.01,"low_gas_price":0.025,"average_gas_price":0.03,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc-testnet.dhealth.dev","provider":"dHealth"}]}},{"chain_id":"vota-testnet","fees":{"fee_tokens":[{"denom":"peaka","fixed_min_gas_price":100000000000}]},"apis":{"rpc":[{"address":"https://vota-testnet-rpc.dorafactory.org/","provider":"dorafactory"}]}},{"chain_id":"dydx-testnet-4","fees":{"fee_tokens":[{"denom":"adv4tnt","fixed_min_gas_price":12500000000,"low_gas_price":12500000000,"average_gas_price":12500000000,"high_gas_price":20000000000}]},"apis":{"rpc":[{"address":"https://dydx-rpc-testnet.enigma-validator.com","provider":"Enigma"},{"address":"https://testnet-dydx-rpc.lavenderfive.com","provider":"Lavender Five"},{"address":"https://test-dydx-rpc.kingnodes.com","provider":"kingnodes πŸ‘‘"},{"address":"https://dydx-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://dydx-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"dymension_1405-1","fees":{"fee_tokens":[{"denom":"adym","low_gas_price":5000000000,"average_gas_price":5500000000,"high_gas_price":6000000000}]},"apis":{"rpc":[{"address":"https://rpc-dym-migration-test-2.mzonder.com","provider":"mzonder"}]}},{"chain_id":"elysicstestnet-1","fees":{"fee_tokens":[{"denom":"uelys","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03},{"denom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.testnet.elys.network","provider":"Elys Network"},{"address":"https://elys-testnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://elys-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"empe-testnet-2","fees":{"fee_tokens":[{"denom":"uempe","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-testnet.empe.io/","provider":"empe"},{"address":"https://rpc-archive-testnet.empe.io/","provider":"empe-archive"}]}},{"chain_id":"circulus-1","fees":{"fee_tokens":[{"denom":"umpwr","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://empower-testnet-rpc.polkachu.com:443","provider":"Polkachu"},{"address":"https://empower.rpc.cumulo.com.es:443","provider":"Cumulo"},{"address":"https://rpc-t.empower.nodestake.top:443","provider":"NodeStake"},{"address":"https://rpc-empower.nodeist.net:443","provider":"Nodeist"},{"address":"https://empower-testnet.nodejumper.io:443","provider":"NODEJUMPER"},{"address":"https://empower-testnet-rpc.itrocket.net:443","provider":"ITRocket"},{"address":"https://rpc.circulus-1.empower.aviaone.com:443","provider":"AviaOne"}]}},{"chain_id":"epix_4243-1","fees":{"fee_tokens":[{"denom":"aepix","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc.testnet.epix.zone","provider":"Epix Testnet"}]}},{"chain_id":"evmos_9000-4","fees":{"fee_tokens":[{"denom":"atevmos","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://evmos.test.rpc.coldyvalidator.net","provider":"coldy"},{"address":"https://evmos-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://evmos-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"dorado-1","fees":{"fee_tokens":[{"denom":"atestfet","low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.035}]},"apis":{"rpc":[{"address":"https://rpc-dorado.fetch.ai:443","provider":"fetch.ai"}]}},{"chain_id":"fiamma-testnet-1","fees":{"fee_tokens":[{"denom":"ufia"}]},"apis":{"rpc":[{"address":"https://testnet-rpc.fiammachain.io","provider":"Fiamma"}]}},{"chain_id":"ebony-2","fees":{"fee_tokens":[{"denom":"tcony","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.015,"high_gas_price":0.015}]},"apis":{"rpc":[{"address":"https://ebony-rpc.finschia.io"}]}},{"chain_id":"galactica_9302-1","fees":{"fee_tokens":[{"denom":"agnet","fixed_min_gas_price":10,"low_gas_price":10,"average_gas_price":10,"high_gas_price":20}]},"apis":{"rpc":[{"address":"https://rpc.galactica.test.pfc.zone/","provider":"PFC"},{"address":"https://galactica-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"gitopia-janus-testnet-2","fees":{"fee_tokens":[{"denom":"utlore","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://gitopia-testnet.nodejumper.io","provider":"NODEJUMPER"}]}},{"chain_id":"berberis-1","fees":{"fee_tokens":[{"denom":"uhedge","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-berberis.hedgeblock.io","provider":"Hedge"}]}},{"chain_id":"testnet-1","fees":{"fee_tokens":[{"denom":"uheart","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://humans-testnet.nodejumper.io","provider":"NODEJUMPER"},{"address":"https://humans-testnet-rpc.cosmonautstakes.com","provider":"Cosmonaut Stakes πŸ€–"}]}},{"chain_id":"prajna-1","fees":{"fee_tokens":[{"denom":"uhid","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.prajna.hypersign.id","provider":"Hypersign"}]}},{"chain_id":"pandora-8","fees":{"fee_tokens":[{"denom":"uixo","fixed_min_gas_price":0.015,"low_gas_price":0.015,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.testnet.ixo.earth/","provider":"ixoworld"}]}},{"chain_id":"imversed-test-1","fees":{"fee_tokens":[{"denom":"nimv","fixed_min_gas_price":0.001}]},"apis":{"rpc":[{"address":"https://tx-endpoint-test.imversed.com/","provider":"imversed"}]}},{"chain_id":"injective-888","fees":{"fee_tokens":[{"denom":"inj","fixed_min_gas_price":160000000,"low_gas_price":500000000,"average_gas_price":700000000,"high_gas_price":900000000}]},"apis":{"rpc":[{"address":"https://injective-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://testnet.sentry.tm.injective.network:443","provider":"injectiveLabs"},{"address":"https://testnet.tm.injective.network","provider":"injectiveLabs"},{"address":"https://injective-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"canine-1","fees":{"fee_tokens":[{"denom":"ujkl","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"http://jkl.rpc.t.stavr.tech:19127","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://testnet-rpc.jackalprotocol.com","provider":"Jackal Labs"}]}},{"chain_id":"mesomelas-1","fees":{"fee_tokens":[{"denom":"ujkl","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://jackal-testnet-v4-rpc.brocha.in","provider":"Brochain"}]}},{"chain_id":"uni-6","fees":{"fee_tokens":[{"denom":"ujunox","low_gas_price":0.003,"average_gas_price":0.0045,"high_gas_price":0.006}]},"apis":{"rpc":[{"address":"https://juno-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"kichain-t-4","fees":{"fee_tokens":[{"denom":"utki","fixed_min_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://rpc-challenge.blockchain.ki/","provider":"kifoundation"}]}},{"chain_id":"kima_testnet","fees":{"fee_tokens":[{"denom":"uKIMA","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc-testnet.kima.finance/","provider":"Kima Network"}]}},{"chain_id":"harpoon-4","fees":{"fee_tokens":[{"denom":"ukuji","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://kujira-testnet-rpc.polkachu.com","provider":"polkachu"}]}},{"chain_id":"kaon-1","fees":{"fee_tokens":[{"denom":"tkyve","fixed_min_gas_price":0.02,"low_gas_price":0.02,"average_gas_price":0.03,"high_gas_price":0.06}]},"apis":{"rpc":[{"address":"https://rpc.kaon.kyve.network","provider":"kyve"},{"address":"https://rpc-kyve-test.ecostake.com","provider":"ecostake"},{"address":"https://kyve-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"lava-testnet-2","fees":{"fee_tokens":[{"denom":"ulava","fixed_min_gas_price":0.000001,"low_gas_price":0.000001,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://lav1.tendermintrpc.lava.build:443","provider":"Lava"},{"address":"http://lava.rpc.t.stavr.tech:198","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://lava-testnet-rpc.itrocket.net:443","provider":"πŸš€ITRocketπŸš€"},{"address":"https://lava-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"likecoin-public-testnet-5","fees":{"fee_tokens":[{"denom":"nanoekil","fixed_min_gas_price":1000,"low_gas_price":1000,"average_gas_price":10000,"high_gas_price":1000000}]},"apis":{"rpc":[{"address":"https://node.testnet.like.co/rpc/","provider":"like.co"}]}},{"chain_id":"lumenx-test","fees":{"fee_tokens":[{"denom":"ulumen","fixed_min_gas_price":0.0025,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://testnet-rpc.lumenx.chaintools.tech/","provider":"ChainTools"},{"address":"https://testrpc-lumenx.cryptonet.pl/","provider":"CryptoNet"}]}},{"chain_id":"manifest-ledger-testnet","fees":{"fee_tokens":[{"denom":"umfx","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.007,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://nodes.liftedinit.tech/manifest/testnet/rpc","provider":"The Lifted Initiative"}]}},{"chain_id":"mantra-hongbai-1","fees":{"fee_tokens":[{"denom":"uom","fixed_min_gas_price":0,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.003}]},"apis":{"rpc":[{"address":"https://rpc.hongbai.mantrachain.io","provider":"MANTRACHAIN"},{"address":"https://mantra-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"mantra-dukong-1","fees":{"fee_tokens":[{"denom":"uom","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.dukong.mantrachain.io","provider":"MANTRACHAIN"},{"address":"https://mantra-testnet-rpc.publicnode.com:443","provider":"Allnodes ⚑️ Nodes & Staking"}]}},{"chain_id":"ares-1","fees":{"fee_tokens":[{"denom":"umars","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0.025}]},"apis":{"rpc":[{"address":"https://testnet-rpc.marsprotocol.io/","provider":"Mars Protocol"},{"address":"https://rpc-mars.nodeist.net/","provider":"Nodeist"}]}},{"chain_id":"mnova_10096-1","apis":{"rpc":[]}},{"chain_id":"narwhal-2","fees":{"fee_tokens":[{"denom":"uwhale","fixed_min_gas_price":0.25,"low_gas_price":0.25,"average_gas_price":0.5,"high_gas_price":0.75}]},"apis":{"rpc":[{"address":"https://migaloo-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"neura_267-1","fees":{"fee_tokens":[{"denom":"atankr"}]},"apis":{"rpc":[{"address":"https://rpc.ankr.com/neura_testnet","provider":"ankr"}]}},{"chain_id":"pion-1","fees":{"fee_tokens":[{"denom":"untrn","low_gas_price":0.0053,"average_gas_price":0.0053,"high_gas_price":0.0053}]},"apis":{"rpc":[{"address":"https://rpc-falcron.pion-1.ntrn.tech","provider":"Neutron"},{"address":"https://neutron-testnet-rpc.polkachu.com/","provider":"Polkachu"}]}},{"chain_id":"nibiru-testnet-1","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet-1.nibiru.fi","provider":"Nibiru Foundation"}]}},{"chain_id":"nibiru-testnet-2","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet-2.nibiru.fi","provider":"Nibiru Foundation"}]}},{"chain_id":"nibiru-testnet-3","fees":{"fee_tokens":[{"denom":"unibi","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet-3.nibiru.fi","provider":"Nibiru Foundation"}]}},{"chain_id":"nillion-chain-testnet-1","fees":{"fee_tokens":[{"denom":"unil","low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.00025}]},"apis":{"rpc":[{"address":"https://nillion-testnet-rpc.polkachu.com/","provider":"polkachu"},{"address":"https://testnet-nillion-rpc.lavenderfive.com","provider":"lavenderfive"},{"address":"https://nillion-testnet.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://nillion-testnet.rpc.nodex.one","provider":"NodeX Emperor"}]}},{"chain_id":"grand-1","fees":{"fee_tokens":[{"denom":"uusdc","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://noble-testnet-rpc.polkachu.com","provider":"polkachu"},{"address":"https://rpc.testnet.noble.strange.love:443","provider":"strangelove"}]}},{"chain_id":"nois-testnet-005","fees":{"fee_tokens":[{"denom":"unois","fixed_min_gas_price":0,"low_gas_price":0.05,"average_gas_price":0.05,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://nois-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://nois-testnet-rpc.itrocket.net:443","provider":"itrocket"},{"address":"https://rpc.nois.mcbnode.online:443","provider":"mcbnode"},{"address":"https://nois-testnet.rpc.kjnodes.com:443","provider":"kjnodes"},{"address":"https://tnois-rpc.systemd.run:443","provider":"systemd"}]}},{"chain_id":"rila-1","fees":{"fee_tokens":[{"denom":"unls","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rila-cl.nolus.network:26657","provider":"NolusProtocol"}]}},{"chain_id":"nomic-testnet-6","fees":{"fee_tokens":[{"denom":"unom","low_gas_price":0,"average_gas_price":0,"high_gas_price":0},{"denom":"usat","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://testnet-rpc.nomic.io:2096","provider":"nomic"}]}},{"chain_id":"sandbox","fees":{"fee_tokens":[{"denom":"unym","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04},{"denom":"unyx","fixed_min_gas_price":0.025,"low_gas_price":0.025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.sandbox.nymtech.net","provider":"Nym"}]}},{"chain_id":"okp4-nemeton-1","fees":{"fee_tokens":[{"denom":"uknow","fixed_min_gas_price":0,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://api.testnet.okp4.network/rpc","provider":"OKP4"},{"address":"https://okptest-rpc.quickapi.com","provider":"Chainlayer"},{"address":"http://okp.rpc.t.stavr.tech:10097","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://okp4-testnet-rpc.polkachu.com","provider":"Polkachu"}]}},{"chain_id":"osmo-test-5","fees":{"fee_tokens":[{"denom":"uosmo","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.osmotest5.osmosis.zone/","provider":"Osmosis"}]}},{"chain_id":"INVALID-ID-permtestnet-testnet-1","fees":{"fee_tokens":[{"denom":"uperm","low_gas_price":0.0025,"average_gas_price":0.0025,"high_gas_price":0.0024}]},"apis":{"rpc":[{"address":"https://rpc.3.finance/","provider":"Perm Network"}]}},{"chain_id":"test-core-1","fees":{"fee_tokens":[{"denom":"uxprt","fixed_min_gas_price":0,"low_gas_price":0.05,"average_gas_price":0.125,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://rpc-testnet-persistence.architectnodes.com/","provider":"Architect Nodes"},{"address":"https://persistence-testnet-rpc.baryon.dev/","provider":"Baryon"},{"address":"https://persistence-testnet-rpc.cosmonautstakes.com/","provider":"Cosmonaut Stakes"},{"address":"https://rpc.testnet.persistence.one/","provider":"Persistence"},{"address":"https://persistence-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://xprt-trpc.antrixy.org/","provider":"Antrix Validators"}]}},{"chain_id":"test-core-2","fees":{"fee_tokens":[{"denom":"uxprt","fixed_min_gas_price":0,"low_gas_price":0.05,"average_gas_price":0.125,"high_gas_price":0.2}]},"apis":{"rpc":[{"address":"https://rpc-persistence-testnet-01.stakeflow.io/","provider":"StakeFlow"},{"address":"https://persistence-testnet-rpc.baryon.dev/","provider":"Baryon"},{"address":"https://persistence-testnet-rpc.cosmonautstakes.com/","provider":"Cosmonaut Stakes"},{"address":"https://rpc.testnet2.persistence.one/","provider":"Persistence"},{"address":"https://persistence-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://persistencecoretest-rpc.ytwofund.pro/","provider":"YTWOFUND"},{"address":"http://persistence-testnet.paranorm.pro:24657/","provider":"Paranorm"}]}},{"chain_id":"planq_7077-1","fees":{"fee_tokens":[{"denom":"atplanq","fixed_min_gas_price":20000000000,"low_gas_price":30000000000,"average_gas_price":35000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://rpc-atlas.planq.network","provider":"Planq Network"},{"address":"https://planq_testnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"pocket-beta","fees":{"fee_tokens":[{"denom":"upokt","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.002,"high_gas_price":0.0025}]},"apis":{"rpc":[{"address":"https://shannon-testnet-grove-rpc.beta.poktroll.com","provider":"Grove"}]}},{"chain_id":"indigo-1","fees":{"fee_tokens":[{"denom":"upryzm","fixed_min_gas_price":0,"low_gas_price":0.015,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://testnet-rpc.pryzm.zone","provider":"PRYZM"},{"address":"https://pryzm-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"quasar-test-1","fees":{"fee_tokens":[{"denom":"uqsr","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://quasar-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://quasar-testnet-rpc.stakeandrelax.net/","provider":"Stake and Relax"},{"address":"https://quasar-testnet.rpc.kjnodes.com","provider":"KJNodes.com"}]}},{"chain_id":"rhye-2","fees":{"fee_tokens":[{"denom":"uqck","low_gas_price":0.0001,"average_gas_price":0.0001,"high_gas_price":0.00025}]},"apis":{"rpc":[{"address":"http://quick.rpc.t.stavr.tech:20027","provider":"πŸ”₯STAVRπŸ”₯"},{"address":"https://quicksilver-testnet-rpc.polkachu.com/","provider":"polkachu"},{"address":"https://quicksilver-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"earendel-1","fees":{"fee_tokens":[{"denom":"uqwoyn"}]},"apis":{"rpc":[{"address":"https://testnet-rpc.qwoyn.studio","provider":"Qwoyn Studios"}]}},{"chain_id":"ssc-testnet-2","fees":{"fee_tokens":[{"denom":"utsaga","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://testnet-ssc.sagarpc.io/","provider":"Saga"}]}},{"chain_id":"pulsar-3","fees":{"fee_tokens":[{"denom":"uscrt","fixed_min_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc.testnet.secretsaturn.net","provider":"π•Šecret π•Šaturn"},{"address":"https://rpc.pulsar.scrttestnet.com","provider":"SCRT Testnet Committee"}]}},{"chain_id":"atlantic-1","fees":{"fee_tokens":[{"denom":"usei","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://sei-testnet-rpc.brocha.in","provider":"Brochain"}]}},{"chain_id":"atlantic-2","fees":{"fee_tokens":[{"denom":"usei","fixed_min_gas_price":0.08}]},"apis":{"rpc":[{"address":"https://sei-testnet-2-rpc.brocha.in","provider":"Brochain"},{"address":"https://rpc-testnet-sei.stingray.plus","provider":"StingRay"}]}},{"chain_id":"self-dev-1","fees":{"fee_tokens":[{"denom":"uself","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc-devnet.selfchain.xyz","provider":"Selfchain"}]}},{"chain_id":"sge-network-3","fees":{"fee_tokens":[{"denom":"usge","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.testnet.sgenetwork.io","provider":"Sge Network"},{"address":"https://testnet-saage-rpc.lavenderfive.com/ ","provider":"Lavender.Five"},{"address":"https://saage-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-t.sge.nodestake.top/","provider":"Nodestake.top"},{"address":"https://sge.rpc.t.stavr.tech:443","provider":"πŸ”₯STAVRπŸ”₯"}]}},{"chain_id":"sge-network-4","fees":{"fee_tokens":[{"denom":"usge","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.testnet.sgenetwork.io","provider":"Sge Network"},{"address":"https://testnet-saage-rpc.lavenderfive.com/ ","provider":"Lavender.Five"},{"address":"https://saage-testnet-rpc.polkachu.com/","provider":"Polkachu"},{"address":"https://rpc-t.sge.nodestake.top/","provider":"Nodestake.top"}]}},{"chain_id":"yulei-2.1","fees":{"fee_tokens":[{"denom":"uctk","low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://yulei-rpc.shentu.org:443","provider":"Shentu"}]}},{"chain_id":"fivenet","fees":{"fee_tokens":[{"denom":"usix","fixed_min_gas_price":1.25,"low_gas_price":1.25,"average_gas_price":1.5,"high_gas_price":1.75}]},"apis":{"rpc":[{"address":"https://rpc1.fivenet.sixprotocol.net:443"}]}},{"chain_id":"soarchaintestnet","fees":{"fee_tokens":[{"denom":"utsoar","fixed_min_gas_price":0.001,"low_gas_price":0.01,"average_gas_price":0.02,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://rpc1.testnet.soarchain.com","provider":"soarchain"},{"address":"https://rpc2.testnet.soarchain.com/","provider":"soarchain"},{"address":"https://soarchain-testnet-rpc.tienthuattoan.com","provider":"tienthuattoan"},{"address":"https://soarchain-testnet.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://rpc-t.soarchain.nodestake.org","provider":"nodeStake"},{"address":"https://soarchain-testnet-rpc.stakerhouse.com","provider":"stakerHouse"}]}},{"chain_id":"sourcetest-1","fees":{"fee_tokens":[{"denom":"usource","fixed_min_gas_price":0.05,"low_gas_price":0.05,"average_gas_price":0.075,"high_gas_price":0.1}]},"apis":{"rpc":[{"address":"https://source-testnet-rpc.itrocket.net/","provider":"ITRocket"},{"address":"https://source-test.rpc.moonbridge.team/","provider":"MoonBridge"},{"address":"https://rpc-testnet-source.sr20de.xyz","provider":"SR20DE"},{"address":"https://source-testnet.rpc.kjnodes.com","provider":"kjnodes"},{"address":"https://source_testnet_rpc.chain.whenmoonwhenlambo.money","provider":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯"}]}},{"chain_id":"elgafar-1","fees":{"fee_tokens":[{"denom":"ustars","low_gas_price":0.03,"average_gas_price":0.04,"high_gas_price":0.05}]},"apis":{"rpc":[{"address":"https://rpc.elgafar-1.stargaze-apis.com","provider":"Stargaze Foundation"},{"address":"https://stargaze-testnet-rpc.ibs.team:443","provider":"Inter Blockchain Services"}]}},{"chain_id":"stateset-1-testnet","fees":{"fee_tokens":[{"denom":"ustate","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.stateset.zone/","provider":"stateset"}]}},{"chain_id":"stride-internal-1","fees":{"fee_tokens":[{"denom":"ustrd","fixed_min_gas_price":0}]},"apis":{"rpc":[{"address":"https://stride.testnet-1.stridenet.co","provider":"Stride"}]}},{"chain_id":"sunrise-test-0.1","fees":{"fee_tokens":[{"denom":"urise","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://a-node.sunrise-test-1.cauchye.net/","provider":"CauchyE"},{"address":"https://b-node.sunrise-test-1.cauchye.net/","provider":"CauchyE"}]}},{"chain_id":"swisstronik_1291-1","fees":{"fee_tokens":[{"denom":"aswtr","fixed_min_gas_price":7}]},"apis":{"rpc":[{"address":"https://rpc.testnet.swisstronik.com","provider":"Swisstronik"},{"address":"https://testnet-swisstronik-rpc.genznodes.dev","provider":"genznodes"},{"address":"https://rpc.swisstronik.comunitynode.my.id","provider":"ComunityNode"}]}},{"chain_id":"symphony-testnet-4","fees":{"fee_tokens":[{"denom":"note","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://symphony.test.rpc.nodeshub.online/","provider":"Nodes Hub"},{"address":"https://symphony-testnet-rpc.cogwheel.zone/","provider":"Cogwheel βš™οΈ"}]}},{"chain_id":"amber-2","fees":{"fee_tokens":[{"denom":"uamber","fixed_min_gas_price":0.01,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc-testnet.synternet.com/","provider":"Synternet"}]}},{"chain_id":"90u-4","fees":{"fee_tokens":[{"denom":"uthiolx","fixed_min_gas_price":0.5,"low_gas_price":0.75,"average_gas_price":1,"high_gas_price":1.25}]},"apis":{"rpc":[{"address":"https://testnet-rpc.terp.network:443/","provider":"Terpnet Foundation"},{"address":"https://terp-testnet-rpc.itrocket.net:443/","provider":"itrocket"}]}},{"chain_id":"90u-2","fees":{"fee_tokens":[{"denom":"uthiolx","fixed_min_gas_price":0.5,"low_gas_price":0.75,"average_gas_price":1,"high_gas_price":1.25}]},"apis":{"rpc":[{"address":"https://terp-testnet-rpc.itrocket.net:443/","provider":"itrocket"}]}},{"chain_id":"pisco-1","fees":{"fee_tokens":[{"denom":"uluna","fixed_min_gas_price":0.0125,"low_gas_price":0.0125,"average_gas_price":0.015,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://pisco-rpc.terra.dev:443","provider":"Terraform Labs"},{"address":"https://terra-testnet-rpc.polkachu.com:443","provider":"Polkachu"}]}},{"chain_id":"titan_18889-1","fees":{"fee_tokens":[{"denom":"atkx","fixed_min_gas_price":100000000000,"low_gas_price":100000000000,"average_gas_price":110000000000,"high_gas_price":200000000000}]},"apis":{"rpc":[{"address":"https://titan-testnet-rpc.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-1.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-2.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-3.titanlab.io:443","provider":"Titanlab.io"},{"address":"https://titan-testnet-rpc-4.titanlab.io:443","provider":"Titanlab.io"}]}},{"chain_id":"tucana_712-1","fees":{"fee_tokens":[{"denom":"atuc","fixed_min_gas_price":5000000000,"low_gas_price":10000000000,"average_gas_price":25000000000,"high_gas_price":30000000000}]},"apis":{"rpc":[{"address":"https://rpc.birdee-2.tucana.zone/","provider":"Tucana"}]}},{"chain_id":"ulas","apis":{"rpc":[{"address":"http://65.49.204.199:26657","provider":"UlasNetwork"}]}},{"chain_id":"FUND-TestNet-2","fees":{"fee_tokens":[{"denom":"nund","fixed_min_gas_price":25,"low_gas_price":100,"average_gas_price":200,"high_gas_price":300}]},"apis":{"rpc":[{"address":"https://rpc-testnet.unification.io:443","provider":"Unification"}]}},{"chain_id":"union-testnet-8","fees":{"fee_tokens":[{"denom":"muno","fixed_min_gas_price":0,"low_gas_price":0.0025,"average_gas_price":0.025,"high_gas_price":0.04}]},"apis":{"rpc":[{"address":"https://rpc.testnet-8.union.build","provider":"union"},{"address":"https://union-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://rpc-testnet-union.nodeist.net","provider":"Nodeist"},{"address":"https://union-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"uptick_7000-2","fees":{"fee_tokens":[{"denom":"auptick","low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://uptick-7000-2-rpc.staketab.org:443","provider":"Staketab"}]}},{"chain_id":"buenavista-1","fees":{"fee_tokens":[{"denom":"uward","fixed_min_gas_price":0.005,"low_gas_price":0.01,"average_gas_price":0.025,"high_gas_price":0.03}]},"apis":{"rpc":[{"address":"https://rpc.buenavista.wardenprotocol.org/","provider":"Warden Protocol"}]}},{"chain_id":"INVALID-ID-wavehashtestnet-testnet-1","fees":{"fee_tokens":[{"denom":"uwahax","low_gas_price":0.0025,"average_gas_price":0.0025,"high_gas_price":0.0024}]},"apis":{"rpc":[{"address":"https://rpc.wavehash.online/","provider":"WaveHash Network"}]}},{"chain_id":"xion-testnet-1","fees":{"fee_tokens":[{"denom":"uxion","fixed_min_gas_price":0.001,"low_gas_price":0.001,"average_gas_price":0.001,"high_gas_price":0.01}]},"apis":{"rpc":[{"address":"https://rpc.xion-testnet-1.burnt.com","provider":"πŸ”₯BurntLabsπŸ”₯"},{"address":"https://testnet-burnt-rpc.lavenderfive.com","provider":"Lavender.Five Nodes 🐝"},{"address":"https://xion-testnet-rpc.polkachu.com","provider":"Polkachu"},{"address":"https://burnt-testnet-rpc.itrocket.net","provider":"ITRocket"}]}},{"chain_id":"cube_47-5","fees":{"fee_tokens":[{"denom":"axpla","fixed_min_gas_price":850000000000,"low_gas_price":850000000000,"average_gas_price":1147500000000,"high_gas_price":1487500000000}]},"apis":{"rpc":[{"address":"https://cube-rpc.xpla.dev","provider":"Holdings"}]}},{"chain_id":"gardia-2","fees":{"fee_tokens":[{"denom":"urock","fixed_min_gas_price":0.5,"low_gas_price":0.5,"average_gas_price":0.55,"high_gas_price":0.6}]},"apis":{"rpc":[{"address":"https://rpc.gardia.zenrocklabs.io/","provider":"zenrock"}]}},{"chain_id":"athens_7001-1","fees":{"fee_tokens":[{"denom":"azeta","low_gas_price":20000000000,"average_gas_price":25000000000,"high_gas_price":40000000000}]},"apis":{"rpc":[{"address":"https://zetachain-athens.blockpi.network/rpc/v1/public","provider":"BlockPI"},{"address":"https://zetachain-testnet-archive.allthatnode.com:26657","provider":"All That Node"}]}},{"chain_id":"landlord-2","fees":{"fee_tokens":[{"denom":"l2/1666ede2bf1985307a86de36a6b78411cbf1edeffc2ac569e6a7b2f8753db4bb","fixed_min_gas_price":0.15,"low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://maze-rpc-sequencer-53ecf1d6-4fa1-4103-827f-a9430df97cef.ane1-prod-nocsm.newmetric.xyz","provider":"Civitia"}]}},{"chain_id":"initiation-2","fees":{"fee_tokens":[{"denom":"uinit","fixed_min_gas_price":0.15,"low_gas_price":0.15,"average_gas_price":0.15,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc.testnet.initia.xyz/","provider":"Initia Labs"},{"address":"https://rpc-skip.testnet.initia.xyz/","provider":"Initia Labs","authorizedUser":"skip"}]}},{"chain_id":"glados-2.1","fees":{"fee_tokens":[{"denom":"umilk","fixed_min_gas_price":0.15,"low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4},{"denom":"ibc/37A3FB4FED4CA04ED6D9E5DA36C6D27248645F0E22F585576A1488B8A89C5A50","fixed_min_gas_price":0.15,"low_gas_price":0.2,"average_gas_price":0.3,"high_gas_price":0.4}]},"apis":{"rpc":[{"address":"https://rpc.testnet.milkyway.zone","provider":"MilkyWay Labs"},{"address":"https://rpc-skip.testnet.milkyway.zone","provider":"MilkyWay Labs","authorizedUser":"skip","indexForSkip":0}]}},{"chain_id":"minievm-2","fees":{"fee_tokens":[{"denom":"GAS","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.minievm-2.initia.xyz","provider":"Initia Labs"},{"address":"https://rpc-skip.minievm-2.initia.xyz","provider":"Initia Labs","authorizedUser":"skip","indexForSkip":0}]}},{"chain_id":"minimove-2","fees":{"fee_tokens":[{"denom":"umin","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.minimove-2.initia.xyz","provider":"Initia Labs"},{"address":"https://rpc-skip.minimove-2.initia.xyz","provider":"Initia Labs","authorizedUser":"skip","indexForSkip":0}]}},{"chain_id":"miniwasm-2","fees":{"fee_tokens":[{"denom":"umin","fixed_min_gas_price":0,"low_gas_price":0,"average_gas_price":0,"high_gas_price":0}]},"apis":{"rpc":[{"address":"https://rpc.miniwasm-2.initia.xyz","provider":"Initia Labs"},{"address":"https://rpc-skip.miniwasm-2.initia.xyz","provider":"Initia Labs","authorizedUser":"skip","indexForSkip":0}]}}] \ No newline at end of file diff --git a/packages/widget/package.json b/packages/widget/package.json index d03e9a863..6d17a69b5 100644 --- a/packages/widget/package.json +++ b/packages/widget/package.json @@ -55,7 +55,7 @@ "@typescript-eslint/parser": "^7.15.0", "@vitejs/plugin-react": "^4.3.1", "buffer": "^6.0.3", - "chain-registry": "^1.69.65", + "chain-registry": "^1.69.71", "eslint": "^9.9.0", "eslint-plugin-react-hooks": "^4.6.2", "node-polyfill-webpack-plugin": "^4.0.0", diff --git a/packages/widget/src/constants/cosmosChains/explorers.json b/packages/widget/src/constants/cosmosChains/explorers.json index e08c9aaa9..c1f80efe8 100644 --- a/packages/widget/src/constants/cosmosChains/explorers.json +++ b/packages/widget/src/constants/cosmosChains/explorers.json @@ -1 +1 @@ -[{"chainId":"aaronetwork","explorers":[{"kind":"Aaron Network","url":"https://explorer.aaronetwork.xyz","tx_page":"https://explorer.aaronetwork.xyz/hash/${txHash}","account_page":"https://explorer.aaronetwork.xyz/address/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/aaronetwork","tx_page":"https://explorer.whenmoonwhenlambo.money/aaronetwork/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/aaronetwork/account/${accountAddress}"}]},{"chainId":"acre_9052-1","explorers":[{"kind":"blockscout","url":"https://acrescout.mindheartsoul.org","tx_page":"https://acrescout.mindheartsoul.org/tx/${txHash}"},{"kind":"blockscout","url":"https://acrescan.com","tx_page":"https://acrescan.com/tx/${txHash}"},{"kind":"blockscout","url":"https://acreblockexplorer.jet-node.com","tx_page":"https://acreblockexplorer.jet-node.com/tx/${txHash}"},{"kind":"ping.pub","url":"https://explorer.nodestake.top/acre","tx_page":"https://explorer.nodestake.top/acre/tx/${txHash}"},{"kind":"ping.pub","url":"https://cosmosrun.info/acre-mainnet","tx_page":"https://cosmosrun.info/acre-mainnet/tx/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/acre","tx_page":"https://explorer.tcnetwork.io/acre/transaction/${txHash}"}]},{"chainId":"agoric-3","explorers":[{"kind":"explorers.guru","url":"https://agoric.explorers.guru","tx_page":"https://agoric.explorers.guru/transaction/${txHash}","account_page":"https://agoric.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/agoric","tx_page":"https://staking-explorer.com/transaction.php?chain=agoric&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=agoric&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/agoric/","tx_page":"https://atomscan.com/agoric/transactions/${txHash}","account_page":"https://atomscan.com/agoric/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/agoric","account_page":"https://stakeflow.io/agoric/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Agoric","tx_page":"https://explorer.stavr.tech/Agoric/tx/${txHash}","account_page":"https://explorer.stavr.tech/Agoric/account/${accountAddress}"}]},{"chainId":"aioz_168-1","explorers":[{"kind":"aioz","url":"https://explorer.aioz.network","tx_page":"https://explorer.aioz.network/tx/${txHash}"}]},{"chainId":"akashnet-2","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/akash","tx_page":"https://ezstaking.app/akash/txs/${txHash}","account_page":"https://ezstaking.app/akash/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/akash","tx_page":"https://www.mintscan.io/akash/transactions/${txHash}","account_page":"https://www.mintscan.io/akash/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/akash-network","tx_page":"https://ping.pub/akash-network/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/akash","tx_page":"https://staking-explorer.com/transaction.php?chain=akash&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=akash&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/akash","tx_page":"https://atomscan.com/akash/transactions/${txHash}","account_page":"https://atomscan.com/akash/accounts/${accountAddress}"},{"kind":"cloudmos","url":"https://cloudmos.io/blocks","tx_page":"https://cloudmos.io/transactions/${txHash}"},{"kind":"Stakeflow","url":"https://stakeflow.io/akash","account_page":"https://stakeflow.io/akash/accounts/${accountAddress}"},{"kind":"ValidatorNode","url":"https://explorer.validatornode.com/akash-network","tx_page":"https://explorer.validatornode.com/akash-network/tx/${txHash}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Akash","tx_page":"https://explorer.declab.pro/Akash/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/akash","tx_page":"https://mainnet.whispernode.com/akash/tx/${txHash}","account_page":"https://mainnet.whispernode.com/akash/account/${accountAddress}"}]},{"chainId":"althea_258432-1","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/althea","tx_page":"https://staking-explorer.com/transaction.php?chain=althea&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=althea&addr=${accountAddress}"}]},{"chainId":"andromeda-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/Andromeda-Mainnet","tx_page":"https://explorer.stavr.tech/Andromeda-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Andromeda-Mainnet/account/${accountAddress}"},{"kind":"exploreme.pro","url":"https://andromeda.exploreme.pro","tx_page":"https://andromeda.exploreme.pro/transaction/${txHash}","account_page":"https://andromeda.exploreme.pro/account/${accountAddress}"},{"kind":"Cosmotracker","url":"https://cosmotracker.com/andromeda","tx_page":"https://cosmotracker.com/andromeda/tx/${txHash}","account_page":"https://cosmotracker.com/andromeda/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/andromeda","tx_page":"https://ping.pub/andromeda/tx/${txHash}"},{"kind":"AviaOne Explorer 🟒","url":"https://mainnet.explorer.aviaone.com/andromeda","tx_page":"https://mainnet.explorer.aviaone.com/andromeda/tx/${txHash}"}]},{"chainId":"archway-1","explorers":[{"kind":"Nodes Guru","url":"https://archway.explorers.guru/","tx_page":"https://archway.explorers.guru/transaction/${txHash}","account_page":"https://archway.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/archway","tx_page":"https://staking-explorer.com/transaction.php?chain=archway&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=archway&addr=${accountAddress}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀","url":"https://exp.utsa.tech/archway","tx_page":"https://exp.utsa.tech/archway/tx/${txHash}","account_page":"https://exp.utsa.tech/archway/account/${accountAddress}"},{"kind":"Mintscan","url":"https://mintscan.io/archway/","tx_page":"https://mintscan.io/archway/transactions/${txHash}","account_page":"https://mintscan.io/archway/accounts/${accountAddress}"},{"kind":"Silk Nodes","url":"https://explorer.silknodes.io/archway","tx_page":"https://explorer.silknodes.io/archway/tx/${txHash}","account_page":"https://explorer.silknodes.io/archway/account/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/archway/","tx_page":"https://explorer.nodestake.org/archway/txs/${txHash}","account_page":"https://explorer.nodestake.org/archway/account/${accountAddress}"},{"kind":"Exploreme","url":"https://archway.exploreme.pro/","tx_page":"https://archway.exploreme.pro/transaction/${txHash}","account_page":"https://archway.exploreme.pro/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/archway","tx_page":"https://ping.pub/archway/tx/${txHash}"},{"kind":"ezstaking","url":"https://ezstaking.app/archway","tx_page":"https://ezstaking.app/archway/txs/${txHash}","account_page":"https://ezstaking.app/archway/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/archway","tx_page":"https://mainnet.whispernode.com/archway/tx/${txHash}","account_page":"https://mainnet.whispernode.com/archway/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/archway","tx_page":"https://explorer.chainroot.io/archway/transactions/${txHash}","account_page":"https://explorer.chainroot.io/archway/accounts/${accountAddress}"}]},{"chainId":"arkh","explorers":[{"kind":"Kynraze Explorer","url":"https://explorer.kynraze.com/arkhadian","tx_page":"https://explorer.kynraze.com/arkhadian/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/arkhadian","tx_page":"https://explorer.nodexcapital.com/arkhadian/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/arkhadian","tx_page":"https://explorer.whenmoonwhenlambo.money/arkhadian/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/arkhadian/account/${accountAddress}"}]},{"chainId":"mantle-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/assetmantle","tx_page":"https://ezstaking.app/assetmantle/txs/${txHash}","account_page":"https://ezstaking.app/assetmantle/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/asset-mantle","tx_page":"https://www.mintscan.io/asset-mantle/transactions/${txHash}","account_page":"https://www.mintscan.io/asset-mantle/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.postcapitalist.io/AssetMantle","tx_page":"https://explorer.postcapitalist.io/AssetMantle/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/assetmantle","tx_page":"https://staking-explorer.com/transaction.php?chain=assetmantle&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=assetmantle&addr=${accountAddress}"},{"kind":"other","url":"https://explorer.assetmantle.one","tx_page":"https://explorer.assetmantle.one/transactions/${txHash}"},{"kind":"explorers.guru","url":"https://assetmantle.explorers.guru","tx_page":"https://assetmantle.explorers.guru/transaction/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/assetmantle","tx_page":"https://atomscan.com/assetmantle/transactions/${txHash}","account_page":"https://atomscan.com/assetmantle/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/assetmantle","tx_page":"https://mainnet.whispernode.com/assetmantle/tx/${txHash}","account_page":"https://mainnet.whispernode.com/assetmantle/account/${accountAddress}"}]},{"chainId":"atomone-1","explorers":[{"kind":"ping.pub","url":"https://explorer.allinbits.com/atomone","tx_page":"https://explorer.allinbits.com/atomone/tx/${txHash}","account_page":"https://explorer.allinbits.com/atomone/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/atomone/","tx_page":"https://explorer.nodeshub.online/atomone/tx/${txHash}","account_page":"https://explorer.nodeshub.online/atomone/accounts/${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://explorer.ist/atomone","tx_page":"https://explorer.ist/atomone/tx/${txHash}","account_page":"https://explorer.ist/atomone/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/atomone","tx_page":"https://explorer.whenmoonwhenlambo.money/atomone/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/atomone/account/${accountAddress}"}]},{"chainId":"aura_6322-2","explorers":[{"kind":"aurascan","url":"https://aurascan.io","tx_page":"https://aurascan.io/tx/${txHash}","account_page":"https://aurascan.io/address/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/aura","tx_page":"https://staking-explorer.com/transaction.php?chain=aura&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=aura&addr=${accountAddress}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀 Explorer","url":"https://exp.utsa.tech/aura","tx_page":"https://exp.utsa.tech/aura/tx/${txHash}","account_page":"https://exp.utsa.tech/aura/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/Aura-Mainnet","tx_page":"https://explorer.stavr.tech/aura-mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/aura-mainnet/account/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/aura","tx_page":"https://explorer.nodestake.org/aura/tx/${txHash}","account_page":"https://explorer.nodestake.org/aura/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/aura","tx_page":"https://explorer.tcnetwork.io/aura/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/aura/account/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/aura","tx_page":"https://explorer.stake-take.com/aura/tx/${txHash}","account_page":"https://explorer.stake-take.com/aura/account/${accountAddress}"},{"kind":"Safe Block","url":"https://explorer.safeblock.space/aura","tx_page":"https://explorer.safeblock.space/aura/tx/${txHash}","account_page":"https://explorer.safeblock.space/aura/account/${accountAddress}"},{"kind":"STAKR.space explorer","url":"https://explorer.stakr.space/aura/","tx_page":"https://explorer.stakr.space/aura/tx/${txHash}","account_page":"https://explorer.stakr.space/aura/account/${accountAddress}"}]},{"chainId":"axelar-dojo-1","explorers":[{"kind":"axelarscan","url":"https://axelarscan.io","tx_page":"https://axelarscan.io/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/axelar","tx_page":"https://www.mintscan.io/axelar/transactions/${txHash}","account_page":"https://www.mintscan.io/axelar/accounts/${accountAddress}"},{"kind":"explorers.guru","url":"https://axelar.explorers.guru","tx_page":"https://axelar.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/axelar","tx_page":"https://staking-explorer.com/transaction.php?chain=axelar&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=axelar&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/axelar","tx_page":"https://atomscan.com/axelar/transactions/${txHash}","account_page":"https://atomscan.com/axelar/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/axelar","account_page":"https://stakeflow.io/axelar/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/axelar","tx_page":"https://ezstaking.app/axelar/txs/${txHash}","account_page":"https://ezstaking.app/axelar/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/axelar","tx_page":"https://mainnet.whispernode.com/axelar/tx/${txHash}","account_page":"https://mainnet.whispernode.com/axelar/account/${accountAddress}"}]},{"chainId":"laozi-mainnet","explorers":[{"kind":"cosmoscan","url":"https://cosmoscan.io","tx_page":"https://cosmoscan.io/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/band","tx_page":"https://www.mintscan.io/band/transactions/${txHash}","account_page":"https://www.mintscan.io/band/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/band-protocol","tx_page":"https://ping.pub/band-protocol/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/bandchain","tx_page":"https://staking-explorer.com/transaction.php?chain=bandchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=bandchain&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Band-Mainnet","tx_page":"https://explorer.stavr.tech/Band-Mainnet/tx/${txHash}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/band","tx_page":"https://exp.nodeist.net/band/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/band-protocol","tx_page":"https://atomscan.com/band-protocol/transactions/${txHash}","account_page":"https://atomscan.com/band-protocol/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/band-protocol","account_page":"https://stakeflow.io/band-protocol/accounts/${accountAddress}"},{"kind":"Roomit Explorer","url":"https://explorer.tendermint.roomit.xyz/band-mainnet","account_page":"https://explorer.tendermint.roomit.xyz/band-mainnet/accounts/${accountAddress}"},{"kind":"kjnodes Explorer","url":"https://explorer.kjnodes.com/band","tx_page":"https://explorer.kjnodes.com/band/tx/${txHash}"}]},{"chainId":"beezee-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/beezee","tx_page":"https://ping.pub/beezee/tx/${txHash}","account_page":"https://ping.pub/beezee/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/beezee","tx_page":"https://staking-explorer.com/transaction.php?chain=beezee&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=beezee&addr=${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.getbze.com/beezee","tx_page":"https://explorer.getbze.com/beezee/tx/${txHash}","account_page":"https://explorer.getbze.com/beezee/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/beezee","tx_page":"https://atomscan.com/beezee/transactions/${txHash}","account_page":"https://atomscan.com/beezee/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/beezee","tx_page":"https://explorer.whenmoonwhenlambo.money/beezee/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/beezee/account/${accountAddress}"}]},{"chainId":"bitbadges-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/bitbadges","tx_page":"https://www.mintscan.io/bitbadges/transactions/${txHash}","account_page":"https://www.mintscan.io/bitbadges/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.bitbadges.io/BitBadges%20Mainnet","tx_page":"https://explorer.bitbadges.io/BitBadges%20Mainnet/txs/${txHash}","account_page":"https://explorer.bitbadges.io/BitBadBitBadges%20Mainnetges/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/bitbadges","tx_page":"https://explorer.whenmoonwhenlambo.money/bitbadges/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/bitbadges/account/${accountAddress}"}]},{"chainId":"bitcanna-1","explorers":[{"kind":"EZStaking Tools","url":"https://app.ezstaking.io/bitcanna","tx_page":"https://ezstaking.tools/bitcanna/txs/${txHash}","account_page":"https://ezstaking.tools/bitcanna/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/bitcanna","tx_page":"https://staking-explorer.com/transaction.php?chain=bitcanna&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=bitcanna&addr=${accountAddress}"},{"kind":"forbole","url":"https://explorer.bitcanna.io","tx_page":"https://explorer.bitcanna.io/transactions/${txHash}","account_page":"https://explorer.bitcanna.io/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/bitcanna","tx_page":"https://ping.pub/bitcanna/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/bitcanna/","tx_page":"https://www.mintscan.io/bitcanna/txs/${txHash}","account_page":"https://www.mintscan.io/bitcanna/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/Bitcanna","tx_page":"https://explorer.stavr.tech/Bitcanna/txs/${txHash}","account_page":"https://explorer.stavr.tech/Bitcanna/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/bitcanna","tx_page":"https://atomscan.com/bitcanna/transactions/${txHash}"},{"kind":"ValidatorNode Explorer","url":"https://explorer.validatornode.com/bitcanna","tx_page":"https://explorer.validatornode.com/bitcanna/tx/${txHash}"},{"kind":"Safe Block Explorer Pruned","url":"https://explorer.safeblock.space/bitcanna","tx_page":"https://explorer.safeblock.space/bitcanna/tx/${txHash}"},{"kind":"AlxVoy ⚑ ANODE.TEAM","url":"https://main.anode.team/bitcanna","tx_page":"https://main.anode.team/bitcanna/tx/${txHash}"},{"kind":"kjnodes","url":"https://explorer.kjnodes.com/bitcanna","tx_page":"https://explorer.kjnodes.com/bitcanna/tx/${txHash}"},{"kind":"L0vd.com ❀️","url":"https://explorers.l0vd.com/bitcanna-mainnet","tx_page":"https://explorers.l0vd.com/bitcanna-mainnet/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodex.one/bitcanna","tx_page":"https://explorer.nodex.one/bitcanna/tx/${txHash}"},{"kind":"Moonbys Dashboard","url":"https://explorer.moonbys.com","tx_page":"https://explorer.moonbys.com/${txHash}"},{"kind":"BlockHunters 🎯","url":"https://scan.bh.rocks/bitcanna","tx_page":"https://scan.bh.rocks/bitcanna/tx/${txHash}"},{"kind":"Indonode","url":"https://explorer.indonode.net/bitcanna","tx_page":"https://explorer.indonode.net/bitcanna/tx/${txHash}"},{"kind":"CrypTech Explorer","url":"https://explorers.cryptech.com.ua/bitcanna","tx_page":"https://explorers.cryptech.com.ua/bitcanna/txs/${txHash}"},{"kind":"Kalia Network","url":"https://explorer.kalia.network/bitcanna","tx_page":"https://explorer.kalia.network/bitcanna/tx/${txHash}","account_page":"https://explorer.kalia.network/bitcanna/account/${accountAddress}"},{"kind":"AviaOne Explorer 🟒","url":"https://mainnet.explorer.aviaone.com/bitcanna","tx_page":"https://mainnet.explorer.aviaone.com/bitcanna/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/bitcanna/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/bitcanna/","tx_page":"https://explorer.nodeshub.online/bitcanna/tx/${txHash}","account_page":"https://explorer.nodeshub.online/bitcanna/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/bitcanna","tx_page":"https://explorer.whenmoonwhenlambo.money/bitcanna/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/bitcanna/account/${accountAddress}"},{"kind":"AviaOne Explorer 🟒","url":"https://mainnet.explorer.aviaone.com/bitcanna","tx_page":"https://mainnet.explorer.aviaone.com/bitcanna/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/bitcanna/account/${accountAddress}"}]},{"chainId":"bitsong-2b","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/bitsong","tx_page":"https://ezstaking.app/bitsong/txs/${txHash}","account_page":"https://ezstaking.app/bitsong/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/bitsong","tx_page":"https://ping.pub/bitsong/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/bitsong","tx_page":"https://www.mintscan.io/bitsong/transactions/${txHash}","account_page":"https://www.mintscan.io/bitsong/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/bitsong","tx_page":"https://staking-explorer.com/transaction.php?chain=bitsong&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=bitsong&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/bitsong","tx_page":"https://atomscan.com/bitsong/transactions/${txHash}","account_page":"https://atomscan.com/bitsong/accounts/${accountAddress}"},{"kind":"Safe Block","url":"https://explorer.safeblok.space/bitsong","tx_page":"https://explorer.safeblock.space/bitsong/tx/${txHash}","account_page":"https://explorer.safeblock.space/bitsong/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Bitsong","tx_page":"https://explorer.stavr.tech/Bitsong/tx/${txHash}","account_page":"https://explorer.stavr.tech/Bitsong/account/${accountAddress}"}]},{"chainId":"blockx_19191-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/blockx","tx_page":"https://ping.pub/blockx/tx/${txHash}"},{"kind":"Nodeist Explorer","url":"https://explorer.ist/blockx/","tx_page":"https://explorer.ist/blockx/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/blockx","tx_page":"https://explorer.whenmoonwhenlambo.money/blockx/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/blockx/account/${accountAddress}"}]},{"chainId":"bluechip-2"},{"chainId":"bluzelle-9","explorers":[{"kind":"ping.pub","url":"https://ping.explorer.net.bluzelle.com/bluzelle","tx_page":"https://ping.explorer.net.bluzelle.com/bluzelle/tx/${txHash}","account_page":"https://ping.explorer.net.bluzelle.com/bluzelle/account/${accountAddress}"},{"kind":"big dipper","url":"https://bd.explorer.net.bluzelle.com","tx_page":"https://bd.explorer.net.bluzelle.com/transactions/${txHash}","account_page":"https://bd.explorer.net.bluzelle.com/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/bluzelle","tx_page":"https://explorer.tcnetwork.io/bluzelle/transaction/${txHash}"},{"kind":"Nodine.ID","url":"https://explorer.co.id/bluzelle","tx_page":"https://explorer.co.id/bluzelle/transaction/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/bluzelle","tx_page":"https://explorer.whenmoonwhenlambo.money/bluzelle/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/bluzelle/account/${accountAddress}"}]},{"chainId":"bostrom","explorers":[{"kind":"cyb","url":"https://cyb.ai/","tx_page":"https://cyb.ai/network/bostrom/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/bostrom","tx_page":"https://ping.pub/bostrom/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/bostrom","tx_page":"https://staking-explorer.com/transaction.php?chain=bostrom&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=bostrom&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/bostrom","tx_page":"https://atomscan.com/bostrom/transactions/${txHash}","account_page":"https://atomscan.com/bostrom/accounts/${accountAddress}"}]},{"chainId":"bouachain","explorers":[{"kind":"bouachain","url":"https://bouascan.com","tx_page":"https://bouascan.com/bouachain/tx/${txHash}","account_page":"https://bouascan.com/bouachain/${accountAddress}"}]},{"chainId":"canto_7700-1","explorers":[{"kind":"ping.pub","url":"https://cosmos-explorers.neobase.one/canto","tx_page":"https://cosmos-explorers.neobase.one/canto/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/canto","tx_page":"https://staking-explorer.com/transaction.php?chain=canto&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=canto&addr=${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/canto","tx_page":"https://explorer.tcnetwork.io/canto/transaction/${txHash}"},{"kind":"ezstaking","url":"https://ezstaking.app/canto","tx_page":"https://ezstaking.app/canto/txs/${txHash}","account_page":"https://ezstaking.app/canto/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Canto-Mainnet","tx_page":"https://explorer.stavr.tech/Canto-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Canto-Mainnet/account/${accountAddress}"}]},{"chainId":"carbon-1","explorers":[{"kind":"carbonscan","url":"https://scan.carbon.network","tx_page":"https://scan.carbon.network/transaction/${txHash}?net=main"},{"kind":"ping.pub","url":"https://ping.pub/carbon","tx_page":"https://ping.pub/carbon/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/carbon","tx_page":"https://staking-explorer.com/transaction.php?chain=carbon&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=carbon&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/carbon","tx_page":"https://atomscan.com/carbon/transactions/${txHash}","account_page":"https://atomscan.com/carbon/accounts/${accountAddress}"}]},{"chainId":"celestia","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/celestia","tx_page":"https://mintscan.io/celestia/txs/${txHash}","account_page":"https://mintscan.io/celestia/address/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/celestia","tx_page":"https://staking-explorer.com/transaction.php?chain=celestia&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=celestia&addr=${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/celestia/","tx_page":"https://explorer.nodestake.org/celestia/txs/${txHash}","account_page":"https://explorer.nodestake.org/celestia/account/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/celestia","tx_page":"https://stakeflow.io/celestia/transactions/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/celestia","tx_page":"https://explorer.tcnetwork.io/celestia/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/celestia/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Celestia-Mainnet","tx_page":"https://explorer.stavr.tech/Celestia-Mainnet/transaction/${txHash}","account_page":"https://explorer.stavr.tech/Celestia-Mainnet/account/${accountAddress}"},{"kind":"AM Solutions","url":"https://explorer.theamsolutions.info/celestia-main","tx_page":"https://explorer.theamsolutions.info/celestia-main/transaction/${txHash}","account_page":"https://explorer.theamsolutions.info/celestia-main/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/celestia","tx_page":"https://ezstaking.app/celestia/txs/${txHash}","account_page":"https://ezstaking.app/celestia/account/${accountAddress}"},{"kind":"πŸš€ itrocket πŸš€","url":"https://mainnet.itrocket.net/celestia","tx_page":"https://mainnet.itrocket.net/celestia/transaction/${txHash}","account_page":"https://mainnet.itrocket.net/celestia/account/${accountAddress}"},{"kind":"DTEAM | Explorer","url":"https://explorer.mainnet.dteam.tech/celestia","tx_page":"https://explorer.mainnet.dteam.tech/celestia/transaction/${txHash}","account_page":"https://explorer.mainnet.dteam.tech/celestia/account/${accountAddress}"},{"kind":"Relaxed Explorer πŸ¦₯","url":"https://explorer.stakeandrelax.net/celestia","tx_page":"https://explorer.stakeandrelax.net/celestia/transaction/${txHash}","account_page":"https://explorer.stakeandrelax.net/celestia/account/${accountAddress}"}]},{"chainId":"perun-1","explorers":[{"kind":"explorer","url":"https://explorer.apeironnodes.com/chain4energy","tx_page":"https://explorer.apeironnodes.com/chain4energy/transactions/${txHash}"},{"kind":"DTEAM | Explorer","url":"https://explorer.mainnet.dteam.tech/chain4energy","tx_page":"https://explorer.mainnet.dteam.tech/chain4energytransactions/${txHash}"},{"kind":"explorer","url":"https://explorer.ppnv.space/c4e","tx_page":"https://explorer.ppnv.space/c4e/transactions/${txHash}"},{"kind":"explorer","url":"https://explorer.c4e.io/","tx_page":"https://explorer.c4e.io/transactions/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/chain4energy","tx_page":"https://explorer.nodestake.top/chain4energy/transactions/${txHash}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀 Explorer","url":"https://exp.utsa.tech/c4e","tx_page":"https://exp.utsa.tech/c4e/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/c4e","tx_page":"https://explorer.stavr.tech/c4e/tx/${txHash}"},{"kind":"BccNodes Explorer","url":"https://explorer.bccnodes.com/chain4energy","tx_page":"https://explorer.bccnodes.com/chain4energy/transactions/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/c4e","tx_page":"https://explorer.nodexcapital.com/c4e/transactions/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/chain4energy","tx_page":"https://atomscan.com/chain4energy/transactions/${txHash}","account_page":"https://atomscan.com/chain4energy/accounts/${accountAddress}"},{"kind":"AM Solutions Explorer","url":"https://explorer.theamsolutions.info/c4e-main/staking","tx_page":"https://explorer.theamsolutions.info/c4e-main/transactions/${txHash}"},{"kind":"AlxVoy ⚑ ANODE.TEAM Explorer","url":"https://main.anode.team/c4e","tx_page":"https://main.anode.team/c4e/tx/${txHash}"},{"kind":"ScanRun","url":"https://scanrun.io/c4e","tx_page":"https://scanrun.io/c4e/transactions/${txHash}"},{"kind":"Cryptech","url":"https://explorers.cryptech.com.ua/chain4energy","tx_page":"https://explorers.cryptech.com.ua/chain4energy/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/chain4energy","tx_page":"https://explorer.whenmoonwhenlambo.money/chain4energy/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/chain4energy/account/${accountAddress}"}]},{"chainId":"cheqd-mainnet-1","explorers":[{"kind":"bigdipper","url":"https://explorer.cheqd.io","tx_page":"https://explorer.cheqd.io/transactions/${txHash}","account_page":"https://explorer.cheqd.io/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/cheqd","tx_page":"https://ping.pub/cheqd/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/cheqd","tx_page":"https://staking-explorer.com/transaction.php?chain=cheqd&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=cheqd&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Cheqd-Mainnet","tx_page":"https://explorer.stavr.tech/Cheqd-Mainnet/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/cheqd","tx_page":"https://atomscan.com/cheqd/transactions/${txHash}","account_page":"https://atomscan.com/cheqd/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/cheqd","tx_page":"https://ezstaking.app/cheqd/txs/${txHash}","account_page":"https://ezstaking.app/cheqd/account/${accountAddress}"},{"kind":"ping.pub","url":"https://look.chillvalidation.com/cheqd","tx_page":"https://look.chillvalidation.com/cheqd/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.wildsage.io/cheqd","tx_page":"https://ping.wildsage.io/cheqd/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/cheqd","tx_page":"https://mainnet.whispernode.com/cheqd/tx/${txHash}","account_page":"https://mainnet.whispernode.com/cheqd/account/${accountAddress}"}]},{"chainId":"chihuahua-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/chihuahua","tx_page":"https://ping.pub/chihuahua/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Chihua-Mainnet","tx_page":"https://explorer.stavr.tech/Chihua-Mainnet/tx/${txHash}"},{"kind":"mintscan","url":"https://mintscan.io/chihuahua","tx_page":"https://mintscan.io/chihuahua/transactions/${txHash}","account_page":"https://www.mintscan.io/chihuahua/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/chihuahua","tx_page":"https://staking-explorer.com/transaction.php?chain=chihuahua&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=chihuahua&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/chihuahua","tx_page":"https://atomscan.com/chihuahua/transactions/${txHash}","account_page":"https://atomscan.com/chihuahua/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/chihuahua","tx_page":"https://ezstaking.app/chihuahua/txs/${txHash}","account_page":"https://ezstaking.app/chihuahua/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/chihuahua/","tx_page":"https://explorer.nodeshub.online/chihuahua/tx/${txHash}","account_page":"https://explorer.nodeshub.online/chihuahua/accounts/${accountAddress}"}]},{"chainId":"chimba","explorers":[{"kind":"bigdipper","url":"https://explorer.chimba.ooo/","tx_page":"https://explorer.chimba.ooo/transactions/${txHash}"}]},{"chainId":"cifer-2","explorers":[{"kind":"bigdipper","url":"https://explorer.cifer.ai/","tx_page":"https://explorer.cifer.ai/transactions/${txHash}"}]},{"chainId":"cnho_stables-1","explorers":[{"url":"https://explorer.cnho.io","tx_page":"https://explorer.cnho.io/transaction/${txHash}","account_page":"https://explorer.cnho.io/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/cnhostables","tx_page":"https://explorer.whenmoonwhenlambo.money/cnhostables/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/cnhostables/account/${accountAddress}"}]},{"chainId":"comdex-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/comdex","tx_page":"https://ezstaking.app/comdex/txs/${txHash}","account_page":"https://ezstaking.app/comdex/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/comdex","tx_page":"https://www.mintscan.io/comdex/transactions/${txHash}","account_page":"https://www.mintscan.io/comdex/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/comdex","tx_page":"https://staking-explorer.com/transaction.php?chain=comdex&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=comdex&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Comdex-Mainnet","tx_page":"https://explorer.stavr.tech/Comdex-Mainnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/Comdex-Mainnet/accounts/${accountAddress}"},{"kind":"aneka","url":"https://comdex.aneka.io/","tx_page":"https://comdex.aneka.io/txs/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/comdex","tx_page":"https://ping.pub/comdex/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/comdex","tx_page":"https://atomscan.com/comdex/transactions/${txHash}","account_page":"https://atomscan.com/comdex/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/comdex","account_page":"https://stakeflow.io/comdex/accounts/${accountAddress}"},{"kind":"ValidatorNode","url":"https://explorer.validatornode.com/comdex","tx_page":"https://explorer.validatornode.com/comdex/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/comdex","tx_page":"https://mainnet.whispernode.com/comdex/tx/${txHash}","account_page":"https://mainnet.whispernode.com/comdex/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/comdex","tx_page":"https://explorer.chainroot.io/comdex/transactions/${txHash}","account_page":"https://explorer.chainroot.io/comdex/accounts/${accountAddress}"}]},{"chainId":"commercio-3","explorers":[{"kind":"almerico","url":"https://mainnet.commercio.network","tx_page":"https://mainnet.commercio.network/transactions/detail/${txHash}"}]},{"chainId":"centauri-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/composable","tx_page":"https://ping.pub/composable/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/composable","tx_page":"https://staking-explorer.com/transaction.php?chain=composable&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=composable&addr=${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/composable","tx_page":"https://explorer.nodestake.top/composable/tx/${txHash}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/composable","tx_page":"https://exp.stakevillage.net/composable/tx/${txHash}","account_page":"https://exp.stakevillage.net/composable/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Composable-Mainnet","tx_page":"https://explorer.stavr.tech/Composable-Mainnet/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/picasso","tx_page":"https://mainnet.whispernode.com/picasso/tx/${txHash}","account_page":"https://mainnet.whispernode.com/picasso/account/${accountAddress}"}]},{"chainId":"cvn_2032-1","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/conscious","tx_page":"https://staking-explorer.com/transaction.php?chain=conscious&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=conscious&addr=${accountAddress}"},{"kind":"blockscout","url":"https://explore.consciousdao.com/","tx_page":"https://explore.consciousdao.com/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/conscious","tx_page":"https://explorer.whenmoonwhenlambo.money/conscious/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/conscious/account/${accountAddress}"}]},{"chainId":"coreum-mainnet-1","explorers":[{"kind":"Coreum","url":"https://explorer.coreum.com/coreum","tx_page":"https://explorer.coreum.com/coreum/transactions/${txHash}","account_page":"https://explorer.coreum.com/coreum/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/coreum","tx_page":"https://www.mintscan.io/coreum/transactions/${txHash}","account_page":"https://www.mintscan.io/coreum/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/coreum","tx_page":"https://staking-explorer.com/transaction.php?chain=coreum&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=coreum&addr=${accountAddress}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/coreum","tx_page":"https://explorer.nodexcapital.com/coreum/txs/${txHash}","account_page":"https://explorer.nodexcapital.com/coreum/account/${accountAddress}"},{"kind":"Silk Nodes","url":"https://explorer.silknodes.io/coreum","tx_page":"https://explorer.silknodes.io/coreum/tx/${txHash}","account_page":"https://explorer.silknodes.io/coreum/account/${accountAddress}"},{"kind":"#SoloNation","url":"https://explorer.solonation.io/core-main","tx_page":"https://explorer.solonation.io/core-main/tx/${txHash}","account_page":"https://explorer.solonation.io/core-main/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/coreum","tx_page":"https://explorer.tcnetwork.io/coreum/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/coreum/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/coreum","tx_page":"https://ezstaking.app/coreum/txs/${txHash}","account_page":"https://ezstaking.app/coreum/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/coreum","tx_page":"https://explorer.chainroot.io/coreum/transactions/${txHash}","account_page":"https://explorer.chainroot.io/coreum/accounts/${accountAddress}"}]},{"chainId":"cosmoshub-4","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/cosmos","tx_page":"https://www.mintscan.io/cosmos/transactions/${txHash}","account_page":"https://www.mintscan.io/cosmos/accounts/${accountAddress}","validator_page":"https://www.mintscan.io/cosmos/validators/${validatorAddress}","proposal_page":"https://www.mintscan.io/cosmos/proposals/${proposalId}","block_page":"https://www.mintscan.io/cosmos/blocks/${blockHeight}"},{"kind":"ezstaking","url":"https://ezstaking.app/cosmoshub","tx_page":"https://ezstaking.app/cosmoshub/txs/${txHash}","account_page":"https://ezstaking.app/cosmoshub/account/${accountAddress}","validator_page":"https://ezstaking.app/cosmoshub/validators/${validatorAddress}","proposal_page":"https://ezstaking.app/cosmoshub/proposals/${proposalId}","block_page":"https://ezstaking.app/cosmoshub/blocks/${blockHeight}"},{"kind":"ping.pub","url":"https://ping.pub/cosmos","tx_page":"https://ping.pub/cosmos/tx/${txHash}","account_page":"https://ping.pub/cosmos/account/${accountAddress}","validator_page":"https://ping.pub/cosmos/staking/${validatorAddress}","proposal_page":"https://ping.pub/cosmos/gov/${proposalId}","block_page":"https://ping.pub/cosmos/block/${blockHeight}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/cosmoshub","tx_page":"https://staking-explorer.com/transaction.php?chain=cosmoshub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=cosmoshub&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com","tx_page":"https://atomscan.com/transactions/${txHash}","account_page":"https://atomscan.com/accounts/${accountAddress}","validator_page":"https://atomscan.com/validators/${validatorAddress}","proposal_page":"https://atomscan.com/votes/${proposalId}","block_page":"https://atomscan.com/blocks/${blockHeight}"},{"kind":"unichain","url":"https://unicha.in/cosmos","tx_page":"https://unicha.in/cosmos/transaction/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/cosmoshub","tx_page":"https://explorer.tcnetwork.io/cosmoshub/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/cosmoshub/account/${accountAddress}","validator_page":"https://explorer.tcnetwork.io/cosmoshub/validator/${validatorAddress}","proposal_page":"https://explorer.tcnetwork.io/cosmoshub/proposal/${proposalId}","block_page":"https://explorer.tcnetwork.io/cosmoshub/block/${blockHeight}"},{"kind":"Stakeflow","url":"https://stakeflow.io/cosmos","account_page":"https://stakeflow.io/cosmos/accounts/${accountAddress}","validator_page":"https://stakeflow.io/cosmos/validators/${validatorAddress}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/cosmos"},{"kind":"Inbloc","url":"https://inbloc.org","tx_page":"https://inbloc.org/transactions/${txHash}","account_page":"https://inbloc.org/account/${accountAddress}","validator_page":"https://inbloc.org/cosmos/validator/${validatorAddress}","proposal_page":"https://inbloc.org/cosmos/proposal/${proposalId}","block_page":"https://inbloc.org/cosmos/blocks/${blockHeight}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/cosmos","tx_page":"https://mainnet.whispernode.com/cosmos/tx/${txHash}","account_page":"https://mainnet.whispernode.com/cosmos/account/${accountAddress}","validator_page":"https://mainnet.whispernode.com/cosmos/staking/${validatorAddress}","proposal_page":"https://mainnet.whispernode.com/cosmos/gov/${proposalId}","block_page":"https://mainnet.whispernode.com/cosmos/block/${blockHeight}"},{"kind":"ITRocket","url":"https://mainnet.itrocket.net/cosmoshub","tx_page":"https://mainnet.itrocket.net/cosmoshub/tx/${txHash}","account_page":"https://mainnet.itrocket.net/cosmoshub/account/${accountAddress}","validator_page":"https://mainnet.itrocket.net/cosmoshub/staking/${validatorAddress}","proposal_page":"https://mainnet.itrocket.net/cosmoshub/gov/${proposalId}","block_page":"https://mainnet.itrocket.net/cosmoshub/block/${blockHeight}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/cosmos","tx_page":"https://explorer.nodestake.org/cosmos/tx/${txHash}","account_page":"https://explorer.nodestake.org/cosmos/account/${accountAddress}","validator_page":"https://explorer.nodestake.org/cosmos/staking/${validatorAddress}","proposal_page":"https://explorer.nodestake.org/cosmos/gov/${proposalId}","block_page":"https://explorer.nodestake.org/cosmos/block/${blockHeight}"}]},{"chainId":"coss-1"},{"chainId":"crescent-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/crescent","tx_page":"https://ezstaking.app/crescent/txs/${txHash}","account_page":"https://ezstaking.app/crescent/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/crescent","tx_page":"https://ping.pub/crescent/tx/${txHash}"},{"kind":"explorers.guru","url":"https://crescent.explorers.guru","tx_page":"https://crescent.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/crescent","tx_page":"https://staking-explorer.com/transaction.php?chain=crescent&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=crescent&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/crescent","tx_page":"https://atomscan.com/crescent/transactions/${txHash}","account_page":"https://atomscan.com/crescent/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/crescent","account_page":"https://stakeflow.io/crescent/accounts/${accountAddress}"}]},{"chainId":"cronosmainnet_25-1","explorers":[{"kind":"cronoscan","url":"https://cronoscan.com","tx_page":"https://cronoscan.com/tx/${txHash}"},{"kind":"crypto.org","url":"https://cronos.org/explorer","tx_page":"https://cronos.org/explorer/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/cronos","tx_page":"https://ping.pub/cronos/tx/${txHash}"}]},{"chainId":"crypto-org-chain-mainnet-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/crypto-org","tx_page":"https://www.mintscan.io/crypto-org/transactions/${txHash}","account_page":"https://www.mintscan.io/crypto-org/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/cryptoorgchain","tx_page":"https://staking-explorer.com/transaction.php?chain=cryptoorgchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=cryptoorgchain&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/crypto-org","tx_page":"https://ezstaking.app/crypto-org/txs/${txHash}","account_page":"https://ezstaking.app/crypto-org/account/${accountAddress}"},{"kind":"cronos.org","url":"https://cronos-pos.org/explorer","tx_page":"https://cronos-pos.org/explorer/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/crypto-com-chain","tx_page":"https://ping.pub/crypto-com-chain/tx/${txHash}"}]},{"chainId":"mainnet-3","explorers":[{"kind":"decentr.net","url":"https://explorer.decentr.net","tx_page":"https://explorer.decentr.net/transactions/${txHash}?networkId=mainnet"},{"kind":"ping.pub","url":"https://ping.pub/decentr/","tx_page":"https://ping.pub/decentr/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/decentr","tx_page":"https://staking-explorer.com/transaction.php?chain=decentr&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=decentr&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Decentr-Mainnet","tx_page":"https://explorer.stavr.tech/Decentr-Mainnet/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/decentr","tx_page":"https://atomscan.com/decentr/transactions/${txHash}","account_page":"https://atomscan.com/decentr/accounts/${accountAddress}"},{"kind":"Nodine.ID","url":"https://explorer.co.id/decentr","tx_page":"https://explorer.co.id/decentr/tx/${txHash}"},{"kind":"THE EXPLORER","url":"https://explorer.sxlzptprjkt.xyz/decentr","tx_page":"https://explorer.sxlzptprjkt.xyz/decentr/tx/${txHash}"},{"kind":"hexskrt EXPLORER","url":"https://explorer.hexskrt.net/decentr","tx_page":"https://explorer.hexskrt.net/decentr/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/decentr","tx_page":"https://explorer.nodexcapital.com/decentr/tx/${txHash}"},{"kind":"Explorer ComunityNode","url":"https://explorer.comunitynode.my.id/decentr","tx_page":"https://explorer.comunitynode.my.id/decentr/tx/${txHash}"}]},{"chainId":"desmos-mainnet","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/desmos","tx_page":"https://ezstaking.app/desmos/txs/${txHash}","account_page":"https://ezstaking.app/desmos/account/${accountAddress}"},{"kind":"bigdipper","url":"https://bigdipper.live/desmos","tx_page":"https://bigdipper.live/desmos/transactions/${txHash}","account_page":"https://bigdipper.live/desmos/accounts/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/desmos","tx_page":"https://www.mintscan.io/desmos/transactions/${txHash}","account_page":"https://www.mintscan.io/desmos/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/desmos","tx_page":"https://ping.pub/desmos/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/desmos","tx_page":"https://atomscan.com/desmos/transactions/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/desmos","tx_page":"https://explorer.tcnetwork.io/desmos/transaction/${txHash}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Desmos","tx_page":"https://explorer.declab.pro/Desmos/tx/${txHash}"}]},{"chainId":"dhealth","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/dhealth","tx_page":"https://staking-explorer.com/transaction.php?chain=dhealth&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=dhealth&addr=${accountAddress}"},{"kind":"nodestake","url":"https://explorer.nodestake.org/dhealth","tx_page":"https://explorer.nodestake.org/dhealth/tx/${txHash}","account_page":"https://explorer.nodestake.org/dhealth/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/dhealth/","tx_page":"https://explorer.nodeshub.online/dhealth/tx/${txHash}","account_page":"https://explorer.nodeshub.online/dhealth/accounts/${accountAddress}"}]},{"chainId":"vota-ash","explorers":[{"kind":"Dora Vota Ping Pub","url":"https://vota-explorer.dorafactory.org","tx_page":"https://vota-explorer.dorafactory.org/doravota/tx/${txHash}"},{"kind":"lesnik | UTSA Ping Pub","url":"https://exp.utsa.tech/dora/staking","tx_page":"https://exp.utsa.tech/dora/tx/${txHash}"},{"kind":"ITRocket Ping Pub","url":"https://mainnet.itrocket.net/doravota/staking","tx_page":"https://mainnet.itrocket.net/doravota/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/doravota","tx_page":"https://staking-explorer.com/transaction.php?chain=doravota&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=doravota&addr=${accountAddress}"},{"kind":"Explorers","url":"https://dora.explorers.guru","tx_page":"https://dora.explorers.guru/transaction/${txHash}"}]},{"chainId":"dungeon-1","explorers":[{"kind":"Ping.Pub","url":"https://ping.pub/Dungeonchain","tx_page":"https://ping.pub/Dungeonchain/tx/${txHash}","account_page":"https://ping.pub/Dungeonchain/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/dungeon","tx_page":"https://explorer.whenmoonwhenlambo.money/dungeon/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/dungeon/account/${accountAddress}"}]},{"chainId":"dydx-mainnet-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/dydx","tx_page":"https://www.mintscan.io/dydx/txs/${txHash}","account_page":"https://www.mintscan.io/dydx/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/dydx","tx_page":"https://staking-explorer.com/transaction.php?chain=dydx&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=dydx&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/dydx","tx_page":"https://ezstaking.app/dydx/txs/${txHash}","account_page":"https://ezstaking.app/dydx/account/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.top/dydx/","tx_page":"https://explorer.nodestake.top/dydx/txs/${txHash}","account_page":"https://explorer.nodestake.top/dydx/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/dydx","tx_page":"https://explorer.tcnetwork.io/dydx/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/dydx/account/${accountAddress}"}]},{"chainId":"dymension_1100-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/dymension","tx_page":"https://www.mintscan.io/dymension/tx/${txHash}","account_page":"https://www.mintscan.io/dymension/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/dymension","tx_page":"https://staking-explorer.com/transaction.php?chain=dymension&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=dymension&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/dymension","tx_page":"https://ezstaking.app/dymension/txs/${txHash}","account_page":"https://ezstaking.app/dymension/account/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/dymension","tx_page":"https://explorer.nodestake.org/dymension/tx/${txHash}","account_page":"https://explorer.nodestake.org/dymension/account/${accountAddress}"},{"kind":"Kynraze","url":"https://explorer.kynraze.com/dymension","tx_page":"https://explorer.kynraze.com/dymension/tx/${txHash}","account_page":"https://explorer.kynraze.com/dymension/account/${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://explorer.ist/dymension","tx_page":"https://explorer.ist/dymension/tx/${txHash}","account_page":"https://explorer.ist/dymension/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Dymension-Mainnet","tx_page":"https://explorer.stavr.tech/Dymension-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Dymension-Mainnet/account/${accountAddress}"},{"kind":"HoodScan","url":"https://hoodscan.io/dymension","tx_page":"https://hoodscan.io/dymension/transactions/${txHash}","account_page":"https://hoodscan.io/dymension/accounts/${accountAddress}"},{"kind":"posthuman","url":"https://explorer.posthuman.digital/dymension","tx_page":"https://explorer.posthuman.digital/dymension/tx/${txHash}","account_page":"https://explorer.posthuman.digital/dymension/account/${accountAddress}"},{"kind":"AVIAONE 🟒","url":"https://mainnet.explorer.aviaone.com/dymension","tx_page":"https://mainnet.explorer.aviaone.com/dymension/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/dymension/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/dymension","tx_page":"https://mainnet.whispernode.com/dymension/tx/${txHash}","account_page":"https://mainnet.whispernode.com/dymension/account/${accountAddress}"},{"kind":"DTEAM | Explorer","url":"https://explorer.mainnet.dteam.tech/dymension","tx_page":"https://explorer.mainnet.dteam.tech/dymension/tx/${txHash}","account_page":"https://explorer.mainnet.dteam.tech/dymension/account/${accountAddress}"}]},{"chainId":"dyson-mainnet-01","explorers":[{"kind":"dysonprotocol","url":"https://explorer.dys.dysonprotocol.com/dyson/","tx_page":"https://explorer.dys.dysonprotocol.com/dyson/tx/${txHash}","account_page":"https://explorer.dys.dysonprotocol.com/dyson/account/${accountAddress}"}]},{"chainId":"echelon_3000-3","explorers":[{"kind":"echelon","url":"https://app.ech.network/explorer","tx_page":"https://app.ech.network/explorer/tx/${txHash}"},{"kind":"blockscout","url":"https://scout.ech.network","tx_page":"https://scout.ech.network/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/echelon","tx_page":"https://ping.pub/echelon/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/echelon","tx_page":"https://atomscan.com/echelon/transactions/${txHash}","account_page":"https://atomscan.com/echelon/accounts/${accountAddress}"}]},{"chainId":"elys-1","explorers":[{"kind":"NodeStake","url":"https://explorer.nodestake.org/elys","tx_page":"https://explorer.nodestake.org/elys/tx/${txHash}","account_page":"https://explorer.nodestake.org/elys/account/${accountAddress}"},{"kind":"Moonlet","url":"https://explorer.moonlet.cloud/elys","tx_page":"https://explorer.moonlet.cloud/elys/tx/${txHash}","account_page":"https://explorer.moonlet.cloud/elys/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/elys","tx_page":"https://ping.pub/elys/tx/${txHash}","account_page":"https://ping.pub/elys/account/${accountAddress}"},{"kind":"itrocket","url":"https://mainnet.itrocket.net/elys","tx_page":"https://mainnet.itrocket.net/elys/staking/tx/${txHash}","account_page":"https://mainnet.itrocket.net/elys/account/${accountAddress}"}]},{"chainId":"emoney-3","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/emoney","tx_page":"https://ezstaking.app/emoney/txs/${txHash}","account_page":"https://ezstaking.app/emoney/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/e-money","tx_page":"https://ping.pub/e-money/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/emoney","tx_page":"https://atomscan.com/emoney/transactions/${txHash}","account_page":"https://atomscan.com/emoney/accounts/${accountAddress}"}]},{"chainId":"empowerchain-1","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/empowerchain","tx_page":"https://staking-explorer.com/transaction.php?chain=empowerchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=empowerchain&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Empower-Mainnet","tx_page":"https://explorer.stavr.tech/Empower-Mainnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/Empower-Mainnet/account/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/empower","tx_page":"https://explorer.nodestake.top/empower/tx/${txHash}","account_page":"https://explorer.nodestake.top/empower/account/{$accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/empower","tx_page":"https://exp.stakevillage.net/empower/tx/${txHash}","account_page":"https://exp.stakevillage.net/empower/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Empower","tx_page":"https://explorer.declab.pro/Empower/tx/${txHash}","account_page":"https://explorer.declab.pro/Empower/account/{$accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/empowerchain","tx_page":"https://mainnet.whispernode.com/empowerchain/tx/${txHash}","account_page":"https://mainnet.whispernode.com/empowerchain/account/${accountAddress}"}]},{"chainId":"epix_4242-1","explorers":[{"kind":"Silk Nodes Explorer","url":"https://explorer.silknodes.io/epix","tx_page":"https://explorer.silknodes.io/osmosis/tx/${txHash}"}]},{"chainId":"1","explorers":[{"kind":"Etherscan","url":"https://etherscan.io/","tx_page":"https://etherscan.io/tx/${txHash}"}]},{"chainId":"ethos_7003-1","explorers":[]},{"chainId":"evmos_9001-2","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/evmos","tx_page":"https://ezstaking.app/evmos/txs/${txHash}","account_page":"https://ezstaking.app/evmos/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/evmos","tx_page":"https://www.mintscan.io/evmos/transactions/${txHash}","account_page":"https://www.mintscan.io/evmos/accounts/${accountAddress}"},{"kind":"blockscout","url":"https://evm.evmos.org","tx_page":"https://evm.evmos.org/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/evmos","tx_page":"https://ping.pub/evmos/tx/${txHash}"},{"kind":"explorers.guru","url":"https://evmos.explorers.guru","tx_page":"https://evmos.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/evmos","tx_page":"https://staking-explorer.com/transaction.php?chain=evmos&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=evmos&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/evmos","tx_page":"https://atomscan.com/evmos/transactions/${txHash}","account_page":"https://atomscan.com/evmos/accounts/${accountAddress}"},{"kind":"tcnetwork","url":"https://evmos.tcnetwork.io","tx_page":"https://evmos.tcnetwork.io/transaction/${txHash}"},{"kind":"Stakeflow","url":"https://stakeflow.io/evmos","account_page":"https://stakeflow.io/evmos/accounts/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/evmos","tx_page":"https://exp.stakevillage.net/evmos/tx/${txHash}","account_page":"https://exp.stakevillage.net/evmos/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/evmos","tx_page":"https://explorer.stavr.tech/evmos/tx/${txHash}","account_page":"https://explorer.stavr.tech/evmos/accounts/${accountAddress}"}]},{"chainId":"fetchhub-4","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/fetchai","tx_page":"https://www.mintscan.io/fetchai/transactions/${txHash}","account_page":"https://www.mintscan.io/fetchai/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/fetchhub","tx_page":"https://ezstaking.app/fetchhub/txs/${txHash}","account_page":"https://ezstaking.app/fetchhub/account/${accountAddress}"},{"kind":"bigdipper","url":"https://explore-fetchhub.fetch.ai","tx_page":"https://explore-fetchhub.fetch.ai/transactions/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/fetchhub","tx_page":"https://ping.pub/fetchhub/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/fetchai","tx_page":"https://atomscan.com/fetchai/transactions/${txHash}","account_page":"https://atomscan.com/fetchai/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/fetchhub","tx_page":"https://staking-explorer.com/transaction.php?chain=fetchhub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=fetchhub&addr=${accountAddress}"},{"kind":"bigdipper","url":"https://fetch-explorer.teasel.org","tx_page":"https://fetch-explorer.teasel.org/transactions/${txHash}"},{"kind":"azoyalabs","url":"https://fetchstation.azoyalabs.com/mainnet","tx_page":"https://fetchstation.azoyalabs.com/mainnet/explorer/transactions/${txHash}","account_page":"https://fetchstation.azoyalabs.com/mainnet/explorer/address/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/fetchhub/","tx_page":"https://explorer.nodeshub.online/fetchhub/tx/${txHash}","account_page":"https://explorer.nodeshub.online/fetchhub/accounts/${accountAddress}"},{"kind":"Blockchain Explorer by AVIAONE 🟒","url":"https://mainnet.explorer.aviaone.com/fetchhub","tx_page":"https://mainnet.explorer.aviaone.com/fetchhub/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/fetchhub/accounts/${accountAddress}"}]},{"chainId":"finschia-2","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/finschia","tx_page":"https://www.mintscan.io/finschia/tx/${txHash}","account_page":"https://www.mintscan.io/finschia/address/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/finschia","tx_page":"https://ezstaking.app/finschia/txs/${txHash}","account_page":"https://ezstaking.app/finschia/account/${accountAddress}"}]},{"chainId":"colosseum-1","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/firmachain","tx_page":"https://staking-explorer.com/transaction.php?chain=firmachain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=firmachain&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/firmachain","tx_page":"https://ezstaking.app/firmachain/txs/${txHash}","account_page":"https://ezstaking.app/firmachain/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Firmachain-M","tx_page":"https://explorer.stavr.tech/Firmachain-M/txs/${txHash}","account_page":"https://explorer.stavr.tech/Firmachain-M/account/${accountAddress}"},{"kind":"bigdipper","url":"https://explorer.firmachain.dev","tx_page":"https://explorer.firmachain.dev/transactions/${txHash}"},{"kind":"explorer.ChainTools","url":"https://explorer.chaintools.tech/firmachain","tx_page":"https://explorer.chaintools.tech/firmachain/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/firmachain","tx_page":"https://atomscan.com/firmachain/transactions/${txHash}","account_page":"https://atomscan.com/firmachain/accounts/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/firmachain/","tx_page":"https://explorer.nodeshub.online/firmachain/tx/${txHash}","account_page":"https://explorer.nodeshub.online/firmachain/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/firmachain","tx_page":"https://explorer.whenmoonwhenlambo.money/firmachain/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/firmachain/account/${accountAddress}"}]},{"chainId":"furya-1","explorers":[{"kind":"Furya Explorer","url":"https://explorer.furya.network/furya-1/","tx_page":"https://explorer.furya.network/furya-1/tx/${txHash}","account_page":"https://explorer.furya.network/furya-1/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/furya","tx_page":"https://staking-explorer.com/transaction.php?chain=furya&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=furya&addr=${accountAddress}"},{"kind":"Nodeshub Explorer","url":"https://explorer.nodeshub.online/furya","tx_page":"https://explorer.nodeshub.online/furya/txs/${txHash}","account_page":"https://explorer.nodeshub.online/furya/account/${accountAddress}"}]},{"chainId":"fxcore","explorers":[{"kind":"starscan","url":"https://starscan.io","tx_page":"https://starscan.io/fxcore/tx/${txHash}","account_page":"https://starscan.io/fxcore/address/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/fx","tx_page":"https://explorer.tcnetwork.io/fx/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/fx/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/fxcore","tx_page":"https://ping.pub/fxcore/tx/${txHash}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/fxcore/","tx_page":"https://explorer.nodeshub.online/fxcore/tx/${txHash}","account_page":"https://explorer.nodeshub.online/fxcore/accounts/${accountAddress}"}]},{"chainId":"galaxy-1","explorers":[{"kind":"ping.pub","url":"https://explorer.postcapitalist.io/Galaxy","tx_page":"https://explorer.postcapitalist.io/Galaxy/tx/${txHash}"}]},{"chainId":"wormchain","explorers":[{"kind":"bigdipper","url":"https://bigdipper.live/wormhole","tx_page":"https://bigdipper.live/wormhole/transactions/${txHash}","account_page":"https://bigdipper.live/wormhole/accounts/${accountAddress}"}]},{"chainId":"genesis_29-2","explorers":[{"kind":"ping.pub","url":"https://ping.pub/genesisL1","tx_page":"https://ping.pub/genesisL1/tx/${txHash}"},{"kind":"ping.pub","url":"https://exp.utsa.tech/genesis","tx_page":"https://exp.utsa.tech/genesis/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Genesisl1","tx_page":"https://explorer.stavr.tech/Genesisl1/tx/${txHash}","account_page":"https://explorer.stavr.tech/Genesisl1/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/genesisl1","tx_page":"https://atomscan.com/genesisl1/transactions/${txHash}","account_page":"https://atomscan.com/genesisl1/accounts/${accountAddress}"}]},{"chainId":"gitopia","explorers":[{"kind":"ping.pub","url":"https://ping.pub/gitopia","tx_page":"https://ping.pub/gitopia/tx/${txHash}","account_page":"https://ping.pub/gitopia/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/gitopia","tx_page":"https://staking-explorer.com/transaction.php?chain=gitopia&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=gitopia&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Gitopia-M","tx_page":"https://explorer.stavr.tech/Gitopia-M/tx/${txHash}","account_page":"https://explorer.stavr.tech/Gitopia-M/account/${accountAddress}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀","url":"https://exp.utsa.tech/gitopia","tx_page":"https://exp.utsa.tech/gitopia/tx/${txHash}","account_page":"https://exp.utsa.tech/gitopia/account/${accountAddress}"},{"kind":"Nodeist","url":"https://exp.nodeist.net/gitopia","tx_page":"https://exp.nodeist.net/gitopia/tx/${txHash}","account_page":"https://exp.nodeist.net/gitopia/account/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/gitopia","tx_page":"https://explorer.stake-take.com/gitopia/tx/${txHash}","account_page":"https://explorer.stake-take.com/gitopia/account/${accountAddress}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/gitopia","tx_page":"https://explorer.nodexcapital.com/gitopia/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/gitopia/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/gitopia","tx_page":"https://explorer.tcnetwork.io/gitopia/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/gitopia/account/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/gitopia","tx_page":"https://explorer.nodestake.org/gitopia/tx/${txHash}","account_page":"https://explorer.nodestake.org/gitopia/account/${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/gitopia-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/gitopia-mainnet/transaction/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/gitopia-mainnet/account/${accountAddress}"},{"kind":"Moonbridge","url":"https://explorer.moonbridge.team/gitopia","tx_page":"https://explorer.moonbridge.team/gitopia/tx/${txHash}","account_page":"https://explorer.moonbridge.team/gitopia/account/${accountAddress}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/gitopia","tx_page":"https://explorer.konsortech.xyz/gitopia/tx/${txHash}","account_page":"https://explorer.konsortech.xyz/gitopia/account/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/gitopia","tx_page":"https://exp.stakevillage.net/gitopia/tx/${txHash}","account_page":"https://exp.stakevillage.net/gitopia/account/${accountAddress}"},{"kind":"AlxVoy ⚑ ANODE.TEAM","url":"https://main.anode.team/gitopia","tx_page":"https://main.anode.team/gitopia/tx/${txHash}","account_page":"https://main.anode.team/gitopia/account/${accountAddress}"},{"kind":"L0vd.com ❀️","url":"https://chain-services.l0vd.com/mainnets/gitopia","tx_page":"https://chain-services.l0vd.com/mainnets/gitopia/tx/${txHash}","account_page":"https://chain-services.l0vd.com/mainnets/gitopia/account/${accountAddress}"},{"kind":"ToTheMars","url":"https://explorer.tothemars.network/gitopia","tx_page":"https://explorer.tothemars.network/gitopia/tx/${txHash}","account_page":"https://explorer.tothemars.network/gitopia/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Gitopia","tx_page":"https://explorer.declab.pro/Gitopia/tx/${txHash}","account_page":"https://explorer.declab.pro/Gitopia/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/gitopia","tx_page":"https://mainnet.whispernode.com/gitopia/tx/${txHash}","account_page":"https://mainnet.whispernode.com/gitopia/account/${accountAddress}"}]},{"chainId":"govgen-1","explorers":[{"kind":"ping.pub","url":"https://explorer.govgen.io/","tx_page":"https://explorer.govgen.io/govgen/tx/${txHash}","account_page":"https://explorer.govgen.io/govgen/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/govgen","tx_page":"https://staking-explorer.com/transaction.php?chain=govgen&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=govgen&addr=${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.nodeshub.online/govgen","tx_page":"https://explorer.nodeshub.online/govgen/tx/${txHash}","account_page":"https://explorer.nodeshub.online/govgen/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.equinoxdao.xyz/govgen","tx_page":"https://explorer.equinoxdao.xyz/govgen/tx/${txHash}","account_page":"https://explorer.equinoxdao.xyz/govgen/account/${accountAddress}"},{"kind":"ping.pub","url":"https://test.explorer.ist/govgen","tx_page":"https://test.explorer.ist/govgen/tx/${txHash}","account_page":"https://test.explorer.ist/govgen/account/${accountAddress}"},{"kind":"posthuman","url":"https://explorer.posthuman.digital/govgen","tx_page":"https://explorer.posthuman.digital/govgen/tx/${txHash}","account_page":"https://explorer.posthuman.digital/govgen/account/${accountAddress}"}]},{"chainId":"gravity-bridge-3","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/gravitybridge","tx_page":"https://ezstaking.app/gravitybridge/txs/${txHash}","account_page":"https://ezstaking.app/gravitybridge/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/gravity-bridge","tx_page":"https://www.mintscan.io/gravity-bridge/transactions/${txHash}","account_page":"https://www.mintscan.io/gravity-bridge/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/gravity-bridge","tx_page":"https://ping.pub/gravity-bridge/tx/${txHash}"},{"kind":"explorers.guru","url":"https://gravity.explorers.guru","tx_page":"https://gravity.explorers.guru/transaction/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/gravity-bridge","tx_page":"https://atomscan.com/gravity-bridge/transactions/${txHash}","account_page":"https://atomscan.com/gravity-bridge/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/gravitybridge","tx_page":"https://explorer.tcnetwork.io/gravitybridge/transaction/${txHash}"},{"kind":"Stakeflow","url":"https://stakeflow.io/gravity-bridge","account_page":"https://stakeflow.io/gravity-bridge/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/GravityBridge","tx_page":"https://explorer.stavr.tech/GravityBridge/tx/${txHash}","account_page":"https://explorer.stavr.tech/GravityBridge/accounts/${accountAddress}"},{"kind":"AviaOne 🟒","url":"https://mainnet.explorer.aviaone.com/gravity-bridge","tx_page":"https://mainnet.explorer.aviaone.com/gravity-bridge/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/gravity-bridge/accounts/${accountAddress}"}]},{"chainId":"haqq_11235-1","explorers":[{"kind":"blockscout","url":"https://explorer.haqq.network","tx_page":"https://explorer.haqq.network/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/haqq","tx_page":"https://ping.pub/haqq/tx/${txHash}"},{"kind":"explorers.guru","url":"https://haqq.explorers.guru","tx_page":"https://haqq.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/haqq","tx_page":"https://staking-explorer.com/transaction.php?chain=haqq&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=haqq&addr=${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/haqq","tx_page":"https://explorer.nodestake.org/haqq/tx/${txHash}"},{"kind":"KonsorTech Explorer","url":"https://explorer.konsortech.xyz/haqq","tx_page":"https://explorer.konsortech.xyz/haqq/tx/${txHash}"},{"kind":"Palamar Explorer","url":"https://explorer.palamar.io/haqq","tx_page":"https://explorer.palamar.io/haqq/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/HAQQ-Mainnet","tx_page":"https://explorer.stavr.tech/HAQQ-Mainnet/tx/${txHash}"}]},{"chainId":"helichain","explorers":[{"kind":"ping.pub","url":"https://explorer.helichain.com/Helichain","tx_page":"https://explorer.helichain.com/Helichain/tx/${txHash}","account_page":"https://explorer.helichain.com/Helichain/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/heli","tx_page":"https://staking-explorer.com/transaction.php?chain=heli&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=heli&addr=${accountAddress}"}]},{"chainId":"highbury_710-1","explorers":[{"kind":"pingpub","url":"https://explorer.furya.wtf/","tx_page":"https://www.explorer.furya.wtf//txs/${txHash}","account_page":"https://explorer.furya.wtf//account/${accountAddress}"}]},{"chainId":"humans_1089-1","explorers":[{"kind":"mintscan","url":"https://mintscan.io/humans","tx_page":"https://www.mintscan.io/humans/tx/${txHash}"},{"kind":"ezstaking","url":"https://ezstaking.app/humans","tx_page":"https://ezstaking.app/humans/txs/${txHash}","account_page":"https://ezstaking.app/humans/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/humans","tx_page":"https://ping.pub/humans/tx/${txHash}"},{"kind":"explorers.guru","url":"https://humans.explorers.guru","tx_page":"https://humans.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/humans","tx_page":"https://staking-explorer.com/transaction.php?chain=humans&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=humans&addr=${accountAddress}"},{"kind":"exploreme","url":"https://humansai.exploreme.pro/","tx_page":"https://humans.exploreme.pro/transaction/${txHash}"},{"kind":"itrocket","url":"https://mainnet.itrocket.net/humans/staking","tx_page":"https://mainnet.itrocket.net/humans/tx/${txHash}","account_page":"https://mainnet.itrocket.net/humans/account/${accountAddress}"},{"kind":"posthuman","url":"https://explorer.posthuman.digital/humans","tx_page":"https://explorer.posthuman.digital/humans/tx/${txHash}","account_page":"https://explorer.posthuman.digital/humans/account/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/humans/staking","tx_page":"https://explorer.nodestake.org/humans/tx/${txHash}","account_page":"https://explorer.nodestake.org/humans/account/${accountAddress}"}]},{"chainId":"Antora","explorers":[{"kind":"chadscan","url":"https://chadscan.com","tx_page":"https://chadscan.com/transactions/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/idep","tx_page":"https://atomscan.com/idep/transactions/${txHash}","account_page":"https://atomscan.com/idep/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/idep","tx_page":"https://explorer.tcnetwork.io/idep/transaction/${txHash}"}]},{"chainId":"ixo-5","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/impacthub","tx_page":"https://staking-explorer.com/transaction.php?chain=impacthub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=impacthub&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/ixo","tx_page":"https://ezstaking.app/ixo/txs/${txHash}","account_page":"https://ezstaking.app/ixo/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/IXO-Mainnet","tx_page":"https://explorer.stavr.tech/IXO-Mainnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/IXO-Mainnet/account/${accountAddress}"},{"kind":"bigdipper","url":"https://blockscan.ixo.world","tx_page":"https://blockscan.ixo.world/transactions/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/ixo","tx_page":"https://ping.pub/ixo/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/ixo","tx_page":"https://atomscan.com/ixo/transactions/${txHash}","account_page":"https://atomscan.com/ixo/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/ixo","tx_page":"https://explorer.whenmoonwhenlambo.money/ixo/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/ixo/account/${accountAddress}"}]},{"chainId":"imversed_5555555-1","explorers":[{"kind":"blockscout","url":"https://txe.imversed.network/","tx_page":"https://txe.imversed.network/tx/${txHash}"}]},{"chainId":"injective-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/injective","tx_page":"https://ezstaking.app/injective/txs/${txHash}","account_page":"https://ezstaking.app/injective/account/${accountAddress}"},{"kind":"injectiveprotocol","url":"https://explorer.injective.network/","tx_page":"https://explorer.injective.network/transaction/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/injective","tx_page":"https://ping.pub/injective/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/injective","tx_page":"https://atomscan.com/injective/transactions/${txHash}","account_page":"https://atomscan.com/injective/accounts/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/injective","tx_page":"https://www.mintscan.io/injective/transactions/${txHash}","account_page":"https://www.mintscan.io/injective/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/injective","tx_page":"https://staking-explorer.com/transaction.php?chain=injective&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=injective&addr=${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/injective","account_page":"https://stakeflow.io/injective/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/injective","tx_page":"https://mainnet.whispernode.com/injective/tx/${txHash}","account_page":"https://mainnet.whispernode.com/injective/account/${accountAddress}"}]},{"chainId":"int3face-1","explorers":[{"kind":"ping.pub","url":"https://explorer.int3face.zone","tx_page":"https://explorer.int3face.zone/int3face-1/tx/${txHash}"}]},{"chainId":"irishub-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/irisnet","tx_page":"https://ezstaking.app/irisnet/txs/${txHash}","account_page":"https://ezstaking.app/irisnet/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/iris","tx_page":"https://www.mintscan.io/iris/transactions/${txHash}","account_page":"https://www.mintscan.io/iris/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/iris-network","tx_page":"https://ping.pub/iris-network/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/irisnet","tx_page":"https://staking-explorer.com/transaction.php?chain=irisnet&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=irisnet&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/iris-network","tx_page":"https://atomscan.com/iris-network/transactions/${txHash}","account_page":"https://atomscan.com/iris-network/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/irisnet","account_page":"https://stakeflow.io/irisnet/accounts/${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/iris","tx_page":"https://exp.nodeist.net/iris/tx/${txHash}"},{"kind":"L0vd.com ❀️","url":"https://explorers.l0vd.com/iris-mainnet","tx_page":"https://explorers.l0vd.com/iris-mainnet/tx/${txHash}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/iris","tx_page":"https://explorer.konsortech.xyz/iris/tx/${txHash}"}]},{"chainId":"jackal-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/jackal","tx_page":"https://ping.pub/jackal/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/jackal","tx_page":"https://staking-explorer.com/transaction.php?chain=jackal&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=jackal&addr=${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/jackal","tx_page":"https://explorer.nodestake.org/jackal/tx/${txHash}"},{"kind":"BccNodes","url":"https://explorer.bccnodes.com/jackal","tx_page":"https://explorer.bccnodes.com/jackal/tx/${txHash}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀","url":"https://exp.utsa.tech/jackal","tx_page":"https://exp.utsa.tech/jackal/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/jackal","tx_page":"https://explorer.stavr.tech/jackal/tx/${txHash}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/jackal","tx_page":"https://exp.nodeist.net/jackal/tx/${txHash}"},{"kind":"Big Dipper","url":"https://bigdipper.live/jackal","tx_page":"https://bigdipper.live/jackal/transactions/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/jackal","tx_page":"https://mainnet.whispernode.com/jackal/tx/${txHash}","account_page":"https://mainnet.whispernode.com/jackal/account/${accountAddress}"}]},{"chainId":"joltify_1729-1","explorers":[{"kind":"big dipper","url":"https://explorer.joltify.io/joltify","tx_page":"https://explorer.joltify.io/joltify/transactions/${txHash}","account_page":"https://explorer.joltify.io/joltify/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/joltify","tx_page":"https://staking-explorer.com/transaction.php?chain=joltify&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=joltify&addr=${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/joltify","tx_page":"https://explorer.whenmoonwhenlambo.money/joltify/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/joltify/account/${accountAddress}"}]},{"chainId":"juno-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/juno","tx_page":"https://ezstaking.app/juno/txs/${txHash}","account_page":"https://ezstaking.app/juno/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/juno","tx_page":"https://ping.pub/juno/tx/${txHash}"},{"kind":"explorers.guru","url":"https://juno.explorers.guru","tx_page":"https://juno.explorers.guru/transaction/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/juno","tx_page":"https://www.mintscan.io/juno/transactions/${txHash}","account_page":"https://www.mintscan.io/juno/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/juno","tx_page":"https://staking-explorer.com/transaction.php?chain=juno&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=juno&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/juno","tx_page":"https://atomscan.com/juno/transactions/${txHash}","account_page":"https://atomscan.com/juno/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/juno","tx_page":"https://explorer.stavr.tech/juno/transactions/${txHash}","account_page":"https://explorer.stavr.tech/juno/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/juno","tx_page":"https://explorer.tcnetwork.io/juno/transaction/${txHash}"},{"kind":"Stakeflow","url":"https://stakeflow.io/juno","account_page":"https://stakeflow.io/juno/accounts/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Juno","tx_page":"https://explorer.declab.pro/Juno/tx/${txHash}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/juno/","tx_page":"https://explorer.nodeshub.online/juno/tx/${txHash}","account_page":"https://explorer.nodeshub.online/juno/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/juno","tx_page":"https://mainnet.whispernode.com/juno/tx/${txHash}","account_page":"https://mainnet.whispernode.com/juno/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/juno","tx_page":"https://explorer.chainroot.io/juno/transactions/${txHash}","account_page":"https://explorer.chainroot.io/juno/accounts/${accountAddress}"}]},{"chainId":"kava_2222-10","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/kava","tx_page":"https://www.mintscan.io/kava/transactions/${txHash}","account_page":"https://www.mintscan.io/kava/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/kava","tx_page":"https://staking-explorer.com/transaction.php?chain=kava&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=kava&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/kava","tx_page":"https://ezstaking.app/kava/txs/${txHash}","account_page":"https://ezstaking.app/kava/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/kava","tx_page":"https://ping.pub/kava/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/kava","tx_page":"https://atomscan.com/kava/transactions/${txHash}","account_page":"https://atomscan.com/kava/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/kava","account_page":"https://stakeflow.io/kava/accounts/${accountAddress}"}]},{"chainId":"kichain-2","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/kichain","tx_page":"https://ezstaking.app/kichain/txs/${txHash}","account_page":"https://ezstaking.app/kichain/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/ki-chain","tx_page":"https://www.mintscan.io/ki-chain/txs/${txHash}","account_page":"https://www.mintscan.io/ki-chain/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Kichain-Mainnet","tx_page":"https://explorer.stavr.tech/Kichain-Mainnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/kichain","tx_page":"https://ping.pub/kichain/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/kichain","tx_page":"https://staking-explorer.com/transaction.php?chain=kichain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=kichain&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/ki-chain","tx_page":"https://atomscan.com/ki-chain/transactions/${txHash}","account_page":"https://atomscan.com/ki-chain/accounts/${accountAddress}"},{"kind":"AVIAONE Explorer 🟒","url":"https://mainnet.explorer.aviaone.com/kichain","tx_page":"https://mainnet.explorer.aviaone.com/kichain/transactions/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/kichain/accounts/${accountAddress}"}]},{"chainId":"kima_network","explorers":[{"kind":"Kima Network Explorer","url":"https://explorer.kima.network/","tx_page":"https://explorer.kima.network/transactions/${txHash}"}]},{"chainId":"darchub","explorers":[{"kind":"konstellation","url":"https://explorer.konstellation.tech/","tx_page":"https://explorer.konstellation.tech/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/konstellation","tx_page":"https://staking-explorer.com/transaction.php?chain=konstellation&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=konstellation&addr=${accountAddress}"},{"kind":"cosmotracker","url":"https://cosmotracker.com/konstellation","tx_page":"https://cosmotracker.com/konstellation/tx/${txHash}"}]},{"chainId":"luwak-1","explorers":[{"kind":"Kopi Foundation Explorer","url":"https://explorer.kopi.money/","tx_page":"https://explorer.kopi.money/luwak-1/tx/${txHash}","account_page":"https://explorer.kopi.money/luwak-1/account/${accountAddress}"},{"kind":"CzCryptoman Explorer","url":"https://explorer.czcryptoman.com/kopi-mainnet","tx_page":"https://explorer.czcryptoman.com/kopi-mainnet/tx/${txHash}","account_page":"https://explorer.czcryptoman.com/kopi-mainnet/account/${accountAddress}"},{"kind":"Sychonix Explorer","url":"https://explorer.sychonix.com/kopi-mainnet","tx_page":"https://explorer.sychonix.com/kopi-mainnet/tx/${txHash}","account_page":"https://explorer.sychonix.com/kopi-mainnet/account/${accountAddress}"},{"kind":"Nodeshub Explorer","url":"https://explorer.nodeshub.online/Kopi","tx_page":"https://explorer.nodeshub.online/Kopi/txs/${txHash}","account_page":"https://explorer.nodeshub.online/Kopi/account/${accountAddress}"},{"kind":"Bony Explorer","url":"https://explorer.bonynode.online/kopi/","tx_page":"https://explorer.bonynode.online/kopi/txs/${txHash}","account_page":"https://explorer.bonynode.online/kopi/account/${accountAddress}"},{"kind":"Moonbridge Explorer","url":"https://explorer.moonbridge.team/kopi/","tx_page":"https://explorer.moonbridge.team/kopi/txs/${txHash}","account_page":"https://explorer.moonbridge.team/kopi/account/${accountAddress}"},{"kind":"Cosmoscan Explorer","url":"https://cosmoscan.com/kopi","tx_page":"https://cosmoscan.com/kopi/txs/${txHash}","account_page":"https://cosmoscan.com/kopi/account/${accountAddress}"}]},{"chainId":"kaiyo-1","explorers":[{"kind":"kujira","url":"https://finder.kujira.app","tx_page":"https://finder.kujira.app/kaiyo-1/tx/${txHash}"},{"kind":"explorers.guru","url":"https://kujira.explorers.guru","tx_page":"https://kujira.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/kujira","tx_page":"https://staking-explorer.com/transaction.php?chain=kujira&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=kujira&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/kujira","tx_page":"https://ezstaking.app/kujira/txs/${txHash}","account_page":"https://ezstaking.app/kujira/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/kujira","tx_page":"https://atomscan.com/kujira/transactions/${txHash}","account_page":"https://atomscan.com/kujira/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/kujira","tx_page":"https://mainnet.whispernode.com/kujira/tx/${txHash}","account_page":"https://mainnet.whispernode.com/kujira/account/${accountAddress}"}]},{"chainId":"kyve-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/kyve","tx_page":"https://ezstaking.app/kyve/txs/${txHash}","account_page":"https://ezstaking.app/kyve/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/kyve","tx_page":"https://www.mintscan.io/kyve/txs/${txHash}","account_page":"https://www.mintscan.io/kyve/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/kyve","tx_page":"https://staking-explorer.com/transaction.php?chain=kyve&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=kyve&addr=${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/kyve","tx_page":"https://explorer.nodestake.top/kyve/txs/${txHash}","account_page":"https://explorer.nodestake.top/kyve/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Kyve","tx_page":"https://explorer.stavr.tech/Kyve/txs/${txHash}","account_page":"https://explorer.stavr.tech/Kyve/account/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/kyve","tx_page":"https://explorer.stake-take.com/kyve/txs/${txHash}","account_page":"https://explorer.stake-take.com/kyve/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Kyve","tx_page":"https://explorer.declab.pro/Kyve/txs/${txHash}","account_page":"https://explorer.declab.pro/Kyve/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/kyve","tx_page":"https://explorer.whenmoonwhenlambo.money/kyve/txs/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/kyve/account/${accountAddress}"},{"kind":"KYVE Explorer","url":"https://explorer.kyve.network/kyve","tx_page":"https://explorer.kyve.network/kyve/tx/${txHash}","account_page":"https://explorer.kyve.network/kyve/account/${accountAddress}"},{"kind":"Viewblock","url":"https://viewblock.io/kyve","tx_page":"https://viewblock.io/kyve/tx/${txHash}","account_page":"https://viewblock.io/kyve/address/${accountAddress}"}]},{"chainId":"lambda_92000-1","explorers":[{"kind":"blockscout","url":"https://explorer.lambda.im/","tx_page":"https://explorer.lambda.im/tx/${txHash}"},{"kind":"NodeStake","url":"https://explorer.nodestake.top/lambda","tx_page":"https://explorer.nodestake.top/lambda/txs/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/lambda","tx_page":"https://explorer.stavr.tech/lambda/txs/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/lambda","tx_page":"https://atomscan.com/lambda/transactions/${txHash}","account_page":"https://atomscan.com/lambda/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/lambda","tx_page":"https://explorer.whenmoonwhenlambo.money/lambda/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/lambda/account/${accountAddress}"}]},{"chainId":"lava-mainnet-1","explorers":[{"kind":"finteh","url":"https://explorer.finteh.org/lava","tx_page":"https://explorer.finteh.org/lava/tx/${txHash}","account_page":"https://explorer.finteh.org/lava/account/${accountAddress}"},{"kind":"guru","url":"https://lava.explorers.guru/","tx_page":"https://lava.explorers.guru/transaction/${txHash}","account_page":"https://lava.explorers.guru/account/${accountAddress}"},{"kind":"w3coins","url":"https://lava-explorer.w3coins.io/Lava","tx_page":"https://lava-explorer.w3coins.io/Lava/tx/${txHash}","account_page":"https://lava-explorer.w3coins.io/Lava/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/lava","tx_page":"https://staking-explorer.com/transaction.php?chain=lava&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=lava&addr=${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/lava-mainnet","tx_page":"https://exp.stakevillage.net/lava-mainnet/tx/${txHash}","account_page":"https://exp.stakevillage.net/lava-mainnet/account/${accountAddress}"},{"kind":"AVIAONE 🟒","url":"https://mainnet.explorer.aviaone.com/lava/","tx_page":"https://mainnet.explorer.aviaone.com/lava/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/lava/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Lava-Mainnet","tx_page":"https://explorer.stavr.tech/Lava-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Lava-Mainnet/account/${accountAddress}"}]},{"chainId":"likecoin-mainnet-2","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/likecoin","tx_page":"https://staking-explorer.com/transaction.php?chain=likecoin&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=likecoin&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/likecoin","tx_page":"https://ezstaking.app/likecoin/txs/${txHash}","account_page":"https://ezstaking.app/likecoin/account/${accountAddress}"},{"kind":"lunie-ng","url":"https://stake.like.co/"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Likecoin-M","tx_page":"https://explorer.stavr.tech/Likecoin-M/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/likecoin","tx_page":"https://ping.pub/likecoin/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/likecoin","tx_page":"https://atomscan.com/likecoin/transactions/${txHash}","account_page":"https://atomscan.com/likecoin/accounts/${accountAddress}"}]},{"chainId":"logos_7002-1","explorers":[]},{"chainId":"loop-1","explorers":[{"kind":"ping.pub","url":"https://ping.pfc.zone/loop","tx_page":"https://ping.pfc.zone/loop/tx/${txHash}"}]},{"chainId":"lorenzo_8329-1","explorers":[{"kind":"blockscout","url":"https://scan.lorenzo-protocol.xyz/","tx_page":"https://scan.lorenzo-protocol.xyz/tx/${txHash}"}]},{"chainId":"loyal-main-02","explorers":[{"kind":"Loyal explorer","url":"https://pingpub.joinloyal.io/loyal","tx_page":"https://pingpub.joinloyal.io/loyal/tx/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/loyal","tx_page":"https://explorer.tcnetwork.io/loyal/transaction/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/loyal","tx_page":"https://explorer.nodestake.top/loyal/tx/${txHash}"}]},{"chainId":"lum-network-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/lumnetwork","tx_page":"https://ezstaking.app/lumnetwork/txs/${txHash}","account_page":"https://ezstaking.app/lumnetwork/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/lum","tx_page":"https://www.mintscan.io/lum/transactions/${txHash}","account_page":"https://www.mintscan.io/lum/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/lumnetwork","tx_page":"https://staking-explorer.com/transaction.php?chain=lumnetwork&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=lumnetwork&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/LumNetwork-Mainnet","tx_page":"https://explorer.stavr.tech/LumNetwork-Mainnet/tx/${txHash}"},{"kind":"lum-network","url":"https://explorer.lum.network","tx_page":"https://explorer.lum.network/txs/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/lum-network","tx_page":"https://ping.pub/lum-network/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/lum-network","tx_page":"https://atomscan.com/lum-network/transactions/${txHash}","account_page":"https://atomscan.com/lum-network/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/lum-network","tx_page":"https://explorer.whenmoonwhenlambo.money/lum-network/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/lum-network/account/${accountAddress}"}]},{"chainId":"mande_18071918-1","explorers":[{"kind":"FYI","url":"https://dym.fyi/r/mande","tx_page":"https://dym.fyi/r/mande/tx/${txHash}","account_page":"https://dym.fyi/r/mande/address/${accountAddress}"}]},{"chainId":"mantra-1","explorers":[{"kind":"ITRocket","url":"https://mainnet.itrocket.net/mantra","tx_page":"https://mainnet.itrocket.net/mantra/transaction/${txHash}","account_page":"https://mainnet.itrocket.net/mantra/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Mantra-Mainnet","tx_page":"https://explorer.stavr.tech/Mantra-Mainnet/transaction/${txHash}","account_page":"https://explorer.stavr.tech/Mantra-Mainnet/account/${accountAddress}"}]},{"chainId":"mars-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/mars-protocol","tx_page":"https://ezstaking.app/mars-protocol/txs/${txHash}","account_page":"https://ezstaking.app/mars-protocol/account/${accountAddress}"},{"kind":"BigDipper","url":"https://explorer.marsprotocol.io","tx_page":"https://explorer.marsprotocol.io/transactions/${txHash}","account_page":"https://explorer.marsprotocol.io/accounts/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/mars","tx_page":"https://explorer.nodestake.top/mars/transactions/${txHash}","account_page":"https://explorer.nodestake.top/mars/account/${accountAddress}"},{"kind":"Nodes.Guru","url":"https://mars.explorers.guru/","tx_page":"https://mars.explorers.guru/transaction/${txHash}","account_page":"https://mars.explorers.guru/account/${accountAddress}"},{"kind":"MintScan","url":"https://www.mintscan.io/mars-protocol","tx_page":"https://www.mintscan.io/mars-protocol/transactions/${txHash}","account_page":"https://www.mintscan.io/mars-protocol/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/mars","tx_page":"https://ping.pub/mars/tx/${txHash}","account_page":"https://ping.pub/mars/account/${accountAddress}"}]},{"chainId":"mayachain-mainnet-v1","explorers":[{"kind":"Maya Protocol explorer","url":"https://www.explorer.mayachain.info","tx_page":"https://www.explorer.mayachain.info/#/txs/${txHash}"}]},{"chainId":"medasdigital-2","explorers":[{"kind":"BigDipper","url":"https://explorer.medas-digital.io:3100/medasdigital","tx_page":"https://explorer.medas-digital.io:3100/medasdigital/transactions/${txHash}","account_page":"explorer.medas-digital.io:3100/medasdigital/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/frontier/medasdigital","tx_page":"https://atomscan.com/frontier/medasdigital/transactions/${txHash}","account_page":"https://atomscan.com/frontier/medasdigital/accounts/${accountAddress}"}]},{"chainId":"meme-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/meme","tx_page":"https://ping.pub/meme/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/meme","tx_page":"https://atomscan.com/meme/transactions/${txHash}","account_page":"https://atomscan.com/meme/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/meme","tx_page":"https://staking-explorer.com/transaction.php?chain=meme&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=meme&addr=${accountAddress}"},{"kind":"MEME Explorer","url":"https://explorer.meme.sx/meme","tx_page":"https://explorer.meme.sx/meme/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/meme","tx_page":"https://atomscan.com/meme/transactions/${txHash}","account_page":"https://atomscan.com/meme/accounts/${accountAddress}"},{"kind":"Brochain","url":"https://explorer.brocha.in/meme","tx_page":"https://explorer.brocha.in/meme/tx/${txHash}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/meme","tx_page":"https://explorer.stake-take.com/meme/tx/${txHash}","account_page":"https://explorer.stake-take.com/meme/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Meme","tx_page":"https://explorer.stavr.tech/Meme/tx/${txHash}","account_page":"https://explorer.stavr.tech/Meme/account/${accountAddress}"}]},{"chainId":"migaloo-1","explorers":[{"kind":"Migaloo Explorers Guru","url":"https://migaloo.explorers.guru","tx_page":"https://migaloo.explorers.guru/transaction/${txHash}","account_page":"https://migaloo.explorers.guru/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/migaloo","tx_page":"https://ping.pub/migaloo/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/migaloo","tx_page":"https://staking-explorer.com/transaction.php?chain=migaloo&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=migaloo&addr=${accountAddress}"},{"kind":"Silk Nodes","url":"https://explorer.silknodes.io/migaloo","tx_page":"https://explorer.silknodes.io/migaloo/tx/${txHash}","account_page":"https://explorer.silknodes.io/migaloo/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/migaloo","tx_page":"https://atomscan.com/migaloo/transactions/${txHash}","account_page":"https://atomscan.com/migaloo/accounts/${accountAddress}"}]},{"chainId":"milkyway","explorers":[]},{"chainId":"mainnet","explorers":[{"kind":"Mises-GW Explorer","url":"https://gw.mises.site","tx_page":"https://gw.mises.site/tx/${txHash}"},{"kind":"Jambulmerah ping.pub based","url":"https://explorer.jambulmerah.dev/mises","tx_page":"https://explorer.jambulmerah.dev/mises/tx/${txHash}"}]},{"chainId":"mtgbp-1","explorers":[{"kind":"ping.pub","url":"https://blockexplorer.mtgbp.com/mtgbp","tx_page":"https://blockexplorer.mtgbp.com/mtgbp/tx/${txHash}","account_page":"https://blockexplorer.mtgbp.com/mtgbp/accounts/${accountAddress}"}]},{"chainId":"mun-1","explorers":[{"url":"https://explorer.mun.money/mun","tx_page":"https://explorer.mun.money/mun/${txHash}"},{"url":"https://explorer.indonode.net/mun/staking","tx_page":"https://explorer.indonode.net/mun/${txHash}"},{"url":"https://explorer.konsortech.xyz/mun/staking","tx_page":"https://explorer.konsortech.xyz/mun/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/mun","tx_page":"https://ping.pub/mun/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/mun","tx_page":"https://explorer.tcnetwork.io/mun/transaction/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/mun","tx_page":"https://explorer.whenmoonwhenlambo.money/mun/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/mun/account/${accountAddress}"}]},{"chainId":"mythos_7001-1","explorers":[]},{"chainId":"neura_266-1"},{"chainId":"Neutaro-1","explorers":[{"kind":"ping.pub","url":"https://explorer.neutaro.io/Neutaro","tx_page":"https://explorer.neutaro.io/Neutaro/tx/${txHash}","account_page":"https://explorer.neutaro.io/Neutaro/account/${accountAddress}"}]},{"chainId":"neutron-1","explorers":[{"kind":"Mintscan","url":"https://www.mintscan.io/neutron","tx_page":"https://www.mintscan.io/neutron/transactions/${txHash}","account_page":"https://www.mintscan.io/neutron/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/neutron","tx_page":"https://ezstaking.app/neutron/txs/${txHash}","account_page":"https://ezstaking.app/neutron/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/neutron","tx_page":"https://mainnet.whispernode.com/neutron/tx/${txHash}","account_page":"https://mainnet.whispernode.com/neutron/account/${accountAddress}"}]},{"chainId":"cataclysm-1","explorers":[{"kind":"Nodes Guru","url":"https://nibiru.explorers.guru/","tx_page":"https://nibiru.explorers.guru/transaction/${txHash}","account_page":"https://nibiru.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/nibiru","tx_page":"https://staking-explorer.com/transaction.php?chain=nibiru&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=nibiru&addr=${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/nibiru","tx_page":"https://explorer.nodestake.org/nibiru/tx/${txHash}","account_page":"https://explorer.nodestake.org/nibiru/account/${accountAddress}"},{"kind":"LiveRaveN","url":"https://mainnet.explorer.liveraven.net/nibiru","tx_page":"https://mainnet.explorer.liveraven.net/nibiru/tx/${txHash}","account_page":"https://mainnet.explorer.liveraven.net/nibiru/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Nibiru-Mainnet","tx_page":"https://explorer.stavr.tech/Nibiru-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Nibiru-Mainnet/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/nibiru/","tx_page":"https://explorer.nodeshub.online/nibiru/tx/${txHash}","account_page":"https://explorer.nodeshub.online/nibiru/accounts/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/nibiru-mainnet","tx_page":"https://exp.stakevillage.net/nibiru-mainnet/tx/${txHash}","account_page":"https://exp.stakevillage.net/nibiru-mainnet/accounts/${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/nibiru-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/nibiru-mainnet/tx/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/nibiru-mainnet/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/nibiru","tx_page":"https://explorer.whenmoonwhenlambo.money/nibiru/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/nibiru/account/${accountAddress}"}]},{"chainId":"nim_1122-1","explorers":[{"kind":"Orbit Codes","url":"https://explorer.nim.network","tx_page":"https://explorer.nim.network/tx/${txHash}","account_page":"https://explorer.nim.network/account/${accountAddress}"}]},{"chainId":"noble-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/noble","tx_page":"https://www.mintscan.io/noble/txs/${txHash}","account_page":"https://www.mintscan.io/noble/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/noble","tx_page":"https://ezstaking.app/noble/txs/${txHash}","account_page":"https://ezstaking.app/noble/account/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/noble","account_page":"https://stakeflow.io/noble/accounts/${accountAddress}"}]},{"chainId":"pirin-1","explorers":[{"kind":"Nolus Explorer","url":"https://explorer.nolus.io/pirin-1","tx_page":"https://explorer.nolus.io/pirin-1/tx/${txHash}","account_page":"https://explorer.nolus.io/pirin-1/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/nolus","tx_page":"https://ping.pub/nolus/tx/${txHash}","account_page":"https://ping.pub/nolus/account/${accountAddress}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/nolus","tx_page":"https://explorer.nodexcapital.com/nolus/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/nolus/account/${accountAddress}"},{"kind":"Nodes Guru Explorer","url":"https://nolus.explorers.guru","tx_page":"https://nolus.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/nolus","tx_page":"https://staking-explorer.com/transaction.php?chain=nolus&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=nolus&addr=${accountAddress}"},{"kind":"KJ Nodes Explorer","url":"https://explorer.kjnodes.com/nolus","tx_page":"https://explorer.kjnodes.com/nolus/tx/${txHash}","account_page":"https://explorer.kjnodes.com/nolus/account/${accountAddress}"}]},{"chainId":"nomic-stakenet-3","explorers":[{"kind":"bigdipper","url":"https://bigdipper.live/nomic","account_page":"https://bigdipper.live/nomic/accounts/${accountAddress}","tx_page":"https://bigdipper.live/nomic/transactions/${txHash}"},{"kind":"Zenscan.io","url":"https://nomic.zenscan.io/index.php","account_page":"https://nomic.zenscan.io/address.php?address=${accountAddress}","tx_page":"https://nomic.zenscan.io/transaction.php?hash=${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/nomic","tx_page":"https://mainnet.whispernode.com/nomic/tx/${txHash}","account_page":"https://mainnet.whispernode.com/nomic/account/${accountAddress}"}]},{"chainId":"nyx","explorers":[{"kind":"Nodes Guru explorer","url":"https://nym.explorers.guru/","tx_page":"https://nym.explorers.guru/transaction/${txHash}","account_page":"https://nym.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/nyx","tx_page":"https://staking-explorer.com/transaction.php?chain=nyx&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=nyx&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/nyx","tx_page":"https://ezstaking.app/nyx/txs/${txHash}","account_page":"https://ezstaking.app/nyx/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/nyx","tx_page":"https://www.mintscan.io/nyx/transactions/${txHash}","account_page":"https://www.mintscan.io/nyx/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/nyx","tx_page":"https://ping.pub/nyx/tx/${txHash}"}]},{"chainId":"octa","explorers":[{"kind":"Octa explorer","url":"http://explorer.octa-coin.com/","tx_page":"http://explorer.octa-coin.com/txs/${txHash}"}]},{"chainId":"odin-mainnet-freya","explorers":[{"kind":"Runa","url":"https://runa.odinprotocol.io/","tx_page":"https://runa.odinprotocol.io/transactions/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Odin-Mainnet","tx_page":"https://explorer.stavr.tech/Odin-Mainnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/odin","tx_page":"https://ping.pub/odin/tx/${txHash}"}]},{"chainId":"exchain-66","explorers":[{"kind":"OKLink","url":"https://www.oklink.com/en/okc","tx_page":"https://www.oklink.com/en/okc/tx/${txHash}","account_page":"https://www.oklink.com/en/okc/address/${accountAddress}"}]},{"chainId":"omniflixhub-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/omniflix","tx_page":"https://www.mintscan.io/omniflix/transactions/${txHash}","account_page":"https://www.mintscan.io/omniflix/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/omniflixhub","tx_page":"https://atomscan.com/omniflixhub/transactions/${txHash}","account_page":"https://atomscan.com/omniflixhub/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/omniflixhub","tx_page":"https://staking-explorer.com/transaction.php?chain=omniflixhub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=omniflixhub&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/omniflixhub","tx_page":"https://ezstaking.app/omniflixhub/txs/${txHash}","account_page":"https://ezstaking.app/omniflixhub/account/${accountAddress}"},{"kind":"STAKR.space explorer","url":"https://explorer.stakr.space/omniflix/","tx_page":"https://explorer.stakr.space/omniflix/tx/${txHash}","account_page":"https://explorer.stakr.space/omniflix/account/${accountAddress}"}]},{"chainId":"onex-mainnet-1","explorers":[{"kind":"Dexplorer - must enter rpc link provided above","url":"https://dexplorer.cakralabs.site","tx_page":"https://dexplorer.cakralabs.site/txs/${txHash}","account_page":"https://dexplorer.cakralabs.site/${accountAddress}"}]},{"chainId":"onomy-mainnet-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/onomy-protocol","tx_page":"https://www.mintscan.io/onomy-protocol/transactions/${txHash}","account_page":"https://www.mintscan.io/onomy-protocol/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/onomy","tx_page":"https://staking-explorer.com/transaction.php?chain=onomy&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=onomy&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/onomy","tx_page":"https://ezstaking.app/onomy/txs/${txHash}","account_page":"https://ezstaking.app/onomy/account/${accountAddress}"}]},{"chainId":"Oraichain","explorers":[{"kind":"oraiscan","url":"https://scan.orai.io","tx_page":"https://scan.orai.io/txs/${txHash}"},{"kind":"Nodine Explorer","url":"https://explorer.co.id/orai","tx_page":"https://explorer.co.id/orai/tx/${txHash}"},{"kind":"Blockval Explorer","url":"https://explorer.blockval.io/oraichain","tx_page":"https://explorer.blockval.io/oraichain/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/orai","tx_page":"https://atomscan.com/orai/transactions/${txHash}","account_page":"https://atomscan.com/orai/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/oraichain","tx_page":"https://staking-explorer.com/transaction.php?chain=oraichain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=oraichain&addr=${accountAddress}"},{"kind":"KonsorTech Explorer","url":"https://explorer.konsortech.xyz/oraichain","tx_page":"https://explorer.konsortech.xyz/oraichain/transactions/${txHash}","account_page":"https://explorer.konsortech.xyz/oraichain/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/Orai-Mainnet","tx_page":"https://explorer.stavr.tech/Orai-Mainnet/transactions/${txHash}","account_page":"https://explorer.stavr.tech/Orai-Mainnet/accounts/${accountAddress}"},{"kind":"imORAI ORAIchain Explorer","url":"https://explorer.imdev.app/oraichain","tx_page":"https://explorer.imdev.app/oraichain/tx/${txHash}","account_page":"https://explorer.imdev.app/oraichain/account/${accountAddress}"}]},{"chainId":"osmosis-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/osmosis","tx_page":"https://ezstaking.app/osmosis/txs/${txHash}","account_page":"https://ezstaking.app/osmosis/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/osmosis","tx_page":"https://www.mintscan.io/osmosis/transactions/${txHash}","account_page":"https://www.mintscan.io/osmosis/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/osmosis","tx_page":"https://ping.pub/osmosis/tx/${txHash}"},{"kind":"explorers.guru","url":"https://osmosis.explorers.guru","tx_page":"https://osmosis.explorers.guru/transaction/${txHash}","account_page":"https://osmosis.explorers.guru/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/osmosis","tx_page":"https://atomscan.com/osmosis/transactions/${txHash}","account_page":"https://atomscan.com/osmosis/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/osmosis","tx_page":"https://explorer.tcnetwork.io/osmosis/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/osmosis/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/osmosis","tx_page":"https://staking-explorer.com/transaction.php?chain=osmosis&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=osmosis&addr=${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/osmosis","account_page":"https://stakeflow.io/osmosis/accounts/${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/osmosis","tx_page":"https://exp.nodeist.net/osmosis/tx/${txHash}"},{"kind":"L0vd.com ❀️","url":"https://explorers.l0vd.com/osmosis-mainnet","tx_page":"https://explorers.l0vd.com/osmosis-mainnet/tx/${txHash}"},{"kind":"Chainscope","url":"https://chainsco.pe/osmosis","tx_page":"https://chainsco.pe/osmosis/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/osmosis","tx_page":"https://mainnet.whispernode.com/osmosis/tx/${txHash}","account_page":"https://mainnet.whispernode.com/osmosis/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/osmosis","tx_page":"https://explorer.chainroot.io/osmosis/transactions/${txHash}","account_page":"https://explorer.chainroot.io/osmosis/accounts/${accountAddress}"}]},{"chainId":"tumbler","explorers":[{"kind":"explorers.guru","url":"https://paloma.explorers.guru/","tx_page":"https://paloma.explorers.guru/transaction/${txHash}"}]},{"chainId":"panacea-3","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/medibloc","tx_page":"https://www.mintscan.io/medibloc/transactions/${txHash}","account_page":"https://www.mintscan.io/medibloc/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/panacea","tx_page":"https://staking-explorer.com/transaction.php?chain=panacea&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=panacea&addr=${accountAddress}"},{"kind":"bigdipper","url":"https://explorer.gopanacea.org","tx_page":"https://explorer.gopanacea.org/transactions/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/panacea","tx_page":"https://explorer.whenmoonwhenlambo.money/panacea/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/panacea/account/${accountAddress}"}]},{"chainId":"passage-2","explorers":[{"kind":"aneka","url":"https://passage.aneka.io","tx_page":"https://passage.aneka.io/txs/${txHash}","account_page":"https://passage.aneka.io/accounts/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/passage","tx_page":"https://www.mintscan.io/passage/transactions/${txHash}","account_page":"https://www.mintscan.io/passage/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/passage","tx_page":"https://ezstaking.app/passage/txs/${txHash}","account_page":"https://ezstaking.app/passage/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/passage","tx_page":"https://staking-explorer.com/transaction.php?chain=passage&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=passage&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/passage","tx_page":"https://atomscan.com/passage/transactions/${txHash}","account_page":"https://atomscan.com/passage/accounts/${accountAddress}"},{"kind":"cosmotracker","url":"https://cosmotracker.com/passage","tx_page":"https://cosmotracker.com/passage/tx/${txHash}","account_page":"https://cosmotracker.com/passage/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/passage","tx_page":"https://mainnet.whispernode.com/passage/tx/${txHash}","account_page":"https://mainnet.whispernode.com/passage/account/${accountAddress}"}]},{"chainId":"core-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/persistence","tx_page":"https://www.mintscan.io/persistence/transactions/${txHash}","account_page":"https://www.mintscan.io/persistence/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/persistence","tx_page":"https://ezstaking.app/persistence/txs/${txHash}","account_page":"https://ezstaking.app/persistence/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/persistence","tx_page":"https://ping.pub/persistence/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Persistence-Mainnet","tx_page":"https://explorer.stavr.tech/Persistence-Mainnet/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/persistence","tx_page":"https://staking-explorer.com/transaction.php?chain=persistence&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=persistence&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/persistence","tx_page":"https://atomscan.com/persistence/transactions/${txHash}","account_page":"https://atomscan.com/persistence/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/persistence","account_page":"https://stakeflow.io/persistence/accounts/${accountAddress}"}]},{"chainId":"planq_7070-2","explorers":[{"kind":"bigdipper","url":"https://explorer.planq.network","tx_page":"https://explorer.planq.network/transactions/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Planq-Mainnet","tx_page":"https://explorer.stavr.tech/Planq-Mainnet/tx/${txHash}"},{"kind":"blockscout","url":"https://evm.planq.network","tx_page":"https://evm.planq.network/tx/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/planq","tx_page":"https://explorer.nodestake.org/planq/tx/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/planq","tx_page":"https://explorer.tcnetwork.io/planq/transaction/${txHash}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/planq-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/planq-mainnet/transaction/${txHash}"},{"kind":"Kynraze","url":"https://explorer.kynraze.com/planq","tx_page":"https://explorer.kynraze.com/planq/tx/${txHash}"},{"kind":"THE EXPLORER","url":"https://explorer.sxlzptprjkt.xyz/planq","tx_page":"https://explorer.sxlzptprjkt.xyz/planq/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/planq","tx_page":"https://explorer.nodexcapital.com/planq/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/planq","tx_page":"https://atomscan.com/planq/transactions/${txHash}","account_page":"https://atomscan.com/planq/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/planq","tx_page":"https://staking-explorer.com/transaction.php?chain=planq&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=planq&addr=${accountAddress}"},{"kind":"Indonode","url":"https://explorer.indonode.net/planq","tx_page":"https://explorer.indonode.net/planq/tx/${txHash}"},{"kind":"Safe Block","url":"https://explorer.safeblock.space/planq","tx_page":"https://explorer.safeblock.space/planq/tx/${txHash}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/planq","tx_page":"https://explorer.konsortech.xyz/planq/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/planq","tx_page":"https://explorer.whenmoonwhenlambo.money/tx/${txHash}"}]},{"chainId":"point_10687-1","explorers":[{"kind":"blockscout","url":"https://explorer.pointnetwork.io/","tx_page":"https://explorer.pointnetwork.io/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Point-Mainnet","tx_page":"https://explorer.stavr.tech/Point-Mainnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://cosmos.pointnetwork.io/","tx_page":"https://cosmos.pointnetwork.io/point/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/point","tx_page":"https://explorer.nodexcapital.com/point/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/point","tx_page":"https://atomscan.com/point/transactions/${txHash}","account_page":"https://atomscan.com/point/accounts/${accountAddress}"}]},{"chainId":"pio-mainnet-1","explorers":[{"kind":"Provenance","url":"https://explorer.provenance.io","tx_page":"https://explorer.provenance.io/tx/${txHash}"},{"kind":"hubble","url":"https://hubble.figment.io/provenance/chains/pio-mainnet-1","tx_page":"https://hubble.figment.io/provenance/chains/pio-mainnet-1/${block}/transactions/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/provenance","tx_page":"https://ping.pub/provenance/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/provenance","tx_page":"https://www.mintscan.io/provenance/transactions/${txHash}","account_page":"https://www.mintscan.io/provenance/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Provenance","tx_page":"https://explorer.stavr.tech/Provenance/txs/${txHash}","account_page":"https://explorer.stavr.tech/Provenance/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/provenance","tx_page":"https://ezstaking.app/provenance/txs/${txHash}","account_page":"https://ezstaking.app/provenance/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/provenance","tx_page":"https://atomscan.com/provenance/transactions/${txHash}","account_page":"https://atomscan.com/provenance/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/provenance","tx_page":"https://staking-explorer.com/transaction.php?chain=provenance&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=provenance&addr=${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/provenance","tx_page":"https://explorer.whenmoonwhenlambo.money/provenance/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/provenance/account/${accountAddress}"},{"kind":"AVIAONE 🟒","url":"https://mainnet.explorer.aviaone.com/provenance","tx_page":"https://mainnet.explorer.aviaone.com/provenance/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/provenance/account/${accountAddress}"}]},{"chainId":"pryzm-1","explorers":[{"kind":"Chainscope","url":"https://chainsco.pe/pryzm","tx_page":"https://chainsco.pe/pryzm/tx/${txHash}","account_page":"https://chainsco.pe/pryzm/address/${accountAddress}","block_page":"https://chainsco.pe/pryzm/block/${blockHeight}","proposal_page":"https://chainsco.pe/pryzm/governance/proposal/${proposalId}","validator_page":"https://chainsco.pe/pryzm/validator/${validatorAddress}"},{"kind":"PingPub","url":"https://cosmosrun.info/pryzm","tx_page":"https://cosmosrun.info/pryzm/tx/${txHash}","account_page":"https://cosmosrun.info/pryzm/account/${accountAddress}","block_page":"https://cosmosrun.info/pryzm/blocks/${blockHeight}","proposal_page":"https://cosmosrun.info/pryzm/gov/${proposalId}","validator_page":"https://cosmosrun.info/pryzm/staking/${validatorAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/pryzm","tx_page":"https://staking-explorer.com/transaction.php?chain=pryzm&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=pryzm&addr=${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/pryzm","tx_page":"https://explorer.chainroot.io/pryzm/transactions/${txHash}","account_page":"https://explorer.chainroot.io/pryzm/accounts/${accountAddress}"}]},{"chainId":"PUNDIX","explorers":[{"kind":"starscan","url":"https://starscan.io","tx_page":"https://starscan.io/pundix/tx/${txHash}","account_page":"https://starscan.io/pundix/address/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/pundix/","tx_page":"https://explorer.nodeshub.online/pundix/tx/${txHash}","account_page":"https://explorer.nodeshub.online/pundix/accounts/${accountAddress}"}]},{"chainId":"pylons-mainnet-1","explorers":[{"kind":"Nodes.guru","url":"https://pylons.explorers.guru/","tx_page":"https://pylons.explorers.guru/transaction/${txHash}"}]},{"chainId":"qfs-1","explorers":[{"kind":"ping.pub","url":"https://blockexplorer.qfsone.com/qfs","tx_page":"https://blockexplorer.qfsone.com/qfs/tx/${txHash}","account_page":"https://blockexplorer.qfsone.com/qfs/accounts/${accountAddress}"}]},{"chainId":"quasar-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/quasar","tx_page":"https://www.mintscan.io/quasar/transactions/${txHash}","account_page":"https://www.mintscan.io/quasar/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/quasar","tx_page":"https://ezstaking.app/quasar/txs/${txHash}","account_page":"https://ezstaking.app/quasar/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/quasar","tx_page":"https://staking-explorer.com/transaction.php?chain=quasar&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=quasar&addr=${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/quasar","tx_page":"https://mainnet.whispernode.com/quasar/tx/${txHash}","account_page":"https://mainnet.whispernode.com/quasar/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/quasar","tx_page":"https://explorer.chainroot.io/quasar/transactions/${txHash}","account_page":"https://explorer.chainroot.io/quasar/accounts/${accountAddress}"}]},{"chainId":"quicksilver-2","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/quicksilver","tx_page":"https://www.mintscan.io/quicksilver/transactions/${txHash}","account_page":"https://www.mintscan.io/quicksilver/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/quicksilver","tx_page":"https://ezstaking.app/quicksilver/txs/${txHash}","account_page":"https://ezstaking.app/quicksilver/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/quicksilver","tx_page":"https://staking-explorer.com/transaction.php?chain=quicksilver&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=quicksilver&addr=${accountAddress}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀 explorer","url":"https://exp.utsa.tech/quicksilver","tx_page":"https://exp.utsa.tech/quicksilver/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ explorer","url":"https://explorer.stavr.tech/quicksilver-mainnet","tx_page":"https://explorer.stavr.tech/quicksilver-mainnet/tx/${txHash}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/quicksilver","tx_page":"https://explorer.stake-take.com/quicksilver/tx/${txHash}"},{"kind":"AM Solutions Explorers","url":"https://explorer.theamsolutions.info/quicksilver-main/staking","tx_page":"https://explorer.theamsolutions.info/quicksilver-main/tx/${txHash}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/quicksilver/staking","tx_page":"https://explorer.konsortech.xyz/quicksilver/tx/${txHash}"}]},{"chainId":"qwoyn-1","explorers":[{"kind":"ping","url":"https://explorer.theamsolutions.info/qwoyn-main/","tx_page":"https://explorer.theamsolutions.info/qwoyn-main/blocks","account_page":"https://explorer.theamsolutions.info/qwoyn-main/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/qwoyn","tx_page":"https://staking-explorer.com/transaction.php?chain=qwoyn&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=qwoyn&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Qwoyn-Mainnet","tx_page":"https://explorer.stavr.tech/Qwoyn-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Qwoyn-Mainnet/account/${accountAddress}"},{"kind":"ping","url":"https://explorer.theamsolutions.info/QWOYN-MAIN","tx_page":"https://explorer.theamsolutions.info/QWOYN-MAIN/tx/${txHash}","account_page":"https://explorer.theamsolutions.info/QWOYN-MAIN/account/${accountAddress}"}]},{"chainId":"realionetwork_3301-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/realio-mainnet","tx_page":"https://explorer.stavr.tech/realio-mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/realio-mainnet/account/{$accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/realio","tx_page":"https://explorer.nodestake.org/realio/tx/${txHash}","account_page":"https://explorer.nodestake.org/realio/account/{$accountAddress}"},{"kind":"Sr20de Explorer","url":"https://explorer.sr20de.xyz/Realio","tx_page":"https://explorer.sr20de.xyz/Realio/tx/${txHash}","account_page":"https://explorer.sr20de.xyz/Realio/account/{$accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/realio","tx_page":"https://explorer.tcnetwork.io/realio/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/realio/account/${accountAddress}"},{"kind":"Safe Block","url":"https://explorer.safeblock.space/realio","tx_page":"https://explorer.safeblock.space/realio/tx/${txHash}","account_page":"https://explorer.safeblock.space/realio/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/realio","tx_page":"https://explorer.declab.pro/realio/tx/${txHash}","account_page":"https://explorer.declab.pro/realio/account/{$accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/realio","tx_page":"https://explorer.whenmoonwhenlambo.money/realio/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/realio/account/${accountAddress}"}]},{"chainId":"reb_1111-1","explorers":[{"kind":"explorers.guru","url":"https://rebus.explorers.guru","tx_page":"https://rebus.explorers.guru/transaction/${txHash}"},{"kind":"NodeStake","url":"https://explorer.nodestake.top/rebus","tx_page":"https://explorer.nodestake.top/rebus/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/rebus","tx_page":"https://staking-explorer.com/transaction.php?chain=rebus&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=rebus&addr=${accountAddress}"},{"kind":"BccNodes","url":"https://explorer.bccnodes.com/rebus-M","tx_page":"https://explorer.bccnodes.com/rebus-M/tx/${txHash}"},{"kind":"Brochain","url":"https://explorer.brocha.in/rebus","tx_page":"https://explorer.brocha.in/rebus/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/rebus","tx_page":"https://explorer.stavr.tech/rebus/tx/${txHash}"},{"kind":"tcnetwork","url":"https://rebus.tcnetwork.io","tx_page":"https://rebus.tcnetwork.io/transaction/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/rebus","tx_page":"https://atomscan.com/rebus/transactions/${txHash}","account_page":"https://atomscan.com/rebus/accounts/${accountAddress}"}]},{"chainId":"regen-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/regen","tx_page":"https://ezstaking.app/regen/txs/${txHash}","account_page":"https://ezstaking.app/regen/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/regen","tx_page":"https://staking-explorer.com/transaction.php?chain=regen&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=regen&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Regen-Mainnet","tx_page":"https://explorer.stavr.tech/Regen-Mainnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/regen","tx_page":"https://ping.pub/regen/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/regen-network","tx_page":"https://atomscan.com/regen-network/transactions/${txHash}","account_page":"https://atomscan.com/regen-network/accounts/${accountAddress}"}]},{"chainId":"titan-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/rizon","tx_page":"https://ezstaking.app/rizon/txs/${txHash}","account_page":"https://ezstaking.app/rizon/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/rizon","tx_page":"https://www.mintscan.io/rizon/transactions/${txHash}","account_page":"https://www.mintscan.io/rizon/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/rizon","tx_page":"https://ping.pub/rizon/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/rizon","tx_page":"https://staking-explorer.com/transaction.php?chain=rizon&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=rizon&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/rizon","tx_page":"https://atomscan.com/rizon/transactions/${txHash}","account_page":"https://atomscan.com/rizon/accounts/${accountAddress}"},{"kind":"bigdipper","url":"https://bigdipper.live/rizon","tx_page":"https://bigdipper.live/rizon/transactions/${txHash}","account_page":"https://bigdipper.live/rizon/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Rizon","tx_page":"https://explorer.stavr.tech/Rizon/tx/${txHash}","account_page":"https://explorer.stavr.tech/Rizon/accounts/${accountAddress}"}]},{"chainId":"30","explorers":[{"kind":"Rootstock Explorer","url":"https://explorer.rootstock.io/","tx_page":"https://explorer.rootstock.io/tx/${txHash}"}]},{"chainId":"router_9600-1","explorers":[{"kind":"Routerscan","url":"https://routerscan.io/","tx_page":"https://routerscan.io/transactions/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/router","tx_page":"https://explorer.nodestake.org/router/tx/${txHash}"},{"kind":"Router Explorer","url":"https://router.explorers.guru/","tx_page":"https://router.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/routerchain","tx_page":"https://staking-explorer.com/transaction.php?chain=routerchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=routerchain&addr=${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/router/","tx_page":"https://explorer.nodeshub.online/router/tx/${txHash}","account_page":"https://explorer.nodeshub.online/router/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/routerchain","tx_page":"https://explorer.whenmoonwhenlambo.money/routerchain/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/routerchain/account/${accountAddress}"}]},{"chainId":"ssc-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/saga","tx_page":"https://www.mintscan.io/saga/transactions/${txHash}","account_page":"https://www.mintscan.io/saga/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/saga","tx_page":"https://staking-explorer.com/transaction.php?chain=saga&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=saga&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/saga","tx_page":"https://ezstaking.app/saga/txs/${txHash}","account_page":"https://ezstaking.app/saga/account/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/saga","tx_page":"https://explorer.nodestake.org/saga/tx/${txHash}","account_page":"https://explorer.nodestake.org/saga/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/saga","tx_page":"https://explorer.chainroot.io/saga/transactions/${txHash}","account_page":"https://explorer.chainroot.io/saga/accounts/${accountAddress}"}]},{"chainId":"scorum-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/scorum","tx_page":"https://ezstaking.app/scorum/txs/${txHash}","account_page":"https://ezstaking.app/scorum/account/${accountAddress}"},{"kind":"bigdipper","url":"https://cosmos.scorum.com/scorum","tx_page":"https://cosmos.scorum.com/scorum/transactions/${txHash}","account_page":"https://cosmos.scorum.com/scorum/accounts/${accountAddress}"}]},{"chainId":"secret-4","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/secretnetwork","tx_page":"https://ezstaking.app/secretnetwork/txs/${txHash}","account_page":"https://ezstaking.app/secretnetwork/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/secret","tx_page":"https://ping.pub/secret/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/secret","tx_page":"https://www.mintscan.io/secret/transactions/${txHash}","account_page":"https://www.mintscan.io/secret/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/secret-network","tx_page":"https://atomscan.com/secret-network/transactions/${txHash}","account_page":"https://atomscan.com/secret-network/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/secretnetwork","tx_page":"https://staking-explorer.com/transaction.php?chain=secretnetwork&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=secretnetwork&addr=${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/secret","tx_page":"https://mainnet.whispernode.com/secret/tx/${txHash}","account_page":"https://mainnet.whispernode.com/secret/account/${accountAddress}"}]},{"chainId":"seda-1","explorers":[{"kind":"sedaexplorer","url":"https://explorer.seda.xyz/","tx_page":"https://explorer.seda.xyz/txs/${txHash}","account_page":"https://explorer.seda.xyz/account/${accountAddress}"},{"kind":"explorers.guru","url":"https://seda.explorers.guru","tx_page":"https://seda.explorers.guru/transaction/${txHash}","account_page":"https://seda.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/seda","tx_page":"https://staking-explorer.com/transaction.php?chain=seda&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=seda&addr=${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/seda","tx_page":"https://mainnet.whispernode.com/seda/tx/${txHash}","account_page":"https://mainnet.whispernode.com/seda/account/${accountAddress}"},{"kind":"Apple juice πŸ§ƒ","url":"https://explorer.256x25.tech/seda-mainnet","tx_page":"https://explorer.256x25.tech/seda-mainnet/tx/${txHash}","account_page":"https://explorer.256x25.tech/seda-mainnet/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/seda","tx_page":"https://explorer.whenmoonwhenlambo.money/seda/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/seda/account/${accountAddress}"}]},{"chainId":"pacific-1","explorers":[{"kind":"blockscout","url":"https://seitrace.com","tx_page":"https://seitrace.com/tx/${txHash}?chain=pacific-1","account_page":"https://seitrace.com/address/${accountAddress}?chain=pacific-1"},{"kind":"mintscan","url":"https://www.mintscan.io/sei","tx_page":"https://www.mintscan.io/sei/transactions/${txHash}","account_page":"https://www.mintscan.io/sei/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/sei","tx_page":"https://ezstaking.app/sei/txs/${txHash}","account_page":"https://ezstaking.app/sei/account/${accountAddress}"},{"kind":"celatone","url":"https://www.seiscan.app/pacific-1","tx_page":"https://www.seiscan.app/pacific-1/txs/${txHash}","account_page":"https://www.seiscan.app/pacific-1/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sei","tx_page":"https://staking-explorer.com/transaction.php?chain=sei&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sei&addr=${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/sei","tx_page":"https://mainnet.whispernode.com/sei/tx/${txHash}","account_page":"https://mainnet.whispernode.com/sei/account/${accountAddress}"}]},{"chainId":"self-1","explorers":[{"kind":"Self Chain","url":"https://explorer.selfchain.xyz/selfchain","tx_page":"https://explorer.selfchain.xyz/selfchain/tx/${txHash}","account_page":"https://explorer.selfchain.xyz/selfchain/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/self","tx_page":"https://staking-explorer.com/transaction.php?chain=self&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=self&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Selfchain-Mainnet","tx_page":"https://explorer.stavr.tech/Selfchain-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Selfchain-Mainnet/account/${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/selfchain-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/selfchain-mainnet/tx/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/selfchain-mainnet/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/self","tx_page":"https://explorer.whenmoonwhenlambo.money/self/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/self/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/selfchain/","tx_page":"https://explorer.nodeshub.online/selfchain/tx/${txHash}","account_page":"https://explorer.nodeshub.online/selfchain/accounts/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/selfchain-mainnet","tx_page":"https://exp.stakevillage.net/selfchain-mainnet/tx/${txHash}","account_page":"https://exp.stakevillage.net/selfchain-mainnet/accounts/${accountAddress}"}]},{"chainId":"sentinelhub-2","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/sentinel","tx_page":"https://www.mintscan.io/sentinel/transactions/${txHash}","account_page":"https://www.mintscan.io/sentinel/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/sentinel","tx_page":"https://ezstaking.app/sentinel/txs/${txHash}","account_page":"https://ezstaking.app/sentinel/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/sentinel","tx_page":"https://atomscan.com/sentinel/transactions/${txHash}","account_page":"https://atomscan.com/sentinel/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sentinel","tx_page":"https://staking-explorer.com/transaction.php?chain=sentinel&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sentinel&addr=${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/sentinel-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/sentinel-mainnet/transactions/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/sentinel-mainnet/accounts/${accountAddress}"},{"kind":"ValidatorNode","url":"https://explorer.validatornode.com/sentinel","tx_page":"https://explorer.validatornode.com/sentinel/tx/${txHash}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Sentinel","tx_page":"https://explorer.declab.pro/Sentinel/tx/${txHash}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/sentinel/","tx_page":"https://explorer.nodeshub.online/sentinel/tx/${txHash}","account_page":"https://explorer.nodeshub.online/sentinel/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/sentinel","tx_page":"https://mainnet.whispernode.com/sentinel/tx/${txHash}","account_page":"https://mainnet.whispernode.com/sentinel/account/${accountAddress}"}]},{"chainId":"sgenet-1","explorers":[{"kind":"ping.pub","url":"https://blockexplorer.sgenetwork.io/sge","tx_page":"https://blockexplorer.sgenetwork.io/sge/tx/${txHash}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/sge","tx_page":"https://explorer.nodestake.org/sge/tx/${txHash}"},{"kind":"stakerhouse","url":"https://cosmotracker.com/sge","tx_page":"https://cosmotracker.com/sge/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Sge-Mainnet","tx_page":"https://explorer.stavr.tech/Sge-Mainnet/transaction/${txHash}","account_page":"https://explorer.stavr.tech/Sge-Mainnet/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/sge","tx_page":"https://explorer.tcnetwork.io/sge/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/sge/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sge","tx_page":"https://staking-explorer.com/transaction.php?chain=sge&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sge&addr=${accountAddress}"},{"kind":"Safe Block","url":"https://explorer.safeblock.space/sge","tx_page":"https://explorer.safeblock.space/sge/tx/${txHash}","account_page":"https://explorer.safeblock.space/sge/account/${accountAddress}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/sge","tx_page":"https://explorer.konsortech.xyz/sge/tx/${txHash}","account_page":"https://explorer.konsortech.xyz/sge/account/${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/sge-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/sge-mainnet/tx/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/sge-mainnet/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/sge","tx_page":"https://explorer.whenmoonwhenlambo.money/sge/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/sge/account/${accountAddress}"}]},{"chainId":"ShareRing-VoyagerNet","explorers":[{"kind":"big dipper","url":"https://explorer.shareri.ng","tx_page":"https://explorer.shareri.ng/transactions/${txHash}","account_page":"https://explorer.shareri.ng/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/shareledger","tx_page":"https://staking-explorer.com/transaction.php?chain=shareledger&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=shareledger&addr=${accountAddress}"}]},{"chainId":"shentu-2.2","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/shentu","tx_page":"https://ezstaking.app/shentu/txs/${txHash}","account_page":"https://ezstaking.app/shentu/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Shentu-Mainnet","tx_page":"https://explorer.stavr.tech/Shentu-Mainnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/Shentu-Mainnet/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/shentu","tx_page":"https://www.mintscan.io/shentu/transactions/${txHash}","account_page":"https://www.mintscan.io/shentu/accounts/${accountAddress}"},{"kind":"Shentu Explorer","url":"https://explorer.shentu.org/?chain=shentu-2.2","tx_page":"https://explorer.shentu.org/transactions/${txHash}?chain=shentu-2.2"},{"kind":"ping.pub","url":"https://ping.pub/shentu","tx_page":"https://ping.pub/shentu/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/shentu","tx_page":"https://atomscan.com/shentu/transactions/${txHash}","account_page":"https://atomscan.com/shentu/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/shentu","tx_page":"https://staking-explorer.com/transaction.php?chain=shentu&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=shentu&addr=${accountAddress}"},{"kind":"bigdipper","url":"https://bigdipper.live/shentu","tx_page":"https://bigdipper.live/shentu/transactions/${txHash}","account_page":"https://bigdipper.live/shentu/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/shentu","account_page":"https://stakeflow.io/shentu/accounts/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/shentu","tx_page":"https://explorer.chainroot.io/shentu/transactions/${txHash}","account_page":"https://explorer.chainroot.io/shentu/accounts/${accountAddress}"}]},{"chainId":"shido_9008-1","explorers":[{"kind":"shido","url":"https://shidoscan.com","tx_page":"https://shidoscan.com/tx/${txHash}","account_page":"https://shidoscan.com/address/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/shido","tx_page":"https://explorer.whenmoonwhenlambo.money/shido/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/shido/account/${accountAddress}"},{"kind":"256x25","url":"https://explorer.256x25.tech/shido","tx_page":"https://explorer.256x25.tech/shido/tx/${txHash}","account_page":"https://explorer.256x25.tech//shido/account/${accountAddress}"},{"kind":"MavNode","url":"https://explorer.mavnode.io/shido","tx_page":"https://explorer.mavnode.io/shido/tx/${txHash}","account_page":"https://explorer.mavnode.io/shido/account/${accountAddress}"},{"kind":"Indonode","url":"https://explorer.indonode.net/shido","tx_page":"https://explorer.indonode.net/shido/tx/${txHash}","account_page":"https://explorer.indonode.net/shido/account/${accountAddress}"}]},{"chainId":"sifchain-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/sifchain","tx_page":"https://ping.pub/sifchain/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/sifchain","tx_page":"https://atomscan.com/sifchain/transactions/${txHash}","account_page":"https://atomscan.com/sifchain/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sifchain","tx_page":"https://staking-explorer.com/transaction.php?chain=sifchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sifchain&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Sifchain","tx_page":"https://explorer.stavr.tech/Sifchain/tx/${txHash}","account_page":"https://explorer.stavr.tech/Sifchain/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/sifchain","tx_page":"https://explorer.whenmoonwhenlambo.money/sifchain/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/sifchain/account/${accountAddress}"}]},{"chainId":"sixnet","explorers":[{"kind":"sixscan","url":"https://sixscan.io/sixnet","tx_page":"https://sixscan.io/sixnet/tx/${txHash}"}]},{"explorers":[{"kind":"Solana Explorer","url":"https://explorer.solana.com/","tx_page":"https://explorer.solana.com/tx/${txHash}"}]},{"chainId":"sommelier-3","explorers":[{"kind":"sommscan","url":"https://sommscan.io","tx_page":"https://sommscan.io"},{"kind":"mintscan","url":"https://www.mintscan.io/sommelier","tx_page":"https://www.mintscan.io/sommelier/transactions/${txHash}","account_page":"https://www.mintscan.io/sommelier/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/sommelier","tx_page":"https://ezstaking.app/sommelier/txs/${txHash}","account_page":"https://ezstaking.app/sommelier/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sommelier","tx_page":"https://staking-explorer.com/transaction.php?chain=sommelier&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sommelier&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Sommelier-Mainnet","tx_page":"https://explorer.stavr.tech/Sommelier-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Sommelier-Mainnet/account/${accountAddress}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/sommelier","tx_page":"https://explorer.nodexcapital.com/sommelier/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/sommelier/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/sommelier","tx_page":"https://atomscan.com/sommelier/transactions/${txHash}","account_page":"https://atomscan.com/sommelier/accounts/${accountAddress}"}]},{"chainId":"source-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Source-Mainnet/","tx_page":"https://explorer.stavr.tech/Source-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Source-Mainnet/accounts/${accountAddress}"},{"kind":"Nodeist","url":"https://exp.nodeist.net/source/","tx_page":"https://exp.nodeist.net/source/tx/${txHash}","account_page":"https://exp.nodeist.net/source/accounts/${accountAddress}"},{"kind":"MoonBridge","url":"https://explorer.moonbridge.team/source","tx_page":"https://explorer.moonbridge.team/source/tx/${txHash}","account_page":"https://explorer.moonbridge.team/source/accounts/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/source","tx_page":"https://explorer.nodestake.org/source/tx/${txHash}","account_page":"https://explorer.nodestake.org/source/accounts/${accountAddress}"},{"kind":"Sr20de","url":"https://explorer.sr20de.xyz/Source-mainnet","tx_page":"https://explorer.sr20de.xyz/Source-mainnet/tx/${txHash}","account_page":"https://explorer.sr20de.xyz/Source-mainnet/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/source","tx_page":"https://explorer.tcnetwork.io/source/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/source","tx_page":"https://staking-explorer.com/transaction.php?chain=source&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=source&addr=${accountAddress}"},{"kind":"Indonode","url":"https://explorer.indonode.net/source","tx_page":"https://explorer.indonode.net/source/tx/${txHash}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/source-mainnet/","tx_page":"https://explorer.tendermint.roomit.xyz/source-mainnet/tx/${txHash}"},{"kind":"posthuman","url":"https://explorer.posthuman.digital/source","tx_page":"https://explorer.posthuman.digital/source/tx/${txHash}","account_page":"https://explorer.posthuman.digital/source/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Source","tx_page":"https://explorer.declab.pro/Source/tx/${txHash}","account_page":"https://explorer.declab.pro/Source/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/source","tx_page":"https://explorer.whenmoonwhenlambo.money/source/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/source/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/source/","tx_page":"https://explorer.nodeshub.online/source/tx/${txHash}","account_page":"https://explorer.nodeshub.online/source/accounts/${accountAddress}"}]},{"chainId":"stafihub-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/stafi","tx_page":"https://www.mintscan.io/stafi/transactions/${txHash}","account_page":"https://www.mintscan.io/stafi/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/stafihub","tx_page":"https://ezstaking.app/stafihub/txs/${txHash}","account_page":"https://ezstaking.app/stafihub/account/${accountAddress}"},{"kind":"ping-pub","url":"https://ping.pub/stafihub","tx_page":"https://ping.pub/stafihub/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/stafihub","tx_page":"https://staking-explorer.com/transaction.php?chain=stafihub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=stafihub&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/stafihub","tx_page":"https://atomscan.com/stafihub/transactions/${txHash}","account_page":"https://atomscan.com/stafihub/accounts/${accountAddress}"}]},{"chainId":"stargaze-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/stargaze","tx_page":"https://ezstaking.app/stargaze/txs/${txHash}","account_page":"https://ezstaking.app/stargaze/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/stargaze/","tx_page":"https://www.mintscan.io/stargaze/transactions/${txHash}","account_page":"https://www.mintscan.io/stargaze/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/stargaze","tx_page":"https://ping.pub/stargaze/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/stargaze","tx_page":"https://staking-explorer.com/transaction.php?chain=stargaze&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=stargaze&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/stargaze","tx_page":"https://atomscan.com/stargaze/transactions/${txHash}","account_page":"https://atomscan.com/stargaze/accounts/${accountAddress}"},{"kind":"Starscan","url":"https://starscan.net/","tx_page":"https://starscan.net/stargaze-1/tx/${txHash}","account_page":"https://starscan.net/stargaze-1/address/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/stargaze","tx_page":"https://mainnet.whispernode.com/stargaze/tx/${txHash}","account_page":"https://mainnet.whispernode.com/stargaze/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/stargaze","tx_page":"https://explorer.chainroot.io/stargaze/transactions/${txHash}","account_page":"https://explorer.chainroot.io/stargaze/accounts/${accountAddress}"}]},{"chainId":"iov-mainnet-ibc","explorers":[{"kind":"ping.pub","url":"https://ping.pub/starname","tx_page":"https://ping.pub/starname/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/starname","tx_page":"https://atomscan.com/starname/transactions/${txHash}","account_page":"https://atomscan.com/starname/accounts/${accountAddress}"}]},{"chainId":"stratos-1","explorers":[{"kind":"bigdipper","url":"https://explorer.thestratos.org","tx_page":"https://explorer.thestratos.org/transactions/${txHash}","account_page":"https://explorer.thestratos.org/accounts/${accountAddress}"},{"kind":"blockscout","url":"https://web3-explorer.thestratos.org","tx_page":"https://web3-explorer.thestratos.org/tx/${txHash}","account_page":"https://web3-explorer.thestratos.org/address/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/stratos","tx_page":"https://explorer.nodestake.org/stratos/tx/${txHash}","account_page":"https://explorer.nodestake.org/stratos/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/stratos","tx_page":"https://staking-explorer.com/transaction.php?chain=stratos&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=stratos&addr=${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/stratos","tx_page":"https://explorer.tcnetwork.io/stratos/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/stratos/account/${accountAddress}"}]},{"chainId":"stride-1","explorers":[{"kind":"BccNodes","url":"https://explorer.bccnodes.com/stride-M","tx_page":"https://explorer.bccnodes.com/stride-M/tx/${txHash}","account_page":"https://explorer.bccnodes.com/stride-M/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/stride","tx_page":"https://ezstaking.app/stride/txs/${txHash}","account_page":"https://ezstaking.app/stride/account/${accountAddress}"},{"kind":"Apollo","url":"https://apollo.chandrastation.com/stride","tx_page":"https://apollo.chandrastation.com/stride/tx/${txHash}","account_page":"https://apollo.chandrastation.com/stride/account/${accountAddress}"},{"kind":"Stride Ping Pub","url":"https://explorer.stride.zone/stride","tx_page":"https://explorer.stride.zone/stride/tx/${txHash}","account_page":"https://explorer.stride.zone/stride/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/stride","tx_page":"https://explorer.stavr.tech/stride/tx/${txHash}","account_page":"https://explorer.stavr.tech/stride/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/stride","tx_page":"https://www.mintscan.io/stride/transactions/${txHash}","account_page":"https://www.mintscan.io/stride/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/stride","tx_page":"https://atomscan.com/stride/transactions/${txHash}","account_page":"https://atomscan.com/stride/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/stride","tx_page":"https://staking-explorer.com/transaction.php?chain=stride&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=stride&addr=${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/stride","account_page":"https://stakeflow.io/stride/accounts/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/stride","tx_page":"https://explorer.stake-take.com/stride/tx/${txHash}","account_page":"https://explorer.stake-take.com/stride/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/stride","tx_page":"https://mainnet.whispernode.com/stride/tx/${txHash}","account_page":"https://mainnet.whispernode.com/stride/account/${accountAddress}"}]},{"chainId":"sunrise-1","explorers":[]},{"chainId":"synternet-1","explorers":[{"kind":"Big Dipper","url":"https://explorer.synternet.com/","tx_page":"https://explorer.synternet.com/transactions/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/synternet","tx_page":"https://staking-explorer.com/transaction.php?chain=synternet&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=synternet&addr=${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/synternet","tx_page":"https://explorer.whenmoonwhenlambo.money/synternet/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/synternet/account/${accountAddress}"}]},{"chainId":"taketitan-12","explorers":[{"kind":"ping.pub","url":"https://scan.taketitan.com/taketitan","tx_page":"https://scan.taketitan.com/taketitan/tx/${txHash}","account_page":"https://scan.taketitan.com/taketitan/accounts/${accountAddress}"}]},{"chainId":"tenet_1559-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/tenet","tx_page":"https://ping.pub/tenet/tx/${txHash}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/Tenet","tx_page":"https://exp.nodeist.net/Tenet/tx/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/tenet","tx_page":"https://explorer.tcnetwork.io/tenet/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/tenet/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/tenet","tx_page":"https://staking-explorer.com/transaction.php?chain=tenet&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=tenet&addr=${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/tenet","tx_page":"https://explorer.whenmoonwhenlambo.money/tenet/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/tenet/account/${accountAddress}"}]},{"chainId":"teritori-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/teritori","tx_page":"https://ezstaking.app/teritori/txs/${txHash}","account_page":"https://ezstaking.app/teritori/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.teritori.com/teritori","tx_page":"https://explorer.teritori.com/teritori/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/teritori-main","tx_page":"https://explorer.stavr.tech/teritori-main/tx/${txHash}"},{"kind":"guru","url":"https://teritori.explorers.guru/","tx_page":"https://teritori.explorers.guru/transaction/${txHash}"},{"kind":"Brochain","url":"https://explorer.brocha.in/teritori","tx_page":"https://explorer.brocha.in/teritori/tx/${txHash}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀","url":"https://exp.utsa.tech/teritori","tx_page":"https://exp.utsa.tech/teritori/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/teritori","tx_page":"https://www.mintscan.io/teritori/transactions/${txHash}","account_page":"https://www.mintscan.io/teritori/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/teritori","tx_page":"https://explorer.tcnetwork.io/teritori/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/teritori","tx_page":"https://staking-explorer.com/transaction.php?chain=teritori&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=teritori&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/teritori","tx_page":"https://atomscan.com/teritori/transactions/${txHash}","account_page":"https://atomscan.com/teritori/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/teritori","tx_page":"https://explorer.whenmoonwhenlambo.money/teritori/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/teritori/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/teritori","tx_page":"https://explorer.chainroot.io/teritori/transactions/${txHash}","account_page":"https://explorer.chainroot.io/teritori/accounts/${accountAddress}"}]},{"chainId":"morocco-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/terp","tx_page":"https://ping.pub/terp/tx/${txHash}","account_page":"https://ping.pub/terp/account/{$accountAddress}"},{"kind":"ping.pub","url":"https://explorer.nodestake.top","tx_page":"https://explorer.nodestake.top/terp/tx/${txHash}","account_page":"https://explorer.nodestake.top/terp/account/{$accountAddress}"},{"kind":"ZenChainLabs","url":"https://terp.zenscan.io/","tx_page":"https://terp.zenscan.io/transaction.php?hash=${txHash}","account_page":"https://terp.zenscan.io/address.php?address=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Terp-Mainnet","tx_page":"https://explorer.stavr.tech/Terp-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Terp-Mainnet/account/{$accountAddress}"}]},{"chainId":"columbus-5","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/terra","tx_page":"https://ezstaking.app/terra/txs/${txHash}","account_page":"https://ezstaking.app/terra/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/terra-luna","tx_page":"https://ping.pub/terra-luna/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/terra","tx_page":"https://atomscan.com/terra/transactions/${txHash}","account_page":"https://atomscan.com/terra/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/terra","tx_page":"https://staking-explorer.com/transaction.php?chain=terra&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=terra&addr=${accountAddress}"},{"kind":"finder","url":"https://finder.terra.money/classic","tx_page":"https://finder.terra.money/classic/tx/${txHash}","account_page":"https://finder.terra.money/classic/address/${accountAddress}"},{"kind":"finder","url":"https://finder.terrarebels.net/classic","tx_page":"https://finder.terrarebels.net/classic/tx/${txHash}","account_page":"https://finder.terrarebels.net/classic/address/${accountAddress}"}]},{"chainId":"phoenix-1","explorers":[{"kind":"atomscan","url":"https://atomscan.com/terra2","tx_page":"https://atomscan.com/terra2/transactions/${txHash}","account_page":"https://atomscan.com/terra2/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/terra2","tx_page":"https://staking-explorer.com/transaction.php?chain=terra2&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=terra2&addr=${accountAddress}"},{"kind":"finder","url":"http://finder.terra.money/","tx_page":"https://finder.terra.money/mainnet/tx/${txHash}","account_page":"https://finder.terra.money/mainnet/address/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/terra","account_page":"https://stakeflow.io/terra/accounts/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/terra","tx_page":"https://www.mintscan.io/terra/transactions/${txHash}","account_page":"https://www.mintscan.io/terra/accounts/${accountAddress}"}]},{"chainId":"tgrade-mainnet-1","explorers":[{"kind":"aneka","url":"https://tgrade.aneka.io","tx_page":"https://tgrade.aneka.io/txs/${txHash}","account_page":"https://tgrade.aneka.io/accounts/${accountAddress}"}]},{"chainId":"thorchain-1","explorers":[{"kind":"THORChain explorer","url":"https://thorchain.net","tx_page":"https://thorchain.net/#/txs/${txHash}"},{"kind":"viewblock","url":"https://viewblock.io/thorchain","tx_page":"https://viewblock.io/thorchain/tx/${txHash}"}]},{"chainId":"titan_18888-1","explorers":[{"kind":"ping.pub","url":"https://tkxscan.io","tx_page":"https://tkxscan.io/Titan/tx/${txHash}","account_page":"https://tkxscan.io/Titan/account/${accountAddress}"}]},{"explorers":[{"kind":"Tonscan","url":"https://tonscan.org/","tx_page":"https://tonscan.org/tx/${txHash}"}]},{"explorers":[{"kind":"TRONSCAN","url":"https://tronscan.org/","tx_page":"https://tronscan.org/#/transaction//${txHash}"}]},{"chainId":"umee-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/umee/","tx_page":"https://www.mintscan.io/umee/transactions/${txHash}","account_page":"https://www.mintscan.io/umee/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/umee","tx_page":"https://ping.pub/umee/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/umee","tx_page":"https://explorer.stavr.tech/umee/tx/${txHash}"},{"kind":"explorers.guru","url":"https://umee.explorers.guru","tx_page":"https://umee.explorers.guru/transaction/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/umee","tx_page":"https://atomscan.com/umee/transactions/${txHash}","account_page":"https://atomscan.com/umee/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/umee","tx_page":"https://staking-explorer.com/transaction.php?chain=umee&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=umee&addr=${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/umee","account_page":"https://stakeflow.io/umee/accounts/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/umee","tx_page":"https://explorer.stake-take.com/umee/transactions/${txHash}","account_page":"https://explorer.stake-take.com/umee/account/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/umee","tx_page":"https://exp.stakevillage.net/umee/tx/${txHash}","account_page":"https://exp.stakevillage.net/umee/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/umee","tx_page":"https://ezstaking.app/umee/txs/${txHash}","account_page":"https://ezstaking.app/umee/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/umee","tx_page":"https://explorer.whenmoonwhenlambo.money/umee/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/umee/account/${accountAddress}"}]},{"chainId":"unicorn-420"},{"chainId":"FUND-MainNet-2","explorers":[{"kind":"ping.pub","url":"https://explorer.unification.io/u","tx_page":"https://explorer.unification.io/u/tx/${txHash}","account_page":"https://explorer.unification.io/u/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.unification.chainmasters.ninja/unification","tx_page":"https://explorer.unification.chainmasters.ninja/unification/tx/${txHash}","account_page":"https://explorer.unification.chainmasters.ninja/Unification/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/unification","tx_page":"https://staking-explorer.com/transaction.php?chain=unification&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=unification&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/unification","tx_page":"https://atomscan.com/unification/transactions/${txHash}","account_page":"https://atomscan.com/unification/accounts/${accountAddress}"}]},{"chainId":"ununifi-beta-v1","explorers":[{"kind":"UnUniFi Explorer","url":"https://ununifi.io/explorer","tx_page":"https://ununifi.io/explorer/txs/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/ununifi","tx_page":"https://explorer.nodestake.top/ununifi/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/ununifi","tx_page":"https://staking-explorer.com/transaction.php?chain=ununifi&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=ununifi&addr=${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/Ununifi","tx_page":"https://exp.nodeist.net/Ununifi/tx/${txHash}"}]},{"chainId":"uptick_117-1","explorers":[{"kind":"ping.pub","url":"https://explorers.brocha.in/uptick","tx_page":"https://explorers.brocha.in/uptick/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/uptick","tx_page":"https://staking-explorer.com/transaction.php?chain=uptick&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=uptick&addr=${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/uptick","tx_page":"https://explorer.nodestake.org/uptick/tx/${txHash}"},{"kind":"BccNodes Explorer","url":"https://explorer.bccnodes.com/uptick-M","tx_page":"https://explorer.bccnodes.com/uptick-M/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/uptick-mainnet","tx_page":"https://explorer.stavr.tech/uptick-mainnet/tx/${txHash}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀 Explorer","url":"https://exp.utsa.tech/uptick","tx_page":"https://exp.utsa.tech/uptick/tx/${txHash}"},{"kind":"cosmotracker","url":"https://cosmotracker.com/uptick","tx_page":"https://cosmotracker.com/uptick/tx/${txHash}"},{"kind":"Upscan","url":"https://upscan.xyz/","tx_page":"https://upscan.xyz/uptick_117-1/tx/${txHash}"},{"kind":"Sr20de","url":"https://explorer.sr20de.xyz/uptick","tx_page":"https://explorer.sr20de.xyz/uptick/tx/${txHash}"}]},{"chainId":"xion-mainnet-1","explorers":[{"url":"https://explorer.burnt.com/xion-mainnet-1","tx_page":"https://explorer.burnt.com/xion-mainnet-1/tx/${txHash}","account_page":"https://explorer.burnt.com/xion-mainnet-1/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/xion","tx_page":"https://explorer.whenmoonwhenlambo.money/xion/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/xion/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/xion","tx_page":"https://staking-explorer.com/transaction.php?chain=xion&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=xion&addr=${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/xion","tx_page":"https://explorer.nodestake.org/xion/tx/${txHash}","account_page":"https://explorer.nodestake.org/xion/account/${accountAddress}"}]},{"chainId":"dimension_37-1","explorers":[{"kind":"explorer.xpla","url":"https://explorer.xpla.io","tx_page":"https://explorer.xpla.io/mainnet/tx/${txHash}"},{"kind":"finder","url":"https://finder.xpla.io","tx_page":"https://finder.xpla.io/mainnet/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Xpla-Mainnet","tx_page":"https://explorer.stavr.tech/Xpla-Mainnet/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/xpla","tx_page":"https://www.mintscan.io/xpla/transactions/${txHash}","account_page":"https://www.mintscan.io/xpla/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/xpla","tx_page":"https://staking-explorer.com/transaction.php?chain=xpla&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=xpla&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/xpla","tx_page":"https://ezstaking.app/xpla/txs/${txHash}","account_page":"https://ezstaking.app/xpla/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Xpla-Mainnet","tx_page":"https://explorer.stavr.tech/Xpla-Mainnet/${txHash}","account_page":"https://explorer.stavr.tech/Xpla-Mainnet/account/${accountAddress}"}]},{"chainId":"zetachain_7000-1","explorers":[{"kind":"ZetaScan","url":"https://explorer.zetachain.com/","tx_page":"https://explorer.zetachain.com/cc/tx/${txHash}"},{"kind":"BlockScout","url":"https://zetachain.blockscout.com/","tx_page":"https://zetachain.blockscout.com/tx/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/zetachain","tx_page":"https://explorer.nodestake.org/zetachain/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/zetachain","tx_page":"https://staking-explorer.com/transaction.php?chain=zetachain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=zetachain&addr=${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/zetachain/","tx_page":"https://explorer.nodeshub.online/zetachain/tx/${txHash}","account_page":"https://explorer.nodeshub.online/zetachain/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Zetachain-Mainnet","tx_page":"https://explorer.stavr.tech/Zetachain-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Zetachain-Mainnet/accounts/${accountAddress}"}]},{"chainId":"junction","explorers":[{"kind":"Airchains","url":"https://testnet.airchains.io","tx_page":"https://testnet.airchains.io/transaction/${txHash}","account_page":"https://testnet.airchains.io/address/${accountAddress}"},{"kind":"NodesGuru","url":"https://testnet.junction.explorers.guru/","tx_page":"https://testnet.junction.explorers.guru/transaction/${txHash}","account_page":"https://testnet.junction.explorers.guru/account/${accountAddress}"},{"kind":"Nodejumper","url":"https://app.nodejumper.io/airchains-testnet/"},{"kind":"UTSA","url":"https://exp.utsa.tech/airchains-test/","tx_page":"https://exp.utsa.tech/airchains-test/tx/${txHash}","account_page":"https://exp.utsa.tech/airchains-test/account/${accountAddress}"},{"kind":"Stavr Tech","url":"https://explorer.stavr.tech/Airchains-Testnet","tx_page":"https://explorer.stavr.tech/Airchains-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Airchains-Testnet/${accountAddress}"},{"kind":"CoinHunters","url":"https://explorer.coinhunterstr.com/Airchains","tx_page":"https://explorer.coinhunterstr.com/Airchains/tx/${txHash}","account_page":"https://explorer.coinhunterstr.com/Airchains/account/${accountAddress}"},{"kind":"KZVN","url":"https://explorer.kzvn.xyz/airchains","tx_page":"https://explorer.kzvn.xyz/airchains/tx/${txHash}","account_page":"https://explorer.kzvn.xyz/airchains/account/${accountAddress}"},{"kind":"Elessar Nodes","url":"https://explorer.elessarnodes.xyz/Airchains","tx_page":"https://explorer.elessarnodes.xyz/Airchains/tx/${txHash}","account_page":"https://explorer.elessarnodes.xyz/Airchains/account/${accountAddress}"},{"kind":"Apollo Sync","url":"https://explorer.apollo-sync.com/","tx_page":"https://explorer.apollo-sync.com/tx/${txHash}","account_page":"https://explorer.apollo-sync.com/account/${accountAddress}"},{"kind":"Stakeme","url":"https://airchains.exploreme.pro/","tx_page":"https://airchains.exploreme.pro/transaction/${txHash}"},{"kind":"StakerHouse","url":"https://cosmotracker.com/airchains","tx_page":"https://cosmotracker.com/airchains/tx/${txHash}","account_page":"https://cosmotracker.com/airchains/account/${accountAddress}"},{"kind":"IT Rocket","url":"https://testnet.itrocket.net/airchains/","tx_page":"https://testnet.itrocket.net/airchains//tx/${txHash}","account_page":"https://testnet.itrocket.net/airchains/account/${accountAddress}"},{"kind":"Validator VN ","url":"https://explorer.validatorvn.com/Airchains-Testnet","tx_page":"https://explorer.validatorvn.com/Airchains-Testnet/tx/${txHash}","account_page":"https://explorer.validatorvn.com/Airchains-Testnet/account/${accountAddress}"}]},{"chainId":"sandbox-01","explorers":[{"kind":"ping.pub","url":"https://explorer.sandbox-01.aksh.pw/akash","tx_page":"https://explorer.sandbox-01.aksh.pw/akash/tx/${txHash}"}]},{"chainId":"constantine-3","explorers":[{"kind":"archwayscan","url":"https://testnet.archway.explorers.guru","tx_page":"https://testnet.archway.explorers.guru/transaction/${txHash}"}]},{"chainId":"arkeo","explorers":[{"url":"https://explorer.nodexcapital.com/arkeo","tx_page":"https://explorer.nodexcapital.com/arkeo/tx/${txHash}"}]},{"chainId":"artela_11820-1","explorers":[{"kind":"Artela Network","url":"https://testnet-scan.artela.network","tx_page":"https://testnet-scan.artela.network/tx/${txHash}"}]},{"chainId":"aura_6321-3","explorers":[{"kind":"aurascan","url":"https://euphoria.aurascan.io","tx_page":"https://euphoria.aurascan.io/tx/${txHash}","account_page":"https://euphoria.aurascan.io/address/${accountAddress}"}]},{"chainId":"axelar-testnet-lisbon-3","explorers":[{"kind":"axelarscan","url":"https://testnet.axelarscan.io","tx_page":"https://testnet.axelarscan.io/tx/${txHash}"},{"kind":"mintscan","url":"https://mintscan.io/axelar-testnet","tx_page":"https://mintscan.io/axelar-testnet/txs/${txHash}","account_page":"https://mintscan.io/axelar-testnet/account/${accountAddress}"}]},{"chainId":"bbn-test3","explorers":[{"kind":"babylonscan","url":"https://babylonscan.io"},{"kind":"explorers.guru","url":"https://testnet.babylon.explorers.guru","tx_page":"https://testnet.babylon.explorers.guru/transaction/${txHash}"}]},{"chainId":"bitcanna-dev-1","explorers":[{"url":"https://explorer.thesilverfox.pro/bitcanna","tx_page":"https://explorer.thesilverfox.pro/bitcanna/tx/${txHash}"},{"url":"https://testnets-cosmos.mintthemoon.xyz/bitcanna","tx_page":"https://testnets-cosmos.mintthemoon.xyz/bitcanna/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Bitcanna-DEV","tx_page":"https://explorer.stavr.tech/Bitcanna-DEV/tx/${txHash}","account_page":"https://explorer.stavr.tech/Bitcanna-DEV/account/${accountAddress}"},{"url":"https://explorer.kjnodes.com/bitcanna-testnet","tx_page":"https://explorer.kjnodes.com/bitcanna-testnet/tx/${txHash}"},{"url":"https://explorer.stavr.tech/bitcanna-dev","tx_page":"https://explorer.stavr.tech/bitcanna-dev/tx/${txHash}"}]},{"chainId":"blockx_19077-1"},{"chainId":"cascadia_6102-1","explorers":[{"kind":"validator_explorer","url":"https://validator.cascadia.foundation/","tx_page":"https://validator.cascadia.foundation/transactions/${txHash}","account_page":"https://validator.cascadia.foundation/accounts/${accountAddress}"},{"kind":"block_explorer","url":"https://explorer.cascadia.foundation/","tx_page":"https://explorer.cascadia.foundation/tx/${txHash}","account_page":"https://explorer.cascadia.foundation/address/${accountAddress}"}]},{"chainId":"mocha-4","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/celestia-testnet","tx_page":"https://mintscan.io/celestia-testnet/txs/${txHash}"},{"kind":"πŸš€ITRocketπŸš€","url":"https://testnet.itrocket.net/celestia","tx_page":"https://testnet.itrocket.net/celestia/tx/${txHash}","account_page":"https://testnet.itrocket.net/celestia/account/${accountAddress}"},{"kind":"CrypTech","url":"https://explorers.cryptech.com.ua/Celestia-Testnet","tx_page":"https://explorers.cryptech.com.ua/Celestia-Testnet/tx/${txHash}","account_page":"https://explorers.cryptech.com.ua/Celestia-Testnet/account/${accountAddress}"},{"kind":"DTEAM | Explorer","url":"https://explorer.testnet.dteam.tech/celestia","tx_page":"https://explorer.testnet.dteam.tech/celestia/tx/${txHash}","account_page":"https://explorer.testnet.dteam.tech/celestia/account/${accountAddress}"},{"kind":"Relaxed Explorer πŸ¦₯","url":"https://testnet.explorer.stakeandrelax.net/celestia","tx_page":"https://testnet.explorer.stakeandrelax.net/celestia/transaction/${txHash}","account_page":"https://testnet.explorer.stakeandrelax.net/celestia/account/${accountAddress}"}]},{"chainId":"babajaga-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/C4E-Testnet","tx_page":"https://explorer.stavr.tech/C4E-Testnet/transactions/${txHash}"},{"kind":"explorer","url":"https://explorer-testnet.c4e.io/","tx_page":"https://explorer-testnet.c4e.io/transactions/${txHash}"}]},{"chainId":"cheqd-testnet-6","explorers":[{"kind":"bigdipper","url":"https://testnet-explorer.cheqd.io/","tx_page":"https://testnet-explorer.cheqd.io/transactions/${txHash}"}]},{"chainId":"chimba-testnet","explorers":[{"kind":"bigdipper","url":"https://explorer.testnet.chimba.ooo/","tx_page":"https://explorer.testnet.chimba.ooo/transactions/${txHash}"}]},{"chainId":"banksy-testnet-3","explorers":[{"url":"https://explorer.nodexcapital.com/composable-3","tx_page":"https://explorer.nodexcapital.com/composable-3/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Composable-Testnet4","tx_page":"https://explorer.stavr.tech/Composable-Testnet4/tx/${txHash}"},{"url":"https://explorer.indonode.net/composable-testnet-3","tx_page":"https://explorer.indonode.net/composable-testnet-3/tx/${txHash}"},{"url":"https://explorer.sr20de.xyz/Composible-3","tx_page":"https://explorer.sr20de.xyz/Composible-3/tx/${txHash}"}]},{"chainId":"kitten-04","explorers":[]},{"chainId":"coreum-testnet-1","explorers":[{"kind":"Coreum","url":"https://explorer.testnet-1.coreum.dev/coreum","tx_page":"https://explorer.testnet-1.coreum.dev/coreum/transactions/${txHash}","account_page":"https://explorer.testnet-1.coreum.dev/coreum/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/coreum-testnet","tx_page":"https://www.mintscan.io/coreum-testnet/transactions/${txHash}","account_page":"https://www.mintscan.io/coreum-testnet/accounts/${accountAddress}"}]},{"chainId":"theta-testnet-001","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/cosmoshub-testnet","tx_page":"https://mintscan.io/cosmoshub-testnet/txs/${txHash}"},{"kind":"Big Dipper","url":"https://explorer.theta-testnet.polypore.xyz/","tx_page":"https://explorer.theta-testnet.polypore.xyz/transactions/${txHash}"}]},{"chainId":"provider","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/ics-testnet-provider","tx_page":"https://mintscan.io/ics-testnet-provider/tx/${txHash}"},{"kind":"Ping.pub","url":"https://explorer.polypore.xyz/provider","tx_page":"https://explorer.polypore.xyz/provider/tx/${txHash}"},{"kind":"ITRocket","url":"https://testnet.itrocket.net/cosmos","tx_page":"https://testnet.itrocket.net/cosmos/tx/${txHash}","account_page":"https://testnet.itrocket.net/cosmos/account/${accountAddress}","validator_page":"https://testnet.itrocket.net/cosmos/staking/${validatorAddress}","proposal_page":"https://testnet.itrocket.net/cosmos/gov/${proposalId}","block_page":"https://testnet.itrocket.net/cosmos/block/${blockHeight}"}]},{"chainId":"malaga-420","explorers":[{"kind":"BIG DIPPER","url":"https://block-explorer.malaga-420.cosmwasm.com/","tx_page":"https://block-explorer.malaga-420.cosmwasm.com/transactions/${txHash}"}]},{"chainId":"coss-testnet-1"},{"chainId":"cudos-testnet-public-3","explorers":[{"kind":"bigdipper-testnet","url":"https://explorer.testnet.cudos.org/","tx_page":"https://explorer.testnet.cudos.org/transactions/${txHash}","account_page":"https://explorer.testnet.cudos.org/accounts/${accountAddress}"}]},{"chainId":"deardoge-testnet","explorers":[{"kind":"Dear Doge Ping Pub","url":"https://testnet-explorer.deardoge.org/deardoge","tx_page":"https://testnet-explorer.deardoge.org/deardoge/tx/${txHash}"}]},{"chainId":"morpheus-apollo-3","explorers":[{"kind":"bigdipper","url":"https://testnet.bigdipper.live/desmos","tx_page":"https://testnet.live/desmos/transactions/${txHash}","account_page":"https://testnet.bigdipper.live/desmos/accounts/${accountAddress}"}]},{"chainId":"dhealth-testnet-2","explorers":[]},{"chainId":"vota-testnet","explorers":[{"kind":"Dora Vota Ping Pub","url":"https://maci-explorer-test.dorafactory.org","tx_page":"https://maci-explorer-test.dorafactory.org/dora/tx/${txHash}"}]},{"chainId":"dydx-testnet-4","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/dydx-testnet","tx_page":"https://www.mintscan.io/dydx-testnet/txs/${txHash}","account_page":"https://www.mintscan.io/dydx-testnet/account/${accountAddress}"}]},{"chainId":"dymension_1405-1","explorers":[{"kind":"dymscan","url":"https://pg.dym.fyi/","tx_page":"https://pg.dym.fyi//tx/${txHash}"}]},{"chainId":"elysicstestnet-1","explorers":[{"kind":"ping.pub","url":"https://testnet.ping.pub/elys","tx_page":"https://testnet.ping.pub/elys/tx/${txHash}","account_page":"https://testnet.ping.pub/elys/account/${accountAddress}"},{"kind":"itrocket","url":"https://testnet.itrocket.net/elys","tx_page":"https://testnet.itrocket.net/elys/staking/tx/${txHash}","account_page":"https://testnet.itrocket.net/elys/account/${accountAddress}"}]},{"chainId":"empe-testnet-2","explorers":[{"kind":"empe","url":"https://explorer-testnet.empe.io","tx_page":"https://explorer-testnet.empe.io/transactions/${txHash}"}]},{"chainId":"circulus-1","explorers":[{"kind":"exploreme","url":"https://empowerchain.exploreme.pro","tx_page":"https://empowerchain.exploreme.pro/transaction/${txHash}"},{"kind":"ping.pub","url":"https://exp.nodeist.net/Empower","tx_page":"https://exp.nodeist.net/Empower/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Empower","tx_page":"https://explorer.stavr.tech/Empower/tx/${txHash}"},{"kind":"ping.pub","url":"https://explorer.nodestake.top/empower-testnet","tx_page":"https://explorer.nodestake.top/empower-testnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://testnet.itrocket.net/empower/staking","tx_page":"https://testnet.itrocket.net/empower/staking/tx/${txHash}"},{"kind":"ping.pub","url":"https://explorer.stavr.tech/empower","tx_page":"https://explorer.stavr.tech/empower/tx/${txHash}"}]},{"chainId":"epix_4243-1","explorers":[{"kind":"Epix Explorer","url":"https://testnet.epix.zone/epix","tx_page":"https://testnet.epix.zone/epix/tx/${txHash}"}]},{"chainId":"evmos_9000-4","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/evmos-testnet","tx_page":"https://mintscan.io/evmos-testnet/txs/${txHash}"},{"kind":"NodesGuru","url":"https://testnet.evmos.explorers.guru/","tx_page":"https://testnet.evmos.explorers.guru/transaction/${txHash}"}]},{"chainId":"dorado-1","explorers":[{"kind":"bigdipper","url":"https://explore-dorado.fetch.ai","tx_page":"https://explore-dorado.fetch.ai/transactions/${txHash}"},{"kind":"azoyalabs","url":"https://fetchstation.azoyalabs.com/testnet","tx_page":"https://fetchstation.azoyalabs.com/testnet/explorer/transactions/${txHash}","account_page":"https://fetchstation.azoyalabs.com/testnet/explorer/address/${accountAddress}"}]},{"chainId":"fiamma-testnet-1","explorers":[{"kind":"ping.pub","url":"https://testnet-explorer.fiammachain.io/"}]},{"chainId":"ebony-2","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/finschia-testnet","tx_page":"https://www.mintscan.io/finschia-testnet/tx/${txHash}","account_page":"https://www.mintscan.io/finschia-testnet/address/${accountAddress}"}]},{"chainId":"galactica_9302-1","explorers":[{"kind":"ping.pub","url":"https://ping.pfc.zone/galactica-testnet","tx_page":"https://ping.pfc.zone/galactica-testnet/tx/${txHash}","account_page":"https://ping.pfc.zone/galactica-testnet/account/${accountAddress}"}]},{"chainId":"gitopia-janus-testnet-2","explorers":[{"kind":"explorer.humans.zone","url":"https://gitopia.explorers.guru/","tx_page":"https://gitopia.explorers.guru/transaction/${txHash}"}]},{"chainId":"berberis-1","explorers":[{"kind":"hedgescan","url":"https://berberis.hedgescan.io","tx_page":"https://berberis.hedgescan.io/txs/${txHash}"}]},{"chainId":"testnet-1","explorers":[{"kind":"explorer.humans.zone","url":"https://explorer.humans.zone/","tx_page":"https://explorer.humans.zone/humans-testnet/tx/${txHash}"}]},{"chainId":"prajna-1","explorers":[{"kind":"Hypersign","url":"https://explorer.hypersign.id/hypersign-prajna-testnet","tx_page":"https://explorer.hypersign.id/hypersign-prajna-testnet/tx/${txHash}"}]},{"chainId":"pandora-8","explorers":[{"kind":"ixoworld","url":"https://blockscan.testnet.ixo.earth/ixo","tx_page":"https://blockscan.testnet.ixo.earth/ixo/transactions/${txHash}","account_page":"https://blockscan.testnet.ixo.earth/ixo/accounts/${accountAddress}"}]},{"chainId":"imversed-test-1","explorers":[{"kind":"Big Dipper","url":"https://tex-s.imversed.com","tx_page":"https://tex-s.imversed.com/transactions/${txHash}"}]},{"chainId":"injective-888","explorers":[{"kind":"injectiveprotocol","url":"https://testnet.explorer.injective.network/","tx_page":"https://testnet.explorer.injective.network/transaction/${txHash}"}]},{"chainId":"canine-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Jackal-Testnet","tx_page":"https://explorer.stavr.tech/Jackal-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Jackal-Testnet/account/${accountAddress}"},{"kind":"ping.pub","url":"https://testnet.ping.pub/jackal","tx_page":"https://testnet.ping.pub/jackal/tx/${txHash}"}]},{"chainId":"mesomelas-1","explorers":[{"kind":"PingPub","url":"https://testnet-explorer.brocha.in/Jackal%20v4","tx_page":"https://testnet-explorer.brocha.in/Jackal%20v4/tx/${txHash}","account_page":"https://testnet-explorer.brocha.in/Jackal%20v4/account/${accountAddress}"}]},{"chainId":"uni-6","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Juno-Testnet","tx_page":"https://explorer.stavr.tech/Juno-Testnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/Juno-Testnet/account/${accountAddress}"}]},{"chainId":"kichain-t-4","explorers":[{"kind":"kifoundation","url":"https://kichain-t-4.blockchain.ki/","tx_page":"https://kichain-t-4.blockchain.ki/transactions/${txHash}"}]},{"chainId":"kima_testnet","explorers":[{"kind":"Kima Network","url":"https://explorer-testnet.kima.finance/","tx_page":"https://explorer-testnet.kima.finance/transactions/${txHash}"}]},{"chainId":"harpoon-4","explorers":[{"kind":"explorers.guru","url":"https://kujira.explorers.guru","tx_page":"https://kujira.explorers.guru/transaction/${txHash}"}]},{"chainId":"kaon-1","explorers":[{"kind":"mintscan","url":"https://mintscan.io/kyve-testnet","tx_page":"https://mintscan.io/kyve-testnet/txs/${txHash}","account_page":"https://mintscan.io/kyve-testnet/account/${accountAddress}"},{"kind":"KYVE Explorer","url":"https://explorer.kyve.network/kaon","tx_page":"https://explorer.kyve.network/kaon/tx/${txHash}","account_page":"https://explorer.kyve.network/kaon/account/${accountAddress}"}]},{"chainId":"lava-testnet-2","explorers":[{"kind":"explorers.guru","url":"https://lava.explorers.guru/","tx_page":"https://lava.explorers.guru//transaction/${txHash}","account_page":"https://lava.explorers.guru//account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Lava-Testnet","tx_page":"https://explorer.stavr.tech/Lava-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Lava-Testnet/account/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/lava-testnet","tx_page":"https://explorer.nodestake.org/lava-testnet/tx/${txHash}","account_page":"https://explorer.nodestake.org/lava-testnet/account/${accountAddress}"},{"kind":"πŸš€ITRocketπŸš€","url":"https://testnet.itrocket.net/lava","tx_page":"https://testnet.itrocket.net/lava/tx/${txHash}","account_page":"https://testnet.itrocket.net/lava/account/${accountAddress}"}]},{"chainId":"likecoin-public-testnet-5","explorers":[{"kind":"bigdipper","url":"https://testnet.bigdipper.live/likecoin","tx_page":"https://testnet.bigdipper.live/likecoin/transactions/${txHash}","account_page":"https://testnet.bigdipper.live/likecoin/accounts/${accountAddress}"},{"kind":"lunie-ng","url":"https://likecoin-public-testnet-5.netlify.app/"}]},{"chainId":"lumenx-test","explorers":[{"kind":"ping.pub","url":"https://testnet.explorer.chaintools.tech/lumenx","tx_page":"https://testnet.explorer.chaintools.tech/lumenx/tx/${txHash}"}]},{"chainId":"manifest-ledger-beta","explorers":[{"kind":"Default Explorer","url":"https://manifest-explorer.vercel.app/","tx_page":"https://manifest-explorer.vercel.app/manifest/tx"}]},{"chainId":"mantra-hongbai-1"},{"chainId":"mantra-dukong-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/mantra-testnet","tx_page":"https://mintscan.io/mantra-testnet/txs/${txHash}","account_page":"https://mintscan.io/mantra-testnet/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.mantrachain.io","tx_page":"https://explorer.mantrachain.io/MANTRA-Dukong/tx/${txHash}","account_page":"https://explorer.mantrachain.io/MANTRA-Dukong/account/${accountAddress}"}]},{"chainId":"ares-1","explorers":[{"kind":"Mars Protocol","url":"https://testnet-explorer.marsprotocol.io","tx_page":"https://testnet-explorer.marsprotocol.io/transactions/${txHash}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/t-mars/","tx_page":"https://exp.nodeist.net/t-mars/transactions/${txHash}"}]},{"chainId":"mnova_10096-1"},{"chainId":"narwhal-2","explorers":[{"kind":"ping.pub","url":"https://ping.pfc.zone/narwhal-testnet","tx_page":"https://ping.pfc.zone/narwhal-testnet/tx/${txHash}"}]},{"chainId":"neura_267-1","explorers":[{"kind":"ankrscan-neura","url":"https://testnet.explorer.neuraprotocol.io","tx_page":"https://testnet.explorer.neuraprotocol.io/tx/${txHash}"},{"kind":"blockscout","url":"https://explorer.neura-testnet.ankr.com","tx_page":"https://explorer.neura-testnet.ankr.com/tx/${txHash}"}]},{"chainId":"pion-1","explorers":[{"kind":"Ping.pub Explorer from Hypha","url":"https://explorer.rs-testnet.polypore.xyz/pion-1","tx_page":"https://explorer.rs-testnet.polypore.xyz/pion-1/tx/${txHash}","account_page":"https://explorer.rs-testnet.polypore.xyz/baryon-1/account/${accountAddress}"},{"kind":"Mintscan","url":"https://mintscan.io/neutron-testnet","tx_page":"https://mintscan.io/neutron-testnet/txs/${txHash}","account_page":"https://mintscan.io/neutron-testnet/account/${accountAddress}"}]},{"chainId":"nibiru-testnet-1","explorers":[{"kind":"Nibiru Foundation","url":"https://explorer.nibiru.fi/nibiru-testnet-1","tx_page":"https://explorer.nibiru.fi/nibiru-tesnet-1/tx/${txHash}","account_page":"https://explorer.nibiru.fi/nibiru-testnet-1/account/${accountAddress}"}]},{"chainId":"nibiru-testnet-2","explorers":[{"kind":"Nibiru Foundation","url":"https://explorer.nibiru.fi/nibiru-testnet-2","tx_page":"https://explorer.nibiru.fi/nibiru-tesnet-2/tx/${txHash}","account_page":"https://explorer.nibiru.fi/nibiru-testnet-2/account/${accountAddress}"}]},{"chainId":"nibiru-testnet-3","explorers":[{"kind":"Nibiru Foundation","url":"https://explorer.nibiru.fi/nibiru-testnet-3","tx_page":"https://explorer.nibiru.fi/nibiru-tesnet-3/tx/${txHash}","account_page":"https://explorer.nibiru.fi/nibiru-testnet-3/account/${accountAddress}"}]},{"chainId":"nillion-chain-testnet-1","explorers":[{"url":"https://testnet.nillion.explorers.guru","tx_page":"https://testnet.nillion.explorers.guru/transaction/${txHash}","account_page":"https://testnet.nillion.explorers.guru/account/${accountAddress}"},{"url":"https://testnet.ping.pub/nillion","tx_page":"https://testnet.ping.pub/nillion/tx/${txHash}","account_page":"https://testnet.ping.pub/nillion/account/${accountAddress}"}]},{"chainId":"grand-1","explorers":[{"kind":"mintscan","url":"https://mintscan.io/noble-testnet","tx_page":"https://mintscan.io/noble-testnet/txs/${txHash}"},{"kind":"ping.pub","url":"https://explore.strange.love/grand-1","tx_page":"https://explore.strange.love/grand-1/tx/${txHash}"}]},{"chainId":"nois-testnet-005","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Nois-Testnet","tx_page":"https://explorer.stavr.tech/Nois-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Nois-Testnet/account/${accountAddress}"},{"kind":"explorers.guru","url":"https://testnet.nois.explorers.guru","tx_page":"https://testnet.nois.explorers.guru/transaction/${txHash}","account_page":"https://testnet.nois.explorers.guru/account/${accountAddress}"}]},{"chainId":"rila-1","explorers":[{"kind":"Nolus Explorer","url":"https://explorer-rila.nolus.io/rila-1/","tx_page":"https://explorer-rila.nolus.io/rila-1/tx/${txHash}","account_page":"https://explorer-rila.nolus.io/rila-1/account/${accountAddress}"}]},{"chainId":"nomic-testnet-6","explorers":[]},{"chainId":"sandbox","explorers":[{"kind":"ping.pub","url":"https://sandbox-blocks.nymtech.net/sandbox","tx_page":"https://sandbox-blocks.nymtech.net/sandbox/tx/${txHash}"}]},{"chainId":"okp4-nemeton-1","explorers":[{"kind":"ping.pub","url":"https://testnet.ping.pub/OKP4%20testnet","tx_page":"https://testnet.ping.pub/OKP4%20testnet/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/OKP4-Testnet","tx_page":"https://explorer.stavr.tech/OKP4-Testnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://explore.okp4.network/OKP4%20testnet","tx_page":"https://explore.okp4.network/OKP4%20testnet/tx/${txHash}"}]},{"chainId":"osmo-test-5","explorers":[{"kind":"mintscan","url":"https://mintscan.io/osmosis-testnet","tx_page":"https://mintscan.io/osmosis-testnet/txs/${txHash}","account_page":"https://mintscan.io/osmosis-testnet/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.osmotest5.osmosis.zone","tx_page":"https://explorer.osmotest5.osmosis.zone/osmo-test-5/tx/${txHash}","account_page":"https://explorer.osmotest5.osmosis.zone/osmo-test-5/account/${accountAddress}"}]},{"chainId":"INVALID-ID-permtestnet-testnet-1","explorers":[{"kind":"bigdipper","url":"https://explorer.testnet.perm.ooo/","tx_page":"https://explorer.testnet.perm.ooo/transactions/${txHash}"}]},{"chainId":"test-core-1","explorers":[{"kind":"ping.pub","url":"https://testnet.ping.pub/test-core-1/","tx_page":"https://testnet.ping.pub/test-core-1/tx/${txHash}"},{"kind":"mintscan","url":"https://mintscan.io/persistence-testnet","tx_page":"https://mintscan.io/persistence-testnet/txs/${txHash}","account_page":"https://mintscan.io/persistence-testnet/account/${accountAddress}"}]},{"chainId":"test-core-2","explorers":[{"kind":"mintscan","url":"https://mintscan.io/persistence-testnet","tx_page":"https://mintscan.io/persistence-testnet/txs/${txHash}","account_page":"https://mintscan.io/persistence-testnet/account/${accountAddress}"},{"kind":"StakeFlow","url":"https://stakeflow.io/persistence-testnet","tx_page":"https://stakeflow.io/persistence-testnet/transactions/${txHash}","account_page":"https://stakeflow.io/persistence-testnet/accounts/${accountAddress}"},{"kind":"baryon","url":"https://testnet-explorer.baryon.dev/test-core-2","tx_page":"https://testnet-explorer.baryon.dev/test-core-2/tx/{txHash}","account_page":"https://testnet-explorer.baryon.dev/test-core-2/account/${accountAddress}"}]},{"chainId":"planq_7077-1","explorers":[{"kind":"EVM","url":"https://evm-atlas.planq.network","tx_page":"https://evm-atlas.planq.network/tx/${txHash}"},{"kind":"Konsortech","url":"https://testnet-explorer.konsortech.xyz/planq","tx_page":"https://testnet-explorer.konsortech.xyz/planq/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/planq-testnet","tx_page":"https://explorer.whenmoonwhenlambo.money/planq-testnet/tx/${txHash}"}]},{"chainId":"pocket-beta","explorers":[{"kind":"πŸ” POKTScan Explorer πŸ”Ž","url":"https://shannon-beta.poktscan.com/","tx_page":"https://shannon-beta.poktscan.com/tx/${txHash}","account_page":"https://shannon-beta.poktscan.com/accounts/${accountAddress}"},{"kind":"πŸ—Ί Shannon Explorer (stakenodes.org) πŸ—Ί","url":"https://shannon.beta.testnet.pokt.network/","tx_page":"https://shannon.beta.testnet.pokt.network/poktroll/tx/${txHash}","account_page":"https://shannon.beta.testnet.pokt.network/poktroll/account/${accountAddress}"}]},{"chainId":"indigo-1","explorers":[{"kind":"PingPub","url":"https://testnets.cosmosrun.info/pryzm-indigo-1","tx_page":"https://testnets.cosmosrun.info/pryzm-indigo-1/tx/${txHash}","account_page":"https://testnets.cosmosrun.info/pryzm-indigo-1/account/${accountAddress}"},{"kind":"ITRocket","url":"https://testnet.itrocket.net/pryzm","tx_page":"https://testnet.itrocket.net/pryzm/tx/${txHash}","account_page":"https://testnet.itrocket.net/pryzm/account/${accountAddress}"}]},{"chainId":"quasar-test-1"},{"chainId":"rhye-2","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Quicksilver","tx_page":"https://explorer.stavr.tech/Quicksilver/tx/${txHash}","account_page":"https://explorer.stavr.tech/Quicksilver/account/${accountAddress}"},{"url":"https://testnet.quicksilver.explorers.guru","tx_page":"https://testnet.quicksilver.explorers.guru/transaction/${txHash}","account_page":"https://testnet.quicksilver.explorers.guru/account/${accountAddress}"}]},{"chainId":"earendel-1","explorers":[{"kind":"pingfork","url":"https://explorer.theamsolutions.info/qwoyn-testnet/","tx_page":"https://explorer.theamsolutions.info/qwoyn-testnet/tx/${txHash}","account_page":"https://explorer.theamsolutions.info/qwoyn-testnet/account/${accountAddress}"}]},{"chainId":"ssc-testnet-2","explorers":[{"kind":"mintscan","url":"https://mintscan.io/saga-testnet","tx_page":"https://www.mintscan.io/saga-testnet/tx/${txHash}","account_page":"https://mintscan.io/saga-testnet/address/${accountAddress}"}]},{"chainId":"pulsar-3","explorers":[{"kind":"ping.pub","url":"https://testnet.ping.pub/secret","tx_page":"https://testnet.ping.pub/secret/tx/${txHash}"}]},{"chainId":"atlantic-1","explorers":[{"kind":"explorers.guru","url":"https://sei.explorers.guru","tx_page":"https://sei.explorers.guru/transaction/${txHash}"},{"kind":"Brochain","url":"https://testnet-explorer.brocha.in/sei","tx_page":"https://testnet-explorer.brocha.in/sei/tx/${txHash}"}]},{"chainId":"atlantic-2","explorers":[{"kind":"blockscout","url":"https://seitrace.com/?chain=atlantic-2","tx_page":"https://seitrace.com/tx/${txHash}?chain=atlantic-2"},{"kind":"celatone","url":"https://www.seiscan.app/atlantic-2","tx_page":"https://www.seiscan.app/atlantic-2/txs/${txHash}"},{"kind":"explorers.guru","url":"https://testnet.sei.explorers.guru","tx_page":"https://testnet.sei.explorers.guru/transaction/${txHash}"},{"kind":"Brochain","url":"https://testnet-explorer.brocha.in/sei%20atlantic%202","tx_page":"https://testnet-explorer.brocha.in/sei%20atlantic%202/tx/${txHash}"}]},{"chainId":"self-dev-1","explorers":[{"kind":"Selfchain","url":"https://explorer-devnet.selfchain.xyz","tx_page":"https://explorer-devnet.selfchain.xyz/self/transactions/${txHash}"}]},{"chainId":"sge-network-3","explorers":[{"kind":"Sge BlockExplorer","url":"https://blockexplorer.testnet.sgenetwork.io/","tx_page":"https://blockexplorer.testnet.sgenetwork.io/sge-network/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Sge-Testnet","tx_page":"https://explorer.stavr.tech/Sge-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Sge-Testnet/account/${accountAddress}"}]},{"chainId":"sge-network-4","explorers":[{"kind":"Sge BlockExplorer","url":"https://blockexplorer.testnet.sgenetwork.io/","tx_page":"https://blockexplorer.testnet.sgenetwork.io/sge-network/tx/${txHash}"}]},{"chainId":"yulei-2.1","explorers":[{"kind":"Shentu Explorer","url":"https://explorer.shentu.org/?chain=yulei-2.1","tx_page":"https://explorer.shentu.org/transactions/${txHash}?chain=yulei-2.1"}]},{"chainId":"fivenet","explorers":[{"kind":"sixscan","url":"https://sixscan.io/fivenet","tx_page":"https://sixscan.io/fivenet/tx/${txHash}"}]},{"chainId":"soarchaintestnet","explorers":[{"kind":"Soarchain Explorer","url":"https://explorer.soarchain.com/soarchain","tx_page":"https://explorer.soarchain.com/soarchain/tx/${txHash}"},{"kind":"Kjnodes Explorer","url":"https://explorer.kjnodes.com/soarchain-testnet","tx_page":"https://explorer.kjnodes.com/soarchain-testnet/tx/${txHash}"}]},{"chainId":"sourcetest-1","explorers":[{"kind":"Nodestake","url":"https://explorer.nodestake.top/source-testnet","tx_page":"https://explorer.nodestake.top/source-testnet/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Source","tx_page":"https://explorer.stavr.tech/Source/tx/${txHash}"},{"kind":"SR20DE","url":"https://explorer.sr20de.xyz/Source-testnet","tx_page":"https://explorer.sr20de.xyz/Source-testnet/txs/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/source-testnet","tx_page":"https://explorer.whenmoonwhenlambo.money/source-testnet/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/source-testnet/account/${accountAddress}"}]},{"chainId":"elgafar-1","explorers":[{"kind":"ping.pub","url":"https://testnet-explorer.publicawesome.dev/stargaze","tx_page":"https://testnet-explorer.publicawesome.dev/stargaze/tx/${txHash}"}]},{"chainId":"stateset-1-testnet","explorers":[{"kind":"bigdipper","url":"https://explore.stateset.zone","tx_page":"https://explore.stateset.zone/transactions/${txHash}"}]},{"chainId":"stride-internal-1","explorers":[{"kind":"PingPub","url":"https://testnet.ping.pub/stride","tx_page":"https://testnet.ping.pub/stride/tx/${txHash}"}]},{"chainId":"sunrise-test-0.1","explorers":[]},{"chainId":"swisstronik_1291-1","explorers":[{"kind":"ping.pub","url":"https://explorer-cosmos.testnet.swisstronik.com/swisstronik","tx_page":"https://explorer-cosmos.testnet.swisstronik.com/swisstronik/tx/${txHash}"}]},{"chainId":"symphony-testnet-3"},{"chainId":"amber-2","explorers":[{"kind":"Big Dipper","url":"https://explorer-testnet.synternet.com/","tx_page":"https://explorer-testnet.synternet.com/transactions/${txHash}"}]},{"chainId":"90u-4","explorers":[{"kind":"Ping Pub","url":"https://explorer.nodestake.top/terp-testnet","tx_page":"https://explorer.nodestake.top/terp-testnet/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com","tx_page":"https://explorer.nodexcapital.com/terp/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/terp/account/{$accountAddress}"}]},{"chainId":"90u-2","explorers":[{"kind":"Ping Pub","url":"https://explorer.nodestake.top/terp-testnet","tx_page":"https://explorer.nodestake.top/terp-testnet/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com","tx_page":"https://explorer.nodexcapital.com/terp/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/terp/account/{$accountAddress}"}]},{"chainId":"pisco-1","explorers":[{"kind":"finder","url":"http://finder.terra.money/testnet/","tx_page":"https://finder.terra.money/testnet/tx/${txHash}"}]},{"chainId":"titan_18889-1","explorers":[{"kind":"ping.pub","url":"https://titan-testnet-explorer-light.titanlab.io","tx_page":"https://titan-testnet-explorer-light.titanlab.io/Titan%20Testnet/tx/${txHash}","account_page":"https://titan-testnet-explorer-light.titanlab.io/Titan%20Testnet/account/${accountAddress}"}]},{"chainId":"tucana_712-1","explorers":[{"kind":"Blockscout","url":"https://explorer.birdee-2.tucana.zone/","tx_page":"https://explorer.birdee-2.tucana.zone/tx/${txHash}"}]},{"chainId":"ulas","explorers":[{"kind":"ulas-scan","url":"https://testnet-explorer.ulas.network","tx_page":"https://testnet-explorer.ulas.network/ulas/tx/${txHash}"}]},{"chainId":"FUND-TestNet-2","explorers":[{"kind":"ping.pub","url":"https://explorer-testnet.unification.io/u","tx_page":"https://explorer-testnet.unification.io/u/tx/${txHash}","account_page":"https://explorer-testnet.unification.io/u/account/${accountAddress}"}]},{"chainId":"union-testnet-8","explorers":[{"kind":"ping.pub","url":"https://explorer.testnet-8.union.build/union","tx_page":"https://explorer.testnet-8.union.build/union/tx/${txHash}","account_page":"https://explorer.testnet-8.union.build/union/account/${accountAddress}"},{"kind":"explorers.guru","url":"https://testnet.union.explorers.guru","tx_page":"https://testnet.union.explorers.guru/transaction/${txHash}","account_page":"https://testnet.union.explorers.guru/account/${accountAddress}"}]},{"chainId":"uptick_7000-2","explorers":[{"kind":"ping.pub","url":"https://explorer.testnet.uptick.network/uptick-network-testnet","tx_page":"https://explorer.testnet.uptick.network/uptick-network-testnet/tx/${txHash}"},{"kind":"Nodes.Guru","url":"https://uptick.explorers.guru/","tx_page":"https://uptick.explorers.guru/transaction/${txHash}"}]},{"chainId":"buenavista-1","explorers":[]},{"chainId":"INVALID-ID-wavehashtestnet-testnet-1","explorers":[{"kind":"atomscan","url":"https://atomscan.com/directory/testnet/wavehashtestnet","tx_page":"https://atomscan.com/directory/testnet/wavehashtestnet/transactions/${txHash}"}]},{"chainId":"xion-testnet-1","explorers":[{"url":"https://explorer.burnt.com/xion-testnet-1","tx_page":"https://explorer.burnt.com/xion-testnet-1/tx/${txHash}","account_page":"https://explorer.burnt.com/xion-testnet-1/account/${accountAddress}"},{"kind":"ITRocket","url":"https://testnet.itrocket.net/burnt","tx_page":"https://testnet.itrocket.net/burnt/tx/${txHash}","account_page":"https://testnet.itrocket.net/burnt/account/${accountAddress}"}]},{"chainId":"cube_47-5","explorers":[{"kind":"explorer.xpla","url":"https://explorer.xpla.io/testnet","tx_page":"https://explorer.xpla.io/testnet/mainnet/tx/${txHash}"},{"kind":"finder","url":"https://finder.xpla.io/testnet","tx_page":"https://finder.xpla.io/testnet/tx/${txHash}"}]},{"chainId":"gardia-2","explorers":[{"kind":"Big Dipper","url":"https://explorer.gardia.zenrocklabs.io/","tx_page":"https://explorer.gardia.zenrocklabs.io/tx/${txHash}","account_page":"https://explorer.gardia.zenrocklabs.io/account/${accountAddress}"}]},{"chainId":"athens_7001-1","explorers":[{"kind":"ZetaScan","url":"https://athens.explorer.zetachain.com/","tx_page":"https://athens.explorer.zetachain.com/cc/tx/${txHash}"},{"kind":"BlockScout","url":"https://zetachain-athens-3.blockscout.com/","tx_page":"https://zetachain-athens-3.blockscout.com/tx/${txHash}"}]},{"chainId":"landlord-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/landlord-2","tx_page":"https://scan.testnet.initia.xyz/landlord-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/landlord-2/accounts/${accountAddress}"}]},{"chainId":"initiation-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/initiation-2","tx_page":"https://scan.testnet.initia.xyz/initiation-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/initiation-2/accounts/${accountAddress}"}]},{"chainId":"glados-2.1","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/glados-2.1","tx_page":"https://scan.testnet.initia.xyz/glados-2.1/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/glados-2.1/accounts/${accountAddress}"}]},{"chainId":"minievm-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/minievm-2","tx_page":"https://scan.testnet.initia.xyz/minievm-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/minievm-2/accounts/${accountAddress}"}]},{"chainId":"minimove-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/minimove-2","tx_page":"https://scan.testnet.initia.xyz/minimove-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/minimove-2/accounts/${accountAddress}"}]},{"chainId":"miniwasm-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/miniwasm-2","tx_page":"https://scan.testnet.initia.xyz/miniwasm-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/miniwasm-2/accounts/${accountAddress}"}]}] \ No newline at end of file +[{"chainId":"aaronetwork","explorers":[{"kind":"Ping.pub","url":"https://ping.pub/Aaron%20Network","tx_page":"https://ping.pub/Aaron%20Network/tx/${txHash}","account_page":"https://ping.pub/Aaron%20Network/account/${accountAddress}"},{"kind":"Aaron Network","url":"https://explorer.aaronetwork.xyz","tx_page":"https://explorer.aaronetwork.xyz/hash/${txHash}","account_page":"https://explorer.aaronetwork.xyz/address/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/aaronetwork","tx_page":"https://explorer.whenmoonwhenlambo.money/aaronetwork/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/aaronetwork/account/${accountAddress}"},{"kind":"NodesHub","url":"https://explorer.nodeshub.online/aaron","tx_page":"https://explorer.nodeshub.online/aaron/tx/${txHash}","account_page":"https://explorer.nodeshub.online/aaron/${accountAddress}"}]},{"chainId":"acre_9052-1","explorers":[{"kind":"blockscout","url":"https://acrescout.mindheartsoul.org","tx_page":"https://acrescout.mindheartsoul.org/tx/${txHash}"},{"kind":"blockscout","url":"https://acrescan.com","tx_page":"https://acrescan.com/tx/${txHash}"},{"kind":"blockscout","url":"https://acreblockexplorer.jet-node.com","tx_page":"https://acreblockexplorer.jet-node.com/tx/${txHash}"},{"kind":"ping.pub","url":"https://explorer.nodestake.top/acre","tx_page":"https://explorer.nodestake.top/acre/tx/${txHash}"},{"kind":"ping.pub","url":"https://cosmosrun.info/acre-mainnet","tx_page":"https://cosmosrun.info/acre-mainnet/tx/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/acre","tx_page":"https://explorer.tcnetwork.io/acre/transaction/${txHash}"}]},{"chainId":"agoric-3","explorers":[{"kind":"explorers.guru","url":"https://agoric.explorers.guru","tx_page":"https://agoric.explorers.guru/transaction/${txHash}","account_page":"https://agoric.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/agoric","tx_page":"https://staking-explorer.com/transaction.php?chain=agoric&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=agoric&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/agoric/","tx_page":"https://atomscan.com/agoric/transactions/${txHash}","account_page":"https://atomscan.com/agoric/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/agoric","account_page":"https://stakeflow.io/agoric/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Agoric","tx_page":"https://explorer.stavr.tech/Agoric/tx/${txHash}","account_page":"https://explorer.stavr.tech/Agoric/account/${accountAddress}"}]},{"chainId":"aioz_168-1","explorers":[{"kind":"aioz","url":"https://explorer.aioz.network","tx_page":"https://explorer.aioz.network/tx/${txHash}"}]},{"chainId":"akashnet-2","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/akash","tx_page":"https://ezstaking.app/akash/txs/${txHash}","account_page":"https://ezstaking.app/akash/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/akash","tx_page":"https://www.mintscan.io/akash/transactions/${txHash}","account_page":"https://www.mintscan.io/akash/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/akash-network","tx_page":"https://ping.pub/akash-network/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/akash","tx_page":"https://staking-explorer.com/transaction.php?chain=akash&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=akash&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/akash","tx_page":"https://atomscan.com/akash/transactions/${txHash}","account_page":"https://atomscan.com/akash/accounts/${accountAddress}"},{"kind":"cloudmos","url":"https://cloudmos.io/blocks","tx_page":"https://cloudmos.io/transactions/${txHash}"},{"kind":"Stakeflow","url":"https://stakeflow.io/akash","account_page":"https://stakeflow.io/akash/accounts/${accountAddress}"},{"kind":"ValidatorNode","url":"https://explorer.validatornode.com/akash-network","tx_page":"https://explorer.validatornode.com/akash-network/tx/${txHash}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Akash","tx_page":"https://explorer.declab.pro/Akash/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/akash","tx_page":"https://mainnet.whispernode.com/akash/tx/${txHash}","account_page":"https://mainnet.whispernode.com/akash/account/${accountAddress}"}]},{"chainId":"althea_258432-1","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/althea","tx_page":"https://staking-explorer.com/transaction.php?chain=althea&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=althea&addr=${accountAddress}"}]},{"chainId":"andromeda-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/Andromeda-Mainnet","tx_page":"https://explorer.stavr.tech/Andromeda-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Andromeda-Mainnet/account/${accountAddress}"},{"kind":"exploreme.pro","url":"https://andromeda.exploreme.pro","tx_page":"https://andromeda.exploreme.pro/transaction/${txHash}","account_page":"https://andromeda.exploreme.pro/account/${accountAddress}"},{"kind":"Cosmotracker","url":"https://cosmotracker.com/andromeda","tx_page":"https://cosmotracker.com/andromeda/tx/${txHash}","account_page":"https://cosmotracker.com/andromeda/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/andromeda","tx_page":"https://ping.pub/andromeda/tx/${txHash}"},{"kind":"AviaOne Explorer 🟒","url":"https://mainnet.explorer.aviaone.com/andromeda","tx_page":"https://mainnet.explorer.aviaone.com/andromeda/tx/${txHash}"}]},{"chainId":"archway-1","explorers":[{"kind":"Nodes Guru","url":"https://archway.explorers.guru/","tx_page":"https://archway.explorers.guru/transaction/${txHash}","account_page":"https://archway.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/archway","tx_page":"https://staking-explorer.com/transaction.php?chain=archway&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=archway&addr=${accountAddress}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀","url":"https://exp.utsa.tech/archway","tx_page":"https://exp.utsa.tech/archway/tx/${txHash}","account_page":"https://exp.utsa.tech/archway/account/${accountAddress}"},{"kind":"Mintscan","url":"https://mintscan.io/archway/","tx_page":"https://mintscan.io/archway/transactions/${txHash}","account_page":"https://mintscan.io/archway/accounts/${accountAddress}"},{"kind":"Silk Nodes","url":"https://explorer.silknodes.io/archway","tx_page":"https://explorer.silknodes.io/archway/tx/${txHash}","account_page":"https://explorer.silknodes.io/archway/account/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/archway/","tx_page":"https://explorer.nodestake.org/archway/txs/${txHash}","account_page":"https://explorer.nodestake.org/archway/account/${accountAddress}"},{"kind":"Exploreme","url":"https://archway.exploreme.pro/","tx_page":"https://archway.exploreme.pro/transaction/${txHash}","account_page":"https://archway.exploreme.pro/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/archway","tx_page":"https://ping.pub/archway/tx/${txHash}"},{"kind":"ezstaking","url":"https://ezstaking.app/archway","tx_page":"https://ezstaking.app/archway/txs/${txHash}","account_page":"https://ezstaking.app/archway/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/archway","tx_page":"https://mainnet.whispernode.com/archway/tx/${txHash}","account_page":"https://mainnet.whispernode.com/archway/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/archway","tx_page":"https://explorer.chainroot.io/archway/transactions/${txHash}","account_page":"https://explorer.chainroot.io/archway/accounts/${accountAddress}"}]},{"chainId":"arkh","explorers":[{"kind":"Kynraze Explorer","url":"https://explorer.kynraze.com/arkhadian","tx_page":"https://explorer.kynraze.com/arkhadian/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/arkhadian","tx_page":"https://explorer.nodexcapital.com/arkhadian/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/arkhadian","tx_page":"https://explorer.whenmoonwhenlambo.money/arkhadian/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/arkhadian/account/${accountAddress}"}]},{"chainId":"mantle-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/assetmantle","tx_page":"https://ezstaking.app/assetmantle/txs/${txHash}","account_page":"https://ezstaking.app/assetmantle/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/asset-mantle","tx_page":"https://www.mintscan.io/asset-mantle/transactions/${txHash}","account_page":"https://www.mintscan.io/asset-mantle/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.postcapitalist.io/AssetMantle","tx_page":"https://explorer.postcapitalist.io/AssetMantle/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/assetmantle","tx_page":"https://staking-explorer.com/transaction.php?chain=assetmantle&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=assetmantle&addr=${accountAddress}"},{"kind":"other","url":"https://explorer.assetmantle.one","tx_page":"https://explorer.assetmantle.one/transactions/${txHash}"},{"kind":"explorers.guru","url":"https://assetmantle.explorers.guru","tx_page":"https://assetmantle.explorers.guru/transaction/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/assetmantle","tx_page":"https://atomscan.com/assetmantle/transactions/${txHash}","account_page":"https://atomscan.com/assetmantle/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/assetmantle","tx_page":"https://mainnet.whispernode.com/assetmantle/tx/${txHash}","account_page":"https://mainnet.whispernode.com/assetmantle/account/${accountAddress}"}]},{"chainId":"atomone-1","explorers":[{"kind":"ping.pub","url":"https://explorer.allinbits.com/atomone","tx_page":"https://explorer.allinbits.com/atomone/tx/${txHash}","account_page":"https://explorer.allinbits.com/atomone/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/atomone/","tx_page":"https://explorer.nodeshub.online/atomone/tx/${txHash}","account_page":"https://explorer.nodeshub.online/atomone/accounts/${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://explorer.ist/atomone","tx_page":"https://explorer.ist/atomone/tx/${txHash}","account_page":"https://explorer.ist/atomone/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/atomone","tx_page":"https://explorer.whenmoonwhenlambo.money/atomone/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/atomone/account/${accountAddress}"}]},{"chainId":"aura_6322-2","explorers":[{"kind":"aurascan","url":"https://aurascan.io","tx_page":"https://aurascan.io/tx/${txHash}","account_page":"https://aurascan.io/address/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/aura","tx_page":"https://staking-explorer.com/transaction.php?chain=aura&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=aura&addr=${accountAddress}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀 Explorer","url":"https://exp.utsa.tech/aura","tx_page":"https://exp.utsa.tech/aura/tx/${txHash}","account_page":"https://exp.utsa.tech/aura/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/Aura-Mainnet","tx_page":"https://explorer.stavr.tech/aura-mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/aura-mainnet/account/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/aura","tx_page":"https://explorer.nodestake.org/aura/tx/${txHash}","account_page":"https://explorer.nodestake.org/aura/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/aura","tx_page":"https://explorer.tcnetwork.io/aura/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/aura/account/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/aura","tx_page":"https://explorer.stake-take.com/aura/tx/${txHash}","account_page":"https://explorer.stake-take.com/aura/account/${accountAddress}"},{"kind":"Safe Block","url":"https://explorer.safeblock.space/aura","tx_page":"https://explorer.safeblock.space/aura/tx/${txHash}","account_page":"https://explorer.safeblock.space/aura/account/${accountAddress}"},{"kind":"STAKR.space explorer","url":"https://explorer.stakr.space/aura/","tx_page":"https://explorer.stakr.space/aura/tx/${txHash}","account_page":"https://explorer.stakr.space/aura/account/${accountAddress}"}]},{"chainId":"axelar-dojo-1","explorers":[{"kind":"axelarscan","url":"https://axelarscan.io","tx_page":"https://axelarscan.io/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/axelar","tx_page":"https://www.mintscan.io/axelar/transactions/${txHash}","account_page":"https://www.mintscan.io/axelar/accounts/${accountAddress}"},{"kind":"explorers.guru","url":"https://axelar.explorers.guru","tx_page":"https://axelar.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/axelar","tx_page":"https://staking-explorer.com/transaction.php?chain=axelar&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=axelar&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/axelar","tx_page":"https://atomscan.com/axelar/transactions/${txHash}","account_page":"https://atomscan.com/axelar/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/axelar","account_page":"https://stakeflow.io/axelar/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/axelar","tx_page":"https://ezstaking.app/axelar/txs/${txHash}","account_page":"https://ezstaking.app/axelar/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/axelar","tx_page":"https://mainnet.whispernode.com/axelar/tx/${txHash}","account_page":"https://mainnet.whispernode.com/axelar/account/${accountAddress}"}]},{"chainId":"laozi-mainnet","explorers":[{"kind":"cosmoscan","url":"https://cosmoscan.io","tx_page":"https://cosmoscan.io/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/band","tx_page":"https://www.mintscan.io/band/transactions/${txHash}","account_page":"https://www.mintscan.io/band/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/band-protocol","tx_page":"https://ping.pub/band-protocol/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/bandchain","tx_page":"https://staking-explorer.com/transaction.php?chain=bandchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=bandchain&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Band-Mainnet","tx_page":"https://explorer.stavr.tech/Band-Mainnet/tx/${txHash}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/band","tx_page":"https://exp.nodeist.net/band/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/band-protocol","tx_page":"https://atomscan.com/band-protocol/transactions/${txHash}","account_page":"https://atomscan.com/band-protocol/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/band-protocol","account_page":"https://stakeflow.io/band-protocol/accounts/${accountAddress}"},{"kind":"Roomit Explorer","url":"https://explorer.tendermint.roomit.xyz/band-mainnet","account_page":"https://explorer.tendermint.roomit.xyz/band-mainnet/accounts/${accountAddress}"},{"kind":"kjnodes Explorer","url":"https://explorer.kjnodes.com/band","tx_page":"https://explorer.kjnodes.com/band/tx/${txHash}"}]},{"chainId":"beezee-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/beezee","tx_page":"https://ping.pub/beezee/tx/${txHash}","account_page":"https://ping.pub/beezee/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/beezee","tx_page":"https://staking-explorer.com/transaction.php?chain=beezee&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=beezee&addr=${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.getbze.com/beezee","tx_page":"https://explorer.getbze.com/beezee/tx/${txHash}","account_page":"https://explorer.getbze.com/beezee/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/beezee","tx_page":"https://atomscan.com/beezee/transactions/${txHash}","account_page":"https://atomscan.com/beezee/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/beezee","tx_page":"https://explorer.whenmoonwhenlambo.money/beezee/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/beezee/account/${accountAddress}"}]},{"chainId":"bitbadges-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/bitbadges","tx_page":"https://www.mintscan.io/bitbadges/transactions/${txHash}","account_page":"https://www.mintscan.io/bitbadges/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.bitbadges.io/BitBadges%20Mainnet","tx_page":"https://explorer.bitbadges.io/BitBadges%20Mainnet/txs/${txHash}","account_page":"https://explorer.bitbadges.io/BitBadBitBadges%20Mainnetges/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/bitbadges","tx_page":"https://explorer.whenmoonwhenlambo.money/bitbadges/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/bitbadges/account/${accountAddress}"}]},{"chainId":"bitcanna-1","explorers":[{"kind":"EZStaking Tools","url":"https://app.ezstaking.io/bitcanna","tx_page":"https://ezstaking.tools/bitcanna/txs/${txHash}","account_page":"https://ezstaking.tools/bitcanna/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/bitcanna","tx_page":"https://staking-explorer.com/transaction.php?chain=bitcanna&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=bitcanna&addr=${accountAddress}"},{"kind":"forbole","url":"https://explorer.bitcanna.io","tx_page":"https://explorer.bitcanna.io/transactions/${txHash}","account_page":"https://explorer.bitcanna.io/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/bitcanna","tx_page":"https://ping.pub/bitcanna/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/bitcanna/","tx_page":"https://www.mintscan.io/bitcanna/txs/${txHash}","account_page":"https://www.mintscan.io/bitcanna/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/Bitcanna","tx_page":"https://explorer.stavr.tech/Bitcanna/txs/${txHash}","account_page":"https://explorer.stavr.tech/Bitcanna/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/bitcanna","tx_page":"https://atomscan.com/bitcanna/transactions/${txHash}"},{"kind":"ValidatorNode Explorer","url":"https://explorer.validatornode.com/bitcanna","tx_page":"https://explorer.validatornode.com/bitcanna/tx/${txHash}"},{"kind":"Safe Block Explorer Pruned","url":"https://explorer.safeblock.space/bitcanna","tx_page":"https://explorer.safeblock.space/bitcanna/tx/${txHash}"},{"kind":"AlxVoy ⚑ ANODE.TEAM","url":"https://main.anode.team/bitcanna","tx_page":"https://main.anode.team/bitcanna/tx/${txHash}"},{"kind":"kjnodes","url":"https://explorer.kjnodes.com/bitcanna","tx_page":"https://explorer.kjnodes.com/bitcanna/tx/${txHash}"},{"kind":"L0vd.com ❀️","url":"https://explorers.l0vd.com/bitcanna-mainnet","tx_page":"https://explorers.l0vd.com/bitcanna-mainnet/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodex.one/bitcanna","tx_page":"https://explorer.nodex.one/bitcanna/tx/${txHash}"},{"kind":"Moonbys Dashboard","url":"https://explorer.moonbys.com","tx_page":"https://explorer.moonbys.com/${txHash}"},{"kind":"BlockHunters 🎯","url":"https://scan.bh.rocks/bitcanna","tx_page":"https://scan.bh.rocks/bitcanna/tx/${txHash}"},{"kind":"Indonode","url":"https://explorer.indonode.net/bitcanna","tx_page":"https://explorer.indonode.net/bitcanna/tx/${txHash}"},{"kind":"CrypTech Explorer","url":"https://explorers.cryptech.com.ua/bitcanna","tx_page":"https://explorers.cryptech.com.ua/bitcanna/txs/${txHash}"},{"kind":"Kalia Network","url":"https://explorer.kalia.network/bitcanna","tx_page":"https://explorer.kalia.network/bitcanna/tx/${txHash}","account_page":"https://explorer.kalia.network/bitcanna/account/${accountAddress}"},{"kind":"AviaOne Explorer 🟒","url":"https://mainnet.explorer.aviaone.com/bitcanna","tx_page":"https://mainnet.explorer.aviaone.com/bitcanna/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/bitcanna/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/bitcanna/","tx_page":"https://explorer.nodeshub.online/bitcanna/tx/${txHash}","account_page":"https://explorer.nodeshub.online/bitcanna/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/bitcanna","tx_page":"https://explorer.whenmoonwhenlambo.money/bitcanna/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/bitcanna/account/${accountAddress}"},{"kind":"AviaOne Explorer 🟒","url":"https://mainnet.explorer.aviaone.com/bitcanna","tx_page":"https://mainnet.explorer.aviaone.com/bitcanna/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/bitcanna/account/${accountAddress}"}]},{"chainId":"bitsong-2b","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/bitsong","tx_page":"https://ezstaking.app/bitsong/txs/${txHash}","account_page":"https://ezstaking.app/bitsong/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/bitsong","tx_page":"https://ping.pub/bitsong/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/bitsong","tx_page":"https://www.mintscan.io/bitsong/transactions/${txHash}","account_page":"https://www.mintscan.io/bitsong/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/bitsong","tx_page":"https://staking-explorer.com/transaction.php?chain=bitsong&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=bitsong&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/bitsong","tx_page":"https://atomscan.com/bitsong/transactions/${txHash}","account_page":"https://atomscan.com/bitsong/accounts/${accountAddress}"},{"kind":"Safe Block","url":"https://explorer.safeblok.space/bitsong","tx_page":"https://explorer.safeblock.space/bitsong/tx/${txHash}","account_page":"https://explorer.safeblock.space/bitsong/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Bitsong","tx_page":"https://explorer.stavr.tech/Bitsong/tx/${txHash}","account_page":"https://explorer.stavr.tech/Bitsong/account/${accountAddress}"}]},{"chainId":"blockx_19191-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/blockx","tx_page":"https://ping.pub/blockx/tx/${txHash}"},{"kind":"Nodeist Explorer","url":"https://explorer.ist/blockx/","tx_page":"https://explorer.ist/blockx/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/blockx","tx_page":"https://explorer.whenmoonwhenlambo.money/blockx/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/blockx/account/${accountAddress}"}]},{"chainId":"bluechip-2"},{"chainId":"bluzelle-9","explorers":[{"kind":"ping.pub","url":"https://ping.explorer.net.bluzelle.com/bluzelle","tx_page":"https://ping.explorer.net.bluzelle.com/bluzelle/tx/${txHash}","account_page":"https://ping.explorer.net.bluzelle.com/bluzelle/account/${accountAddress}"},{"kind":"big dipper","url":"https://bd.explorer.net.bluzelle.com","tx_page":"https://bd.explorer.net.bluzelle.com/transactions/${txHash}","account_page":"https://bd.explorer.net.bluzelle.com/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/bluzelle","tx_page":"https://explorer.tcnetwork.io/bluzelle/transaction/${txHash}"},{"kind":"Nodine.ID","url":"https://explorer.co.id/bluzelle","tx_page":"https://explorer.co.id/bluzelle/transaction/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/bluzelle","tx_page":"https://explorer.whenmoonwhenlambo.money/bluzelle/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/bluzelle/account/${accountAddress}"}]},{"chainId":"bostrom","explorers":[{"kind":"cyb","url":"https://cyb.ai/","tx_page":"https://cyb.ai/network/bostrom/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/bostrom","tx_page":"https://ping.pub/bostrom/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/bostrom","tx_page":"https://staking-explorer.com/transaction.php?chain=bostrom&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=bostrom&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/bostrom","tx_page":"https://atomscan.com/bostrom/transactions/${txHash}","account_page":"https://atomscan.com/bostrom/accounts/${accountAddress}"}]},{"chainId":"bouachain","explorers":[{"kind":"bouachain","url":"https://bouascan.com","tx_page":"https://bouascan.com/bouachain/tx/${txHash}","account_page":"https://bouascan.com/bouachain/${accountAddress}"}]},{"chainId":"canto_7700-1","explorers":[{"kind":"ping.pub","url":"https://cosmos-explorers.neobase.one/canto","tx_page":"https://cosmos-explorers.neobase.one/canto/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/canto","tx_page":"https://staking-explorer.com/transaction.php?chain=canto&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=canto&addr=${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/canto","tx_page":"https://explorer.tcnetwork.io/canto/transaction/${txHash}"},{"kind":"ezstaking","url":"https://ezstaking.app/canto","tx_page":"https://ezstaking.app/canto/txs/${txHash}","account_page":"https://ezstaking.app/canto/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Canto-Mainnet","tx_page":"https://explorer.stavr.tech/Canto-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Canto-Mainnet/account/${accountAddress}"}]},{"chainId":"carbon-1","explorers":[{"kind":"carbonscan","url":"https://scan.carbon.network","tx_page":"https://scan.carbon.network/transaction/${txHash}?net=main"},{"kind":"ping.pub","url":"https://ping.pub/carbon","tx_page":"https://ping.pub/carbon/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/carbon","tx_page":"https://staking-explorer.com/transaction.php?chain=carbon&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=carbon&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/carbon","tx_page":"https://atomscan.com/carbon/transactions/${txHash}","account_page":"https://atomscan.com/carbon/accounts/${accountAddress}"}]},{"chainId":"celestia","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/celestia","tx_page":"https://mintscan.io/celestia/txs/${txHash}","account_page":"https://mintscan.io/celestia/address/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/celestia","tx_page":"https://staking-explorer.com/transaction.php?chain=celestia&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=celestia&addr=${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/celestia/","tx_page":"https://explorer.nodestake.org/celestia/txs/${txHash}","account_page":"https://explorer.nodestake.org/celestia/account/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/celestia","tx_page":"https://stakeflow.io/celestia/transactions/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/celestia","tx_page":"https://explorer.tcnetwork.io/celestia/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/celestia/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Celestia-Mainnet","tx_page":"https://explorer.stavr.tech/Celestia-Mainnet/transaction/${txHash}","account_page":"https://explorer.stavr.tech/Celestia-Mainnet/account/${accountAddress}"},{"kind":"AM Solutions","url":"https://explorer.theamsolutions.info/celestia-main","tx_page":"https://explorer.theamsolutions.info/celestia-main/transaction/${txHash}","account_page":"https://explorer.theamsolutions.info/celestia-main/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/celestia","tx_page":"https://ezstaking.app/celestia/txs/${txHash}","account_page":"https://ezstaking.app/celestia/account/${accountAddress}"},{"kind":"πŸš€ itrocket πŸš€","url":"https://mainnet.itrocket.net/celestia","tx_page":"https://mainnet.itrocket.net/celestia/transaction/${txHash}","account_page":"https://mainnet.itrocket.net/celestia/account/${accountAddress}"},{"kind":"DTEAM | Explorer","url":"https://explorer.mainnet.dteam.tech/celestia","tx_page":"https://explorer.mainnet.dteam.tech/celestia/transaction/${txHash}","account_page":"https://explorer.mainnet.dteam.tech/celestia/account/${accountAddress}"},{"kind":"Relaxed Explorer πŸ¦₯","url":"https://explorer.stakeandrelax.net/celestia","tx_page":"https://explorer.stakeandrelax.net/celestia/transaction/${txHash}","account_page":"https://explorer.stakeandrelax.net/celestia/account/${accountAddress}"}]},{"chainId":"perun-1","explorers":[{"kind":"explorer","url":"https://explorer.apeironnodes.com/chain4energy","tx_page":"https://explorer.apeironnodes.com/chain4energy/transactions/${txHash}"},{"kind":"DTEAM | Explorer","url":"https://explorer.mainnet.dteam.tech/chain4energy","tx_page":"https://explorer.mainnet.dteam.tech/chain4energytransactions/${txHash}"},{"kind":"explorer","url":"https://explorer.ppnv.space/c4e","tx_page":"https://explorer.ppnv.space/c4e/transactions/${txHash}"},{"kind":"explorer","url":"https://explorer.c4e.io/","tx_page":"https://explorer.c4e.io/transactions/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/chain4energy","tx_page":"https://explorer.nodestake.top/chain4energy/transactions/${txHash}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀 Explorer","url":"https://exp.utsa.tech/c4e","tx_page":"https://exp.utsa.tech/c4e/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/c4e","tx_page":"https://explorer.stavr.tech/c4e/tx/${txHash}"},{"kind":"BccNodes Explorer","url":"https://explorer.bccnodes.com/chain4energy","tx_page":"https://explorer.bccnodes.com/chain4energy/transactions/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/c4e","tx_page":"https://explorer.nodexcapital.com/c4e/transactions/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/chain4energy","tx_page":"https://atomscan.com/chain4energy/transactions/${txHash}","account_page":"https://atomscan.com/chain4energy/accounts/${accountAddress}"},{"kind":"AM Solutions Explorer","url":"https://explorer.theamsolutions.info/c4e-main/staking","tx_page":"https://explorer.theamsolutions.info/c4e-main/transactions/${txHash}"},{"kind":"AlxVoy ⚑ ANODE.TEAM Explorer","url":"https://main.anode.team/c4e","tx_page":"https://main.anode.team/c4e/tx/${txHash}"},{"kind":"ScanRun","url":"https://scanrun.io/c4e","tx_page":"https://scanrun.io/c4e/transactions/${txHash}"},{"kind":"Cryptech","url":"https://explorers.cryptech.com.ua/chain4energy","tx_page":"https://explorers.cryptech.com.ua/chain4energy/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/chain4energy","tx_page":"https://explorer.whenmoonwhenlambo.money/chain4energy/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/chain4energy/account/${accountAddress}"}]},{"chainId":"cheqd-mainnet-1","explorers":[{"kind":"bigdipper","url":"https://explorer.cheqd.io","tx_page":"https://explorer.cheqd.io/transactions/${txHash}","account_page":"https://explorer.cheqd.io/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/cheqd","tx_page":"https://ping.pub/cheqd/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/cheqd","tx_page":"https://staking-explorer.com/transaction.php?chain=cheqd&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=cheqd&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Cheqd-Mainnet","tx_page":"https://explorer.stavr.tech/Cheqd-Mainnet/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/cheqd","tx_page":"https://atomscan.com/cheqd/transactions/${txHash}","account_page":"https://atomscan.com/cheqd/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/cheqd","tx_page":"https://ezstaking.app/cheqd/txs/${txHash}","account_page":"https://ezstaking.app/cheqd/account/${accountAddress}"},{"kind":"ping.pub","url":"https://look.chillvalidation.com/cheqd","tx_page":"https://look.chillvalidation.com/cheqd/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.wildsage.io/cheqd","tx_page":"https://ping.wildsage.io/cheqd/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/cheqd","tx_page":"https://mainnet.whispernode.com/cheqd/tx/${txHash}","account_page":"https://mainnet.whispernode.com/cheqd/account/${accountAddress}"}]},{"chainId":"chihuahua-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/chihuahua","tx_page":"https://ping.pub/chihuahua/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Chihua-Mainnet","tx_page":"https://explorer.stavr.tech/Chihua-Mainnet/tx/${txHash}"},{"kind":"mintscan","url":"https://mintscan.io/chihuahua","tx_page":"https://mintscan.io/chihuahua/transactions/${txHash}","account_page":"https://www.mintscan.io/chihuahua/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/chihuahua","tx_page":"https://staking-explorer.com/transaction.php?chain=chihuahua&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=chihuahua&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/chihuahua","tx_page":"https://atomscan.com/chihuahua/transactions/${txHash}","account_page":"https://atomscan.com/chihuahua/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/chihuahua","tx_page":"https://ezstaking.app/chihuahua/txs/${txHash}","account_page":"https://ezstaking.app/chihuahua/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/chihuahua/","tx_page":"https://explorer.nodeshub.online/chihuahua/tx/${txHash}","account_page":"https://explorer.nodeshub.online/chihuahua/accounts/${accountAddress}"}]},{"chainId":"chimba","explorers":[{"kind":"bigdipper","url":"https://explorer.chimba.ooo/","tx_page":"https://explorer.chimba.ooo/transactions/${txHash}"}]},{"chainId":"cifer-2","explorers":[{"kind":"bigdipper","url":"https://explorer.cifer.ai/","tx_page":"https://explorer.cifer.ai/transactions/${txHash}"}]},{"chainId":"cnho_stables-1","explorers":[{"url":"https://explorer.cnho.io","tx_page":"https://explorer.cnho.io/transaction/${txHash}","account_page":"https://explorer.cnho.io/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/cnhostables","tx_page":"https://explorer.whenmoonwhenlambo.money/cnhostables/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/cnhostables/account/${accountAddress}"}]},{"chainId":"comdex-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/comdex","tx_page":"https://ezstaking.app/comdex/txs/${txHash}","account_page":"https://ezstaking.app/comdex/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/comdex","tx_page":"https://www.mintscan.io/comdex/transactions/${txHash}","account_page":"https://www.mintscan.io/comdex/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/comdex","tx_page":"https://staking-explorer.com/transaction.php?chain=comdex&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=comdex&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Comdex-Mainnet","tx_page":"https://explorer.stavr.tech/Comdex-Mainnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/Comdex-Mainnet/accounts/${accountAddress}"},{"kind":"aneka","url":"https://comdex.aneka.io/","tx_page":"https://comdex.aneka.io/txs/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/comdex","tx_page":"https://ping.pub/comdex/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/comdex","tx_page":"https://atomscan.com/comdex/transactions/${txHash}","account_page":"https://atomscan.com/comdex/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/comdex","account_page":"https://stakeflow.io/comdex/accounts/${accountAddress}"},{"kind":"ValidatorNode","url":"https://explorer.validatornode.com/comdex","tx_page":"https://explorer.validatornode.com/comdex/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/comdex","tx_page":"https://mainnet.whispernode.com/comdex/tx/${txHash}","account_page":"https://mainnet.whispernode.com/comdex/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/comdex","tx_page":"https://explorer.chainroot.io/comdex/transactions/${txHash}","account_page":"https://explorer.chainroot.io/comdex/accounts/${accountAddress}"}]},{"chainId":"commercio-3","explorers":[{"kind":"almerico","url":"https://mainnet.commercio.network","tx_page":"https://mainnet.commercio.network/transactions/detail/${txHash}"}]},{"chainId":"centauri-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/composable","tx_page":"https://ping.pub/composable/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/composable","tx_page":"https://staking-explorer.com/transaction.php?chain=composable&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=composable&addr=${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/composable","tx_page":"https://explorer.nodestake.top/composable/tx/${txHash}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/composable","tx_page":"https://exp.stakevillage.net/composable/tx/${txHash}","account_page":"https://exp.stakevillage.net/composable/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Composable-Mainnet","tx_page":"https://explorer.stavr.tech/Composable-Mainnet/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/picasso","tx_page":"https://mainnet.whispernode.com/picasso/tx/${txHash}","account_page":"https://mainnet.whispernode.com/picasso/account/${accountAddress}"},{"kind":"Moonbridge","url":"https://explorer.moonbridge.org/picasso","tx_page":"https://explorer.moonbridge.org/picasso/tx/${txHash}"}]},{"chainId":"cvn_2032-1","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/conscious","tx_page":"https://staking-explorer.com/transaction.php?chain=conscious&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=conscious&addr=${accountAddress}"},{"kind":"blockscout","url":"https://explore.consciousdao.com/","tx_page":"https://explore.consciousdao.com/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/conscious","tx_page":"https://explorer.whenmoonwhenlambo.money/conscious/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/conscious/account/${accountAddress}"}]},{"chainId":"coreum-mainnet-1","explorers":[{"kind":"Coreum","url":"https://explorer.coreum.com/coreum","tx_page":"https://explorer.coreum.com/coreum/transactions/${txHash}","account_page":"https://explorer.coreum.com/coreum/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/coreum","tx_page":"https://www.mintscan.io/coreum/transactions/${txHash}","account_page":"https://www.mintscan.io/coreum/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/coreum","tx_page":"https://staking-explorer.com/transaction.php?chain=coreum&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=coreum&addr=${accountAddress}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/coreum","tx_page":"https://explorer.nodexcapital.com/coreum/txs/${txHash}","account_page":"https://explorer.nodexcapital.com/coreum/account/${accountAddress}"},{"kind":"Silk Nodes","url":"https://explorer.silknodes.io/coreum","tx_page":"https://explorer.silknodes.io/coreum/tx/${txHash}","account_page":"https://explorer.silknodes.io/coreum/account/${accountAddress}"},{"kind":"#SoloNation","url":"https://explorer.solonation.io/core-main","tx_page":"https://explorer.solonation.io/core-main/tx/${txHash}","account_page":"https://explorer.solonation.io/core-main/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/coreum","tx_page":"https://explorer.tcnetwork.io/coreum/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/coreum/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/coreum","tx_page":"https://ezstaking.app/coreum/txs/${txHash}","account_page":"https://ezstaking.app/coreum/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/coreum","tx_page":"https://explorer.chainroot.io/coreum/transactions/${txHash}","account_page":"https://explorer.chainroot.io/coreum/accounts/${accountAddress}"}]},{"chainId":"cosmoshub-4","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/cosmos","tx_page":"https://www.mintscan.io/cosmos/transactions/${txHash}","account_page":"https://www.mintscan.io/cosmos/accounts/${accountAddress}","validator_page":"https://www.mintscan.io/cosmos/validators/${validatorAddress}","proposal_page":"https://www.mintscan.io/cosmos/proposals/${proposalId}","block_page":"https://www.mintscan.io/cosmos/blocks/${blockHeight}"},{"kind":"ezstaking","url":"https://ezstaking.app/cosmoshub","tx_page":"https://ezstaking.app/cosmoshub/txs/${txHash}","account_page":"https://ezstaking.app/cosmoshub/account/${accountAddress}","validator_page":"https://ezstaking.app/cosmoshub/validators/${validatorAddress}","proposal_page":"https://ezstaking.app/cosmoshub/proposals/${proposalId}","block_page":"https://ezstaking.app/cosmoshub/blocks/${blockHeight}"},{"kind":"ping.pub","url":"https://ping.pub/cosmos","tx_page":"https://ping.pub/cosmos/tx/${txHash}","account_page":"https://ping.pub/cosmos/account/${accountAddress}","validator_page":"https://ping.pub/cosmos/staking/${validatorAddress}","proposal_page":"https://ping.pub/cosmos/gov/${proposalId}","block_page":"https://ping.pub/cosmos/block/${blockHeight}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/cosmoshub","tx_page":"https://staking-explorer.com/transaction.php?chain=cosmoshub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=cosmoshub&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com","tx_page":"https://atomscan.com/transactions/${txHash}","account_page":"https://atomscan.com/accounts/${accountAddress}","validator_page":"https://atomscan.com/validators/${validatorAddress}","proposal_page":"https://atomscan.com/votes/${proposalId}","block_page":"https://atomscan.com/blocks/${blockHeight}"},{"kind":"unichain","url":"https://unicha.in/cosmos","tx_page":"https://unicha.in/cosmos/transaction/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/cosmoshub","tx_page":"https://explorer.tcnetwork.io/cosmoshub/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/cosmoshub/account/${accountAddress}","validator_page":"https://explorer.tcnetwork.io/cosmoshub/validator/${validatorAddress}","proposal_page":"https://explorer.tcnetwork.io/cosmoshub/proposal/${proposalId}","block_page":"https://explorer.tcnetwork.io/cosmoshub/block/${blockHeight}"},{"kind":"Stakeflow","url":"https://stakeflow.io/cosmos","account_page":"https://stakeflow.io/cosmos/accounts/${accountAddress}","validator_page":"https://stakeflow.io/cosmos/validators/${validatorAddress}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/cosmos"},{"kind":"Inbloc","url":"https://inbloc.org","tx_page":"https://inbloc.org/transactions/${txHash}","account_page":"https://inbloc.org/account/${accountAddress}","validator_page":"https://inbloc.org/cosmos/validator/${validatorAddress}","proposal_page":"https://inbloc.org/cosmos/proposal/${proposalId}","block_page":"https://inbloc.org/cosmos/blocks/${blockHeight}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/cosmos","tx_page":"https://mainnet.whispernode.com/cosmos/tx/${txHash}","account_page":"https://mainnet.whispernode.com/cosmos/account/${accountAddress}","validator_page":"https://mainnet.whispernode.com/cosmos/staking/${validatorAddress}","proposal_page":"https://mainnet.whispernode.com/cosmos/gov/${proposalId}","block_page":"https://mainnet.whispernode.com/cosmos/block/${blockHeight}"},{"kind":"ITRocket","url":"https://mainnet.itrocket.net/cosmoshub","tx_page":"https://mainnet.itrocket.net/cosmoshub/tx/${txHash}","account_page":"https://mainnet.itrocket.net/cosmoshub/account/${accountAddress}","validator_page":"https://mainnet.itrocket.net/cosmoshub/staking/${validatorAddress}","proposal_page":"https://mainnet.itrocket.net/cosmoshub/gov/${proposalId}","block_page":"https://mainnet.itrocket.net/cosmoshub/block/${blockHeight}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/cosmos","tx_page":"https://explorer.nodestake.org/cosmos/tx/${txHash}","account_page":"https://explorer.nodestake.org/cosmos/account/${accountAddress}","validator_page":"https://explorer.nodestake.org/cosmos/staking/${validatorAddress}","proposal_page":"https://explorer.nodestake.org/cosmos/gov/${proposalId}","block_page":"https://explorer.nodestake.org/cosmos/block/${blockHeight}"}]},{"chainId":"coss-1"},{"chainId":"crescent-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/crescent","tx_page":"https://ezstaking.app/crescent/txs/${txHash}","account_page":"https://ezstaking.app/crescent/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/crescent","tx_page":"https://ping.pub/crescent/tx/${txHash}"},{"kind":"explorers.guru","url":"https://crescent.explorers.guru","tx_page":"https://crescent.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/crescent","tx_page":"https://staking-explorer.com/transaction.php?chain=crescent&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=crescent&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/crescent","tx_page":"https://atomscan.com/crescent/transactions/${txHash}","account_page":"https://atomscan.com/crescent/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/crescent","account_page":"https://stakeflow.io/crescent/accounts/${accountAddress}"}]},{"chainId":"cronosmainnet_25-1","explorers":[{"kind":"cronoscan","url":"https://cronoscan.com","tx_page":"https://cronoscan.com/tx/${txHash}"},{"kind":"crypto.org","url":"https://cronos.org/explorer","tx_page":"https://cronos.org/explorer/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/cronos","tx_page":"https://ping.pub/cronos/tx/${txHash}"}]},{"chainId":"crypto-org-chain-mainnet-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/crypto-org","tx_page":"https://www.mintscan.io/crypto-org/transactions/${txHash}","account_page":"https://www.mintscan.io/crypto-org/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/cryptoorgchain","tx_page":"https://staking-explorer.com/transaction.php?chain=cryptoorgchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=cryptoorgchain&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/crypto-org","tx_page":"https://ezstaking.app/crypto-org/txs/${txHash}","account_page":"https://ezstaking.app/crypto-org/account/${accountAddress}"},{"kind":"cronos.org","url":"https://cronos-pos.org/explorer","tx_page":"https://cronos-pos.org/explorer/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/crypto-com-chain","tx_page":"https://ping.pub/crypto-com-chain/tx/${txHash}"}]},{"chainId":"mainnet-3","explorers":[{"kind":"decentr.net","url":"https://explorer.decentr.net","tx_page":"https://explorer.decentr.net/transactions/${txHash}?networkId=mainnet"},{"kind":"ping.pub","url":"https://ping.pub/decentr/","tx_page":"https://ping.pub/decentr/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/decentr","tx_page":"https://staking-explorer.com/transaction.php?chain=decentr&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=decentr&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Decentr-Mainnet","tx_page":"https://explorer.stavr.tech/Decentr-Mainnet/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/decentr","tx_page":"https://atomscan.com/decentr/transactions/${txHash}","account_page":"https://atomscan.com/decentr/accounts/${accountAddress}"},{"kind":"Nodine.ID","url":"https://explorer.co.id/decentr","tx_page":"https://explorer.co.id/decentr/tx/${txHash}"},{"kind":"THE EXPLORER","url":"https://explorer.sxlzptprjkt.xyz/decentr","tx_page":"https://explorer.sxlzptprjkt.xyz/decentr/tx/${txHash}"},{"kind":"hexskrt EXPLORER","url":"https://explorer.hexskrt.net/decentr","tx_page":"https://explorer.hexskrt.net/decentr/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/decentr","tx_page":"https://explorer.nodexcapital.com/decentr/tx/${txHash}"},{"kind":"Explorer ComunityNode","url":"https://explorer.comunitynode.my.id/decentr","tx_page":"https://explorer.comunitynode.my.id/decentr/tx/${txHash}"}]},{"chainId":"desmos-mainnet","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/desmos","tx_page":"https://ezstaking.app/desmos/txs/${txHash}","account_page":"https://ezstaking.app/desmos/account/${accountAddress}"},{"kind":"bigdipper","url":"https://bigdipper.live/desmos","tx_page":"https://bigdipper.live/desmos/transactions/${txHash}","account_page":"https://bigdipper.live/desmos/accounts/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/desmos","tx_page":"https://www.mintscan.io/desmos/transactions/${txHash}","account_page":"https://www.mintscan.io/desmos/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/desmos","tx_page":"https://ping.pub/desmos/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/desmos","tx_page":"https://atomscan.com/desmos/transactions/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/desmos","tx_page":"https://explorer.tcnetwork.io/desmos/transaction/${txHash}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Desmos","tx_page":"https://explorer.declab.pro/Desmos/tx/${txHash}"}]},{"chainId":"dhealth","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/dhealth","tx_page":"https://staking-explorer.com/transaction.php?chain=dhealth&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=dhealth&addr=${accountAddress}"},{"kind":"nodestake","url":"https://explorer.nodestake.org/dhealth","tx_page":"https://explorer.nodestake.org/dhealth/tx/${txHash}","account_page":"https://explorer.nodestake.org/dhealth/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/dhealth/","tx_page":"https://explorer.nodeshub.online/dhealth/tx/${txHash}","account_page":"https://explorer.nodeshub.online/dhealth/accounts/${accountAddress}"}]},{"chainId":"vota-ash","explorers":[{"kind":"Dora Vota Ping Pub","url":"https://vota-explorer.dorafactory.org","tx_page":"https://vota-explorer.dorafactory.org/doravota/tx/${txHash}"},{"kind":"lesnik | UTSA Ping Pub","url":"https://exp.utsa.tech/dora/staking","tx_page":"https://exp.utsa.tech/dora/tx/${txHash}"},{"kind":"ITRocket Ping Pub","url":"https://mainnet.itrocket.net/doravota/staking","tx_page":"https://mainnet.itrocket.net/doravota/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/doravota","tx_page":"https://staking-explorer.com/transaction.php?chain=doravota&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=doravota&addr=${accountAddress}"},{"kind":"Explorers","url":"https://dora.explorers.guru","tx_page":"https://dora.explorers.guru/transaction/${txHash}"}]},{"chainId":"dungeon-1","explorers":[{"kind":"Ping.Pub","url":"https://ping.pub/Dungeonchain","tx_page":"https://ping.pub/Dungeonchain/tx/${txHash}","account_page":"https://ping.pub/Dungeonchain/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/dungeon","tx_page":"https://explorer.whenmoonwhenlambo.money/dungeon/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/dungeon/account/${accountAddress}"}]},{"chainId":"dydx-mainnet-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/dydx","tx_page":"https://www.mintscan.io/dydx/txs/${txHash}","account_page":"https://www.mintscan.io/dydx/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/dydx","tx_page":"https://staking-explorer.com/transaction.php?chain=dydx&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=dydx&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/dydx","tx_page":"https://ezstaking.app/dydx/txs/${txHash}","account_page":"https://ezstaking.app/dydx/account/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.top/dydx/","tx_page":"https://explorer.nodestake.top/dydx/txs/${txHash}","account_page":"https://explorer.nodestake.top/dydx/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/dydx","tx_page":"https://explorer.tcnetwork.io/dydx/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/dydx/account/${accountAddress}"}]},{"chainId":"dymension_1100-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/dymension","tx_page":"https://www.mintscan.io/dymension/tx/${txHash}","account_page":"https://www.mintscan.io/dymension/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/dymension","tx_page":"https://staking-explorer.com/transaction.php?chain=dymension&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=dymension&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/dymension","tx_page":"https://ezstaking.app/dymension/txs/${txHash}","account_page":"https://ezstaking.app/dymension/account/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/dymension","tx_page":"https://explorer.nodestake.org/dymension/tx/${txHash}","account_page":"https://explorer.nodestake.org/dymension/account/${accountAddress}"},{"kind":"Kynraze","url":"https://explorer.kynraze.com/dymension","tx_page":"https://explorer.kynraze.com/dymension/tx/${txHash}","account_page":"https://explorer.kynraze.com/dymension/account/${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://explorer.ist/dymension","tx_page":"https://explorer.ist/dymension/tx/${txHash}","account_page":"https://explorer.ist/dymension/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Dymension-Mainnet","tx_page":"https://explorer.stavr.tech/Dymension-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Dymension-Mainnet/account/${accountAddress}"},{"kind":"HoodScan","url":"https://hoodscan.io/dymension","tx_page":"https://hoodscan.io/dymension/transactions/${txHash}","account_page":"https://hoodscan.io/dymension/accounts/${accountAddress}"},{"kind":"posthuman","url":"https://explorer.posthuman.digital/dymension","tx_page":"https://explorer.posthuman.digital/dymension/tx/${txHash}","account_page":"https://explorer.posthuman.digital/dymension/account/${accountAddress}"},{"kind":"AVIAONE 🟒","url":"https://mainnet.explorer.aviaone.com/dymension","tx_page":"https://mainnet.explorer.aviaone.com/dymension/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/dymension/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/dymension","tx_page":"https://mainnet.whispernode.com/dymension/tx/${txHash}","account_page":"https://mainnet.whispernode.com/dymension/account/${accountAddress}"},{"kind":"DTEAM | Explorer","url":"https://explorer.mainnet.dteam.tech/dymension","tx_page":"https://explorer.mainnet.dteam.tech/dymension/tx/${txHash}","account_page":"https://explorer.mainnet.dteam.tech/dymension/account/${accountAddress}"}]},{"chainId":"dyson-mainnet-01","explorers":[{"kind":"dysonprotocol","url":"https://explorer.dys.dysonprotocol.com/dyson/","tx_page":"https://explorer.dys.dysonprotocol.com/dyson/tx/${txHash}","account_page":"https://explorer.dys.dysonprotocol.com/dyson/account/${accountAddress}"}]},{"chainId":"echelon_3000-3","explorers":[{"kind":"echelon","url":"https://app.ech.network/explorer","tx_page":"https://app.ech.network/explorer/tx/${txHash}"},{"kind":"blockscout","url":"https://scout.ech.network","tx_page":"https://scout.ech.network/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/echelon","tx_page":"https://ping.pub/echelon/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/echelon","tx_page":"https://atomscan.com/echelon/transactions/${txHash}","account_page":"https://atomscan.com/echelon/accounts/${accountAddress}"}]},{"chainId":"elys-1","explorers":[{"kind":"NodeStake","url":"https://explorer.nodestake.org/elys","tx_page":"https://explorer.nodestake.org/elys/tx/${txHash}","account_page":"https://explorer.nodestake.org/elys/account/${accountAddress}"},{"kind":"Moonlet","url":"https://explorer.moonlet.cloud/elys","tx_page":"https://explorer.moonlet.cloud/elys/tx/${txHash}","account_page":"https://explorer.moonlet.cloud/elys/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/elys","tx_page":"https://ping.pub/elys/tx/${txHash}","account_page":"https://ping.pub/elys/account/${accountAddress}"},{"kind":"itrocket","url":"https://mainnet.itrocket.net/elys","tx_page":"https://mainnet.itrocket.net/elys/staking/tx/${txHash}","account_page":"https://mainnet.itrocket.net/elys/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Elys-Mainnet","tx_page":"https://explorer.stavr.tech/Elys-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Elys-Mainnet/account/${accountAddress}"},{"kind":"Moonbridge","url":"https://explorer.moonbridge.org/elys","tx_page":"https://explorer.moonbridge.org/elys/tx/${txHash}","account_page":"https://explorer.moonbridge.org/elys/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/elys","tx_page":"https://explorer.whenmoonwhenlambo.money/elys/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/elys/account/${accountAddress}"}]},{"chainId":"emoney-3","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/emoney","tx_page":"https://ezstaking.app/emoney/txs/${txHash}","account_page":"https://ezstaking.app/emoney/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/e-money","tx_page":"https://ping.pub/e-money/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/emoney","tx_page":"https://atomscan.com/emoney/transactions/${txHash}","account_page":"https://atomscan.com/emoney/accounts/${accountAddress}"}]},{"chainId":"empowerchain-1","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/empowerchain","tx_page":"https://staking-explorer.com/transaction.php?chain=empowerchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=empowerchain&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Empower-Mainnet","tx_page":"https://explorer.stavr.tech/Empower-Mainnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/Empower-Mainnet/account/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/empower","tx_page":"https://explorer.nodestake.top/empower/tx/${txHash}","account_page":"https://explorer.nodestake.top/empower/account/{$accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/empower","tx_page":"https://exp.stakevillage.net/empower/tx/${txHash}","account_page":"https://exp.stakevillage.net/empower/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Empower","tx_page":"https://explorer.declab.pro/Empower/tx/${txHash}","account_page":"https://explorer.declab.pro/Empower/account/{$accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/empowerchain","tx_page":"https://mainnet.whispernode.com/empowerchain/tx/${txHash}","account_page":"https://mainnet.whispernode.com/empowerchain/account/${accountAddress}"},{"kind":"Moonbridge","url":"https://explorer.moonbridge.org/empower","tx_page":"https://explorer.moonbridge.org/empower/tx/${txHash}","account_page":"https://explorer.moonbridge.org/empower/account/${accountAddress}"}]},{"chainId":"epix_4242-1","explorers":[{"kind":"Silk Nodes Explorer","url":"https://explorer.silknodes.io/epix","tx_page":"https://explorer.silknodes.io/osmosis/tx/${txHash}"}]},{"chainId":"1","explorers":[{"kind":"Etherscan","url":"https://etherscan.io/","tx_page":"https://etherscan.io/tx/${txHash}"}]},{"chainId":"ethos_7003-1","explorers":[]},{"chainId":"evmos_9001-2","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/evmos","tx_page":"https://ezstaking.app/evmos/txs/${txHash}","account_page":"https://ezstaking.app/evmos/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/evmos","tx_page":"https://www.mintscan.io/evmos/transactions/${txHash}","account_page":"https://www.mintscan.io/evmos/accounts/${accountAddress}"},{"kind":"blockscout","url":"https://evm.evmos.org","tx_page":"https://evm.evmos.org/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/evmos","tx_page":"https://ping.pub/evmos/tx/${txHash}"},{"kind":"explorers.guru","url":"https://evmos.explorers.guru","tx_page":"https://evmos.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/evmos","tx_page":"https://staking-explorer.com/transaction.php?chain=evmos&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=evmos&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/evmos","tx_page":"https://atomscan.com/evmos/transactions/${txHash}","account_page":"https://atomscan.com/evmos/accounts/${accountAddress}"},{"kind":"tcnetwork","url":"https://evmos.tcnetwork.io","tx_page":"https://evmos.tcnetwork.io/transaction/${txHash}"},{"kind":"Stakeflow","url":"https://stakeflow.io/evmos","account_page":"https://stakeflow.io/evmos/accounts/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/evmos","tx_page":"https://exp.stakevillage.net/evmos/tx/${txHash}","account_page":"https://exp.stakevillage.net/evmos/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/evmos","tx_page":"https://explorer.stavr.tech/evmos/tx/${txHash}","account_page":"https://explorer.stavr.tech/evmos/accounts/${accountAddress}"}]},{"chainId":"fetchhub-4","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/fetchai","tx_page":"https://www.mintscan.io/fetchai/transactions/${txHash}","account_page":"https://www.mintscan.io/fetchai/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/fetchhub","tx_page":"https://ezstaking.app/fetchhub/txs/${txHash}","account_page":"https://ezstaking.app/fetchhub/account/${accountAddress}"},{"kind":"bigdipper","url":"https://explore-fetchhub.fetch.ai","tx_page":"https://explore-fetchhub.fetch.ai/transactions/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/fetchhub","tx_page":"https://ping.pub/fetchhub/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/fetchai","tx_page":"https://atomscan.com/fetchai/transactions/${txHash}","account_page":"https://atomscan.com/fetchai/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/fetchhub","tx_page":"https://staking-explorer.com/transaction.php?chain=fetchhub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=fetchhub&addr=${accountAddress}"},{"kind":"bigdipper","url":"https://fetch-explorer.teasel.org","tx_page":"https://fetch-explorer.teasel.org/transactions/${txHash}"},{"kind":"azoyalabs","url":"https://fetchstation.azoyalabs.com/mainnet","tx_page":"https://fetchstation.azoyalabs.com/mainnet/explorer/transactions/${txHash}","account_page":"https://fetchstation.azoyalabs.com/mainnet/explorer/address/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/fetchhub/","tx_page":"https://explorer.nodeshub.online/fetchhub/tx/${txHash}","account_page":"https://explorer.nodeshub.online/fetchhub/accounts/${accountAddress}"},{"kind":"Blockchain Explorer by AVIAONE 🟒","url":"https://mainnet.explorer.aviaone.com/fetchhub","tx_page":"https://mainnet.explorer.aviaone.com/fetchhub/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/fetchhub/accounts/${accountAddress}"}]},{"chainId":"finschia-2","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/finschia","tx_page":"https://www.mintscan.io/finschia/tx/${txHash}","account_page":"https://www.mintscan.io/finschia/address/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/finschia","tx_page":"https://ezstaking.app/finschia/txs/${txHash}","account_page":"https://ezstaking.app/finschia/account/${accountAddress}"}]},{"chainId":"colosseum-1","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/firmachain","tx_page":"https://staking-explorer.com/transaction.php?chain=firmachain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=firmachain&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/firmachain","tx_page":"https://ezstaking.app/firmachain/txs/${txHash}","account_page":"https://ezstaking.app/firmachain/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Firmachain-M","tx_page":"https://explorer.stavr.tech/Firmachain-M/txs/${txHash}","account_page":"https://explorer.stavr.tech/Firmachain-M/account/${accountAddress}"},{"kind":"bigdipper","url":"https://explorer.firmachain.dev","tx_page":"https://explorer.firmachain.dev/transactions/${txHash}"},{"kind":"explorer.ChainTools","url":"https://explorer.chaintools.tech/firmachain","tx_page":"https://explorer.chaintools.tech/firmachain/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/firmachain","tx_page":"https://atomscan.com/firmachain/transactions/${txHash}","account_page":"https://atomscan.com/firmachain/accounts/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/firmachain/","tx_page":"https://explorer.nodeshub.online/firmachain/tx/${txHash}","account_page":"https://explorer.nodeshub.online/firmachain/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/firmachain","tx_page":"https://explorer.whenmoonwhenlambo.money/firmachain/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/firmachain/account/${accountAddress}"}]},{"chainId":"furya-1","explorers":[{"kind":"Furya Explorer","url":"https://explorer.furya.network/furya-1/","tx_page":"https://explorer.furya.network/furya-1/tx/${txHash}","account_page":"https://explorer.furya.network/furya-1/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/furya","tx_page":"https://staking-explorer.com/transaction.php?chain=furya&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=furya&addr=${accountAddress}"},{"kind":"Nodeshub Explorer","url":"https://explorer.nodeshub.online/furya","tx_page":"https://explorer.nodeshub.online/furya/txs/${txHash}","account_page":"https://explorer.nodeshub.online/furya/account/${accountAddress}"}]},{"chainId":"fxcore","explorers":[{"kind":"starscan","url":"https://starscan.io","tx_page":"https://starscan.io/fxcore/tx/${txHash}","account_page":"https://starscan.io/fxcore/address/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/fx","tx_page":"https://explorer.tcnetwork.io/fx/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/fx/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/fxcore","tx_page":"https://ping.pub/fxcore/tx/${txHash}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/fxcore/","tx_page":"https://explorer.nodeshub.online/fxcore/tx/${txHash}","account_page":"https://explorer.nodeshub.online/fxcore/accounts/${accountAddress}"}]},{"chainId":"galaxy-1","explorers":[{"kind":"ping.pub","url":"https://explorer.postcapitalist.io/Galaxy","tx_page":"https://explorer.postcapitalist.io/Galaxy/tx/${txHash}"}]},{"chainId":"wormchain","explorers":[{"kind":"bigdipper","url":"https://bigdipper.live/wormhole","tx_page":"https://bigdipper.live/wormhole/transactions/${txHash}","account_page":"https://bigdipper.live/wormhole/accounts/${accountAddress}"}]},{"chainId":"genesis_29-2","explorers":[{"kind":"ping.pub","url":"https://ping.pub/genesisL1","tx_page":"https://ping.pub/genesisL1/tx/${txHash}"},{"kind":"ping.pub","url":"https://exp.utsa.tech/genesis","tx_page":"https://exp.utsa.tech/genesis/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Genesisl1","tx_page":"https://explorer.stavr.tech/Genesisl1/tx/${txHash}","account_page":"https://explorer.stavr.tech/Genesisl1/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/genesisl1","tx_page":"https://atomscan.com/genesisl1/transactions/${txHash}","account_page":"https://atomscan.com/genesisl1/accounts/${accountAddress}"}]},{"chainId":"gitopia","explorers":[{"kind":"ping.pub","url":"https://ping.pub/gitopia","tx_page":"https://ping.pub/gitopia/tx/${txHash}","account_page":"https://ping.pub/gitopia/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/gitopia","tx_page":"https://staking-explorer.com/transaction.php?chain=gitopia&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=gitopia&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Gitopia-M","tx_page":"https://explorer.stavr.tech/Gitopia-M/tx/${txHash}","account_page":"https://explorer.stavr.tech/Gitopia-M/account/${accountAddress}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀","url":"https://exp.utsa.tech/gitopia","tx_page":"https://exp.utsa.tech/gitopia/tx/${txHash}","account_page":"https://exp.utsa.tech/gitopia/account/${accountAddress}"},{"kind":"Nodeist","url":"https://exp.nodeist.net/gitopia","tx_page":"https://exp.nodeist.net/gitopia/tx/${txHash}","account_page":"https://exp.nodeist.net/gitopia/account/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/gitopia","tx_page":"https://explorer.stake-take.com/gitopia/tx/${txHash}","account_page":"https://explorer.stake-take.com/gitopia/account/${accountAddress}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/gitopia","tx_page":"https://explorer.nodexcapital.com/gitopia/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/gitopia/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/gitopia","tx_page":"https://explorer.tcnetwork.io/gitopia/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/gitopia/account/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/gitopia","tx_page":"https://explorer.nodestake.org/gitopia/tx/${txHash}","account_page":"https://explorer.nodestake.org/gitopia/account/${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/gitopia-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/gitopia-mainnet/transaction/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/gitopia-mainnet/account/${accountAddress}"},{"kind":"Moonbridge","url":"https://explorer.moonbridge.org/gitopia","tx_page":"https://explorer.moonbridge.org/gitopia/tx/${txHash}","account_page":"https://explorer.moonbridge.org/gitopia/account/${accountAddress}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/gitopia","tx_page":"https://explorer.konsortech.xyz/gitopia/tx/${txHash}","account_page":"https://explorer.konsortech.xyz/gitopia/account/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/gitopia","tx_page":"https://exp.stakevillage.net/gitopia/tx/${txHash}","account_page":"https://exp.stakevillage.net/gitopia/account/${accountAddress}"},{"kind":"AlxVoy ⚑ ANODE.TEAM","url":"https://main.anode.team/gitopia","tx_page":"https://main.anode.team/gitopia/tx/${txHash}","account_page":"https://main.anode.team/gitopia/account/${accountAddress}"},{"kind":"L0vd.com ❀️","url":"https://chain-services.l0vd.com/mainnets/gitopia","tx_page":"https://chain-services.l0vd.com/mainnets/gitopia/tx/${txHash}","account_page":"https://chain-services.l0vd.com/mainnets/gitopia/account/${accountAddress}"},{"kind":"ToTheMars","url":"https://explorer.tothemars.network/gitopia","tx_page":"https://explorer.tothemars.network/gitopia/tx/${txHash}","account_page":"https://explorer.tothemars.network/gitopia/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Gitopia","tx_page":"https://explorer.declab.pro/Gitopia/tx/${txHash}","account_page":"https://explorer.declab.pro/Gitopia/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/gitopia","tx_page":"https://mainnet.whispernode.com/gitopia/tx/${txHash}","account_page":"https://mainnet.whispernode.com/gitopia/account/${accountAddress}"}]},{"chainId":"govgen-1","explorers":[{"kind":"ping.pub","url":"https://explorer.govgen.io/","tx_page":"https://explorer.govgen.io/govgen/tx/${txHash}","account_page":"https://explorer.govgen.io/govgen/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/govgen","tx_page":"https://staking-explorer.com/transaction.php?chain=govgen&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=govgen&addr=${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.nodeshub.online/govgen","tx_page":"https://explorer.nodeshub.online/govgen/tx/${txHash}","account_page":"https://explorer.nodeshub.online/govgen/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.equinoxdao.xyz/govgen","tx_page":"https://explorer.equinoxdao.xyz/govgen/tx/${txHash}","account_page":"https://explorer.equinoxdao.xyz/govgen/account/${accountAddress}"},{"kind":"ping.pub","url":"https://test.explorer.ist/govgen","tx_page":"https://test.explorer.ist/govgen/tx/${txHash}","account_page":"https://test.explorer.ist/govgen/account/${accountAddress}"},{"kind":"posthuman","url":"https://explorer.posthuman.digital/govgen","tx_page":"https://explorer.posthuman.digital/govgen/tx/${txHash}","account_page":"https://explorer.posthuman.digital/govgen/account/${accountAddress}"}]},{"chainId":"gravity-bridge-3","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/gravitybridge","tx_page":"https://ezstaking.app/gravitybridge/txs/${txHash}","account_page":"https://ezstaking.app/gravitybridge/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/gravity-bridge","tx_page":"https://www.mintscan.io/gravity-bridge/transactions/${txHash}","account_page":"https://www.mintscan.io/gravity-bridge/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/gravity-bridge","tx_page":"https://ping.pub/gravity-bridge/tx/${txHash}"},{"kind":"explorers.guru","url":"https://gravity.explorers.guru","tx_page":"https://gravity.explorers.guru/transaction/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/gravity-bridge","tx_page":"https://atomscan.com/gravity-bridge/transactions/${txHash}","account_page":"https://atomscan.com/gravity-bridge/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/gravitybridge","tx_page":"https://explorer.tcnetwork.io/gravitybridge/transaction/${txHash}"},{"kind":"Stakeflow","url":"https://stakeflow.io/gravity-bridge","account_page":"https://stakeflow.io/gravity-bridge/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/GravityBridge","tx_page":"https://explorer.stavr.tech/GravityBridge/tx/${txHash}","account_page":"https://explorer.stavr.tech/GravityBridge/accounts/${accountAddress}"},{"kind":"AviaOne 🟒","url":"https://mainnet.explorer.aviaone.com/gravity-bridge","tx_page":"https://mainnet.explorer.aviaone.com/gravity-bridge/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/gravity-bridge/accounts/${accountAddress}"}]},{"chainId":"haqq_11235-1","explorers":[{"kind":"blockscout","url":"https://explorer.haqq.network","tx_page":"https://explorer.haqq.network/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/haqq","tx_page":"https://ping.pub/haqq/tx/${txHash}"},{"kind":"explorers.guru","url":"https://haqq.explorers.guru","tx_page":"https://haqq.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/haqq","tx_page":"https://staking-explorer.com/transaction.php?chain=haqq&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=haqq&addr=${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/haqq","tx_page":"https://explorer.nodestake.org/haqq/tx/${txHash}"},{"kind":"KonsorTech Explorer","url":"https://explorer.konsortech.xyz/haqq","tx_page":"https://explorer.konsortech.xyz/haqq/tx/${txHash}"},{"kind":"Palamar Explorer","url":"https://explorer.palamar.io/haqq","tx_page":"https://explorer.palamar.io/haqq/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/HAQQ-Mainnet","tx_page":"https://explorer.stavr.tech/HAQQ-Mainnet/tx/${txHash}"}]},{"chainId":"helichain","explorers":[{"kind":"ping.pub","url":"https://explorer.helichain.com/Helichain","tx_page":"https://explorer.helichain.com/Helichain/tx/${txHash}","account_page":"https://explorer.helichain.com/Helichain/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/heli","tx_page":"https://staking-explorer.com/transaction.php?chain=heli&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=heli&addr=${accountAddress}"}]},{"chainId":"highbury_710-1","explorers":[{"kind":"pingpub","url":"https://explorer.furya.wtf/","tx_page":"https://www.explorer.furya.wtf//txs/${txHash}","account_page":"https://explorer.furya.wtf//account/${accountAddress}"}]},{"chainId":"humans_1089-1","explorers":[{"kind":"mintscan","url":"https://mintscan.io/humans","tx_page":"https://www.mintscan.io/humans/tx/${txHash}"},{"kind":"ezstaking","url":"https://ezstaking.app/humans","tx_page":"https://ezstaking.app/humans/txs/${txHash}","account_page":"https://ezstaking.app/humans/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/humans","tx_page":"https://ping.pub/humans/tx/${txHash}"},{"kind":"explorers.guru","url":"https://humans.explorers.guru","tx_page":"https://humans.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/humans","tx_page":"https://staking-explorer.com/transaction.php?chain=humans&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=humans&addr=${accountAddress}"},{"kind":"exploreme","url":"https://humansai.exploreme.pro/","tx_page":"https://humans.exploreme.pro/transaction/${txHash}"},{"kind":"itrocket","url":"https://mainnet.itrocket.net/humans/staking","tx_page":"https://mainnet.itrocket.net/humans/tx/${txHash}","account_page":"https://mainnet.itrocket.net/humans/account/${accountAddress}"},{"kind":"posthuman","url":"https://explorer.posthuman.digital/humans","tx_page":"https://explorer.posthuman.digital/humans/tx/${txHash}","account_page":"https://explorer.posthuman.digital/humans/account/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/humans/staking","tx_page":"https://explorer.nodestake.org/humans/tx/${txHash}","account_page":"https://explorer.nodestake.org/humans/account/${accountAddress}"}]},{"chainId":"Antora","explorers":[{"kind":"chadscan","url":"https://chadscan.com","tx_page":"https://chadscan.com/transactions/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/idep","tx_page":"https://atomscan.com/idep/transactions/${txHash}","account_page":"https://atomscan.com/idep/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/idep","tx_page":"https://explorer.tcnetwork.io/idep/transaction/${txHash}"}]},{"chainId":"ixo-5","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/impacthub","tx_page":"https://staking-explorer.com/transaction.php?chain=impacthub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=impacthub&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/ixo","tx_page":"https://ezstaking.app/ixo/txs/${txHash}","account_page":"https://ezstaking.app/ixo/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/IXO-Mainnet","tx_page":"https://explorer.stavr.tech/IXO-Mainnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/IXO-Mainnet/account/${accountAddress}"},{"kind":"bigdipper","url":"https://blockscan.ixo.world","tx_page":"https://blockscan.ixo.world/transactions/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/ixo","tx_page":"https://ping.pub/ixo/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/ixo","tx_page":"https://atomscan.com/ixo/transactions/${txHash}","account_page":"https://atomscan.com/ixo/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/ixo","tx_page":"https://explorer.whenmoonwhenlambo.money/ixo/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/ixo/account/${accountAddress}"}]},{"chainId":"imversed_5555555-1","explorers":[{"kind":"blockscout","url":"https://txe.imversed.network/","tx_page":"https://txe.imversed.network/tx/${txHash}"}]},{"chainId":"injective-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/injective","tx_page":"https://ezstaking.app/injective/txs/${txHash}","account_page":"https://ezstaking.app/injective/account/${accountAddress}"},{"kind":"injectiveprotocol","url":"https://explorer.injective.network/","tx_page":"https://explorer.injective.network/transaction/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/injective","tx_page":"https://ping.pub/injective/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/injective","tx_page":"https://atomscan.com/injective/transactions/${txHash}","account_page":"https://atomscan.com/injective/accounts/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/injective","tx_page":"https://www.mintscan.io/injective/transactions/${txHash}","account_page":"https://www.mintscan.io/injective/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/injective","tx_page":"https://staking-explorer.com/transaction.php?chain=injective&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=injective&addr=${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/injective","account_page":"https://stakeflow.io/injective/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/injective","tx_page":"https://mainnet.whispernode.com/injective/tx/${txHash}","account_page":"https://mainnet.whispernode.com/injective/account/${accountAddress}"}]},{"chainId":"int3face-1","explorers":[{"kind":"ping.pub","url":"https://explorer.int3face.zone","tx_page":"https://explorer.int3face.zone/int3face-1/tx/${txHash}"}]},{"chainId":"irishub-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/irisnet","tx_page":"https://ezstaking.app/irisnet/txs/${txHash}","account_page":"https://ezstaking.app/irisnet/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/iris","tx_page":"https://www.mintscan.io/iris/transactions/${txHash}","account_page":"https://www.mintscan.io/iris/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/iris-network","tx_page":"https://ping.pub/iris-network/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/irisnet","tx_page":"https://staking-explorer.com/transaction.php?chain=irisnet&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=irisnet&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/iris-network","tx_page":"https://atomscan.com/iris-network/transactions/${txHash}","account_page":"https://atomscan.com/iris-network/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/irisnet","account_page":"https://stakeflow.io/irisnet/accounts/${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/iris","tx_page":"https://exp.nodeist.net/iris/tx/${txHash}"},{"kind":"L0vd.com ❀️","url":"https://explorers.l0vd.com/iris-mainnet","tx_page":"https://explorers.l0vd.com/iris-mainnet/tx/${txHash}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/iris","tx_page":"https://explorer.konsortech.xyz/iris/tx/${txHash}"}]},{"chainId":"jackal-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/jackal","tx_page":"https://ping.pub/jackal/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/jackal","tx_page":"https://staking-explorer.com/transaction.php?chain=jackal&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=jackal&addr=${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/jackal","tx_page":"https://explorer.nodestake.org/jackal/tx/${txHash}"},{"kind":"BccNodes","url":"https://explorer.bccnodes.com/jackal","tx_page":"https://explorer.bccnodes.com/jackal/tx/${txHash}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀","url":"https://exp.utsa.tech/jackal","tx_page":"https://exp.utsa.tech/jackal/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/jackal","tx_page":"https://explorer.stavr.tech/jackal/tx/${txHash}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/jackal","tx_page":"https://exp.nodeist.net/jackal/tx/${txHash}"},{"kind":"Big Dipper","url":"https://bigdipper.live/jackal","tx_page":"https://bigdipper.live/jackal/transactions/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/jackal","tx_page":"https://mainnet.whispernode.com/jackal/tx/${txHash}","account_page":"https://mainnet.whispernode.com/jackal/account/${accountAddress}"}]},{"chainId":"joltify_1729-1","explorers":[{"kind":"big dipper","url":"https://explorer.joltify.io/joltify","tx_page":"https://explorer.joltify.io/joltify/transactions/${txHash}","account_page":"https://explorer.joltify.io/joltify/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/joltify","tx_page":"https://staking-explorer.com/transaction.php?chain=joltify&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=joltify&addr=${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/joltify","tx_page":"https://explorer.whenmoonwhenlambo.money/joltify/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/joltify/account/${accountAddress}"}]},{"chainId":"juno-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/juno","tx_page":"https://ezstaking.app/juno/txs/${txHash}","account_page":"https://ezstaking.app/juno/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/juno","tx_page":"https://ping.pub/juno/tx/${txHash}"},{"kind":"explorers.guru","url":"https://juno.explorers.guru","tx_page":"https://juno.explorers.guru/transaction/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/juno","tx_page":"https://www.mintscan.io/juno/transactions/${txHash}","account_page":"https://www.mintscan.io/juno/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/juno","tx_page":"https://staking-explorer.com/transaction.php?chain=juno&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=juno&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/juno","tx_page":"https://atomscan.com/juno/transactions/${txHash}","account_page":"https://atomscan.com/juno/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/juno","tx_page":"https://explorer.stavr.tech/juno/transactions/${txHash}","account_page":"https://explorer.stavr.tech/juno/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/juno","tx_page":"https://explorer.tcnetwork.io/juno/transaction/${txHash}"},{"kind":"Stakeflow","url":"https://stakeflow.io/juno","account_page":"https://stakeflow.io/juno/accounts/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Juno","tx_page":"https://explorer.declab.pro/Juno/tx/${txHash}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/juno/","tx_page":"https://explorer.nodeshub.online/juno/tx/${txHash}","account_page":"https://explorer.nodeshub.online/juno/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/juno","tx_page":"https://mainnet.whispernode.com/juno/tx/${txHash}","account_page":"https://mainnet.whispernode.com/juno/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/juno","tx_page":"https://explorer.chainroot.io/juno/transactions/${txHash}","account_page":"https://explorer.chainroot.io/juno/accounts/${accountAddress}"}]},{"chainId":"kava_2222-10","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/kava","tx_page":"https://www.mintscan.io/kava/transactions/${txHash}","account_page":"https://www.mintscan.io/kava/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/kava","tx_page":"https://staking-explorer.com/transaction.php?chain=kava&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=kava&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/kava","tx_page":"https://ezstaking.app/kava/txs/${txHash}","account_page":"https://ezstaking.app/kava/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/kava","tx_page":"https://ping.pub/kava/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/kava","tx_page":"https://atomscan.com/kava/transactions/${txHash}","account_page":"https://atomscan.com/kava/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/kava","account_page":"https://stakeflow.io/kava/accounts/${accountAddress}"}]},{"chainId":"kichain-2","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/kichain","tx_page":"https://ezstaking.app/kichain/txs/${txHash}","account_page":"https://ezstaking.app/kichain/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/ki-chain","tx_page":"https://www.mintscan.io/ki-chain/txs/${txHash}","account_page":"https://www.mintscan.io/ki-chain/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Kichain-Mainnet","tx_page":"https://explorer.stavr.tech/Kichain-Mainnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/kichain","tx_page":"https://ping.pub/kichain/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/kichain","tx_page":"https://staking-explorer.com/transaction.php?chain=kichain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=kichain&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/ki-chain","tx_page":"https://atomscan.com/ki-chain/transactions/${txHash}","account_page":"https://atomscan.com/ki-chain/accounts/${accountAddress}"},{"kind":"AVIAONE Explorer 🟒","url":"https://mainnet.explorer.aviaone.com/kichain","tx_page":"https://mainnet.explorer.aviaone.com/kichain/transactions/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/kichain/accounts/${accountAddress}"}]},{"chainId":"kima_network","explorers":[{"kind":"Kima Network Explorer","url":"https://explorer.kima.network/","tx_page":"https://explorer.kima.network/transactions/${txHash}"}]},{"chainId":"darchub","explorers":[{"kind":"konstellation","url":"https://explorer.konstellation.tech/","tx_page":"https://explorer.konstellation.tech/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/konstellation","tx_page":"https://staking-explorer.com/transaction.php?chain=konstellation&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=konstellation&addr=${accountAddress}"},{"kind":"cosmotracker","url":"https://cosmotracker.com/konstellation","tx_page":"https://cosmotracker.com/konstellation/tx/${txHash}"}]},{"chainId":"luwak-1","explorers":[{"kind":"Kopi Foundation Explorer","url":"https://explorer.kopi.money/","tx_page":"https://explorer.kopi.money/luwak-1/tx/${txHash}","account_page":"https://explorer.kopi.money/luwak-1/account/${accountAddress}"},{"kind":"CzCryptoman Explorer","url":"https://explorer.czcryptoman.com/kopi-mainnet","tx_page":"https://explorer.czcryptoman.com/kopi-mainnet/tx/${txHash}","account_page":"https://explorer.czcryptoman.com/kopi-mainnet/account/${accountAddress}"},{"kind":"Sychonix Explorer","url":"https://explorer.sychonix.com/kopi-mainnet","tx_page":"https://explorer.sychonix.com/kopi-mainnet/tx/${txHash}","account_page":"https://explorer.sychonix.com/kopi-mainnet/account/${accountAddress}"},{"kind":"Nodeshub Explorer","url":"https://explorer.nodeshub.online/Kopi","tx_page":"https://explorer.nodeshub.online/Kopi/txs/${txHash}","account_page":"https://explorer.nodeshub.online/Kopi/account/${accountAddress}"},{"kind":"Bony Explorer","url":"https://explorer.bonynode.online/kopi/","tx_page":"https://explorer.bonynode.online/kopi/txs/${txHash}","account_page":"https://explorer.bonynode.online/kopi/account/${accountAddress}"},{"kind":"Moonbridge Explorer","url":"https://explorer.moonbridge.org/kopi","tx_page":"https://explorer.moonbridge.org/kopi/txs/${txHash}","account_page":"https://explorer.moonbridge.org/kopi/account/${accountAddress}"},{"kind":"Cosmoscan Explorer","url":"https://cosmoscan.com/kopi","tx_page":"https://cosmoscan.com/kopi/txs/${txHash}","account_page":"https://cosmoscan.com/kopi/account/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/kopi/","tx_page":"https://explorer.nodestake.org/kopi/txs/${txHash}","account_page":"https://explorer.nodestake.org/kopi/account/${accountAddress}"}]},{"chainId":"kaiyo-1","explorers":[{"kind":"kujira","url":"https://finder.kujira.app","tx_page":"https://finder.kujira.app/kaiyo-1/tx/${txHash}"},{"kind":"explorers.guru","url":"https://kujira.explorers.guru","tx_page":"https://kujira.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/kujira","tx_page":"https://staking-explorer.com/transaction.php?chain=kujira&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=kujira&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/kujira","tx_page":"https://ezstaking.app/kujira/txs/${txHash}","account_page":"https://ezstaking.app/kujira/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/kujira","tx_page":"https://atomscan.com/kujira/transactions/${txHash}","account_page":"https://atomscan.com/kujira/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/kujira","tx_page":"https://mainnet.whispernode.com/kujira/tx/${txHash}","account_page":"https://mainnet.whispernode.com/kujira/account/${accountAddress}"}]},{"chainId":"kyve-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/kyve","tx_page":"https://ezstaking.app/kyve/txs/${txHash}","account_page":"https://ezstaking.app/kyve/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/kyve","tx_page":"https://www.mintscan.io/kyve/txs/${txHash}","account_page":"https://www.mintscan.io/kyve/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/kyve","tx_page":"https://staking-explorer.com/transaction.php?chain=kyve&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=kyve&addr=${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/kyve","tx_page":"https://explorer.nodestake.top/kyve/txs/${txHash}","account_page":"https://explorer.nodestake.top/kyve/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Kyve","tx_page":"https://explorer.stavr.tech/Kyve/txs/${txHash}","account_page":"https://explorer.stavr.tech/Kyve/account/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/kyve","tx_page":"https://explorer.stake-take.com/kyve/txs/${txHash}","account_page":"https://explorer.stake-take.com/kyve/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Kyve","tx_page":"https://explorer.declab.pro/Kyve/txs/${txHash}","account_page":"https://explorer.declab.pro/Kyve/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/kyve","tx_page":"https://explorer.whenmoonwhenlambo.money/kyve/txs/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/kyve/account/${accountAddress}"},{"kind":"KYVE Explorer","url":"https://explorer.kyve.network/kyve","tx_page":"https://explorer.kyve.network/kyve/tx/${txHash}","account_page":"https://explorer.kyve.network/kyve/account/${accountAddress}"},{"kind":"Viewblock","url":"https://viewblock.io/kyve","tx_page":"https://viewblock.io/kyve/tx/${txHash}","account_page":"https://viewblock.io/kyve/address/${accountAddress}"}]},{"chainId":"lambda_92000-1","explorers":[{"kind":"blockscout","url":"https://explorer.lambda.im/","tx_page":"https://explorer.lambda.im/tx/${txHash}"},{"kind":"NodeStake","url":"https://explorer.nodestake.top/lambda","tx_page":"https://explorer.nodestake.top/lambda/txs/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/lambda","tx_page":"https://explorer.stavr.tech/lambda/txs/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/lambda","tx_page":"https://atomscan.com/lambda/transactions/${txHash}","account_page":"https://atomscan.com/lambda/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/lambda","tx_page":"https://explorer.whenmoonwhenlambo.money/lambda/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/lambda/account/${accountAddress}"}]},{"chainId":"lava-mainnet-1","explorers":[{"kind":"finteh","url":"https://explorer.finteh.org/lava","tx_page":"https://explorer.finteh.org/lava/tx/${txHash}","account_page":"https://explorer.finteh.org/lava/account/${accountAddress}"},{"kind":"guru","url":"https://lava.explorers.guru/","tx_page":"https://lava.explorers.guru/transaction/${txHash}","account_page":"https://lava.explorers.guru/account/${accountAddress}"},{"kind":"w3coins","url":"https://lava-explorer.w3coins.io/Lava","tx_page":"https://lava-explorer.w3coins.io/Lava/tx/${txHash}","account_page":"https://lava-explorer.w3coins.io/Lava/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/lava","tx_page":"https://staking-explorer.com/transaction.php?chain=lava&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=lava&addr=${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/lava-mainnet","tx_page":"https://exp.stakevillage.net/lava-mainnet/tx/${txHash}","account_page":"https://exp.stakevillage.net/lava-mainnet/account/${accountAddress}"},{"kind":"AVIAONE 🟒","url":"https://mainnet.explorer.aviaone.com/lava/","tx_page":"https://mainnet.explorer.aviaone.com/lava/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/lava/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Lava-Mainnet","tx_page":"https://explorer.stavr.tech/Lava-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Lava-Mainnet/account/${accountAddress}"}]},{"chainId":"likecoin-mainnet-2","explorers":[{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/likecoin","tx_page":"https://staking-explorer.com/transaction.php?chain=likecoin&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=likecoin&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/likecoin","tx_page":"https://ezstaking.app/likecoin/txs/${txHash}","account_page":"https://ezstaking.app/likecoin/account/${accountAddress}"},{"kind":"lunie-ng","url":"https://stake.like.co/"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Likecoin-M","tx_page":"https://explorer.stavr.tech/Likecoin-M/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/likecoin","tx_page":"https://ping.pub/likecoin/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/likecoin","tx_page":"https://atomscan.com/likecoin/transactions/${txHash}","account_page":"https://atomscan.com/likecoin/accounts/${accountAddress}"}]},{"chainId":"logos_7002-1","explorers":[]},{"chainId":"loop-1","explorers":[{"kind":"ping.pub","url":"https://ping.pfc.zone/loop","tx_page":"https://ping.pfc.zone/loop/tx/${txHash}"}]},{"chainId":"lorenzo_8329-1","explorers":[{"kind":"blockscout","url":"https://scan.lorenzo-protocol.xyz/","tx_page":"https://scan.lorenzo-protocol.xyz/tx/${txHash}"}]},{"chainId":"loyal-main-02","explorers":[{"kind":"Loyal explorer","url":"https://pingpub.joinloyal.io/loyal","tx_page":"https://pingpub.joinloyal.io/loyal/tx/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/loyal","tx_page":"https://explorer.tcnetwork.io/loyal/transaction/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/loyal","tx_page":"https://explorer.nodestake.top/loyal/tx/${txHash}"}]},{"chainId":"lum-network-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/lumnetwork","tx_page":"https://ezstaking.app/lumnetwork/txs/${txHash}","account_page":"https://ezstaking.app/lumnetwork/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/lum","tx_page":"https://www.mintscan.io/lum/transactions/${txHash}","account_page":"https://www.mintscan.io/lum/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/lumnetwork","tx_page":"https://staking-explorer.com/transaction.php?chain=lumnetwork&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=lumnetwork&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/LumNetwork-Mainnet","tx_page":"https://explorer.stavr.tech/LumNetwork-Mainnet/tx/${txHash}"},{"kind":"lum-network","url":"https://explorer.lum.network","tx_page":"https://explorer.lum.network/txs/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/lum-network","tx_page":"https://ping.pub/lum-network/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/lum-network","tx_page":"https://atomscan.com/lum-network/transactions/${txHash}","account_page":"https://atomscan.com/lum-network/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/lum-network","tx_page":"https://explorer.whenmoonwhenlambo.money/lum-network/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/lum-network/account/${accountAddress}"}]},{"chainId":"mande_18071918-1","explorers":[{"kind":"FYI","url":"https://dym.fyi/r/mande","tx_page":"https://dym.fyi/r/mande/tx/${txHash}","account_page":"https://dym.fyi/r/mande/address/${accountAddress}"}]},{"chainId":"mantra-1","explorers":[{"kind":"ITRocket","url":"https://mainnet.itrocket.net/mantra","tx_page":"https://mainnet.itrocket.net/mantra/transaction/${txHash}","account_page":"https://mainnet.itrocket.net/mantra/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Mantra-Mainnet","tx_page":"https://explorer.stavr.tech/Mantra-Mainnet/transaction/${txHash}","account_page":"https://explorer.stavr.tech/Mantra-Mainnet/account/${accountAddress}"}]},{"chainId":"mars-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/mars-protocol","tx_page":"https://ezstaking.app/mars-protocol/txs/${txHash}","account_page":"https://ezstaking.app/mars-protocol/account/${accountAddress}"},{"kind":"BigDipper","url":"https://explorer.marsprotocol.io","tx_page":"https://explorer.marsprotocol.io/transactions/${txHash}","account_page":"https://explorer.marsprotocol.io/accounts/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/mars","tx_page":"https://explorer.nodestake.top/mars/transactions/${txHash}","account_page":"https://explorer.nodestake.top/mars/account/${accountAddress}"},{"kind":"Nodes.Guru","url":"https://mars.explorers.guru/","tx_page":"https://mars.explorers.guru/transaction/${txHash}","account_page":"https://mars.explorers.guru/account/${accountAddress}"},{"kind":"MintScan","url":"https://www.mintscan.io/mars-protocol","tx_page":"https://www.mintscan.io/mars-protocol/transactions/${txHash}","account_page":"https://www.mintscan.io/mars-protocol/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/mars","tx_page":"https://ping.pub/mars/tx/${txHash}","account_page":"https://ping.pub/mars/account/${accountAddress}"}]},{"chainId":"mayachain-mainnet-v1","explorers":[{"kind":"Maya Protocol explorer","url":"https://www.explorer.mayachain.info","tx_page":"https://www.explorer.mayachain.info/#/txs/${txHash}"}]},{"chainId":"medasdigital-2","explorers":[{"kind":"BigDipper","url":"https://explorer.medas-digital.io:3100/medasdigital","tx_page":"https://explorer.medas-digital.io:3100/medasdigital/transactions/${txHash}","account_page":"explorer.medas-digital.io:3100/medasdigital/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/frontier/medasdigital","tx_page":"https://atomscan.com/frontier/medasdigital/transactions/${txHash}","account_page":"https://atomscan.com/frontier/medasdigital/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/medasdigital","tx_page":"https://explorer.whenmoonwhenlambo.money/medasdigital/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/medasdigital/account/${accountAddress}"}]},{"chainId":"meme-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/meme","tx_page":"https://ping.pub/meme/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/meme","tx_page":"https://atomscan.com/meme/transactions/${txHash}","account_page":"https://atomscan.com/meme/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/meme","tx_page":"https://staking-explorer.com/transaction.php?chain=meme&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=meme&addr=${accountAddress}"},{"kind":"MEME Explorer","url":"https://explorer.meme.sx/meme","tx_page":"https://explorer.meme.sx/meme/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/meme","tx_page":"https://atomscan.com/meme/transactions/${txHash}","account_page":"https://atomscan.com/meme/accounts/${accountAddress}"},{"kind":"Brochain","url":"https://explorer.brocha.in/meme","tx_page":"https://explorer.brocha.in/meme/tx/${txHash}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/meme","tx_page":"https://explorer.stake-take.com/meme/tx/${txHash}","account_page":"https://explorer.stake-take.com/meme/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Meme","tx_page":"https://explorer.stavr.tech/Meme/tx/${txHash}","account_page":"https://explorer.stavr.tech/Meme/account/${accountAddress}"}]},{"chainId":"migaloo-1","explorers":[{"kind":"Migaloo Explorers Guru","url":"https://migaloo.explorers.guru","tx_page":"https://migaloo.explorers.guru/transaction/${txHash}","account_page":"https://migaloo.explorers.guru/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/migaloo","tx_page":"https://ping.pub/migaloo/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/migaloo","tx_page":"https://staking-explorer.com/transaction.php?chain=migaloo&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=migaloo&addr=${accountAddress}"},{"kind":"Silk Nodes","url":"https://explorer.silknodes.io/migaloo","tx_page":"https://explorer.silknodes.io/migaloo/tx/${txHash}","account_page":"https://explorer.silknodes.io/migaloo/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/migaloo","tx_page":"https://atomscan.com/migaloo/transactions/${txHash}","account_page":"https://atomscan.com/migaloo/accounts/${accountAddress}"}]},{"chainId":"milkyway","explorers":[]},{"chainId":"mainnet","explorers":[{"kind":"Mises-GW Explorer","url":"https://gw.mises.site","tx_page":"https://gw.mises.site/tx/${txHash}"},{"kind":"Jambulmerah ping.pub based","url":"https://explorer.jambulmerah.dev/mises","tx_page":"https://explorer.jambulmerah.dev/mises/tx/${txHash}"}]},{"chainId":"mtgbp-1","explorers":[{"kind":"ping.pub","url":"https://blockexplorer.mtgbp.com/mtgbp","tx_page":"https://blockexplorer.mtgbp.com/mtgbp/tx/${txHash}","account_page":"https://blockexplorer.mtgbp.com/mtgbp/accounts/${accountAddress}"}]},{"chainId":"mun-1","explorers":[{"url":"https://explorer.mun.money/mun","tx_page":"https://explorer.mun.money/mun/${txHash}"},{"url":"https://explorer.indonode.net/mun/staking","tx_page":"https://explorer.indonode.net/mun/${txHash}"},{"url":"https://explorer.konsortech.xyz/mun/staking","tx_page":"https://explorer.konsortech.xyz/mun/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/mun","tx_page":"https://ping.pub/mun/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/mun","tx_page":"https://explorer.tcnetwork.io/mun/transaction/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/mun","tx_page":"https://explorer.whenmoonwhenlambo.money/mun/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/mun/account/${accountAddress}"}]},{"chainId":"mythos_7001-1","explorers":[]},{"chainId":"neura_266-1"},{"chainId":"Neutaro-1","explorers":[{"kind":"ping.pub","url":"https://explorer.neutaro.io/Neutaro","tx_page":"https://explorer.neutaro.io/Neutaro/tx/${txHash}","account_page":"https://explorer.neutaro.io/Neutaro/account/${accountAddress}"}]},{"chainId":"neutron-1","explorers":[{"kind":"Mintscan","url":"https://www.mintscan.io/neutron","tx_page":"https://www.mintscan.io/neutron/transactions/${txHash}","account_page":"https://www.mintscan.io/neutron/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/neutron","tx_page":"https://ezstaking.app/neutron/txs/${txHash}","account_page":"https://ezstaking.app/neutron/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/neutron","tx_page":"https://mainnet.whispernode.com/neutron/tx/${txHash}","account_page":"https://mainnet.whispernode.com/neutron/account/${accountAddress}"}]},{"chainId":"cataclysm-1","explorers":[{"kind":"Nodes Guru","url":"https://nibiru.explorers.guru/","tx_page":"https://nibiru.explorers.guru/transaction/${txHash}","account_page":"https://nibiru.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/nibiru","tx_page":"https://staking-explorer.com/transaction.php?chain=nibiru&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=nibiru&addr=${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/nibiru","tx_page":"https://explorer.nodestake.org/nibiru/tx/${txHash}","account_page":"https://explorer.nodestake.org/nibiru/account/${accountAddress}"},{"kind":"LiveRaveN","url":"https://mainnet.explorer.liveraven.net/nibiru","tx_page":"https://mainnet.explorer.liveraven.net/nibiru/tx/${txHash}","account_page":"https://mainnet.explorer.liveraven.net/nibiru/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Nibiru-Mainnet","tx_page":"https://explorer.stavr.tech/Nibiru-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Nibiru-Mainnet/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/nibiru/","tx_page":"https://explorer.nodeshub.online/nibiru/tx/${txHash}","account_page":"https://explorer.nodeshub.online/nibiru/accounts/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/nibiru-mainnet","tx_page":"https://exp.stakevillage.net/nibiru-mainnet/tx/${txHash}","account_page":"https://exp.stakevillage.net/nibiru-mainnet/accounts/${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/nibiru-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/nibiru-mainnet/tx/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/nibiru-mainnet/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/nibiru","tx_page":"https://explorer.whenmoonwhenlambo.money/nibiru/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/nibiru/account/${accountAddress}"}]},{"chainId":"nim_1122-1","explorers":[{"kind":"Orbit Codes","url":"https://explorer.nim.network","tx_page":"https://explorer.nim.network/tx/${txHash}","account_page":"https://explorer.nim.network/account/${accountAddress}"}]},{"chainId":"noble-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/noble","tx_page":"https://www.mintscan.io/noble/txs/${txHash}","account_page":"https://www.mintscan.io/noble/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/noble","tx_page":"https://ezstaking.app/noble/txs/${txHash}","account_page":"https://ezstaking.app/noble/account/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/noble","account_page":"https://stakeflow.io/noble/accounts/${accountAddress}"}]},{"chainId":"pirin-1","explorers":[{"kind":"Nolus Explorer","url":"https://explorer.nolus.io/pirin-1","tx_page":"https://explorer.nolus.io/pirin-1/tx/${txHash}","account_page":"https://explorer.nolus.io/pirin-1/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/nolus","tx_page":"https://ping.pub/nolus/tx/${txHash}","account_page":"https://ping.pub/nolus/account/${accountAddress}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/nolus","tx_page":"https://explorer.nodexcapital.com/nolus/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/nolus/account/${accountAddress}"},{"kind":"Nodes Guru Explorer","url":"https://nolus.explorers.guru","tx_page":"https://nolus.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/nolus","tx_page":"https://staking-explorer.com/transaction.php?chain=nolus&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=nolus&addr=${accountAddress}"},{"kind":"KJ Nodes Explorer","url":"https://explorer.kjnodes.com/nolus","tx_page":"https://explorer.kjnodes.com/nolus/tx/${txHash}","account_page":"https://explorer.kjnodes.com/nolus/account/${accountAddress}"}]},{"chainId":"nomic-stakenet-3","explorers":[{"kind":"bigdipper","url":"https://bigdipper.live/nomic","account_page":"https://bigdipper.live/nomic/accounts/${accountAddress}","tx_page":"https://bigdipper.live/nomic/transactions/${txHash}"},{"kind":"Zenscan.io","url":"https://nomic.zenscan.io/index.php","account_page":"https://nomic.zenscan.io/address.php?address=${accountAddress}","tx_page":"https://nomic.zenscan.io/transaction.php?hash=${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/nomic","tx_page":"https://mainnet.whispernode.com/nomic/tx/${txHash}","account_page":"https://mainnet.whispernode.com/nomic/account/${accountAddress}"}]},{"chainId":"nyx","explorers":[{"kind":"Nodes Guru explorer","url":"https://nym.explorers.guru/","tx_page":"https://nym.explorers.guru/transaction/${txHash}","account_page":"https://nym.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/nyx","tx_page":"https://staking-explorer.com/transaction.php?chain=nyx&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=nyx&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/nyx","tx_page":"https://ezstaking.app/nyx/txs/${txHash}","account_page":"https://ezstaking.app/nyx/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/nyx","tx_page":"https://www.mintscan.io/nyx/transactions/${txHash}","account_page":"https://www.mintscan.io/nyx/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/nyx","tx_page":"https://ping.pub/nyx/tx/${txHash}"}]},{"chainId":"octa","explorers":[{"kind":"Octa explorer","url":"http://explorer.octa-coin.com/","tx_page":"http://explorer.octa-coin.com/txs/${txHash}"}]},{"chainId":"odin-mainnet-freya","explorers":[{"kind":"Runa","url":"https://runa.odinprotocol.io/","tx_page":"https://runa.odinprotocol.io/transactions/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Odin-Mainnet","tx_page":"https://explorer.stavr.tech/Odin-Mainnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/odin","tx_page":"https://ping.pub/odin/tx/${txHash}"}]},{"chainId":"exchain-66","explorers":[{"kind":"OKLink","url":"https://www.oklink.com/en/okc","tx_page":"https://www.oklink.com/en/okc/tx/${txHash}","account_page":"https://www.oklink.com/en/okc/address/${accountAddress}"}]},{"chainId":"omniflixhub-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/omniflix","tx_page":"https://www.mintscan.io/omniflix/transactions/${txHash}","account_page":"https://www.mintscan.io/omniflix/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/omniflixhub","tx_page":"https://atomscan.com/omniflixhub/transactions/${txHash}","account_page":"https://atomscan.com/omniflixhub/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/omniflixhub","tx_page":"https://staking-explorer.com/transaction.php?chain=omniflixhub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=omniflixhub&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/omniflixhub","tx_page":"https://ezstaking.app/omniflixhub/txs/${txHash}","account_page":"https://ezstaking.app/omniflixhub/account/${accountAddress}"},{"kind":"STAKR.space explorer","url":"https://explorer.stakr.space/omniflix/","tx_page":"https://explorer.stakr.space/omniflix/tx/${txHash}","account_page":"https://explorer.stakr.space/omniflix/account/${accountAddress}"}]},{"chainId":"onex-mainnet-1","explorers":[{"kind":"Dexplorer - must enter rpc link provided above","url":"https://dexplorer.cakralabs.site","tx_page":"https://dexplorer.cakralabs.site/txs/${txHash}","account_page":"https://dexplorer.cakralabs.site/${accountAddress}"}]},{"chainId":"onomy-mainnet-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/onomy-protocol","tx_page":"https://www.mintscan.io/onomy-protocol/transactions/${txHash}","account_page":"https://www.mintscan.io/onomy-protocol/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/onomy","tx_page":"https://staking-explorer.com/transaction.php?chain=onomy&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=onomy&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/onomy","tx_page":"https://ezstaking.app/onomy/txs/${txHash}","account_page":"https://ezstaking.app/onomy/account/${accountAddress}"}]},{"chainId":"Oraichain","explorers":[{"kind":"oraiscan","url":"https://scan.orai.io","tx_page":"https://scan.orai.io/txs/${txHash}"},{"kind":"Nodine Explorer","url":"https://explorer.co.id/orai","tx_page":"https://explorer.co.id/orai/tx/${txHash}"},{"kind":"Blockval Explorer","url":"https://explorer.blockval.io/oraichain","tx_page":"https://explorer.blockval.io/oraichain/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/orai","tx_page":"https://atomscan.com/orai/transactions/${txHash}","account_page":"https://atomscan.com/orai/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/oraichain","tx_page":"https://staking-explorer.com/transaction.php?chain=oraichain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=oraichain&addr=${accountAddress}"},{"kind":"KonsorTech Explorer","url":"https://explorer.konsortech.xyz/oraichain","tx_page":"https://explorer.konsortech.xyz/oraichain/transactions/${txHash}","account_page":"https://explorer.konsortech.xyz/oraichain/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/Orai-Mainnet","tx_page":"https://explorer.stavr.tech/Orai-Mainnet/transactions/${txHash}","account_page":"https://explorer.stavr.tech/Orai-Mainnet/accounts/${accountAddress}"},{"kind":"imORAI ORAIchain Explorer","url":"https://explorer.imdev.app/oraichain","tx_page":"https://explorer.imdev.app/oraichain/tx/${txHash}","account_page":"https://explorer.imdev.app/oraichain/account/${accountAddress}"}]},{"chainId":"osmosis-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/osmosis","tx_page":"https://ezstaking.app/osmosis/txs/${txHash}","account_page":"https://ezstaking.app/osmosis/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/osmosis","tx_page":"https://www.mintscan.io/osmosis/transactions/${txHash}","account_page":"https://www.mintscan.io/osmosis/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/osmosis","tx_page":"https://ping.pub/osmosis/tx/${txHash}"},{"kind":"explorers.guru","url":"https://osmosis.explorers.guru","tx_page":"https://osmosis.explorers.guru/transaction/${txHash}","account_page":"https://osmosis.explorers.guru/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/osmosis","tx_page":"https://atomscan.com/osmosis/transactions/${txHash}","account_page":"https://atomscan.com/osmosis/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/osmosis","tx_page":"https://explorer.tcnetwork.io/osmosis/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/osmosis/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/osmosis","tx_page":"https://staking-explorer.com/transaction.php?chain=osmosis&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=osmosis&addr=${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/osmosis","account_page":"https://stakeflow.io/osmosis/accounts/${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/osmosis","tx_page":"https://exp.nodeist.net/osmosis/tx/${txHash}"},{"kind":"L0vd.com ❀️","url":"https://explorers.l0vd.com/osmosis-mainnet","tx_page":"https://explorers.l0vd.com/osmosis-mainnet/tx/${txHash}"},{"kind":"Chainscope","url":"https://chainsco.pe/osmosis","tx_page":"https://chainsco.pe/osmosis/tx/${txHash}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/osmosis","tx_page":"https://mainnet.whispernode.com/osmosis/tx/${txHash}","account_page":"https://mainnet.whispernode.com/osmosis/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/osmosis","tx_page":"https://explorer.chainroot.io/osmosis/transactions/${txHash}","account_page":"https://explorer.chainroot.io/osmosis/accounts/${accountAddress}"}]},{"chainId":"tumbler","explorers":[{"kind":"explorers.guru","url":"https://paloma.explorers.guru/","tx_page":"https://paloma.explorers.guru/transaction/${txHash}"}]},{"chainId":"panacea-3","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/medibloc","tx_page":"https://www.mintscan.io/medibloc/transactions/${txHash}","account_page":"https://www.mintscan.io/medibloc/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/panacea","tx_page":"https://staking-explorer.com/transaction.php?chain=panacea&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=panacea&addr=${accountAddress}"},{"kind":"bigdipper","url":"https://explorer.gopanacea.org","tx_page":"https://explorer.gopanacea.org/transactions/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/panacea","tx_page":"https://explorer.whenmoonwhenlambo.money/panacea/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/panacea/account/${accountAddress}"}]},{"chainId":"passage-2","explorers":[{"kind":"aneka","url":"https://passage.aneka.io","tx_page":"https://passage.aneka.io/txs/${txHash}","account_page":"https://passage.aneka.io/accounts/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/passage","tx_page":"https://www.mintscan.io/passage/transactions/${txHash}","account_page":"https://www.mintscan.io/passage/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/passage","tx_page":"https://ezstaking.app/passage/txs/${txHash}","account_page":"https://ezstaking.app/passage/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/passage","tx_page":"https://staking-explorer.com/transaction.php?chain=passage&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=passage&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/passage","tx_page":"https://atomscan.com/passage/transactions/${txHash}","account_page":"https://atomscan.com/passage/accounts/${accountAddress}"},{"kind":"cosmotracker","url":"https://cosmotracker.com/passage","tx_page":"https://cosmotracker.com/passage/tx/${txHash}","account_page":"https://cosmotracker.com/passage/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/passage","tx_page":"https://mainnet.whispernode.com/passage/tx/${txHash}","account_page":"https://mainnet.whispernode.com/passage/account/${accountAddress}"}]},{"chainId":"core-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/persistence","tx_page":"https://www.mintscan.io/persistence/transactions/${txHash}","account_page":"https://www.mintscan.io/persistence/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/persistence","tx_page":"https://ezstaking.app/persistence/txs/${txHash}","account_page":"https://ezstaking.app/persistence/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/persistence","tx_page":"https://ping.pub/persistence/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Persistence-Mainnet","tx_page":"https://explorer.stavr.tech/Persistence-Mainnet/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/persistence","tx_page":"https://staking-explorer.com/transaction.php?chain=persistence&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=persistence&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/persistence","tx_page":"https://atomscan.com/persistence/transactions/${txHash}","account_page":"https://atomscan.com/persistence/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/persistence","account_page":"https://stakeflow.io/persistence/accounts/${accountAddress}"}]},{"chainId":"planq_7070-2","explorers":[{"kind":"bigdipper","url":"https://explorer.planq.network","tx_page":"https://explorer.planq.network/transactions/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Planq-Mainnet","tx_page":"https://explorer.stavr.tech/Planq-Mainnet/tx/${txHash}"},{"kind":"blockscout","url":"https://evm.planq.network","tx_page":"https://evm.planq.network/tx/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/planq","tx_page":"https://explorer.nodestake.org/planq/tx/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/planq","tx_page":"https://explorer.tcnetwork.io/planq/transaction/${txHash}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/planq-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/planq-mainnet/transaction/${txHash}"},{"kind":"Kynraze","url":"https://explorer.kynraze.com/planq","tx_page":"https://explorer.kynraze.com/planq/tx/${txHash}"},{"kind":"THE EXPLORER","url":"https://explorer.sxlzptprjkt.xyz/planq","tx_page":"https://explorer.sxlzptprjkt.xyz/planq/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/planq","tx_page":"https://explorer.nodexcapital.com/planq/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/planq","tx_page":"https://atomscan.com/planq/transactions/${txHash}","account_page":"https://atomscan.com/planq/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/planq","tx_page":"https://staking-explorer.com/transaction.php?chain=planq&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=planq&addr=${accountAddress}"},{"kind":"Indonode","url":"https://explorer.indonode.net/planq","tx_page":"https://explorer.indonode.net/planq/tx/${txHash}"},{"kind":"Safe Block","url":"https://explorer.safeblock.space/planq","tx_page":"https://explorer.safeblock.space/planq/tx/${txHash}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/planq","tx_page":"https://explorer.konsortech.xyz/planq/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/planq","tx_page":"https://explorer.whenmoonwhenlambo.money/tx/${txHash}"}]},{"chainId":"point_10687-1","explorers":[{"kind":"blockscout","url":"https://explorer.pointnetwork.io/","tx_page":"https://explorer.pointnetwork.io/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Point-Mainnet","tx_page":"https://explorer.stavr.tech/Point-Mainnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://cosmos.pointnetwork.io/","tx_page":"https://cosmos.pointnetwork.io/point/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/point","tx_page":"https://explorer.nodexcapital.com/point/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/point","tx_page":"https://atomscan.com/point/transactions/${txHash}","account_page":"https://atomscan.com/point/accounts/${accountAddress}"}]},{"chainId":"pio-mainnet-1","explorers":[{"kind":"Provenance","url":"https://explorer.provenance.io","tx_page":"https://explorer.provenance.io/tx/${txHash}"},{"kind":"hubble","url":"https://hubble.figment.io/provenance/chains/pio-mainnet-1","tx_page":"https://hubble.figment.io/provenance/chains/pio-mainnet-1/${block}/transactions/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/provenance","tx_page":"https://ping.pub/provenance/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/provenance","tx_page":"https://www.mintscan.io/provenance/transactions/${txHash}","account_page":"https://www.mintscan.io/provenance/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Provenance","tx_page":"https://explorer.stavr.tech/Provenance/txs/${txHash}","account_page":"https://explorer.stavr.tech/Provenance/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/provenance","tx_page":"https://ezstaking.app/provenance/txs/${txHash}","account_page":"https://ezstaking.app/provenance/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/provenance","tx_page":"https://atomscan.com/provenance/transactions/${txHash}","account_page":"https://atomscan.com/provenance/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/provenance","tx_page":"https://staking-explorer.com/transaction.php?chain=provenance&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=provenance&addr=${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/provenance","tx_page":"https://explorer.whenmoonwhenlambo.money/provenance/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/provenance/account/${accountAddress}"},{"kind":"AVIAONE 🟒","url":"https://mainnet.explorer.aviaone.com/provenance","tx_page":"https://mainnet.explorer.aviaone.com/provenance/tx/${txHash}","account_page":"https://mainnet.explorer.aviaone.com/provenance/account/${accountAddress}"}]},{"chainId":"pryzm-1","explorers":[{"kind":"Chainscope","url":"https://chainsco.pe/pryzm","tx_page":"https://chainsco.pe/pryzm/tx/${txHash}","account_page":"https://chainsco.pe/pryzm/address/${accountAddress}","block_page":"https://chainsco.pe/pryzm/block/${blockHeight}","proposal_page":"https://chainsco.pe/pryzm/governance/proposal/${proposalId}","validator_page":"https://chainsco.pe/pryzm/validator/${validatorAddress}"},{"kind":"PingPub","url":"https://cosmosrun.info/pryzm","tx_page":"https://cosmosrun.info/pryzm/tx/${txHash}","account_page":"https://cosmosrun.info/pryzm/account/${accountAddress}","block_page":"https://cosmosrun.info/pryzm/blocks/${blockHeight}","proposal_page":"https://cosmosrun.info/pryzm/gov/${proposalId}","validator_page":"https://cosmosrun.info/pryzm/staking/${validatorAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/pryzm","tx_page":"https://staking-explorer.com/transaction.php?chain=pryzm&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=pryzm&addr=${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/pryzm","tx_page":"https://explorer.chainroot.io/pryzm/transactions/${txHash}","account_page":"https://explorer.chainroot.io/pryzm/accounts/${accountAddress}"}]},{"chainId":"PUNDIX","explorers":[{"kind":"starscan","url":"https://starscan.io","tx_page":"https://starscan.io/pundix/tx/${txHash}","account_page":"https://starscan.io/pundix/address/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/pundix/","tx_page":"https://explorer.nodeshub.online/pundix/tx/${txHash}","account_page":"https://explorer.nodeshub.online/pundix/accounts/${accountAddress}"}]},{"chainId":"pylons-mainnet-1","explorers":[{"kind":"Nodes.guru","url":"https://pylons.explorers.guru/","tx_page":"https://pylons.explorers.guru/transaction/${txHash}"}]},{"chainId":"qfs-1","explorers":[{"kind":"ping.pub","url":"https://blockexplorer.qfsone.com/qfs","tx_page":"https://blockexplorer.qfsone.com/qfs/tx/${txHash}","account_page":"https://blockexplorer.qfsone.com/qfs/accounts/${accountAddress}"}]},{"chainId":"quasar-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/quasar","tx_page":"https://www.mintscan.io/quasar/transactions/${txHash}","account_page":"https://www.mintscan.io/quasar/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/quasar","tx_page":"https://ezstaking.app/quasar/txs/${txHash}","account_page":"https://ezstaking.app/quasar/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/quasar","tx_page":"https://staking-explorer.com/transaction.php?chain=quasar&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=quasar&addr=${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/quasar","tx_page":"https://mainnet.whispernode.com/quasar/tx/${txHash}","account_page":"https://mainnet.whispernode.com/quasar/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/quasar","tx_page":"https://explorer.chainroot.io/quasar/transactions/${txHash}","account_page":"https://explorer.chainroot.io/quasar/accounts/${accountAddress}"}]},{"chainId":"quicksilver-2","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/quicksilver","tx_page":"https://www.mintscan.io/quicksilver/transactions/${txHash}","account_page":"https://www.mintscan.io/quicksilver/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/quicksilver","tx_page":"https://ezstaking.app/quicksilver/txs/${txHash}","account_page":"https://ezstaking.app/quicksilver/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/quicksilver","tx_page":"https://staking-explorer.com/transaction.php?chain=quicksilver&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=quicksilver&addr=${accountAddress}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀 explorer","url":"https://exp.utsa.tech/quicksilver","tx_page":"https://exp.utsa.tech/quicksilver/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ explorer","url":"https://explorer.stavr.tech/quicksilver-mainnet","tx_page":"https://explorer.stavr.tech/quicksilver-mainnet/tx/${txHash}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/quicksilver","tx_page":"https://explorer.stake-take.com/quicksilver/tx/${txHash}"},{"kind":"AM Solutions Explorers","url":"https://explorer.theamsolutions.info/quicksilver-main/staking","tx_page":"https://explorer.theamsolutions.info/quicksilver-main/tx/${txHash}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/quicksilver/staking","tx_page":"https://explorer.konsortech.xyz/quicksilver/tx/${txHash}"}]},{"chainId":"qwoyn-1","explorers":[{"kind":"ping","url":"https://explorer.theamsolutions.info/qwoyn-main/","tx_page":"https://explorer.theamsolutions.info/qwoyn-main/blocks","account_page":"https://explorer.theamsolutions.info/qwoyn-main/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/qwoyn","tx_page":"https://staking-explorer.com/transaction.php?chain=qwoyn&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=qwoyn&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Qwoyn-Mainnet","tx_page":"https://explorer.stavr.tech/Qwoyn-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Qwoyn-Mainnet/account/${accountAddress}"},{"kind":"ping","url":"https://explorer.theamsolutions.info/QWOYN-MAIN","tx_page":"https://explorer.theamsolutions.info/QWOYN-MAIN/tx/${txHash}","account_page":"https://explorer.theamsolutions.info/QWOYN-MAIN/account/${accountAddress}"}]},{"chainId":"realionetwork_3301-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/realio-mainnet","tx_page":"https://explorer.stavr.tech/realio-mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/realio-mainnet/account/{$accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/realio","tx_page":"https://explorer.nodestake.org/realio/tx/${txHash}","account_page":"https://explorer.nodestake.org/realio/account/{$accountAddress}"},{"kind":"Sr20de Explorer","url":"https://explorer.sr20de.xyz/Realio","tx_page":"https://explorer.sr20de.xyz/Realio/tx/${txHash}","account_page":"https://explorer.sr20de.xyz/Realio/account/{$accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/realio","tx_page":"https://explorer.tcnetwork.io/realio/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/realio/account/${accountAddress}"},{"kind":"Safe Block","url":"https://explorer.safeblock.space/realio","tx_page":"https://explorer.safeblock.space/realio/tx/${txHash}","account_page":"https://explorer.safeblock.space/realio/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/realio","tx_page":"https://explorer.declab.pro/realio/tx/${txHash}","account_page":"https://explorer.declab.pro/realio/account/{$accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/realio","tx_page":"https://explorer.whenmoonwhenlambo.money/realio/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/realio/account/${accountAddress}"},{"kind":"Moonbridge","url":"https://explorer.moonbridge.org/realio","tx_page":"https://explorer.moonbridge.org/realio/tx/${txHash}","account_page":"https://explorer.moonbridge.org/realio/account/${accountAddress}"}]},{"chainId":"reb_1111-1","explorers":[{"kind":"explorers.guru","url":"https://rebus.explorers.guru","tx_page":"https://rebus.explorers.guru/transaction/${txHash}"},{"kind":"NodeStake","url":"https://explorer.nodestake.top/rebus","tx_page":"https://explorer.nodestake.top/rebus/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/rebus","tx_page":"https://staking-explorer.com/transaction.php?chain=rebus&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=rebus&addr=${accountAddress}"},{"kind":"BccNodes","url":"https://explorer.bccnodes.com/rebus-M","tx_page":"https://explorer.bccnodes.com/rebus-M/tx/${txHash}"},{"kind":"Brochain","url":"https://explorer.brocha.in/rebus","tx_page":"https://explorer.brocha.in/rebus/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/rebus","tx_page":"https://explorer.stavr.tech/rebus/tx/${txHash}"},{"kind":"tcnetwork","url":"https://rebus.tcnetwork.io","tx_page":"https://rebus.tcnetwork.io/transaction/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/rebus","tx_page":"https://atomscan.com/rebus/transactions/${txHash}","account_page":"https://atomscan.com/rebus/accounts/${accountAddress}"}]},{"chainId":"regen-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/regen","tx_page":"https://ezstaking.app/regen/txs/${txHash}","account_page":"https://ezstaking.app/regen/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/regen","tx_page":"https://staking-explorer.com/transaction.php?chain=regen&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=regen&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Regen-Mainnet","tx_page":"https://explorer.stavr.tech/Regen-Mainnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://ping.pub/regen","tx_page":"https://ping.pub/regen/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/regen-network","tx_page":"https://atomscan.com/regen-network/transactions/${txHash}","account_page":"https://atomscan.com/regen-network/accounts/${accountAddress}"}]},{"chainId":"titan-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/rizon","tx_page":"https://ezstaking.app/rizon/txs/${txHash}","account_page":"https://ezstaking.app/rizon/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/rizon","tx_page":"https://www.mintscan.io/rizon/transactions/${txHash}","account_page":"https://www.mintscan.io/rizon/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/rizon","tx_page":"https://ping.pub/rizon/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/rizon","tx_page":"https://staking-explorer.com/transaction.php?chain=rizon&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=rizon&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/rizon","tx_page":"https://atomscan.com/rizon/transactions/${txHash}","account_page":"https://atomscan.com/rizon/accounts/${accountAddress}"},{"kind":"bigdipper","url":"https://bigdipper.live/rizon","tx_page":"https://bigdipper.live/rizon/transactions/${txHash}","account_page":"https://bigdipper.live/rizon/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Rizon","tx_page":"https://explorer.stavr.tech/Rizon/tx/${txHash}","account_page":"https://explorer.stavr.tech/Rizon/accounts/${accountAddress}"}]},{"chainId":"30","explorers":[{"kind":"Rootstock Explorer","url":"https://explorer.rootstock.io/","tx_page":"https://explorer.rootstock.io/tx/${txHash}"}]},{"chainId":"router_9600-1","explorers":[{"kind":"Routerscan","url":"https://routerscan.io/","tx_page":"https://routerscan.io/transactions/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/router","tx_page":"https://explorer.nodestake.org/router/tx/${txHash}"},{"kind":"Router Explorer","url":"https://router.explorers.guru/","tx_page":"https://router.explorers.guru/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/routerchain","tx_page":"https://staking-explorer.com/transaction.php?chain=routerchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=routerchain&addr=${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/router/","tx_page":"https://explorer.nodeshub.online/router/tx/${txHash}","account_page":"https://explorer.nodeshub.online/router/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/routerchain","tx_page":"https://explorer.whenmoonwhenlambo.money/routerchain/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/routerchain/account/${accountAddress}"}]},{"chainId":"ssc-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/saga","tx_page":"https://www.mintscan.io/saga/transactions/${txHash}","account_page":"https://www.mintscan.io/saga/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/saga","tx_page":"https://staking-explorer.com/transaction.php?chain=saga&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=saga&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/saga","tx_page":"https://ezstaking.app/saga/txs/${txHash}","account_page":"https://ezstaking.app/saga/account/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/saga","tx_page":"https://explorer.nodestake.org/saga/tx/${txHash}","account_page":"https://explorer.nodestake.org/saga/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/saga","tx_page":"https://explorer.chainroot.io/saga/transactions/${txHash}","account_page":"https://explorer.chainroot.io/saga/accounts/${accountAddress}"}]},{"chainId":"scorum-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/scorum","tx_page":"https://ezstaking.app/scorum/txs/${txHash}","account_page":"https://ezstaking.app/scorum/account/${accountAddress}"},{"kind":"bigdipper","url":"https://cosmos.scorum.com/scorum","tx_page":"https://cosmos.scorum.com/scorum/transactions/${txHash}","account_page":"https://cosmos.scorum.com/scorum/accounts/${accountAddress}"}]},{"chainId":"secret-4","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/secretnetwork","tx_page":"https://ezstaking.app/secretnetwork/txs/${txHash}","account_page":"https://ezstaking.app/secretnetwork/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/secret","tx_page":"https://ping.pub/secret/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/secret","tx_page":"https://www.mintscan.io/secret/transactions/${txHash}","account_page":"https://www.mintscan.io/secret/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/secret-network","tx_page":"https://atomscan.com/secret-network/transactions/${txHash}","account_page":"https://atomscan.com/secret-network/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/secretnetwork","tx_page":"https://staking-explorer.com/transaction.php?chain=secretnetwork&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=secretnetwork&addr=${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/secret","tx_page":"https://mainnet.whispernode.com/secret/tx/${txHash}","account_page":"https://mainnet.whispernode.com/secret/account/${accountAddress}"}]},{"chainId":"seda-1","explorers":[{"kind":"sedaexplorer","url":"https://explorer.seda.xyz/","tx_page":"https://explorer.seda.xyz/txs/${txHash}","account_page":"https://explorer.seda.xyz/account/${accountAddress}"},{"kind":"explorers.guru","url":"https://seda.explorers.guru","tx_page":"https://seda.explorers.guru/transaction/${txHash}","account_page":"https://seda.explorers.guru/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/seda","tx_page":"https://staking-explorer.com/transaction.php?chain=seda&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=seda&addr=${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/seda","tx_page":"https://mainnet.whispernode.com/seda/tx/${txHash}","account_page":"https://mainnet.whispernode.com/seda/account/${accountAddress}"},{"kind":"Apple juice πŸ§ƒ","url":"https://explorer.256x25.tech/seda-mainnet","tx_page":"https://explorer.256x25.tech/seda-mainnet/tx/${txHash}","account_page":"https://explorer.256x25.tech/seda-mainnet/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/seda","tx_page":"https://explorer.whenmoonwhenlambo.money/seda/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/seda/account/${accountAddress}"}]},{"chainId":"pacific-1","explorers":[{"kind":"blockscout","url":"https://seitrace.com","tx_page":"https://seitrace.com/tx/${txHash}?chain=pacific-1","account_page":"https://seitrace.com/address/${accountAddress}?chain=pacific-1"},{"kind":"mintscan","url":"https://www.mintscan.io/sei","tx_page":"https://www.mintscan.io/sei/transactions/${txHash}","account_page":"https://www.mintscan.io/sei/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/sei","tx_page":"https://ezstaking.app/sei/txs/${txHash}","account_page":"https://ezstaking.app/sei/account/${accountAddress}"},{"kind":"celatone","url":"https://www.seiscan.app/pacific-1","tx_page":"https://www.seiscan.app/pacific-1/txs/${txHash}","account_page":"https://www.seiscan.app/pacific-1/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sei","tx_page":"https://staking-explorer.com/transaction.php?chain=sei&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sei&addr=${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/sei","tx_page":"https://mainnet.whispernode.com/sei/tx/${txHash}","account_page":"https://mainnet.whispernode.com/sei/account/${accountAddress}"}]},{"chainId":"self-1","explorers":[{"kind":"Self Chain","url":"https://explorer.selfchain.xyz/selfchain","tx_page":"https://explorer.selfchain.xyz/selfchain/tx/${txHash}","account_page":"https://explorer.selfchain.xyz/selfchain/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/self","tx_page":"https://staking-explorer.com/transaction.php?chain=self&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=self&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Selfchain-Mainnet","tx_page":"https://explorer.stavr.tech/Selfchain-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Selfchain-Mainnet/account/${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/selfchain-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/selfchain-mainnet/tx/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/selfchain-mainnet/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/self","tx_page":"https://explorer.whenmoonwhenlambo.money/self/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/self/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ","url":"https://explorer.nodeshub.online/selfchain/","tx_page":"https://explorer.nodeshub.online/selfchain/tx/${txHash}","account_page":"https://explorer.nodeshub.online/selfchain/accounts/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/selfchain-mainnet","tx_page":"https://exp.stakevillage.net/selfchain-mainnet/tx/${txHash}","account_page":"https://exp.stakevillage.net/selfchain-mainnet/accounts/${accountAddress}"}]},{"chainId":"sentinelhub-2","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/sentinel","tx_page":"https://www.mintscan.io/sentinel/transactions/${txHash}","account_page":"https://www.mintscan.io/sentinel/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/sentinel","tx_page":"https://ezstaking.app/sentinel/txs/${txHash}","account_page":"https://ezstaking.app/sentinel/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/sentinel","tx_page":"https://atomscan.com/sentinel/transactions/${txHash}","account_page":"https://atomscan.com/sentinel/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sentinel","tx_page":"https://staking-explorer.com/transaction.php?chain=sentinel&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sentinel&addr=${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/sentinel-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/sentinel-mainnet/transactions/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/sentinel-mainnet/accounts/${accountAddress}"},{"kind":"ValidatorNode","url":"https://explorer.validatornode.com/sentinel","tx_page":"https://explorer.validatornode.com/sentinel/tx/${txHash}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Sentinel","tx_page":"https://explorer.declab.pro/Sentinel/tx/${txHash}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/sentinel/","tx_page":"https://explorer.nodeshub.online/sentinel/tx/${txHash}","account_page":"https://explorer.nodeshub.online/sentinel/accounts/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/sentinel","tx_page":"https://mainnet.whispernode.com/sentinel/tx/${txHash}","account_page":"https://mainnet.whispernode.com/sentinel/account/${accountAddress}"}]},{"chainId":"sgenet-1","explorers":[{"kind":"ping.pub","url":"https://blockexplorer.sgenetwork.io/sge","tx_page":"https://blockexplorer.sgenetwork.io/sge/tx/${txHash}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/sge","tx_page":"https://explorer.nodestake.org/sge/tx/${txHash}"},{"kind":"stakerhouse","url":"https://cosmotracker.com/sge","tx_page":"https://cosmotracker.com/sge/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Sge-Mainnet","tx_page":"https://explorer.stavr.tech/Sge-Mainnet/transaction/${txHash}","account_page":"https://explorer.stavr.tech/Sge-Mainnet/account/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/sge","tx_page":"https://explorer.tcnetwork.io/sge/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/sge/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sge","tx_page":"https://staking-explorer.com/transaction.php?chain=sge&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sge&addr=${accountAddress}"},{"kind":"Safe Block","url":"https://explorer.safeblock.space/sge","tx_page":"https://explorer.safeblock.space/sge/tx/${txHash}","account_page":"https://explorer.safeblock.space/sge/account/${accountAddress}"},{"kind":"KonsorTech","url":"https://explorer.konsortech.xyz/sge","tx_page":"https://explorer.konsortech.xyz/sge/tx/${txHash}","account_page":"https://explorer.konsortech.xyz/sge/account/${accountAddress}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/sge-mainnet","tx_page":"https://explorer.tendermint.roomit.xyz/sge-mainnet/tx/${txHash}","account_page":"https://explorer.tendermint.roomit.xyz/sge-mainnet/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/sge","tx_page":"https://explorer.whenmoonwhenlambo.money/sge/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/sge/account/${accountAddress}"}]},{"chainId":"ShareRing-VoyagerNet","explorers":[{"kind":"big dipper","url":"https://explorer.shareri.ng","tx_page":"https://explorer.shareri.ng/transactions/${txHash}","account_page":"https://explorer.shareri.ng/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/shareledger","tx_page":"https://staking-explorer.com/transaction.php?chain=shareledger&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=shareledger&addr=${accountAddress}"}]},{"chainId":"shentu-2.2","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/shentu","tx_page":"https://ezstaking.app/shentu/txs/${txHash}","account_page":"https://ezstaking.app/shentu/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Shentu-Mainnet","tx_page":"https://explorer.stavr.tech/Shentu-Mainnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/Shentu-Mainnet/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/shentu","tx_page":"https://www.mintscan.io/shentu/transactions/${txHash}","account_page":"https://www.mintscan.io/shentu/accounts/${accountAddress}"},{"kind":"Shentu Explorer","url":"https://explorer.shentu.org/?chain=shentu-2.2","tx_page":"https://explorer.shentu.org/transactions/${txHash}?chain=shentu-2.2"},{"kind":"ping.pub","url":"https://ping.pub/shentu","tx_page":"https://ping.pub/shentu/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/shentu","tx_page":"https://atomscan.com/shentu/transactions/${txHash}","account_page":"https://atomscan.com/shentu/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/shentu","tx_page":"https://staking-explorer.com/transaction.php?chain=shentu&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=shentu&addr=${accountAddress}"},{"kind":"bigdipper","url":"https://bigdipper.live/shentu","tx_page":"https://bigdipper.live/shentu/transactions/${txHash}","account_page":"https://bigdipper.live/shentu/accounts/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/shentu","account_page":"https://stakeflow.io/shentu/accounts/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/shentu","tx_page":"https://explorer.chainroot.io/shentu/transactions/${txHash}","account_page":"https://explorer.chainroot.io/shentu/accounts/${accountAddress}"}]},{"chainId":"shido_9008-1","explorers":[{"kind":"shido","url":"https://shidoscan.com","tx_page":"https://shidoscan.com/tx/${txHash}","account_page":"https://shidoscan.com/address/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/shido","tx_page":"https://explorer.whenmoonwhenlambo.money/shido/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/shido/account/${accountAddress}"},{"kind":"256x25","url":"https://explorer.256x25.tech/shido","tx_page":"https://explorer.256x25.tech/shido/tx/${txHash}","account_page":"https://explorer.256x25.tech//shido/account/${accountAddress}"},{"kind":"MavNode","url":"https://explorer.mavnode.io/shido","tx_page":"https://explorer.mavnode.io/shido/tx/${txHash}","account_page":"https://explorer.mavnode.io/shido/account/${accountAddress}"},{"kind":"Indonode","url":"https://explorer.indonode.net/shido","tx_page":"https://explorer.indonode.net/shido/tx/${txHash}","account_page":"https://explorer.indonode.net/shido/account/${accountAddress}"}]},{"chainId":"sifchain-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/sifchain","tx_page":"https://ping.pub/sifchain/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/sifchain","tx_page":"https://atomscan.com/sifchain/transactions/${txHash}","account_page":"https://atomscan.com/sifchain/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sifchain","tx_page":"https://staking-explorer.com/transaction.php?chain=sifchain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sifchain&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Sifchain","tx_page":"https://explorer.stavr.tech/Sifchain/tx/${txHash}","account_page":"https://explorer.stavr.tech/Sifchain/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/sifchain","tx_page":"https://explorer.whenmoonwhenlambo.money/sifchain/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/sifchain/account/${accountAddress}"}]},{"chainId":"sixnet","explorers":[{"kind":"sixscan","url":"https://sixscan.io/sixnet","tx_page":"https://sixscan.io/sixnet/tx/${txHash}"}]},{"explorers":[{"kind":"Solana Explorer","url":"https://explorer.solana.com/","tx_page":"https://explorer.solana.com/tx/${txHash}"}]},{"chainId":"sommelier-3","explorers":[{"kind":"sommscan","url":"https://sommscan.io","tx_page":"https://sommscan.io"},{"kind":"mintscan","url":"https://www.mintscan.io/sommelier","tx_page":"https://www.mintscan.io/sommelier/transactions/${txHash}","account_page":"https://www.mintscan.io/sommelier/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/sommelier","tx_page":"https://ezstaking.app/sommelier/txs/${txHash}","account_page":"https://ezstaking.app/sommelier/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/sommelier","tx_page":"https://staking-explorer.com/transaction.php?chain=sommelier&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=sommelier&addr=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Sommelier-Mainnet","tx_page":"https://explorer.stavr.tech/Sommelier-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Sommelier-Mainnet/account/${accountAddress}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com/sommelier","tx_page":"https://explorer.nodexcapital.com/sommelier/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/sommelier/account/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/sommelier","tx_page":"https://atomscan.com/sommelier/transactions/${txHash}","account_page":"https://atomscan.com/sommelier/accounts/${accountAddress}"}]},{"chainId":"source-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Source-Mainnet/","tx_page":"https://explorer.stavr.tech/Source-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Source-Mainnet/accounts/${accountAddress}"},{"kind":"Nodeist","url":"https://exp.nodeist.net/source/","tx_page":"https://exp.nodeist.net/source/tx/${txHash}","account_page":"https://exp.nodeist.net/source/accounts/${accountAddress}"},{"kind":"Moonbridge","url":"https://explorer.moonbridge.org/source","tx_page":"https://explorer.moonbridge.org/source/tx/${txHash}","account_page":"https://explorer.moonbridge.org/source/accounts/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/source","tx_page":"https://explorer.nodestake.org/source/tx/${txHash}","account_page":"https://explorer.nodestake.org/source/accounts/${accountAddress}"},{"kind":"Sr20de","url":"https://explorer.sr20de.xyz/Source-mainnet","tx_page":"https://explorer.sr20de.xyz/Source-mainnet/tx/${txHash}","account_page":"https://explorer.sr20de.xyz/Source-mainnet/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/source","tx_page":"https://explorer.tcnetwork.io/source/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/source","tx_page":"https://staking-explorer.com/transaction.php?chain=source&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=source&addr=${accountAddress}"},{"kind":"Indonode","url":"https://explorer.indonode.net/source","tx_page":"https://explorer.indonode.net/source/tx/${txHash}"},{"kind":"Roomit","url":"https://explorer.tendermint.roomit.xyz/source-mainnet/","tx_page":"https://explorer.tendermint.roomit.xyz/source-mainnet/tx/${txHash}"},{"kind":"posthuman","url":"https://explorer.posthuman.digital/source","tx_page":"https://explorer.posthuman.digital/source/tx/${txHash}","account_page":"https://explorer.posthuman.digital/source/account/${accountAddress}"},{"kind":"Decloud Nodes Lab","url":"https://explorer.declab.pro/Source","tx_page":"https://explorer.declab.pro/Source/tx/${txHash}","account_page":"https://explorer.declab.pro/Source/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/source","tx_page":"https://explorer.whenmoonwhenlambo.money/source/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/source/account/${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/source/","tx_page":"https://explorer.nodeshub.online/source/tx/${txHash}","account_page":"https://explorer.nodeshub.online/source/accounts/${accountAddress}"}]},{"chainId":"stafihub-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/stafi","tx_page":"https://www.mintscan.io/stafi/transactions/${txHash}","account_page":"https://www.mintscan.io/stafi/accounts/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/stafihub","tx_page":"https://ezstaking.app/stafihub/txs/${txHash}","account_page":"https://ezstaking.app/stafihub/account/${accountAddress}"},{"kind":"ping-pub","url":"https://ping.pub/stafihub","tx_page":"https://ping.pub/stafihub/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/stafihub","tx_page":"https://staking-explorer.com/transaction.php?chain=stafihub&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=stafihub&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/stafihub","tx_page":"https://atomscan.com/stafihub/transactions/${txHash}","account_page":"https://atomscan.com/stafihub/accounts/${accountAddress}"}]},{"chainId":"stargaze-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/stargaze","tx_page":"https://ezstaking.app/stargaze/txs/${txHash}","account_page":"https://ezstaking.app/stargaze/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/stargaze/","tx_page":"https://www.mintscan.io/stargaze/transactions/${txHash}","account_page":"https://www.mintscan.io/stargaze/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/stargaze","tx_page":"https://ping.pub/stargaze/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/stargaze","tx_page":"https://staking-explorer.com/transaction.php?chain=stargaze&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=stargaze&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/stargaze","tx_page":"https://atomscan.com/stargaze/transactions/${txHash}","account_page":"https://atomscan.com/stargaze/accounts/${accountAddress}"},{"kind":"Starscan","url":"https://starscan.net/","tx_page":"https://starscan.net/stargaze-1/tx/${txHash}","account_page":"https://starscan.net/stargaze-1/address/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/stargaze","tx_page":"https://mainnet.whispernode.com/stargaze/tx/${txHash}","account_page":"https://mainnet.whispernode.com/stargaze/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/stargaze","tx_page":"https://explorer.chainroot.io/stargaze/transactions/${txHash}","account_page":"https://explorer.chainroot.io/stargaze/accounts/${accountAddress}"}]},{"chainId":"iov-mainnet-ibc","explorers":[{"kind":"ping.pub","url":"https://ping.pub/starname","tx_page":"https://ping.pub/starname/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/starname","tx_page":"https://atomscan.com/starname/transactions/${txHash}","account_page":"https://atomscan.com/starname/accounts/${accountAddress}"}]},{"chainId":"stratos-1","explorers":[{"kind":"bigdipper","url":"https://explorer.thestratos.org","tx_page":"https://explorer.thestratos.org/transactions/${txHash}","account_page":"https://explorer.thestratos.org/accounts/${accountAddress}"},{"kind":"blockscout","url":"https://web3-explorer.thestratos.org","tx_page":"https://web3-explorer.thestratos.org/tx/${txHash}","account_page":"https://web3-explorer.thestratos.org/address/${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/stratos","tx_page":"https://explorer.nodestake.org/stratos/tx/${txHash}","account_page":"https://explorer.nodestake.org/stratos/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/stratos","tx_page":"https://staking-explorer.com/transaction.php?chain=stratos&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=stratos&addr=${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/stratos","tx_page":"https://explorer.tcnetwork.io/stratos/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/stratos/account/${accountAddress}"}]},{"chainId":"stride-1","explorers":[{"kind":"BccNodes","url":"https://explorer.bccnodes.com/stride-M","tx_page":"https://explorer.bccnodes.com/stride-M/tx/${txHash}","account_page":"https://explorer.bccnodes.com/stride-M/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/stride","tx_page":"https://ezstaking.app/stride/txs/${txHash}","account_page":"https://ezstaking.app/stride/account/${accountAddress}"},{"kind":"Apollo","url":"https://apollo.chandrastation.com/stride","tx_page":"https://apollo.chandrastation.com/stride/tx/${txHash}","account_page":"https://apollo.chandrastation.com/stride/account/${accountAddress}"},{"kind":"Stride Ping Pub","url":"https://explorer.stride.zone/stride","tx_page":"https://explorer.stride.zone/stride/tx/${txHash}","account_page":"https://explorer.stride.zone/stride/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/stride","tx_page":"https://explorer.stavr.tech/stride/tx/${txHash}","account_page":"https://explorer.stavr.tech/stride/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/stride","tx_page":"https://www.mintscan.io/stride/transactions/${txHash}","account_page":"https://www.mintscan.io/stride/accounts/${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/stride","tx_page":"https://atomscan.com/stride/transactions/${txHash}","account_page":"https://atomscan.com/stride/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/stride","tx_page":"https://staking-explorer.com/transaction.php?chain=stride&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=stride&addr=${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/stride","account_page":"https://stakeflow.io/stride/accounts/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/stride","tx_page":"https://explorer.stake-take.com/stride/tx/${txHash}","account_page":"https://explorer.stake-take.com/stride/account/${accountAddress}"},{"kind":"WhisperNode 🀐","url":"https://mainnet.whispernode.com/stride","tx_page":"https://mainnet.whispernode.com/stride/tx/${txHash}","account_page":"https://mainnet.whispernode.com/stride/account/${accountAddress}"}]},{"chainId":"sunrise-1","explorers":[]},{"chainId":"synternet-1","explorers":[{"kind":"Big Dipper","url":"https://explorer.synternet.com/","tx_page":"https://explorer.synternet.com/transactions/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/synternet","tx_page":"https://staking-explorer.com/transaction.php?chain=synternet&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=synternet&addr=${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/synternet","tx_page":"https://explorer.whenmoonwhenlambo.money/synternet/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/synternet/account/${accountAddress}"}]},{"chainId":"taketitan-12","explorers":[{"kind":"ping.pub","url":"https://scan.taketitan.com/taketitan","tx_page":"https://scan.taketitan.com/taketitan/tx/${txHash}","account_page":"https://scan.taketitan.com/taketitan/accounts/${accountAddress}"}]},{"chainId":"tenet_1559-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/tenet","tx_page":"https://ping.pub/tenet/tx/${txHash}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/Tenet","tx_page":"https://exp.nodeist.net/Tenet/tx/${txHash}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/tenet","tx_page":"https://explorer.tcnetwork.io/tenet/transaction/${txHash}","account_page":"https://explorer.tcnetwork.io/tenet/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/tenet","tx_page":"https://staking-explorer.com/transaction.php?chain=tenet&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=tenet&addr=${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/tenet","tx_page":"https://explorer.whenmoonwhenlambo.money/tenet/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/tenet/account/${accountAddress}"}]},{"chainId":"teritori-1","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/teritori","tx_page":"https://ezstaking.app/teritori/txs/${txHash}","account_page":"https://ezstaking.app/teritori/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.teritori.com/teritori","tx_page":"https://explorer.teritori.com/teritori/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/teritori-main","tx_page":"https://explorer.stavr.tech/teritori-main/tx/${txHash}"},{"kind":"guru","url":"https://teritori.explorers.guru/","tx_page":"https://teritori.explorers.guru/transaction/${txHash}"},{"kind":"Brochain","url":"https://explorer.brocha.in/teritori","tx_page":"https://explorer.brocha.in/teritori/tx/${txHash}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀","url":"https://exp.utsa.tech/teritori","tx_page":"https://exp.utsa.tech/teritori/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/teritori","tx_page":"https://www.mintscan.io/teritori/transactions/${txHash}","account_page":"https://www.mintscan.io/teritori/accounts/${accountAddress}"},{"kind":"TC Network","url":"https://explorer.tcnetwork.io/teritori","tx_page":"https://explorer.tcnetwork.io/teritori/transaction/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/teritori","tx_page":"https://staking-explorer.com/transaction.php?chain=teritori&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=teritori&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/teritori","tx_page":"https://atomscan.com/teritori/transactions/${txHash}","account_page":"https://atomscan.com/teritori/accounts/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/teritori","tx_page":"https://explorer.whenmoonwhenlambo.money/teritori/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/teritori/account/${accountAddress}"},{"kind":"Chainroot","url":"https://explorer.chainroot.io/teritori","tx_page":"https://explorer.chainroot.io/teritori/transactions/${txHash}","account_page":"https://explorer.chainroot.io/teritori/accounts/${accountAddress}"}]},{"chainId":"morocco-1","explorers":[{"kind":"ping.pub","url":"https://ping.pub/terp","tx_page":"https://ping.pub/terp/tx/${txHash}","account_page":"https://ping.pub/terp/account/{$accountAddress}"},{"kind":"ping.pub","url":"https://explorer.nodestake.top","tx_page":"https://explorer.nodestake.top/terp/tx/${txHash}","account_page":"https://explorer.nodestake.top/terp/account/{$accountAddress}"},{"kind":"ZenChainLabs","url":"https://terp.zenscan.io/","tx_page":"https://terp.zenscan.io/transaction.php?hash=${txHash}","account_page":"https://terp.zenscan.io/address.php?address=${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Terp-Mainnet","tx_page":"https://explorer.stavr.tech/Terp-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Terp-Mainnet/account/{$accountAddress}"}]},{"chainId":"columbus-5","explorers":[{"kind":"ezstaking","url":"https://ezstaking.app/terra","tx_page":"https://ezstaking.app/terra/txs/${txHash}","account_page":"https://ezstaking.app/terra/account/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/terra-luna","tx_page":"https://ping.pub/terra-luna/tx/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/terra","tx_page":"https://atomscan.com/terra/transactions/${txHash}","account_page":"https://atomscan.com/terra/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/terra","tx_page":"https://staking-explorer.com/transaction.php?chain=terra&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=terra&addr=${accountAddress}"},{"kind":"finder","url":"https://finder.terra.money/classic","tx_page":"https://finder.terra.money/classic/tx/${txHash}","account_page":"https://finder.terra.money/classic/address/${accountAddress}"},{"kind":"finder","url":"https://finder.terrarebels.net/classic","tx_page":"https://finder.terrarebels.net/classic/tx/${txHash}","account_page":"https://finder.terrarebels.net/classic/address/${accountAddress}"}]},{"chainId":"phoenix-1","explorers":[{"kind":"atomscan","url":"https://atomscan.com/terra2","tx_page":"https://atomscan.com/terra2/transactions/${txHash}","account_page":"https://atomscan.com/terra2/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/terra2","tx_page":"https://staking-explorer.com/transaction.php?chain=terra2&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=terra2&addr=${accountAddress}"},{"kind":"finder","url":"http://finder.terra.money/","tx_page":"https://finder.terra.money/mainnet/tx/${txHash}","account_page":"https://finder.terra.money/mainnet/address/${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/terra","account_page":"https://stakeflow.io/terra/accounts/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/terra","tx_page":"https://www.mintscan.io/terra/transactions/${txHash}","account_page":"https://www.mintscan.io/terra/accounts/${accountAddress}"}]},{"chainId":"tgrade-mainnet-1","explorers":[{"kind":"aneka","url":"https://tgrade.aneka.io","tx_page":"https://tgrade.aneka.io/txs/${txHash}","account_page":"https://tgrade.aneka.io/accounts/${accountAddress}"}]},{"chainId":"thorchain-1","explorers":[{"kind":"THORChain explorer","url":"https://thorchain.net","tx_page":"https://thorchain.net/#/txs/${txHash}"},{"kind":"viewblock","url":"https://viewblock.io/thorchain","tx_page":"https://viewblock.io/thorchain/tx/${txHash}"}]},{"chainId":"titan_18888-1","explorers":[{"kind":"ping.pub","url":"https://tkxscan.io","tx_page":"https://tkxscan.io/Titan/tx/${txHash}","account_page":"https://tkxscan.io/Titan/account/${accountAddress}"}]},{"explorers":[{"kind":"Tonscan","url":"https://tonscan.org/","tx_page":"https://tonscan.org/tx/${txHash}"}]},{"explorers":[{"kind":"TRONSCAN","url":"https://tronscan.org/","tx_page":"https://tronscan.org/#/transaction//${txHash}"}]},{"chainId":"umee-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/umee/","tx_page":"https://www.mintscan.io/umee/transactions/${txHash}","account_page":"https://www.mintscan.io/umee/accounts/${accountAddress}"},{"kind":"ping.pub","url":"https://ping.pub/umee","tx_page":"https://ping.pub/umee/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/umee","tx_page":"https://explorer.stavr.tech/umee/tx/${txHash}"},{"kind":"explorers.guru","url":"https://umee.explorers.guru","tx_page":"https://umee.explorers.guru/transaction/${txHash}"},{"kind":"atomscan","url":"https://atomscan.com/umee","tx_page":"https://atomscan.com/umee/transactions/${txHash}","account_page":"https://atomscan.com/umee/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/umee","tx_page":"https://staking-explorer.com/transaction.php?chain=umee&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=umee&addr=${accountAddress}"},{"kind":"Stakeflow","url":"https://stakeflow.io/umee","account_page":"https://stakeflow.io/umee/accounts/${accountAddress}"},{"kind":"Stake-Take","url":"https://explorer.stake-take.com/umee","tx_page":"https://explorer.stake-take.com/umee/transactions/${txHash}","account_page":"https://explorer.stake-take.com/umee/account/${accountAddress}"},{"kind":"Stake Village","url":"https://exp.stakevillage.net/umee","tx_page":"https://exp.stakevillage.net/umee/tx/${txHash}","account_page":"https://exp.stakevillage.net/umee/account/${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/umee","tx_page":"https://ezstaking.app/umee/txs/${txHash}","account_page":"https://ezstaking.app/umee/account/${accountAddress}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/umee","tx_page":"https://explorer.whenmoonwhenlambo.money/umee/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/umee/account/${accountAddress}"}]},{"chainId":"unicorn-420"},{"chainId":"FUND-MainNet-2","explorers":[{"kind":"ping.pub","url":"https://explorer.unification.io/u","tx_page":"https://explorer.unification.io/u/tx/${txHash}","account_page":"https://explorer.unification.io/u/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.unification.chainmasters.ninja/unification","tx_page":"https://explorer.unification.chainmasters.ninja/unification/tx/${txHash}","account_page":"https://explorer.unification.chainmasters.ninja/Unification/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/unification","tx_page":"https://staking-explorer.com/transaction.php?chain=unification&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=unification&addr=${accountAddress}"},{"kind":"atomscan","url":"https://atomscan.com/unification","tx_page":"https://atomscan.com/unification/transactions/${txHash}","account_page":"https://atomscan.com/unification/accounts/${accountAddress}"}]},{"chainId":"ununifi-beta-v1","explorers":[{"kind":"UnUniFi Explorer","url":"https://ununifi.io/explorer","tx_page":"https://ununifi.io/explorer/txs/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.top/ununifi","tx_page":"https://explorer.nodestake.top/ununifi/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/ununifi","tx_page":"https://staking-explorer.com/transaction.php?chain=ununifi&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=ununifi&addr=${accountAddress}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/Ununifi","tx_page":"https://exp.nodeist.net/Ununifi/tx/${txHash}"}]},{"chainId":"uptick_117-1","explorers":[{"kind":"ping.pub","url":"https://explorers.brocha.in/uptick","tx_page":"https://explorers.brocha.in/uptick/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/uptick","tx_page":"https://staking-explorer.com/transaction.php?chain=uptick&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=uptick&addr=${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/uptick","tx_page":"https://explorer.nodestake.org/uptick/tx/${txHash}"},{"kind":"BccNodes Explorer","url":"https://explorer.bccnodes.com/uptick-M","tx_page":"https://explorer.bccnodes.com/uptick-M/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯ Explorer","url":"https://explorer.stavr.tech/uptick-mainnet","tx_page":"https://explorer.stavr.tech/uptick-mainnet/tx/${txHash}"},{"kind":"π₯𝐞𝐬𝐧𝐒𝐀 | 𝐔𝐓𝐒𝐀 Explorer","url":"https://exp.utsa.tech/uptick","tx_page":"https://exp.utsa.tech/uptick/tx/${txHash}"},{"kind":"cosmotracker","url":"https://cosmotracker.com/uptick","tx_page":"https://cosmotracker.com/uptick/tx/${txHash}"},{"kind":"Upscan","url":"https://upscan.xyz/","tx_page":"https://upscan.xyz/uptick_117-1/tx/${txHash}"},{"kind":"Sr20de","url":"https://explorer.sr20de.xyz/uptick","tx_page":"https://explorer.sr20de.xyz/uptick/tx/${txHash}"}]},{"chainId":"xion-mainnet-1","explorers":[{"url":"https://explorer.burnt.com/xion-mainnet-1","tx_page":"https://explorer.burnt.com/xion-mainnet-1/tx/${txHash}","account_page":"https://explorer.burnt.com/xion-mainnet-1/account/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/xion","tx_page":"https://staking-explorer.com/transaction.php?chain=xion&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=xion&addr=${accountAddress}"},{"kind":"NodeStake","url":"https://explorer.nodestake.org/xion","tx_page":"https://explorer.nodestake.org/xion/tx/${txHash}","account_page":"https://explorer.nodestake.org/xion/account/${accountAddress}"}]},{"chainId":"dimension_37-1","explorers":[{"kind":"explorer.xpla","url":"https://explorer.xpla.io","tx_page":"https://explorer.xpla.io/mainnet/tx/${txHash}"},{"kind":"finder","url":"https://finder.xpla.io","tx_page":"https://finder.xpla.io/mainnet/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Xpla-Mainnet","tx_page":"https://explorer.stavr.tech/Xpla-Mainnet/tx/${txHash}"},{"kind":"mintscan","url":"https://www.mintscan.io/xpla","tx_page":"https://www.mintscan.io/xpla/transactions/${txHash}","account_page":"https://www.mintscan.io/xpla/accounts/${accountAddress}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/xpla","tx_page":"https://staking-explorer.com/transaction.php?chain=xpla&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=xpla&addr=${accountAddress}"},{"kind":"ezstaking","url":"https://ezstaking.app/xpla","tx_page":"https://ezstaking.app/xpla/txs/${txHash}","account_page":"https://ezstaking.app/xpla/account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Xpla-Mainnet","tx_page":"https://explorer.stavr.tech/Xpla-Mainnet/${txHash}","account_page":"https://explorer.stavr.tech/Xpla-Mainnet/account/${accountAddress}"}]},{"chainId":"diamond-1"},{"chainId":"zetachain_7000-1","explorers":[{"kind":"ZetaScan","url":"https://explorer.zetachain.com/","tx_page":"https://explorer.zetachain.com/cc/tx/${txHash}"},{"kind":"BlockScout","url":"https://zetachain.blockscout.com/","tx_page":"https://zetachain.blockscout.com/tx/${txHash}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/zetachain","tx_page":"https://explorer.nodestake.org/zetachain/tx/${txHash}"},{"kind":"staking-explorer.com","url":"https://staking-explorer.com/explorer/zetachain","tx_page":"https://staking-explorer.com/transaction.php?chain=zetachain&tx=${txHash}","account_page":"https://staking-explorer.com/account.php?chain=zetachain&addr=${accountAddress}"},{"kind":"Nodes Hub πŸ›‘οΈ 100% Slash Protected πŸ›‘οΈ | Restake βœ…","url":"https://explorer.nodeshub.online/zetachain/","tx_page":"https://explorer.nodeshub.online/zetachain/tx/${txHash}","account_page":"https://explorer.nodeshub.online/zetachain/accounts/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Zetachain-Mainnet","tx_page":"https://explorer.stavr.tech/Zetachain-Mainnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Zetachain-Mainnet/accounts/${accountAddress}"}]},{"chainId":"junction","explorers":[{"kind":"Airchains","url":"https://testnet.airchains.io","tx_page":"https://testnet.airchains.io/transaction/${txHash}","account_page":"https://testnet.airchains.io/address/${accountAddress}"},{"kind":"NodesGuru","url":"https://testnet.junction.explorers.guru/","tx_page":"https://testnet.junction.explorers.guru/transaction/${txHash}","account_page":"https://testnet.junction.explorers.guru/account/${accountAddress}"},{"kind":"Nodejumper","url":"https://app.nodejumper.io/airchains-testnet/"},{"kind":"UTSA","url":"https://exp.utsa.tech/airchains-test/","tx_page":"https://exp.utsa.tech/airchains-test/tx/${txHash}","account_page":"https://exp.utsa.tech/airchains-test/account/${accountAddress}"},{"kind":"Stavr Tech","url":"https://explorer.stavr.tech/Airchains-Testnet","tx_page":"https://explorer.stavr.tech/Airchains-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Airchains-Testnet/${accountAddress}"},{"kind":"CoinHunters","url":"https://explorer.coinhunterstr.com/Airchains","tx_page":"https://explorer.coinhunterstr.com/Airchains/tx/${txHash}","account_page":"https://explorer.coinhunterstr.com/Airchains/account/${accountAddress}"},{"kind":"KZVN","url":"https://explorer.kzvn.xyz/airchains","tx_page":"https://explorer.kzvn.xyz/airchains/tx/${txHash}","account_page":"https://explorer.kzvn.xyz/airchains/account/${accountAddress}"},{"kind":"Elessar Nodes","url":"https://explorer.elessarnodes.xyz/Airchains","tx_page":"https://explorer.elessarnodes.xyz/Airchains/tx/${txHash}","account_page":"https://explorer.elessarnodes.xyz/Airchains/account/${accountAddress}"},{"kind":"Apollo Sync","url":"https://explorer.apollo-sync.com/","tx_page":"https://explorer.apollo-sync.com/tx/${txHash}","account_page":"https://explorer.apollo-sync.com/account/${accountAddress}"},{"kind":"Stakeme","url":"https://airchains.exploreme.pro/","tx_page":"https://airchains.exploreme.pro/transaction/${txHash}"},{"kind":"StakerHouse","url":"https://cosmotracker.com/airchains","tx_page":"https://cosmotracker.com/airchains/tx/${txHash}","account_page":"https://cosmotracker.com/airchains/account/${accountAddress}"},{"kind":"IT Rocket","url":"https://testnet.itrocket.net/airchains/","tx_page":"https://testnet.itrocket.net/airchains//tx/${txHash}","account_page":"https://testnet.itrocket.net/airchains/account/${accountAddress}"},{"kind":"Validator VN ","url":"https://explorer.validatorvn.com/Airchains-Testnet","tx_page":"https://explorer.validatorvn.com/Airchains-Testnet/tx/${txHash}","account_page":"https://explorer.validatorvn.com/Airchains-Testnet/account/${accountAddress}"}]},{"chainId":"sandbox-01","explorers":[{"kind":"ping.pub","url":"https://explorer.sandbox-01.aksh.pw/akash","tx_page":"https://explorer.sandbox-01.aksh.pw/akash/tx/${txHash}"}]},{"chainId":"constantine-3","explorers":[{"kind":"archwayscan","url":"https://testnet.archway.explorers.guru","tx_page":"https://testnet.archway.explorers.guru/transaction/${txHash}"}]},{"chainId":"arkeo","explorers":[{"url":"https://explorer.nodexcapital.com/arkeo","tx_page":"https://explorer.nodexcapital.com/arkeo/tx/${txHash}"}]},{"chainId":"artela_11820-1","explorers":[{"kind":"Artela Network","url":"https://testnet-scan.artela.network","tx_page":"https://testnet-scan.artela.network/tx/${txHash}"}]},{"chainId":"aura_6321-3","explorers":[{"kind":"aurascan","url":"https://euphoria.aurascan.io","tx_page":"https://euphoria.aurascan.io/tx/${txHash}","account_page":"https://euphoria.aurascan.io/address/${accountAddress}"}]},{"chainId":"axelar-testnet-lisbon-3","explorers":[{"kind":"axelarscan","url":"https://testnet.axelarscan.io","tx_page":"https://testnet.axelarscan.io/tx/${txHash}"},{"kind":"mintscan","url":"https://mintscan.io/axelar-testnet","tx_page":"https://mintscan.io/axelar-testnet/txs/${txHash}","account_page":"https://mintscan.io/axelar-testnet/account/${accountAddress}"}]},{"chainId":"bbn-test3","explorers":[{"kind":"babylonscan","url":"https://babylonscan.io"},{"kind":"explorers.guru","url":"https://testnet.babylon.explorers.guru","tx_page":"https://testnet.babylon.explorers.guru/transaction/${txHash}"}]},{"chainId":"bitcanna-dev-1","explorers":[{"url":"https://explorer.thesilverfox.pro/bitcanna","tx_page":"https://explorer.thesilverfox.pro/bitcanna/tx/${txHash}"},{"url":"https://testnets-cosmos.mintthemoon.xyz/bitcanna","tx_page":"https://testnets-cosmos.mintthemoon.xyz/bitcanna/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Bitcanna-DEV","tx_page":"https://explorer.stavr.tech/Bitcanna-DEV/tx/${txHash}","account_page":"https://explorer.stavr.tech/Bitcanna-DEV/account/${accountAddress}"},{"url":"https://explorer.kjnodes.com/bitcanna-testnet","tx_page":"https://explorer.kjnodes.com/bitcanna-testnet/tx/${txHash}"},{"url":"https://explorer.stavr.tech/bitcanna-dev","tx_page":"https://explorer.stavr.tech/bitcanna-dev/tx/${txHash}"}]},{"chainId":"blockx_19077-1"},{"chainId":"cascadia_6102-1","explorers":[{"kind":"validator_explorer","url":"https://validator.cascadia.foundation/","tx_page":"https://validator.cascadia.foundation/transactions/${txHash}","account_page":"https://validator.cascadia.foundation/accounts/${accountAddress}"},{"kind":"block_explorer","url":"https://explorer.cascadia.foundation/","tx_page":"https://explorer.cascadia.foundation/tx/${txHash}","account_page":"https://explorer.cascadia.foundation/address/${accountAddress}"}]},{"chainId":"mocha-4","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/celestia-testnet","tx_page":"https://mintscan.io/celestia-testnet/txs/${txHash}"},{"kind":"πŸš€ITRocketπŸš€","url":"https://testnet.itrocket.net/celestia","tx_page":"https://testnet.itrocket.net/celestia/tx/${txHash}","account_page":"https://testnet.itrocket.net/celestia/account/${accountAddress}"},{"kind":"CrypTech","url":"https://explorers.cryptech.com.ua/Celestia-Testnet","tx_page":"https://explorers.cryptech.com.ua/Celestia-Testnet/tx/${txHash}","account_page":"https://explorers.cryptech.com.ua/Celestia-Testnet/account/${accountAddress}"},{"kind":"DTEAM | Explorer","url":"https://explorer.testnet.dteam.tech/celestia","tx_page":"https://explorer.testnet.dteam.tech/celestia/tx/${txHash}","account_page":"https://explorer.testnet.dteam.tech/celestia/account/${accountAddress}"},{"kind":"Relaxed Explorer πŸ¦₯","url":"https://testnet.explorer.stakeandrelax.net/celestia","tx_page":"https://testnet.explorer.stakeandrelax.net/celestia/transaction/${txHash}","account_page":"https://testnet.explorer.stakeandrelax.net/celestia/account/${accountAddress}"}]},{"chainId":"babajaga-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/C4E-Testnet","tx_page":"https://explorer.stavr.tech/C4E-Testnet/transactions/${txHash}"},{"kind":"explorer","url":"https://explorer-testnet.c4e.io/","tx_page":"https://explorer-testnet.c4e.io/transactions/${txHash}"}]},{"chainId":"cheqd-testnet-6","explorers":[{"kind":"bigdipper","url":"https://testnet-explorer.cheqd.io/","tx_page":"https://testnet-explorer.cheqd.io/transactions/${txHash}"}]},{"chainId":"chimba-testnet","explorers":[{"kind":"bigdipper","url":"https://explorer.testnet.chimba.ooo/","tx_page":"https://explorer.testnet.chimba.ooo/transactions/${txHash}"}]},{"chainId":"banksy-testnet-3","explorers":[{"url":"https://explorer.nodexcapital.com/composable-3","tx_page":"https://explorer.nodexcapital.com/composable-3/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Composable-Testnet4","tx_page":"https://explorer.stavr.tech/Composable-Testnet4/tx/${txHash}"},{"url":"https://explorer.indonode.net/composable-testnet-3","tx_page":"https://explorer.indonode.net/composable-testnet-3/tx/${txHash}"},{"url":"https://explorer.sr20de.xyz/Composible-3","tx_page":"https://explorer.sr20de.xyz/Composible-3/tx/${txHash}"}]},{"chainId":"kitten-04","explorers":[]},{"chainId":"coreum-testnet-1","explorers":[{"kind":"Coreum","url":"https://explorer.testnet-1.coreum.dev/coreum","tx_page":"https://explorer.testnet-1.coreum.dev/coreum/transactions/${txHash}","account_page":"https://explorer.testnet-1.coreum.dev/coreum/account/${accountAddress}"},{"kind":"mintscan","url":"https://www.mintscan.io/coreum-testnet","tx_page":"https://www.mintscan.io/coreum-testnet/transactions/${txHash}","account_page":"https://www.mintscan.io/coreum-testnet/accounts/${accountAddress}"}]},{"chainId":"theta-testnet-001","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/cosmoshub-testnet","tx_page":"https://mintscan.io/cosmoshub-testnet/txs/${txHash}"},{"kind":"Big Dipper","url":"https://explorer.theta-testnet.polypore.xyz/","tx_page":"https://explorer.theta-testnet.polypore.xyz/transactions/${txHash}"}]},{"chainId":"provider","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/ics-testnet-provider","tx_page":"https://mintscan.io/ics-testnet-provider/tx/${txHash}"},{"kind":"Ping.pub","url":"https://explorer.polypore.xyz/provider","tx_page":"https://explorer.polypore.xyz/provider/tx/${txHash}"},{"kind":"ITRocket","url":"https://testnet.itrocket.net/cosmos","tx_page":"https://testnet.itrocket.net/cosmos/tx/${txHash}","account_page":"https://testnet.itrocket.net/cosmos/account/${accountAddress}","validator_page":"https://testnet.itrocket.net/cosmos/staking/${validatorAddress}","proposal_page":"https://testnet.itrocket.net/cosmos/gov/${proposalId}","block_page":"https://testnet.itrocket.net/cosmos/block/${blockHeight}"}]},{"chainId":"malaga-420","explorers":[{"kind":"BIG DIPPER","url":"https://block-explorer.malaga-420.cosmwasm.com/","tx_page":"https://block-explorer.malaga-420.cosmwasm.com/transactions/${txHash}"}]},{"chainId":"coss-testnet-1"},{"chainId":"cudos-testnet-public-3","explorers":[{"kind":"bigdipper-testnet","url":"https://explorer.testnet.cudos.org/","tx_page":"https://explorer.testnet.cudos.org/transactions/${txHash}","account_page":"https://explorer.testnet.cudos.org/accounts/${accountAddress}"}]},{"chainId":"deardoge-testnet","explorers":[{"kind":"Dear Doge Ping Pub","url":"https://testnet-explorer.deardoge.org/deardoge","tx_page":"https://testnet-explorer.deardoge.org/deardoge/tx/${txHash}"}]},{"chainId":"morpheus-apollo-3","explorers":[{"kind":"bigdipper","url":"https://testnet.bigdipper.live/desmos","tx_page":"https://testnet.live/desmos/transactions/${txHash}","account_page":"https://testnet.bigdipper.live/desmos/accounts/${accountAddress}"}]},{"chainId":"dhealth-testnet-2","explorers":[]},{"chainId":"vota-testnet","explorers":[{"kind":"Dora Vota Ping Pub","url":"https://maci-explorer-test.dorafactory.org","tx_page":"https://maci-explorer-test.dorafactory.org/dora/tx/${txHash}"}]},{"chainId":"dydx-testnet-4","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/dydx-testnet","tx_page":"https://www.mintscan.io/dydx-testnet/txs/${txHash}","account_page":"https://www.mintscan.io/dydx-testnet/account/${accountAddress}"}]},{"chainId":"dymension_1405-1","explorers":[{"kind":"dymscan","url":"https://pg.dym.fyi/","tx_page":"https://pg.dym.fyi//tx/${txHash}"}]},{"chainId":"elysicstestnet-1","explorers":[{"kind":"ping.pub","url":"https://testnet.ping.pub/elys","tx_page":"https://testnet.ping.pub/elys/tx/${txHash}","account_page":"https://testnet.ping.pub/elys/account/${accountAddress}"},{"kind":"itrocket","url":"https://testnet.itrocket.net/elys","tx_page":"https://testnet.itrocket.net/elys/staking/tx/${txHash}","account_page":"https://testnet.itrocket.net/elys/account/${accountAddress}"}]},{"chainId":"empe-testnet-2","explorers":[{"kind":"empe","url":"https://explorer-testnet.empe.io","tx_page":"https://explorer-testnet.empe.io/transactions/${txHash}"}]},{"chainId":"circulus-1","explorers":[{"kind":"exploreme","url":"https://empowerchain.exploreme.pro","tx_page":"https://empowerchain.exploreme.pro/transaction/${txHash}"},{"kind":"ping.pub","url":"https://exp.nodeist.net/Empower","tx_page":"https://exp.nodeist.net/Empower/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Empower","tx_page":"https://explorer.stavr.tech/Empower/tx/${txHash}"},{"kind":"ping.pub","url":"https://explorer.nodestake.top/empower-testnet","tx_page":"https://explorer.nodestake.top/empower-testnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://testnet.itrocket.net/empower/staking","tx_page":"https://testnet.itrocket.net/empower/staking/tx/${txHash}"},{"kind":"ping.pub","url":"https://explorer.stavr.tech/empower","tx_page":"https://explorer.stavr.tech/empower/tx/${txHash}"}]},{"chainId":"epix_4243-1","explorers":[{"kind":"Epix Explorer","url":"https://testnet.epix.zone/epix","tx_page":"https://testnet.epix.zone/epix/tx/${txHash}"}]},{"chainId":"evmos_9000-4","explorers":[{"kind":"Mintscan","url":"https://mintscan.io/evmos-testnet","tx_page":"https://mintscan.io/evmos-testnet/txs/${txHash}"},{"kind":"NodesGuru","url":"https://testnet.evmos.explorers.guru/","tx_page":"https://testnet.evmos.explorers.guru/transaction/${txHash}"}]},{"chainId":"dorado-1","explorers":[{"kind":"bigdipper","url":"https://explore-dorado.fetch.ai","tx_page":"https://explore-dorado.fetch.ai/transactions/${txHash}"},{"kind":"azoyalabs","url":"https://fetchstation.azoyalabs.com/testnet","tx_page":"https://fetchstation.azoyalabs.com/testnet/explorer/transactions/${txHash}","account_page":"https://fetchstation.azoyalabs.com/testnet/explorer/address/${accountAddress}"}]},{"chainId":"fiamma-testnet-1","explorers":[{"kind":"ping.pub","url":"https://testnet-explorer.fiammachain.io/"}]},{"chainId":"ebony-2","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/finschia-testnet","tx_page":"https://www.mintscan.io/finschia-testnet/tx/${txHash}","account_page":"https://www.mintscan.io/finschia-testnet/address/${accountAddress}"}]},{"chainId":"galactica_9302-1","explorers":[{"kind":"ping.pub","url":"https://ping.pfc.zone/galactica-testnet","tx_page":"https://ping.pfc.zone/galactica-testnet/tx/${txHash}","account_page":"https://ping.pfc.zone/galactica-testnet/account/${accountAddress}"}]},{"chainId":"gitopia-janus-testnet-2","explorers":[{"kind":"explorer.humans.zone","url":"https://gitopia.explorers.guru/","tx_page":"https://gitopia.explorers.guru/transaction/${txHash}"}]},{"chainId":"berberis-1","explorers":[{"kind":"hedgescan","url":"https://berberis.hedgescan.io","tx_page":"https://berberis.hedgescan.io/txs/${txHash}"}]},{"chainId":"testnet-1","explorers":[{"kind":"explorer.humans.zone","url":"https://explorer.humans.zone/","tx_page":"https://explorer.humans.zone/humans-testnet/tx/${txHash}"}]},{"chainId":"prajna-1","explorers":[{"kind":"Hypersign","url":"https://explorer.hypersign.id/hypersign-prajna-testnet","tx_page":"https://explorer.hypersign.id/hypersign-prajna-testnet/tx/${txHash}"}]},{"chainId":"pandora-8","explorers":[{"kind":"ixoworld","url":"https://blockscan.testnet.ixo.earth/ixo","tx_page":"https://blockscan.testnet.ixo.earth/ixo/transactions/${txHash}","account_page":"https://blockscan.testnet.ixo.earth/ixo/accounts/${accountAddress}"}]},{"chainId":"imversed-test-1","explorers":[{"kind":"Big Dipper","url":"https://tex-s.imversed.com","tx_page":"https://tex-s.imversed.com/transactions/${txHash}"}]},{"chainId":"injective-888","explorers":[{"kind":"injectiveprotocol","url":"https://testnet.explorer.injective.network/","tx_page":"https://testnet.explorer.injective.network/transaction/${txHash}"}]},{"chainId":"canine-1","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Jackal-Testnet","tx_page":"https://explorer.stavr.tech/Jackal-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Jackal-Testnet/account/${accountAddress}"},{"kind":"ping.pub","url":"https://testnet.ping.pub/jackal","tx_page":"https://testnet.ping.pub/jackal/tx/${txHash}"}]},{"chainId":"mesomelas-1","explorers":[{"kind":"PingPub","url":"https://testnet-explorer.brocha.in/Jackal%20v4","tx_page":"https://testnet-explorer.brocha.in/Jackal%20v4/tx/${txHash}","account_page":"https://testnet-explorer.brocha.in/Jackal%20v4/account/${accountAddress}"}]},{"chainId":"uni-6","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Juno-Testnet","tx_page":"https://explorer.stavr.tech/Juno-Testnet/txs/${txHash}","account_page":"https://explorer.stavr.tech/Juno-Testnet/account/${accountAddress}"}]},{"chainId":"kichain-t-4","explorers":[{"kind":"kifoundation","url":"https://kichain-t-4.blockchain.ki/","tx_page":"https://kichain-t-4.blockchain.ki/transactions/${txHash}"}]},{"chainId":"kima_testnet","explorers":[{"kind":"Kima Network","url":"https://explorer-testnet.kima.finance/","tx_page":"https://explorer-testnet.kima.finance/transactions/${txHash}"}]},{"chainId":"harpoon-4","explorers":[{"kind":"explorers.guru","url":"https://kujira.explorers.guru","tx_page":"https://kujira.explorers.guru/transaction/${txHash}"}]},{"chainId":"kaon-1","explorers":[{"kind":"mintscan","url":"https://mintscan.io/kyve-testnet","tx_page":"https://mintscan.io/kyve-testnet/txs/${txHash}","account_page":"https://mintscan.io/kyve-testnet/account/${accountAddress}"},{"kind":"KYVE Explorer","url":"https://explorer.kyve.network/kaon","tx_page":"https://explorer.kyve.network/kaon/tx/${txHash}","account_page":"https://explorer.kyve.network/kaon/account/${accountAddress}"}]},{"chainId":"lava-testnet-2","explorers":[{"kind":"explorers.guru","url":"https://lava.explorers.guru/","tx_page":"https://lava.explorers.guru//transaction/${txHash}","account_page":"https://lava.explorers.guru//account/${accountAddress}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Lava-Testnet","tx_page":"https://explorer.stavr.tech/Lava-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Lava-Testnet/account/${accountAddress}"},{"kind":"NodeStake Explorer","url":"https://explorer.nodestake.org/lava-testnet","tx_page":"https://explorer.nodestake.org/lava-testnet/tx/${txHash}","account_page":"https://explorer.nodestake.org/lava-testnet/account/${accountAddress}"},{"kind":"πŸš€ITRocketπŸš€","url":"https://testnet.itrocket.net/lava","tx_page":"https://testnet.itrocket.net/lava/tx/${txHash}","account_page":"https://testnet.itrocket.net/lava/account/${accountAddress}"}]},{"chainId":"likecoin-public-testnet-5","explorers":[{"kind":"bigdipper","url":"https://testnet.bigdipper.live/likecoin","tx_page":"https://testnet.bigdipper.live/likecoin/transactions/${txHash}","account_page":"https://testnet.bigdipper.live/likecoin/accounts/${accountAddress}"},{"kind":"lunie-ng","url":"https://likecoin-public-testnet-5.netlify.app/"}]},{"chainId":"lumenx-test","explorers":[{"kind":"ping.pub","url":"https://testnet.explorer.chaintools.tech/lumenx","tx_page":"https://testnet.explorer.chaintools.tech/lumenx/tx/${txHash}"}]},{"chainId":"manifest-ledger-testnet","explorers":[{"kind":"Default Explorer","url":"https://testnet.manifest.explorers.guru/","tx_page":"https://testnet.manifest.explorers.guru/transactions"}]},{"chainId":"mantra-hongbai-1"},{"chainId":"mantra-dukong-1","explorers":[{"kind":"mintscan","url":"https://www.mintscan.io/mantra-testnet","tx_page":"https://mintscan.io/mantra-testnet/txs/${txHash}","account_page":"https://mintscan.io/mantra-testnet/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.mantrachain.io","tx_page":"https://explorer.mantrachain.io/MANTRA-Dukong/tx/${txHash}","account_page":"https://explorer.mantrachain.io/MANTRA-Dukong/account/${accountAddress}"}]},{"chainId":"ares-1","explorers":[{"kind":"Mars Protocol","url":"https://testnet-explorer.marsprotocol.io","tx_page":"https://testnet-explorer.marsprotocol.io/transactions/${txHash}"},{"kind":"Nodeist Explorer","url":"https://exp.nodeist.net/t-mars/","tx_page":"https://exp.nodeist.net/t-mars/transactions/${txHash}"}]},{"chainId":"mnova_10096-1"},{"chainId":"narwhal-2","explorers":[{"kind":"ping.pub","url":"https://ping.pfc.zone/narwhal-testnet","tx_page":"https://ping.pfc.zone/narwhal-testnet/tx/${txHash}"}]},{"chainId":"neura_267-1","explorers":[{"kind":"ankrscan-neura","url":"https://testnet.explorer.neuraprotocol.io","tx_page":"https://testnet.explorer.neuraprotocol.io/tx/${txHash}"},{"kind":"blockscout","url":"https://explorer.neura-testnet.ankr.com","tx_page":"https://explorer.neura-testnet.ankr.com/tx/${txHash}"}]},{"chainId":"pion-1","explorers":[{"kind":"Ping.pub Explorer from Hypha","url":"https://explorer.rs-testnet.polypore.xyz/pion-1","tx_page":"https://explorer.rs-testnet.polypore.xyz/pion-1/tx/${txHash}","account_page":"https://explorer.rs-testnet.polypore.xyz/baryon-1/account/${accountAddress}"},{"kind":"Mintscan","url":"https://mintscan.io/neutron-testnet","tx_page":"https://mintscan.io/neutron-testnet/txs/${txHash}","account_page":"https://mintscan.io/neutron-testnet/account/${accountAddress}"}]},{"chainId":"nibiru-testnet-1","explorers":[{"kind":"Nibiru Foundation","url":"https://explorer.nibiru.fi/nibiru-testnet-1","tx_page":"https://explorer.nibiru.fi/nibiru-tesnet-1/tx/${txHash}","account_page":"https://explorer.nibiru.fi/nibiru-testnet-1/account/${accountAddress}"}]},{"chainId":"nibiru-testnet-2","explorers":[{"kind":"Nibiru Foundation","url":"https://explorer.nibiru.fi/nibiru-testnet-2","tx_page":"https://explorer.nibiru.fi/nibiru-tesnet-2/tx/${txHash}","account_page":"https://explorer.nibiru.fi/nibiru-testnet-2/account/${accountAddress}"}]},{"chainId":"nibiru-testnet-3","explorers":[{"kind":"Nibiru Foundation","url":"https://explorer.nibiru.fi/nibiru-testnet-3","tx_page":"https://explorer.nibiru.fi/nibiru-tesnet-3/tx/${txHash}","account_page":"https://explorer.nibiru.fi/nibiru-testnet-3/account/${accountAddress}"}]},{"chainId":"nillion-chain-testnet-1","explorers":[{"url":"https://testnet.nillion.explorers.guru","tx_page":"https://testnet.nillion.explorers.guru/transaction/${txHash}","account_page":"https://testnet.nillion.explorers.guru/account/${accountAddress}"},{"url":"https://testnet.ping.pub/nillion","tx_page":"https://testnet.ping.pub/nillion/tx/${txHash}","account_page":"https://testnet.ping.pub/nillion/account/${accountAddress}"}]},{"chainId":"grand-1","explorers":[{"kind":"mintscan","url":"https://mintscan.io/noble-testnet","tx_page":"https://mintscan.io/noble-testnet/txs/${txHash}"},{"kind":"ping.pub","url":"https://explore.strange.love/grand-1","tx_page":"https://explore.strange.love/grand-1/tx/${txHash}"}]},{"chainId":"nois-testnet-005","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Nois-Testnet","tx_page":"https://explorer.stavr.tech/Nois-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Nois-Testnet/account/${accountAddress}"},{"kind":"explorers.guru","url":"https://testnet.nois.explorers.guru","tx_page":"https://testnet.nois.explorers.guru/transaction/${txHash}","account_page":"https://testnet.nois.explorers.guru/account/${accountAddress}"}]},{"chainId":"rila-1","explorers":[{"kind":"Nolus Explorer","url":"https://explorer-rila.nolus.io/rila-1/","tx_page":"https://explorer-rila.nolus.io/rila-1/tx/${txHash}","account_page":"https://explorer-rila.nolus.io/rila-1/account/${accountAddress}"}]},{"chainId":"nomic-testnet-6","explorers":[]},{"chainId":"sandbox","explorers":[{"kind":"ping.pub","url":"https://sandbox-blocks.nymtech.net/sandbox","tx_page":"https://sandbox-blocks.nymtech.net/sandbox/tx/${txHash}"}]},{"chainId":"okp4-nemeton-1","explorers":[{"kind":"ping.pub","url":"https://testnet.ping.pub/OKP4%20testnet","tx_page":"https://testnet.ping.pub/OKP4%20testnet/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/OKP4-Testnet","tx_page":"https://explorer.stavr.tech/OKP4-Testnet/tx/${txHash}"},{"kind":"ping.pub","url":"https://explore.okp4.network/OKP4%20testnet","tx_page":"https://explore.okp4.network/OKP4%20testnet/tx/${txHash}"}]},{"chainId":"osmo-test-5","explorers":[{"kind":"mintscan","url":"https://mintscan.io/osmosis-testnet","tx_page":"https://mintscan.io/osmosis-testnet/txs/${txHash}","account_page":"https://mintscan.io/osmosis-testnet/account/${accountAddress}"},{"kind":"ping.pub","url":"https://explorer.osmotest5.osmosis.zone","tx_page":"https://explorer.osmotest5.osmosis.zone/osmo-test-5/tx/${txHash}","account_page":"https://explorer.osmotest5.osmosis.zone/osmo-test-5/account/${accountAddress}"}]},{"chainId":"INVALID-ID-permtestnet-testnet-1","explorers":[{"kind":"bigdipper","url":"https://explorer.testnet.perm.ooo/","tx_page":"https://explorer.testnet.perm.ooo/transactions/${txHash}"}]},{"chainId":"test-core-1","explorers":[{"kind":"ping.pub","url":"https://testnet.ping.pub/test-core-1/","tx_page":"https://testnet.ping.pub/test-core-1/tx/${txHash}"},{"kind":"mintscan","url":"https://mintscan.io/persistence-testnet","tx_page":"https://mintscan.io/persistence-testnet/txs/${txHash}","account_page":"https://mintscan.io/persistence-testnet/account/${accountAddress}"}]},{"chainId":"test-core-2","explorers":[{"kind":"mintscan","url":"https://mintscan.io/persistence-testnet","tx_page":"https://mintscan.io/persistence-testnet/txs/${txHash}","account_page":"https://mintscan.io/persistence-testnet/account/${accountAddress}"},{"kind":"StakeFlow","url":"https://stakeflow.io/persistence-testnet","tx_page":"https://stakeflow.io/persistence-testnet/transactions/${txHash}","account_page":"https://stakeflow.io/persistence-testnet/accounts/${accountAddress}"},{"kind":"baryon","url":"https://testnet-explorer.baryon.dev/test-core-2","tx_page":"https://testnet-explorer.baryon.dev/test-core-2/tx/{txHash}","account_page":"https://testnet-explorer.baryon.dev/test-core-2/account/${accountAddress}"}]},{"chainId":"planq_7077-1","explorers":[{"kind":"EVM","url":"https://evm-atlas.planq.network","tx_page":"https://evm-atlas.planq.network/tx/${txHash}"},{"kind":"Konsortech","url":"https://testnet-explorer.konsortech.xyz/planq","tx_page":"https://testnet-explorer.konsortech.xyz/planq/tx/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/planq-testnet","tx_page":"https://explorer.whenmoonwhenlambo.money/planq-testnet/tx/${txHash}"}]},{"chainId":"pocket-beta","explorers":[{"kind":"πŸ” POKTScan Explorer πŸ”Ž","url":"https://shannon-beta.poktscan.com/","tx_page":"https://shannon-beta.poktscan.com/tx/${txHash}","account_page":"https://shannon-beta.poktscan.com/accounts/${accountAddress}"},{"kind":"πŸ—Ί Shannon Explorer (stakenodes.org) πŸ—Ί","url":"https://shannon.beta.testnet.pokt.network/","tx_page":"https://shannon.beta.testnet.pokt.network/poktroll/tx/${txHash}","account_page":"https://shannon.beta.testnet.pokt.network/poktroll/account/${accountAddress}"}]},{"chainId":"indigo-1","explorers":[{"kind":"PingPub","url":"https://testnets.cosmosrun.info/pryzm-indigo-1","tx_page":"https://testnets.cosmosrun.info/pryzm-indigo-1/tx/${txHash}","account_page":"https://testnets.cosmosrun.info/pryzm-indigo-1/account/${accountAddress}"},{"kind":"ITRocket","url":"https://testnet.itrocket.net/pryzm","tx_page":"https://testnet.itrocket.net/pryzm/tx/${txHash}","account_page":"https://testnet.itrocket.net/pryzm/account/${accountAddress}"}]},{"chainId":"quasar-test-1"},{"chainId":"rhye-2","explorers":[{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Quicksilver","tx_page":"https://explorer.stavr.tech/Quicksilver/tx/${txHash}","account_page":"https://explorer.stavr.tech/Quicksilver/account/${accountAddress}"},{"url":"https://testnet.quicksilver.explorers.guru","tx_page":"https://testnet.quicksilver.explorers.guru/transaction/${txHash}","account_page":"https://testnet.quicksilver.explorers.guru/account/${accountAddress}"}]},{"chainId":"earendel-1","explorers":[{"kind":"pingfork","url":"https://explorer.theamsolutions.info/qwoyn-testnet/","tx_page":"https://explorer.theamsolutions.info/qwoyn-testnet/tx/${txHash}","account_page":"https://explorer.theamsolutions.info/qwoyn-testnet/account/${accountAddress}"}]},{"chainId":"ssc-testnet-2","explorers":[{"kind":"mintscan","url":"https://mintscan.io/saga-testnet","tx_page":"https://www.mintscan.io/saga-testnet/tx/${txHash}","account_page":"https://mintscan.io/saga-testnet/address/${accountAddress}"}]},{"chainId":"pulsar-3","explorers":[{"kind":"ping.pub","url":"https://testnet.ping.pub/secret","tx_page":"https://testnet.ping.pub/secret/tx/${txHash}"}]},{"chainId":"atlantic-1","explorers":[{"kind":"explorers.guru","url":"https://sei.explorers.guru","tx_page":"https://sei.explorers.guru/transaction/${txHash}"},{"kind":"Brochain","url":"https://testnet-explorer.brocha.in/sei","tx_page":"https://testnet-explorer.brocha.in/sei/tx/${txHash}"}]},{"chainId":"atlantic-2","explorers":[{"kind":"blockscout","url":"https://seitrace.com/?chain=atlantic-2","tx_page":"https://seitrace.com/tx/${txHash}?chain=atlantic-2"},{"kind":"celatone","url":"https://www.seiscan.app/atlantic-2","tx_page":"https://www.seiscan.app/atlantic-2/txs/${txHash}"},{"kind":"explorers.guru","url":"https://testnet.sei.explorers.guru","tx_page":"https://testnet.sei.explorers.guru/transaction/${txHash}"},{"kind":"Brochain","url":"https://testnet-explorer.brocha.in/sei%20atlantic%202","tx_page":"https://testnet-explorer.brocha.in/sei%20atlantic%202/tx/${txHash}"}]},{"chainId":"self-dev-1","explorers":[{"kind":"Selfchain","url":"https://explorer-devnet.selfchain.xyz","tx_page":"https://explorer-devnet.selfchain.xyz/self/transactions/${txHash}"}]},{"chainId":"sge-network-3","explorers":[{"kind":"Sge BlockExplorer","url":"https://blockexplorer.testnet.sgenetwork.io/","tx_page":"https://blockexplorer.testnet.sgenetwork.io/sge-network/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Sge-Testnet","tx_page":"https://explorer.stavr.tech/Sge-Testnet/tx/${txHash}","account_page":"https://explorer.stavr.tech/Sge-Testnet/account/${accountAddress}"}]},{"chainId":"sge-network-4","explorers":[{"kind":"Sge BlockExplorer","url":"https://blockexplorer.testnet.sgenetwork.io/","tx_page":"https://blockexplorer.testnet.sgenetwork.io/sge-network/tx/${txHash}"}]},{"chainId":"yulei-2.1","explorers":[{"kind":"Shentu Explorer","url":"https://explorer.shentu.org/?chain=yulei-2.1","tx_page":"https://explorer.shentu.org/transactions/${txHash}?chain=yulei-2.1"}]},{"chainId":"fivenet","explorers":[{"kind":"sixscan","url":"https://sixscan.io/fivenet","tx_page":"https://sixscan.io/fivenet/tx/${txHash}"}]},{"chainId":"soarchaintestnet","explorers":[{"kind":"Soarchain Explorer","url":"https://explorer.soarchain.com/soarchain","tx_page":"https://explorer.soarchain.com/soarchain/tx/${txHash}"},{"kind":"Kjnodes Explorer","url":"https://explorer.kjnodes.com/soarchain-testnet","tx_page":"https://explorer.kjnodes.com/soarchain-testnet/tx/${txHash}"}]},{"chainId":"sourcetest-1","explorers":[{"kind":"Nodestake","url":"https://explorer.nodestake.top/source-testnet","tx_page":"https://explorer.nodestake.top/source-testnet/tx/${txHash}"},{"kind":"πŸ”₯STAVRπŸ”₯","url":"https://explorer.stavr.tech/Source","tx_page":"https://explorer.stavr.tech/Source/tx/${txHash}"},{"kind":"SR20DE","url":"https://explorer.sr20de.xyz/Source-testnet","tx_page":"https://explorer.sr20de.xyz/Source-testnet/txs/${txHash}"},{"kind":"πŸš€ WHEN MOON πŸŒ• WHEN LAMBO πŸ”₯","url":"https://explorer.whenmoonwhenlambo.money/source-testnet","tx_page":"https://explorer.whenmoonwhenlambo.money/source-testnet/tx/${txHash}","account_page":"https://explorer.whenmoonwhenlambo.money/source-testnet/account/${accountAddress}"}]},{"chainId":"elgafar-1","explorers":[{"kind":"ping.pub","url":"https://testnet-explorer.publicawesome.dev/stargaze","tx_page":"https://testnet-explorer.publicawesome.dev/stargaze/tx/${txHash}"}]},{"chainId":"stateset-1-testnet","explorers":[{"kind":"bigdipper","url":"https://explore.stateset.zone","tx_page":"https://explore.stateset.zone/transactions/${txHash}"}]},{"chainId":"stride-internal-1","explorers":[{"kind":"PingPub","url":"https://testnet.ping.pub/stride","tx_page":"https://testnet.ping.pub/stride/tx/${txHash}"}]},{"chainId":"sunrise-test-0.1","explorers":[]},{"chainId":"swisstronik_1291-1","explorers":[{"kind":"ping.pub","url":"https://explorer-cosmos.testnet.swisstronik.com/swisstronik","tx_page":"https://explorer-cosmos.testnet.swisstronik.com/swisstronik/tx/${txHash}"}]},{"chainId":"symphony-testnet-4"},{"chainId":"amber-2","explorers":[{"kind":"Big Dipper","url":"https://explorer-testnet.synternet.com/","tx_page":"https://explorer-testnet.synternet.com/transactions/${txHash}"}]},{"chainId":"90u-4","explorers":[{"kind":"Ping Pub","url":"https://explorer.nodestake.top/terp-testnet","tx_page":"https://explorer.nodestake.top/terp-testnet/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com","tx_page":"https://explorer.nodexcapital.com/terp/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/terp/account/{$accountAddress}"}]},{"chainId":"90u-2","explorers":[{"kind":"Ping Pub","url":"https://explorer.nodestake.top/terp-testnet","tx_page":"https://explorer.nodestake.top/terp-testnet/tx/${txHash}"},{"kind":"NODEXPLORER","url":"https://explorer.nodexcapital.com","tx_page":"https://explorer.nodexcapital.com/terp/tx/${txHash}","account_page":"https://explorer.nodexcapital.com/terp/account/{$accountAddress}"}]},{"chainId":"pisco-1","explorers":[{"kind":"finder","url":"http://finder.terra.money/testnet/","tx_page":"https://finder.terra.money/testnet/tx/${txHash}"}]},{"chainId":"titan_18889-1","explorers":[{"kind":"ping.pub","url":"https://titan-testnet-explorer-light.titanlab.io","tx_page":"https://titan-testnet-explorer-light.titanlab.io/Titan%20Testnet/tx/${txHash}","account_page":"https://titan-testnet-explorer-light.titanlab.io/Titan%20Testnet/account/${accountAddress}"}]},{"chainId":"tucana_712-1","explorers":[{"kind":"Blockscout","url":"https://explorer.birdee-2.tucana.zone/","tx_page":"https://explorer.birdee-2.tucana.zone/tx/${txHash}"}]},{"chainId":"ulas","explorers":[{"kind":"ulas-scan","url":"https://testnet-explorer.ulas.network","tx_page":"https://testnet-explorer.ulas.network/ulas/tx/${txHash}"}]},{"chainId":"FUND-TestNet-2","explorers":[{"kind":"ping.pub","url":"https://explorer-testnet.unification.io/u","tx_page":"https://explorer-testnet.unification.io/u/tx/${txHash}","account_page":"https://explorer-testnet.unification.io/u/account/${accountAddress}"}]},{"chainId":"union-testnet-8","explorers":[{"kind":"ping.pub","url":"https://explorer.testnet-8.union.build/union","tx_page":"https://explorer.testnet-8.union.build/union/tx/${txHash}","account_page":"https://explorer.testnet-8.union.build/union/account/${accountAddress}"},{"kind":"explorers.guru","url":"https://testnet.union.explorers.guru","tx_page":"https://testnet.union.explorers.guru/transaction/${txHash}","account_page":"https://testnet.union.explorers.guru/account/${accountAddress}"}]},{"chainId":"uptick_7000-2","explorers":[{"kind":"ping.pub","url":"https://explorer.testnet.uptick.network/uptick-network-testnet","tx_page":"https://explorer.testnet.uptick.network/uptick-network-testnet/tx/${txHash}"},{"kind":"Nodes.Guru","url":"https://uptick.explorers.guru/","tx_page":"https://uptick.explorers.guru/transaction/${txHash}"}]},{"chainId":"buenavista-1","explorers":[]},{"chainId":"INVALID-ID-wavehashtestnet-testnet-1","explorers":[{"kind":"atomscan","url":"https://atomscan.com/directory/testnet/wavehashtestnet","tx_page":"https://atomscan.com/directory/testnet/wavehashtestnet/transactions/${txHash}"}]},{"chainId":"xion-testnet-1","explorers":[{"url":"https://explorer.burnt.com/xion-testnet-1","tx_page":"https://explorer.burnt.com/xion-testnet-1/tx/${txHash}","account_page":"https://explorer.burnt.com/xion-testnet-1/account/${accountAddress}"},{"kind":"ITRocket","url":"https://testnet.itrocket.net/burnt","tx_page":"https://testnet.itrocket.net/burnt/tx/${txHash}","account_page":"https://testnet.itrocket.net/burnt/account/${accountAddress}"}]},{"chainId":"cube_47-5","explorers":[{"kind":"explorer.xpla","url":"https://explorer.xpla.io/testnet","tx_page":"https://explorer.xpla.io/testnet/mainnet/tx/${txHash}"},{"kind":"finder","url":"https://finder.xpla.io/testnet","tx_page":"https://finder.xpla.io/testnet/tx/${txHash}"}]},{"chainId":"gardia-2","explorers":[{"kind":"Big Dipper","url":"https://explorer.gardia.zenrocklabs.io/","tx_page":"https://explorer.gardia.zenrocklabs.io/tx/${txHash}","account_page":"https://explorer.gardia.zenrocklabs.io/account/${accountAddress}"}]},{"chainId":"athens_7001-1","explorers":[{"kind":"ZetaScan","url":"https://athens.explorer.zetachain.com/","tx_page":"https://athens.explorer.zetachain.com/cc/tx/${txHash}"},{"kind":"BlockScout","url":"https://zetachain-athens-3.blockscout.com/","tx_page":"https://zetachain-athens-3.blockscout.com/tx/${txHash}"}]},{"chainId":"landlord-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/landlord-2","tx_page":"https://scan.testnet.initia.xyz/landlord-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/landlord-2/accounts/${accountAddress}"}]},{"chainId":"initiation-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/initiation-2","tx_page":"https://scan.testnet.initia.xyz/initiation-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/initiation-2/accounts/${accountAddress}"}]},{"chainId":"glados-2.1","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/glados-2.1","tx_page":"https://scan.testnet.initia.xyz/glados-2.1/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/glados-2.1/accounts/${accountAddress}"}]},{"chainId":"minievm-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/minievm-2","tx_page":"https://scan.testnet.initia.xyz/minievm-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/minievm-2/accounts/${accountAddress}"}]},{"chainId":"minimove-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/minimove-2","tx_page":"https://scan.testnet.initia.xyz/minimove-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/minimove-2/accounts/${accountAddress}"}]},{"chainId":"miniwasm-2","explorers":[{"kind":"initia scan","url":"https://scan.testnet.initia.xyz/miniwasm-2","tx_page":"https://scan.testnet.initia.xyz/miniwasm-2/txs/${txHash}","account_page":"https://scan.testnet.initia.xyz/miniwasm-2/accounts/${accountAddress}"}]}] \ No newline at end of file diff --git a/packages/widget/src/constants/cosmosChains/mainnet.json b/packages/widget/src/constants/cosmosChains/mainnet.json index e963bda2b..425bf3d27 100644 --- a/packages/widget/src/constants/cosmosChains/mainnet.json +++ b/packages/widget/src/constants/cosmosChains/mainnet.json @@ -1 +1 @@ -[{"chainId":"aaronetwork","currencies":[{"coinDenom":"AARON","coinMinimalDenom":"uaaron","coinDecimals":6}],"rest":"https://mainnet-api.aaronetwork.xyz","rpc":"https://mainnet-rpc.aaronetwork.xyz","bech32Config":{"bech32PrefixAccAddr":"aaron","bech32PrefixAccPub":"aaronpub","bech32PrefixValAddr":"aaronvaloper","bech32PrefixValPub":"aaronvaloperpub","bech32PrefixConsAddr":"aaronvalcons","bech32PrefixConsPub":"aaronvalconspub"},"chainName":"aaronetwork","feeCurrencies":[{"coinDenom":"AARON","coinMinimalDenom":"uaaron","coinDecimals":6}],"stakeCurrency":{"coinDenom":"AARON","coinMinimalDenom":"uaaron","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"acre_9052-1","currencies":[{"coinDenom":"acre","coinMinimalDenom":"aacre","coinDecimals":18},{"coinDenom":"arusd","coinMinimalDenom":"erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c","coinDecimals":18},{"coinDenom":"cnto","coinMinimalDenom":"erc20/0xAE6D3334989a22A65228732446731438672418F2","coinDecimals":18}],"rest":"https://lcd-acre.synergynodes.com","rpc":"https://rpc-acre.synergynodes.com","bech32Config":{"bech32PrefixAccAddr":"acre","bech32PrefixAccPub":"acrepub","bech32PrefixValAddr":"acrevaloper","bech32PrefixValPub":"acrevaloperpub","bech32PrefixConsAddr":"acrevalcons","bech32PrefixConsPub":"acrevalconspub"},"chainName":"acrechain","feeCurrencies":[{"coinDenom":"acre","coinMinimalDenom":"aacre","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"acre","coinMinimalDenom":"aacre","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"agoric-3","currencies":[{"coinDenom":"bld","coinMinimalDenom":"ubld","coinDecimals":6},{"coinDenom":"ist","coinMinimalDenom":"uist","coinDecimals":6}],"rest":"https://main.api.agoric.net:443","rpc":"https://main.rpc.agoric.net:443","bech32Config":{"bech32PrefixAccAddr":"agoric","bech32PrefixAccPub":"agoricpub","bech32PrefixValAddr":"agoricvaloper","bech32PrefixValPub":"agoricvaloperpub","bech32PrefixConsAddr":"agoricvalcons","bech32PrefixConsPub":"agoricvalconspub"},"chainName":"agoric","feeCurrencies":[{"coinDenom":"bld","coinMinimalDenom":"ubld","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.05,"high":0.07}},{"coinDenom":"ist","coinMinimalDenom":"uist","coinDecimals":6,"gasPriceStep":{"low":0.0034,"average":0.007,"high":0.02}}],"stakeCurrency":{"coinDenom":"bld","coinMinimalDenom":"ubld","coinDecimals":6},"bip44":{"coinType":564}},{"chainId":"aioz_168-1","currencies":[{"coinDenom":"aioz","coinMinimalDenom":"attoaioz","coinDecimals":18}],"rest":"https://lcd-dataseed.aioz.network","rpc":"https://rpc-dataseed.aioz.network:443","bech32Config":{"bech32PrefixAccAddr":"aioz","bech32PrefixAccPub":"aiozpub","bech32PrefixValAddr":"aiozvaloper","bech32PrefixValPub":"aiozvaloperpub","bech32PrefixConsAddr":"aiozvalcons","bech32PrefixConsPub":"aiozvalconspub"},"chainName":"aioz","feeCurrencies":[{"coinDenom":"aioz","coinMinimalDenom":"attoaioz","coinDecimals":18,"gasPriceStep":{"low":7000000000,"average":7000000000,"high":10000000000}}],"stakeCurrency":{"coinDenom":"aioz","coinMinimalDenom":"attoaioz","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"akashnet-2","currencies":[{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/05DB6975261B805B6F6A157A4386C627F8A70BF8118D411655EFEDCA82BFABA5","coinDecimals":6}],"rest":"https://api.akash.forbole.com:443","rpc":"https://rpc.akash.forbole.com:443","bech32Config":{"bech32PrefixAccAddr":"akash","bech32PrefixAccPub":"akashpub","bech32PrefixValAddr":"akashvaloper","bech32PrefixValPub":"akashvaloperpub","bech32PrefixConsAddr":"akashvalcons","bech32PrefixConsPub":"akashvalconspub"},"chainName":"akash","feeCurrencies":[{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6,"gasPriceStep":{"low":0.00025,"average":0.0025,"high":0.025}}],"stakeCurrency":{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"althea_258432-1","currencies":[{"coinDenom":"althea","coinMinimalDenom":"aalthea","coinDecimals":18}],"rest":"https://nodes.chandrastation.com/api/althea/","rpc":"https://nodes.chandrastation.com/rpc/althea/","bech32Config":{"bech32PrefixAccAddr":"althea","bech32PrefixAccPub":"altheapub","bech32PrefixValAddr":"altheavaloper","bech32PrefixValPub":"altheavaloperpub","bech32PrefixConsAddr":"altheavalcons","bech32PrefixConsPub":"altheavalconspub"},"chainName":"althea","feeCurrencies":[{"coinDenom":"althea","coinMinimalDenom":"aalthea","coinDecimals":18,"gasPriceStep":{"low":100000000000,"average":100000000000,"high":300000000000}}],"stakeCurrency":{"coinDenom":"althea","coinMinimalDenom":"aalthea","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"andromeda-1","currencies":[{"coinDenom":"andr","coinMinimalDenom":"uandr","coinDecimals":6}],"rest":"https://api.andromeda-1.andromeda.aviaone.com","rpc":"https://rpc.andromeda-1.andromeda.aviaone.com","bech32Config":{"bech32PrefixAccAddr":"andr","bech32PrefixAccPub":"andrpub","bech32PrefixValAddr":"andrvaloper","bech32PrefixValPub":"andrvaloperpub","bech32PrefixConsAddr":"andrvalcons","bech32PrefixConsPub":"andrvalconspub"},"chainName":"andromeda","feeCurrencies":[{"coinDenom":"andr","coinMinimalDenom":"uandr","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.05,"high":0.075}}],"stakeCurrency":{"coinDenom":"andr","coinMinimalDenom":"uandr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"archway-1","currencies":[{"coinDenom":"arch","coinMinimalDenom":"aarch","coinDecimals":18},{"coinDenom":"bARCH","coinMinimalDenom":"archway12yurzx8zynv3ck7uh4tucre48tqsm4fac4hfk9p3l24qs2cn08dqr684cg","coinDecimals":18},{"coinDenom":"TOKN","coinMinimalDenom":"archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu","coinDecimals":18},{"coinDenom":"ampARCH","coinMinimalDenom":"cw20:archway1fwurjg7ah4v7hhs6xsc3wutqpvmahrfhns285s0lt34tgfdhplxq6m8xg5","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/D2BCFE34F35AF2968C8E1F84557D8A2058BB56F739EB553206EFC2AD8C6EDAF0","coinDecimals":6},{"coinDenom":"vdl","coinMinimalDenom":"ibc/1BCF1FCAFE3568E234787EDFDA12460BD8931B17FE6A729DCD60FAD845558DA1","coinDecimals":6},{"coinDenom":"AXV","coinMinimalDenom":"cw20:archway1ecjefhcf8r60wtfnhwefrxhj9caeqa90fj58cqsaafqveawn6cjs5znd2n","coinDecimals":6},{"coinDenom":"wARCH","coinMinimalDenom":"cw20:archway1msc3fa4e2mh73y760qmjd3wfkzr98nl26f36xgt2xnhuw6ay3scs42zeue","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/43897B9739BD63E3A08A88191999C632E052724AB96BD4C74AE31375C991F48D","coinDecimals":6},{"coinDenom":"wUSDC","coinMinimalDenom":"cw20:archway1gaf9nw7n8v5lpjz9caxjpps006kxfcrzcuc8y5qp4clslhven2ns2g0ule","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/3F882513A0CCD1C4110ACB7C6C761AC7B48974C9D2D439CD6F652F9B44362518","coinDecimals":6}],"rest":"https://api.mainnet.archway.io","rpc":"https://rpc.mainnet.archway.io","bech32Config":{"bech32PrefixAccAddr":"archway","bech32PrefixAccPub":"archwaypub","bech32PrefixValAddr":"archwayvaloper","bech32PrefixValPub":"archwayvaloperpub","bech32PrefixConsAddr":"archwayvalcons","bech32PrefixConsPub":"archwayvalconspub"},"chainName":"archway","feeCurrencies":[{"coinDenom":"arch","coinMinimalDenom":"aarch","coinDecimals":18,"gasPriceStep":{"low":196000000000,"average":225400000000,"high":254800000000}}],"stakeCurrency":{"coinDenom":"arch","coinMinimalDenom":"aarch","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"arkh","currencies":[{"coinDenom":"ARKH","coinMinimalDenom":"arkh","coinDecimals":6}],"rest":"https://asc-blockchain-api.arkhadian.com/","rpc":"https://asc-dataseed.arkhadian.com/","bech32Config":{"bech32PrefixAccAddr":"arkh","bech32PrefixAccPub":"arkhpub","bech32PrefixValAddr":"arkhvaloper","bech32PrefixValPub":"arkhvaloperpub","bech32PrefixConsAddr":"arkhvalcons","bech32PrefixConsPub":"arkhvalconspub"},"chainName":"arkh","feeCurrencies":[{"coinDenom":"ARKH","coinMinimalDenom":"arkh","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"ARKH","coinMinimalDenom":"arkh","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mantle-1","currencies":[{"coinDenom":"mntl","coinMinimalDenom":"umntl","coinDecimals":6}],"rest":"https://rest.assetmantle.one","rpc":"https://rpc.assetmantle.one","bech32Config":{"bech32PrefixAccAddr":"mantle","bech32PrefixAccPub":"mantlepub","bech32PrefixValAddr":"mantlevaloper","bech32PrefixValPub":"mantlevaloperpub","bech32PrefixConsAddr":"mantlevalcons","bech32PrefixConsPub":"mantlevalconspub"},"chainName":"assetmantle","feeCurrencies":[{"coinDenom":"mntl","coinMinimalDenom":"umntl","coinDecimals":6}],"stakeCurrency":{"coinDenom":"mntl","coinMinimalDenom":"umntl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"atomone-1","currencies":[{"coinDenom":"atone","coinMinimalDenom":"uatone","coinDecimals":6}],"rest":"https://atomone-api.allinbits.com","rpc":"https://atomone-rpc.allinbits.com:443","bech32Config":{"bech32PrefixAccAddr":"atone","bech32PrefixAccPub":"atonepub","bech32PrefixValAddr":"atonevaloper","bech32PrefixValPub":"atonevaloperpub","bech32PrefixConsAddr":"atonevalcons","bech32PrefixConsPub":"atonevalconspub"},"chainName":"atomone","feeCurrencies":[{"coinDenom":"atone","coinMinimalDenom":"uatone","coinDecimals":6,"gasPriceStep":{"low":0.006,"average":0.006,"high":0.009}}],"stakeCurrency":{"coinDenom":"atone","coinMinimalDenom":"uatone","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"aura_6322-2","currencies":[{"coinDenom":"aura","coinMinimalDenom":"uaura","coinDecimals":6}],"rest":"https://lcd.aura.network/","rpc":"https://rpc.aura.network/","bech32Config":{"bech32PrefixAccAddr":"aura","bech32PrefixAccPub":"aurapub","bech32PrefixValAddr":"auravaloper","bech32PrefixValPub":"auravaloperpub","bech32PrefixConsAddr":"auravalcons","bech32PrefixConsPub":"auravalconspub"},"chainName":"aura","feeCurrencies":[{"coinDenom":"aura","coinMinimalDenom":"uaura","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.0025}}],"stakeCurrency":{"coinDenom":"aura","coinMinimalDenom":"uaura","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"axelar-dojo-1","currencies":[{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6},{"coinDenom":"frax","coinMinimalDenom":"frax-wei","coinDecimals":18},{"coinDenom":"dai","coinMinimalDenom":"dai-wei","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"uusdt","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"weth-wei","coinDecimals":18},{"coinDenom":"wbtc","coinMinimalDenom":"wbtc-satoshi","coinDecimals":8},{"coinDenom":"aave","coinMinimalDenom":"aave-wei","coinDecimals":18},{"coinDenom":"ape","coinMinimalDenom":"ape-wei","coinDecimals":18},{"coinDenom":"axs","coinMinimalDenom":"axs-wei","coinDecimals":18},{"coinDenom":"link","coinMinimalDenom":"link-wei","coinDecimals":18},{"coinDenom":"mkr","coinMinimalDenom":"mkr-wei","coinDecimals":18},{"coinDenom":"rai","coinMinimalDenom":"rai-wei","coinDecimals":18},{"coinDenom":"shib","coinMinimalDenom":"shib-wei","coinDecimals":18},{"coinDenom":"steth","coinMinimalDenom":"steth-wei","coinDecimals":18},{"coinDenom":"uni","coinMinimalDenom":"uni-wei","coinDecimals":18},{"coinDenom":"xcn","coinMinimalDenom":"xcn-wei","coinDecimals":18},{"coinDenom":"dot","coinMinimalDenom":"dot-planck","coinDecimals":10},{"coinDenom":"wglmr","coinMinimalDenom":"wglmr-wei","coinDecimals":18},{"coinDenom":"wmatic","coinMinimalDenom":"wmatic-wei","coinDecimals":18},{"coinDenom":"wbnb","coinMinimalDenom":"wbnb-wei","coinDecimals":18},{"coinDenom":"busd","coinMinimalDenom":"busd-wei","coinDecimals":18},{"coinDenom":"avax","coinMinimalDenom":"wavax-wei","coinDecimals":18},{"coinDenom":"ftm","coinMinimalDenom":"wftm-wei","coinDecimals":18},{"coinDenom":"polygon-usdc","coinMinimalDenom":"polygon-uusdc","coinDecimals":6},{"coinDenom":"avalanche-usdc","coinMinimalDenom":"avalanche-uusdc","coinDecimals":6},{"coinDenom":"fil","coinMinimalDenom":"wfil-wei","coinDecimals":18},{"coinDenom":"arb","coinMinimalDenom":"arb-wei","coinDecimals":18},{"coinDenom":"pepe","coinMinimalDenom":"pepe-wei","coinDecimals":18},{"coinDenom":"cbeth","coinMinimalDenom":"cbeth-wei","coinDecimals":18},{"coinDenom":"reth","coinMinimalDenom":"reth-wei","coinDecimals":18},{"coinDenom":"sfrxeth","coinMinimalDenom":"sfrxeth-wei","coinDecimals":18},{"coinDenom":"wsteth","coinMinimalDenom":"wsteth-wei","coinDecimals":18},{"coinDenom":"YieldETH","coinMinimalDenom":"yieldeth-wei","coinDecimals":18},{"coinDenom":"ox","coinMinimalDenom":"ox-wei","coinDecimals":18},{"coinDenom":"yum","coinMinimalDenom":"yum-wei","coinDecimals":18},{"coinDenom":"arbitrum-weth","coinMinimalDenom":"arbitrum-weth-wei","coinDecimals":18},{"coinDenom":"base-weth","coinMinimalDenom":"base-weth-wei","coinDecimals":18},{"coinDenom":"polygon-weth","coinMinimalDenom":"polygon-weth-wei","coinDecimals":18},{"coinDenom":"op","coinMinimalDenom":"op-wei","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"arbitrum-uusdt","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"optimism-uusdt","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"polygon-uusdt","coinDecimals":6},{"coinDenom":"cbbtc","coinMinimalDenom":"cbbtc-satoshi","coinDecimals":8},{"coinDenom":"fbtc","coinMinimalDenom":"fbtc-satoshi","coinDecimals":8},{"coinDenom":"lbtc","coinMinimalDenom":"lbtc-satoshi","coinDecimals":8},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/53046FFF6CAD109D8F9B2C7C9913853AD241928CD05CDDE419343D176025DA74","coinDecimals":18}],"rest":"https://lcd-axelar.imperator.co:443","rpc":"https://rpc-axelar.imperator.co:443","bech32Config":{"bech32PrefixAccAddr":"axelar","bech32PrefixAccPub":"axelarpub","bech32PrefixValAddr":"axelarvaloper","bech32PrefixValPub":"axelarvaloperpub","bech32PrefixConsAddr":"axelarvalcons","bech32PrefixConsPub":"axelarvalconspub"},"chainName":"axelar","feeCurrencies":[{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6,"gasPriceStep":{"low":0.007,"average":0.007,"high":0.01}}],"stakeCurrency":{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"laozi-mainnet","currencies":[{"coinDenom":"band","coinMinimalDenom":"uband","coinDecimals":6}],"rest":"https://laozi1.bandchain.org/api","rpc":"http://rpc.laozi1.bandchain.org:80","bech32Config":{"bech32PrefixAccAddr":"band","bech32PrefixAccPub":"bandpub","bech32PrefixValAddr":"bandvaloper","bech32PrefixValPub":"bandvaloperpub","bech32PrefixConsAddr":"bandvalcons","bech32PrefixConsPub":"bandvalconspub"},"chainName":"bandchain","feeCurrencies":[{"coinDenom":"band","coinMinimalDenom":"uband","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.003,"high":0.005}}],"stakeCurrency":{"coinDenom":"band","coinMinimalDenom":"uband","coinDecimals":6},"bip44":{"coinType":494}},{"chainId":"beezee-1","currencies":[{"coinDenom":"bze","coinMinimalDenom":"ubze","coinDecimals":6},{"coinDenom":"vdl","coinMinimalDenom":"factory/bze13gzq40che93tgfm9kzmkpjamah5nj0j73pyhqk/uvdl","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6},{"coinDenom":"C2M","coinMinimalDenom":"factory/bze15pqjgk4la0mfphwddce00d05n3th3u66n3ptcv/2MARS","coinDecimals":6},{"coinDenom":"arch","coinMinimalDenom":"ibc/C00D101A3572A5374E23F11944463D1325319E255D7C824B33AF2F927F532348","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/6490A7EAB61059BFC1CDDEB05917DD70BDF3A611654162A1A47DB930D40D8AF4","coinDecimals":6},{"coinDenom":"Spice","coinMinimalDenom":"ibc/08EAEAB525E59C611D5BD8FAC4BE65DF65A69E62874377F6889BBD01A33F385F","coinDecimals":6},{"coinDenom":"jkl","coinMinimalDenom":"ibc/4AA3B163580B4377250CD4486FB6AD098EB27822EE056949EC4A39B09C5E3B4E","coinDecimals":6},{"coinDenom":"flix","coinMinimalDenom":"ibc/FF39851E73089ACBD0B09BDF62FA3C67FBD77A2CD97CD159DBCE9C770561F8AF","coinDecimals":6}],"rest":"https://rest.getbze.com","rpc":"https://rpc.getbze.com","bech32Config":{"bech32PrefixAccAddr":"bze","bech32PrefixAccPub":"bzepub","bech32PrefixValAddr":"bzevaloper","bech32PrefixValPub":"bzevaloperpub","bech32PrefixConsAddr":"bzevalcons","bech32PrefixConsPub":"bzevalconspub"},"chainName":"beezee","feeCurrencies":[{"coinDenom":"bze","coinMinimalDenom":"ubze","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"bze","coinMinimalDenom":"ubze","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"bitbadges-1","currencies":[{"coinDenom":"badge","coinMinimalDenom":"ubadge","coinDecimals":9},{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":9}],"rest":"http://134.122.12.165:1317","rpc":"http://134.122.12.165:26657","bech32Config":{"bech32PrefixAccAddr":"bb","bech32PrefixAccPub":"bbpub","bech32PrefixValAddr":"bbvaloper","bech32PrefixValPub":"bbvaloperpub","bech32PrefixConsAddr":"bbvalcons","bech32PrefixConsPub":"bbvalconspub"},"chainName":"bitbadges","feeCurrencies":[{"coinDenom":"badge","coinMinimalDenom":"ubadge","coinDecimals":9,"gasPriceStep":{"low":0.00025,"average":0.0025,"high":0.025}}],"stakeCurrency":{"coinDenom":"badge","coinMinimalDenom":"ubadge","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"bitcanna-1","currencies":[{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6}],"rest":"https://lcd.bitcanna.io","rpc":"https://rpc.bitcanna.io/","bech32Config":{"bech32PrefixAccAddr":"bcna","bech32PrefixAccPub":"bcnapub","bech32PrefixValAddr":"bcnavaloper","bech32PrefixValPub":"bcnavaloperpub","bech32PrefixConsAddr":"bcnavalcons","bech32PrefixConsPub":"bcnavalconspub"},"chainName":"bitcanna","feeCurrencies":[{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.0025,"high":0.01}}],"stakeCurrency":{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"bitsong-2b","currencies":[{"coinDenom":"btsg","coinMinimalDenom":"ubtsg","coinDecimals":6},{"coinDenom":"clay","coinMinimalDenom":"ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09","coinDecimals":6},{"coinDenom":"fasano","coinMinimalDenom":"ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7","coinDecimals":6},{"coinDenom":"d9x","coinMinimalDenom":"ft575B10B0CEE2C164D9ED6A96313496F164A9607C","coinDecimals":6},{"coinDenom":"fonti","coinMinimalDenom":"ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305","coinDecimals":6},{"coinDenom":"bjks","coinMinimalDenom":"ft52EEB0EE509AC546ED92EAC8591F731F213DDD16","coinDecimals":6},{"coinDenom":"rwne","coinMinimalDenom":"ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A","coinDecimals":6},{"coinDenom":"enmoda","coinMinimalDenom":"ft85AE1716C5E39EA6D64BBD7898C3899A7B500626","coinDecimals":6},{"coinDenom":"404dr","coinMinimalDenom":"ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A","coinDecimals":6},{"coinDenom":"n43","coinMinimalDenom":"ft387C1C279D962ED80C09C1D592A92C4275FD7C5D","coinDecimals":6},{"coinDenom":"lobo","coinMinimalDenom":"ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB","coinDecimals":6},{"coinDenom":"vibra","coinMinimalDenom":"ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B","coinDecimals":6},{"coinDenom":"karina","coinMinimalDenom":"ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE","coinDecimals":6},{"coinDenom":"testa","coinMinimalDenom":"ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12","coinDecimals":6},{"coinDenom":"cmqz","coinMinimalDenom":"ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3","coinDecimals":6},{"coinDenom":"ft347B1612A2B7659913679CF6CD45B8B130C50A00/6","coinMinimalDenom":"ft347B1612A2B7659913679CF6CD45B8B130C50A00","coinDecimals":6}],"rest":"https://api-bitsong-ia.cosmosia.notional.ventures/","rpc":"https://rpc-bitsong-ia.cosmosia.notional.ventures/","bech32Config":{"bech32PrefixAccAddr":"bitsong","bech32PrefixAccPub":"bitsongpub","bech32PrefixValAddr":"bitsongvaloper","bech32PrefixValPub":"bitsongvaloperpub","bech32PrefixConsAddr":"bitsongvalcons","bech32PrefixConsPub":"bitsongvalconspub"},"chainName":"bitsong","feeCurrencies":[{"coinDenom":"btsg","coinMinimalDenom":"ubtsg","coinDecimals":6,"gasPriceStep":{"low":3,"average":10,"high":20}}],"stakeCurrency":{"coinDenom":"btsg","coinMinimalDenom":"ubtsg","coinDecimals":6},"bip44":{"coinType":639}},{"chainId":"bluzelle-9","currencies":[{"coinDenom":"bnt","coinMinimalDenom":"ubnt","coinDecimals":6},{"coinDenom":"elt","coinMinimalDenom":"uelt","coinDecimals":6},{"coinDenom":"g4","coinMinimalDenom":"ug4","coinDecimals":6}],"rest":"https://a.client.sentry.net.bluzelle.com:1317","rpc":"https://a.client.sentry.net.bluzelle.com:26657","bech32Config":{"bech32PrefixAccAddr":"bluzelle","bech32PrefixAccPub":"bluzellepub","bech32PrefixValAddr":"bluzellevaloper","bech32PrefixValPub":"bluzellevaloperpub","bech32PrefixConsAddr":"bluzellevalcons","bech32PrefixConsPub":"bluzellevalconspub"},"chainName":"bluzelle","feeCurrencies":[{"coinDenom":"bnt","coinMinimalDenom":"ubnt","coinDecimals":6,"gasPriceStep":{"low":0.002,"average":0.002,"high":0.025}}],"stakeCurrency":{"coinDenom":"bnt","coinMinimalDenom":"ubnt","coinDecimals":6},"bip44":{"coinType":483}},{"chainId":"bostrom","currencies":[{"coinDenom":"boot","coinMinimalDenom":"boot","coinDecimals":0},{"coinDenom":"hydrogen","coinMinimalDenom":"hydrogen","coinDecimals":0},{"coinDenom":"ampere","coinMinimalDenom":"milliampere","coinDecimals":3},{"coinDenom":"volt","coinMinimalDenom":"millivolt","coinDecimals":3},{"coinDenom":"tocyb","coinMinimalDenom":"tocyb","coinDecimals":0}],"rest":"https://lcd.bostrom.cybernode.ai","rpc":"https://rpc.bostrom.cybernode.ai","bech32Config":{"bech32PrefixAccAddr":"bostrom","bech32PrefixAccPub":"bostrompub","bech32PrefixValAddr":"bostromvaloper","bech32PrefixValPub":"bostromvaloperpub","bech32PrefixConsAddr":"bostromvalcons","bech32PrefixConsPub":"bostromvalconspub"},"chainName":"bostrom","feeCurrencies":[{"coinDenom":"boot","coinMinimalDenom":"boot","coinDecimals":0}],"stakeCurrency":{"coinDenom":"boot","coinMinimalDenom":"boot","coinDecimals":0},"bip44":{"coinType":118}},{"chainId":"bouachain","currencies":[{"coinDenom":"bouacoin","coinMinimalDenom":"ubouacoin","coinDecimals":8}],"rest":"https://lcd.bouachain.com","rpc":"https://rpc.bouachain.com","bech32Config":{"bech32PrefixAccAddr":"boua","bech32PrefixAccPub":"bouapub","bech32PrefixValAddr":"bouavaloper","bech32PrefixValPub":"bouavaloperpub","bech32PrefixConsAddr":"bouavalcons","bech32PrefixConsPub":"bouavalconspub"},"chainName":"bouachain","feeCurrencies":[{"coinDenom":"bouacoin","coinMinimalDenom":"ubouacoin","coinDecimals":8,"gasPriceStep":{"low":0.0006,"average":0.012,"high":0.04}}],"stakeCurrency":{"coinDenom":"bouacoin","coinMinimalDenom":"ubouacoin","coinDecimals":8},"bip44":{"coinType":118}},{"chainId":"canto_7700-1","currencies":[{"coinDenom":"canto","coinMinimalDenom":"acanto","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/FAFF3F7B2FE30447544A27910DF77069763CF25472BFCF63A9E7C81F0AD545AC","coinDecimals":6}],"rest":"https://api.canto.nodestake.top","rpc":"https://rpc.canto.nodestake.top","bech32Config":{"bech32PrefixAccAddr":"canto","bech32PrefixAccPub":"cantopub","bech32PrefixValAddr":"cantovaloper","bech32PrefixValPub":"cantovaloperpub","bech32PrefixConsAddr":"cantovalcons","bech32PrefixConsPub":"cantovalconspub"},"chainName":"canto","feeCurrencies":[{"coinDenom":"canto","coinMinimalDenom":"acanto","coinDecimals":18,"gasPriceStep":{"low":1000000000000,"average":2000000000000,"high":3000000000000}}],"stakeCurrency":{"coinDenom":"canto","coinMinimalDenom":"acanto","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"carbon-1","currencies":[{"coinDenom":"dswth","coinMinimalDenom":"swth","coinDecimals":8},{"coinDenom":"dusc","coinMinimalDenom":"usc","coinDecimals":8},{"coinDenom":"bnb","coinMinimalDenom":"bnb.1.6.773edb","coinDecimals":18},{"coinDenom":"bneo","coinMinimalDenom":"bneo.1.14.e2e5f6","coinDecimals":8},{"coinDenom":"busd","coinMinimalDenom":"busd.1.6.754a80","coinDecimals":18},{"coinDenom":"cglp","coinMinimalDenom":"cglp.1.19.1698d3","coinDecimals":18},{"coinDenom":"usd","coinMinimalDenom":"cgt/1","coinDecimals":18},{"coinDenom":"eth","coinMinimalDenom":"eth.1.19.c3b805","coinDecimals":18},{"coinDenom":"eth","coinMinimalDenom":"eth.1.2.942d87","coinDecimals":18},{"coinDenom":"stars","coinMinimalDenom":"ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6},{"coinDenom":"milkTIA","coinMinimalDenom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","coinDecimals":6},{"coinDenom":"strd","coinMinimalDenom":"ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5","coinDecimals":6},{"coinDenom":"evmos","coinMinimalDenom":"ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364","coinDecimals":18},{"coinDenom":"iris","coinMinimalDenom":"ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118","coinDecimals":6},{"coinDenom":"kuji","coinMinimalDenom":"ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93","coinDecimals":6},{"coinDenom":"canto","coinMinimalDenom":"ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861","coinDecimals":18},{"coinDenom":"atom","coinMinimalDenom":"ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"usdc.1.2.343151","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"usdc.1.6.53ff75","coinDecimals":18},{"coinDenom":"zil","coinMinimalDenom":"zil.1.18.1a4a06","coinDecimals":12}],"rest":"https://api.carbon.network","rpc":"https://tm-api.carbon.network","bech32Config":{"bech32PrefixAccAddr":"swth","bech32PrefixAccPub":"swthpub","bech32PrefixValAddr":"swthvaloper","bech32PrefixValPub":"swthvaloperpub","bech32PrefixConsAddr":"swthvalcons","bech32PrefixConsPub":"swthvalconspub"},"chainName":"carbon","feeCurrencies":[{"coinDenom":"dswth","coinMinimalDenom":"swth","coinDecimals":8,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"dusc","coinMinimalDenom":"usc","coinDecimals":8,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.0001}},{"coinDenom":"bnb","coinMinimalDenom":"bnb.1.6.773edb","coinDecimals":18,"gasPriceStep":{"low":1000000,"average":1000000,"high":1000000}},{"coinDenom":"bneo","coinMinimalDenom":"bneo.1.14.e2e5f6","coinDecimals":8,"gasPriceStep":{"low":0.0015,"average":0.0015,"high":0.0015}},{"coinDenom":"busd","coinMinimalDenom":"busd.1.6.754a80","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":100000000,"high":100000000}},{"coinDenom":"cglp","coinMinimalDenom":"cglp.1.19.1698d3","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":100000000,"high":100000000}},{"coinDenom":"usd","coinMinimalDenom":"cgt/1","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":100000000,"high":100000000}},{"coinDenom":"eth","coinMinimalDenom":"eth.1.19.c3b805","coinDecimals":18,"gasPriceStep":{"low":100000,"average":100000,"high":100000}},{"coinDenom":"eth","coinMinimalDenom":"eth.1.2.942d87","coinDecimals":18,"gasPriceStep":{"low":100000,"average":100000,"high":100000}},{"coinDenom":"stars","coinMinimalDenom":"ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C","coinDecimals":6,"gasPriceStep":{"low":0.0035,"average":0.0035,"high":0.0035}},{"coinDenom":"milkTIA","coinMinimalDenom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","coinDecimals":6,"gasPriceStep":{"low":0.0000075,"average":0.0000075,"high":0.0000075}},{"coinDenom":"luna","coinMinimalDenom":"ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5","coinDecimals":6,"gasPriceStep":{"low":0.00005,"average":0.00005,"high":0.00005}},{"coinDenom":"strd","coinMinimalDenom":"ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5","coinDecimals":6,"gasPriceStep":{"low":0.00032,"average":0.00032,"high":0.00032}},{"coinDenom":"evmos","coinMinimalDenom":"ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364","coinDecimals":18,"gasPriceStep":{"low":300000000,"average":300000000,"high":300000000}},{"coinDenom":"iris","coinMinimalDenom":"ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118","coinDecimals":6,"gasPriceStep":{"low":0.0006,"average":0.0006,"high":0.0006}},{"coinDenom":"kuji","coinMinimalDenom":"ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5","coinDecimals":6,"gasPriceStep":{"low":0.00015,"average":0.00015,"high":0.00015}},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6,"gasPriceStep":{"low":0.0000075,"average":0.0000075,"high":0.0000075}},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93","coinDecimals":6,"gasPriceStep":{"low":0.00015,"average":0.00015,"high":0.00015}},{"coinDenom":"canto","coinMinimalDenom":"ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861","coinDecimals":18,"gasPriceStep":{"low":200000000,"average":200000000,"high":200000000}},{"coinDenom":"atom","coinMinimalDenom":"ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701","coinDecimals":6,"gasPriceStep":{"low":0.00001,"average":0.00001,"high":0.00001}},{"coinDenom":"statom","coinMinimalDenom":"ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C","coinDecimals":6,"gasPriceStep":{"low":0.00001,"average":0.00001,"high":0.00001}},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6,"gasPriceStep":{"low":0.00015,"average":0.00015,"high":0.00015}},{"coinDenom":"usdc","coinMinimalDenom":"usdc.1.2.343151","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.0001}},{"coinDenom":"usdc","coinMinimalDenom":"usdc.1.6.53ff75","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":100000000,"high":100000000}},{"coinDenom":"zil","coinMinimalDenom":"zil.1.18.1a4a06","coinDecimals":12,"gasPriceStep":{"low":6000,"average":6000,"high":6000}}],"stakeCurrency":{"coinDenom":"dswth","coinMinimalDenom":"swth","coinDecimals":8},"bip44":{"coinType":118}},{"chainId":"celestia","currencies":[{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6}],"rest":"https://public-celestia-lcd.numia.xyz","rpc":"https://public-celestia-rpc.numia.xyz","bech32Config":{"bech32PrefixAccAddr":"celestia","bech32PrefixAccPub":"celestiapub","bech32PrefixValAddr":"celestiavaloper","bech32PrefixValPub":"celestiavaloperpub","bech32PrefixConsAddr":"celestiavalcons","bech32PrefixConsPub":"celestiavalconspub"},"chainName":"celestia","feeCurrencies":[{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}}],"stakeCurrency":{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"perun-1","currencies":[{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6}],"rest":"https://lcd.c4e.io/","rpc":"https://rpc.c4e.io/","bech32Config":{"bech32PrefixAccAddr":"c4e","bech32PrefixAccPub":"c4epub","bech32PrefixValAddr":"c4evaloper","bech32PrefixValPub":"c4evaloperpub","bech32PrefixConsAddr":"c4evalcons","bech32PrefixConsPub":"c4evalconspub"},"chainName":"chain4energy","feeCurrencies":[{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cheqd-mainnet-1","currencies":[{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9}],"rest":"https://api.cheqd.net","rpc":"https://rpc.cheqd.net","bech32Config":{"bech32PrefixAccAddr":"cheqd","bech32PrefixAccPub":"cheqdpub","bech32PrefixValAddr":"cheqdvaloper","bech32PrefixValPub":"cheqdvaloperpub","bech32PrefixConsAddr":"cheqdvalcons","bech32PrefixConsPub":"cheqdvalconspub"},"chainName":"cheqd","feeCurrencies":[{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9,"gasPriceStep":{"low":50,"average":75,"high":100}}],"stakeCurrency":{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"chihuahua-1","currencies":[{"coinDenom":"huahua","coinMinimalDenom":"uhuahua","coinDecimals":6},{"coinDenom":"puppy","coinMinimalDenom":"cw20:chihuahua1yl8z39ugle8s02fpwkhh293509q5xcpalmdzc4amvchz8nkexrmsy95gef","coinDecimals":6},{"coinDenom":"achihuahuawifhat","coinMinimalDenom":"factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat","coinDecimals":6},{"coinDenom":"WOOF","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof","coinDecimals":6},{"coinDenom":"TACOS","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos","coinDecimals":6},{"coinDenom":"WEED","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uweed","coinDecimals":6},{"coinDenom":"BDOG","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog","coinDecimals":6},{"coinDenom":"CORSO","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso","coinDecimals":6},{"coinDenom":"bHUAHUA","coinMinimalDenom":"cw20:chihuahua1jz5n4aynhpxx7clf2m8hrv9dp5nz83k67fgaxhy4p9dfwl6zssrq3ymr6w","coinDecimals":6},{"coinDenom":"ashHUAHUA","coinMinimalDenom":"factory/chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0/uhuahua.ash","coinDecimals":6},{"coinDenom":"ampGASH","coinMinimalDenom":"ibc/7D01429FF7542DBC41C261793B480B63FE7A83260C751989CC268BC7E852EB99","coinDecimals":6},{"coinDenom":"GUPPY","coinMinimalDenom":"ibc/DBBDE1753EFA93F09C468DB5E384861BB741D4AA73E9C7032D139BB2C99FDD65","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/FA7112322CE7656DC84D441E49BAEAB9DC0AB3C7618A178A212CDE8B3F17C70B","coinDecimals":6}],"rest":"https://api.chihuahua.wtf","rpc":"https://rpc.chihuahua.wtf","bech32Config":{"bech32PrefixAccAddr":"chihuahua","bech32PrefixAccPub":"chihuahuapub","bech32PrefixValAddr":"chihuahuavaloper","bech32PrefixValPub":"chihuahuavaloperpub","bech32PrefixConsAddr":"chihuahuavalcons","bech32PrefixConsPub":"chihuahuavalconspub"},"chainName":"chihuahua","feeCurrencies":[{"coinDenom":"huahua","coinMinimalDenom":"uhuahua","coinDecimals":6,"gasPriceStep":{"low":500,"average":1250,"high":2000}}],"stakeCurrency":{"coinDenom":"huahua","coinMinimalDenom":"uhuahua","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"chimba","currencies":[{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6}],"rest":"https://mainnet.chimba.ooo","rpc":"https://rpc.mainnet.chimba.ooo","bech32Config":{"bech32PrefixAccAddr":"chimba","bech32PrefixAccPub":"chimbapub","bech32PrefixValAddr":"chimbavaloper","bech32PrefixValPub":"chimbavaloperpub","bech32PrefixConsAddr":"chimbavalcons","bech32PrefixConsPub":"chimbavalconspub"},"chainName":"chimba","feeCurrencies":[{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6,"gasPriceStep":{"low":1,"average":5,"high":10}}],"stakeCurrency":{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cifer-2","currencies":[{"coinDenom":"cif","coinMinimalDenom":"ucif","coinDecimals":6}],"rest":"https://api.cifer.ai","rpc":"http://34.128.114.243:26657","bech32Config":{"bech32PrefixAccAddr":"cife","bech32PrefixAccPub":"cifepub","bech32PrefixValAddr":"cifevaloper","bech32PrefixValPub":"cifevaloperpub","bech32PrefixConsAddr":"cifevalcons","bech32PrefixConsPub":"cifevalconspub"},"chainName":"cifer","feeCurrencies":[{"coinDenom":"cif","coinMinimalDenom":"ucif","coinDecimals":6,"gasPriceStep":{"low":1,"average":5,"high":10}}],"stakeCurrency":{"coinDenom":"cif","coinMinimalDenom":"ucif","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cnho_stables-1","currencies":[{"coinDenom":"CNHO","coinMinimalDenom":"ucnho","coinDecimals":6}],"rest":"https://api.cnho.io","rpc":"https://rpc.cnho.io","bech32Config":{"bech32PrefixAccAddr":"cnho","bech32PrefixAccPub":"cnhopub","bech32PrefixValAddr":"cnhovaloper","bech32PrefixValPub":"cnhovaloperpub","bech32PrefixConsAddr":"cnhovalcons","bech32PrefixConsPub":"cnhovalconspub"},"chainName":"cnhostables","feeCurrencies":[{"coinDenom":"CNHO","coinMinimalDenom":"ucnho","coinDecimals":6,"gasPriceStep":{"low":0.000001,"average":0.00001,"high":0.025}}],"stakeCurrency":{"coinDenom":"CNHO","coinMinimalDenom":"ucnho","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"comdex-1","currencies":[{"coinDenom":"cmdx","coinMinimalDenom":"ucmdx","coinDecimals":6},{"coinDenom":"harbor","coinMinimalDenom":"uharbor","coinDecimals":6},{"coinDenom":"cmst","coinMinimalDenom":"ucmst","coinDecimals":6}],"rest":"https://rest.comdex.one","rpc":"https://rpc.comdex.one","bech32Config":{"bech32PrefixAccAddr":"comdex","bech32PrefixAccPub":"comdexpub","bech32PrefixValAddr":"comdexvaloper","bech32PrefixValPub":"comdexvaloperpub","bech32PrefixConsAddr":"comdexvalcons","bech32PrefixConsPub":"comdexvalconspub"},"chainName":"comdex","feeCurrencies":[{"coinDenom":"cmdx","coinMinimalDenom":"ucmdx","coinDecimals":6}],"stakeCurrency":{"coinDenom":"cmdx","coinMinimalDenom":"ucmdx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"commercio-3","currencies":[{"coinDenom":"commercio","coinMinimalDenom":"ucommercio","coinDecimals":6},{"coinDenom":"ccc","coinMinimalDenom":"uccc","coinDecimals":6}],"rest":"https://lcd-mainnet.commercio.network","rpc":"https://rpc-mainnet.commercio.network","bech32Config":{"bech32PrefixAccAddr":"did:com:","bech32PrefixAccPub":"did:com:pub","bech32PrefixValAddr":"did:com:valoper","bech32PrefixValPub":"did:com:valoperpub","bech32PrefixConsAddr":"did:com:valcons","bech32PrefixConsPub":"did:com:valconspub"},"chainName":"commercionetwork","feeCurrencies":[{"coinDenom":"commercio","coinMinimalDenom":"ucommercio","coinDecimals":6}],"stakeCurrency":{"coinDenom":"commercio","coinMinimalDenom":"ucommercio","coinDecimals":6},"bip44":{"coinType":701}},{"chainId":"centauri-1","currencies":[{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12},{"coinDenom":"ksm","coinMinimalDenom":"ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9","coinDecimals":12},{"coinDenom":"dot","coinMinimalDenom":"ibc/3CC19CEC7E5A3E90E78A5A9ECC5A0E2F8F826A375CF1E096F4515CF09DA3E366","coinDecimals":10},{"coinDenom":"usdt","coinMinimalDenom":"ibc/F3EC9F834E57DF704FA3AEAF14E8391C2E58397FE56960AD70E67562990D8265","coinDecimals":6},{"coinDenom":"tnkr","coinMinimalDenom":"ibc/C58E5D2571042137CB68B1B9851C4E7211C05F7C2C79E21E0966AF0F063961F8","coinDecimals":12},{"coinDenom":"eth","coinMinimalDenom":"ibc/F9D075D4079FC56A9C49B601E54A45292C319D8B0E8CC0F8439041130AA7166C","coinDecimals":18},{"coinDenom":"dai","coinMinimalDenom":"ibc/A342F6F8D1CDE1D934C50E8EAFF91E813D971E1BFEED7E557F1674E01004A533","coinDecimals":18},{"coinDenom":"fxs","coinMinimalDenom":"ibc/5F9BE030FC355733EC79307409FA98398BBFC747C9430B326C144A74F6808B29","coinDecimals":18},{"coinDenom":"frax","coinMinimalDenom":"ibc/4F20D68B51ED559F99C3CD658383E91F45486D884BF546E7B25337A058562CDB","coinDecimals":18},{"coinDenom":"frxeth","coinMinimalDenom":"ibc/458032E654E41DB91EF98F13E2CE4F9E0FE86BA3E0CDBEC074A854E9F5229A90","coinDecimals":18},{"coinDenom":"sfrxeth","coinMinimalDenom":"ibc/4E0ECE7819D77B0F2B49F5C34B5E594A02D2BA8B1B0F103208F847B53EBFB69A","coinDecimals":18},{"coinDenom":"sfrax","coinMinimalDenom":"ibc/5BD7F23FE150D9CF3BCC944DB829380BCC51A4022A131151C4D13B3AFAC2D1D9","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/37CC704EA53E96AB09A9C31D79142DE7DB252420F3AB18015F9870AE219947BD","coinDecimals":6},{"coinDenom":"crv","coinMinimalDenom":"ibc/52C8C6197989684F891076F228F20CD1659AB6E1776E3B85E65CBBEC67DA5DED","coinDecimals":18},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/1507315B0C337368B85A7EC67C3956C508E1106EBD96336B1B092F7B2815B3E5","coinDecimals":18},{"coinDenom":"steth","coinMinimalDenom":"ibc/74F65FE91F672BC2524C039B3CD0211F6D370071209552533DF26D57743D5FFD","coinDecimals":18},{"coinDenom":"reth","coinMinimalDenom":"ibc/207E7F34DFEBF714CED4900C1FD85BAF200230BF431EE8133EB26B98CB535EDC","coinDecimals":18},{"coinDenom":"crvusd","coinMinimalDenom":"ibc/C9D79BE8E3E75CA2DFDC722C77D7B179C39A4802D59019C790A825FDE34B724A","coinDecimals":18},{"coinDenom":"pxeth","coinMinimalDenom":"ibc/36EF1EA47A09689C81D848B08E5240FA9FF13B17DB7DCF48B77D4D0D9B152821","coinDecimals":18},{"coinDenom":"eeth","coinMinimalDenom":"ibc/34C23BA6BAA2EAE0199D85AD1E2E214F76B0BFAD42BF75542D15F71264EEB05B","coinDecimals":18},{"coinDenom":"ena","coinMinimalDenom":"ibc/B089810D5A6316AD5E9C7808733DC4AB11C7BA3033221D28711FC7206BACB929","coinDecimals":18},{"coinDenom":"usde","coinMinimalDenom":"ibc/FFD9EB71B4480ED4D73F7370A2AEBDB48447A0AAE27265F8060A957F0FF71983","coinDecimals":18},{"coinDenom":"ezeth","coinMinimalDenom":"ibc/E317539F148285AAC77E7614101CBE94E20EDF169B233A5E0C867112972F9041","coinDecimals":18},{"coinDenom":"pepe","coinMinimalDenom":"ibc/6367C5AF2E2477FB13DD0C8CB0027FEDDF5AE947EE84C69FB75003E604E29D05","coinDecimals":18},{"coinDenom":"wsol","coinMinimalDenom":"ibc/2CC39C8141F257EBBA250F65B9D0F31DC8D153C225E51EC192DE6E3F65D43F0C","coinDecimals":9},{"coinDenom":"msol","coinMinimalDenom":"ibc/C280CB39B97E7CD33A0BF149CFD392C2A3F95FF896AFF89CFF2FA181479BED8D","coinDecimals":9},{"coinDenom":"jitosol","coinMinimalDenom":"ibc/91A2FE07F8BDFC0552B1C9972FCCBF2CFD067DDE5F496D81E5132CE57762B0F2","coinDecimals":9},{"coinDenom":"bsol","coinMinimalDenom":"ibc/F52A71607B3AA7BBA8A222A9176E9939E92AB3656A094289CD218907D45DB716","coinDecimals":9},{"coinDenom":"lst","coinMinimalDenom":"ibc/55F5B582483FEFA5422794292B079B4D49A5BAB9881E7C801F9F271F1D234F1D","coinDecimals":9},{"coinDenom":"edgesol","coinMinimalDenom":"ibc/BADB5950C4A81AC201696EBCB33CD295137FA86F0AA620CDDE946D3700E0208C","coinDecimals":9},{"coinDenom":"hsol","coinMinimalDenom":"ibc/531C52D572698BCBA29F44D959E73CD2148EE6542A3118F9E56621A28E1FF4C6","coinDecimals":9},{"coinDenom":"jupsol","coinMinimalDenom":"ibc/6976998E24F1CFC373A9F799C9CE901F5EC32C3E33B2B09384A05774D9339626","coinDecimals":9},{"coinDenom":"wif","coinMinimalDenom":"ibc/BA34EAA22BBDA46C228DC70E4ED7E42A0867D5B051D625F953CC7B1CEF58C071","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/D105950618E47CA2AEC314282BC401625025F80A4F812808DEEBB1941C685575","coinDecimals":6},{"coinDenom":"whine","coinMinimalDenom":"ibc/9D5DA3720001F91DD76B8F609A93F96688EC8185B54BF9A1A1450EB34FF2D912","coinDecimals":6},{"coinDenom":"unicorn","coinMinimalDenom":"ibc/586C150919550F6106711C7557DAAAEAB765DDF05648BAC0D96487AE90394BA1","coinDecimals":6}],"rest":"https://api-composable-ia.cosmosia.notional.ventures","rpc":"https://rpc-composable-ia.cosmosia.notional.ventures","bech32Config":{"bech32PrefixAccAddr":"pica","bech32PrefixAccPub":"picapub","bech32PrefixValAddr":"picavaloper","bech32PrefixValPub":"picavaloperpub","bech32PrefixConsAddr":"picavalcons","bech32PrefixConsPub":"picavalconspub"},"chainName":"composable","feeCurrencies":[{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12}],"stakeCurrency":{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12},"bip44":{"coinType":118}},{"chainId":"cvn_2032-1","currencies":[{"coinDenom":"cvnt","coinMinimalDenom":"acvnt","coinDecimals":18}],"rest":"https://api.cvn.io","rpc":"https://rpc.cvn.io/","bech32Config":{"bech32PrefixAccAddr":"cvn","bech32PrefixAccPub":"cvnpub","bech32PrefixValAddr":"cvnvaloper","bech32PrefixValPub":"cvnvaloperpub","bech32PrefixConsAddr":"cvnvalcons","bech32PrefixConsPub":"cvnvalconspub"},"chainName":"conscious","feeCurrencies":[{"coinDenom":"cvnt","coinMinimalDenom":"acvnt","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":200000000,"high":300000000}}],"stakeCurrency":{"coinDenom":"cvnt","coinMinimalDenom":"acvnt","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"coreum-mainnet-1","currencies":[{"coinDenom":"core","coinMinimalDenom":"ucore","coinDecimals":6},{"coinDenom":"xrp","coinMinimalDenom":"drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz","coinDecimals":6}],"rest":"https://rest-coreum.ecostake.com","rpc":"https://full-node.mainnet-1.coreum.dev:26657","bech32Config":{"bech32PrefixAccAddr":"core","bech32PrefixAccPub":"corepub","bech32PrefixValAddr":"corevaloper","bech32PrefixValPub":"corevaloperpub","bech32PrefixConsAddr":"corevalcons","bech32PrefixConsPub":"corevalconspub"},"chainName":"coreum","feeCurrencies":[{"coinDenom":"core","coinMinimalDenom":"ucore","coinDecimals":6,"gasPriceStep":{"low":0.0625,"average":0.0625,"high":62.5}}],"stakeCurrency":{"coinDenom":"core","coinMinimalDenom":"ucore","coinDecimals":6},"bip44":{"coinType":990}},{"chainId":"cosmoshub-4","currencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0","coinDecimals":6},{"coinDenom":"ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729","coinMinimalDenom":"ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729","coinDecimals":0},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/74C4FE1EC3BDD66B02C691496371DDBB86DDE512C5BC072D76262C6C9B4B20D1","coinDecimals":18}],"rest":"https://cosmoshub.lava.build:443","rpc":"https://cosmoshub.tendermintrpc.lava.build:443","bech32Config":{"bech32PrefixAccAddr":"cosmos","bech32PrefixAccPub":"cosmospub","bech32PrefixValAddr":"cosmosvaloper","bech32PrefixValPub":"cosmosvaloperpub","bech32PrefixConsAddr":"cosmosvalcons","bech32PrefixConsPub":"cosmosvalconspub"},"chainName":"cosmoshub","feeCurrencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"coss-1","currencies":[{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6},{"coinDenom":"coss","coinMinimalDenom":"ucoss","coinDecimals":6},{"coinDenom":"cias","coinMinimalDenom":"ucias","coinDecimals":6}],"rest":"https://coss-rest.coss.ink","rpc":"https://coss-rpc.coss.ink","bech32Config":{"bech32PrefixAccAddr":"coss","bech32PrefixAccPub":"cosspub","bech32PrefixValAddr":"cossvaloper","bech32PrefixValPub":"cossvaloperpub","bech32PrefixConsAddr":"cossvalcons","bech32PrefixConsPub":"cossvalconspub"},"chainName":"coss","feeCurrencies":[{"coinDenom":"coss","coinMinimalDenom":"ucoss","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}},{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}},{"coinDenom":"cias","coinMinimalDenom":"ucias","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}}],"stakeCurrency":{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"crescent-1","currencies":[{"coinDenom":"cre","coinMinimalDenom":"ucre","coinDecimals":6},{"coinDenom":"bcre","coinMinimalDenom":"ubcre","coinDecimals":6}],"rest":"https://mainnet.crescent.network:1317","rpc":"https://mainnet.crescent.network:26657","bech32Config":{"bech32PrefixAccAddr":"cre","bech32PrefixAccPub":"crepub","bech32PrefixValAddr":"crevaloper","bech32PrefixValPub":"crevaloperpub","bech32PrefixConsAddr":"crevalcons","bech32PrefixConsPub":"crevalconspub"},"chainName":"crescent","feeCurrencies":[{"coinDenom":"cre","coinMinimalDenom":"ucre","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"cre","coinMinimalDenom":"ucre","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cronosmainnet_25-1","currencies":[{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/9106F2626880DF7FAD30621F355423B2A7523D8E2274475F009644D708A90682","coinDecimals":6}],"rest":"https://rest.cronos.org/","rpc":"https://rpc.cronos.org/","bech32Config":{"bech32PrefixAccAddr":"crc","bech32PrefixAccPub":"crcpub","bech32PrefixValAddr":"crcvaloper","bech32PrefixValPub":"crcvaloperpub","bech32PrefixConsAddr":"crcvalcons","bech32PrefixConsPub":"crcvalconspub"},"chainName":"cronos","feeCurrencies":[{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":18}],"stakeCurrency":{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"crypto-org-chain-mainnet-1","currencies":[{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":8},{"coinDenom":"lumen","coinMinimalDenom":"baseXLM","coinDecimals":7},{"coinDenom":"lumen","coinMinimalDenom":"ibc/34A1D4BF5FFCDB912F64FE71D54426D56970F873F1279983B69C713B3A62D10D","coinDecimals":7}],"rest":"https://rest.mainnet.crypto.org/","rpc":"https://rpc.mainnet.crypto.org/","bech32Config":{"bech32PrefixAccAddr":"cro","bech32PrefixAccPub":"cropub","bech32PrefixValAddr":"crovaloper","bech32PrefixValPub":"crovaloperpub","bech32PrefixConsAddr":"crovalcons","bech32PrefixConsPub":"crovalconspub"},"chainName":"cryptoorgchain","feeCurrencies":[{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":8,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}}],"stakeCurrency":{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":8},"bip44":{"coinType":394}},{"chainId":"mainnet-3","currencies":[{"coinDenom":"dec","coinMinimalDenom":"udec","coinDecimals":6}],"rest":"https://rest.mainnet.decentr.xyz","rpc":"https://poseidon.mainnet.decentr.xyz","bech32Config":{"bech32PrefixAccAddr":"decentr","bech32PrefixAccPub":"decentrpub","bech32PrefixValAddr":"decentrvaloper","bech32PrefixValPub":"decentrvaloperpub","bech32PrefixConsAddr":"decentrvalcons","bech32PrefixConsPub":"decentrvalconspub"},"chainName":"decentr","feeCurrencies":[{"coinDenom":"dec","coinMinimalDenom":"udec","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.025}}],"stakeCurrency":{"coinDenom":"dec","coinMinimalDenom":"udec","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"desmos-mainnet","currencies":[{"coinDenom":"dsm","coinMinimalDenom":"udsm","coinDecimals":6}],"rest":"https://api.mainnet.desmos.network","rpc":"https://rpc.mainnet.desmos.network","bech32Config":{"bech32PrefixAccAddr":"desmos","bech32PrefixAccPub":"desmospub","bech32PrefixValAddr":"desmosvaloper","bech32PrefixValPub":"desmosvaloperpub","bech32PrefixConsAddr":"desmosvalcons","bech32PrefixConsPub":"desmosvalconspub"},"chainName":"desmos","feeCurrencies":[{"coinDenom":"dsm","coinMinimalDenom":"udsm","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.03,"high":0.05}}],"stakeCurrency":{"coinDenom":"dsm","coinMinimalDenom":"udsm","coinDecimals":6},"bip44":{"coinType":852}},{"chainId":"dhealth","currencies":[{"coinDenom":"dhp","coinMinimalDenom":"udhp","coinDecimals":6}],"rest":"https://lcd.dhealth.com","rpc":"https://rpc.dhealth.com","bech32Config":{"bech32PrefixAccAddr":"dh","bech32PrefixAccPub":"dhpub","bech32PrefixValAddr":"dhvaloper","bech32PrefixValPub":"dhvaloperpub","bech32PrefixConsAddr":"dhvalcons","bech32PrefixConsPub":"dhvalconspub"},"chainName":"dhealth","feeCurrencies":[{"coinDenom":"dhp","coinMinimalDenom":"udhp","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}}],"stakeCurrency":{"coinDenom":"dhp","coinMinimalDenom":"udhp","coinDecimals":6},"bip44":{"coinType":10111}},{"chainId":"vota-ash","currencies":[{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18}],"rest":"https://vota-rest.dorafactory.org","rpc":"https://vota-rpc.dorafactory.org/","bech32Config":{"bech32PrefixAccAddr":"dora","bech32PrefixAccPub":"dorapub","bech32PrefixValAddr":"doravaloper","bech32PrefixValPub":"doravaloperpub","bech32PrefixConsAddr":"doravalcons","bech32PrefixConsPub":"doravalconspub"},"chainName":"doravota","feeCurrencies":[{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18,"gasPriceStep":{"low":100000000000,"average":100000000000,"high":100000000000}}],"stakeCurrency":{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"dungeon-1","currencies":[{"coinDenom":"DGN","coinMinimalDenom":"udgn","coinDecimals":6}],"rest":"https://dungeon.api.quasarstaking.ai","rpc":"https://dungeon.rpc.quasarstaking.ai","bech32Config":{"bech32PrefixAccAddr":"dungeon","bech32PrefixAccPub":"dungeonpub","bech32PrefixValAddr":"dungeonvaloper","bech32PrefixValPub":"dungeonvaloperpub","bech32PrefixConsAddr":"dungeonvalcons","bech32PrefixConsPub":"dungeonvalconspub"},"chainName":"dungeon","feeCurrencies":[{"coinDenom":"DGN","coinMinimalDenom":"udgn","coinDecimals":6}],"stakeCurrency":{"coinDenom":"DGN","coinMinimalDenom":"udgn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"dydx-mainnet-1","currencies":[{"coinDenom":"dydx","coinMinimalDenom":"adydx","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","coinDecimals":6}],"rest":"https://community.nuxian-node.ch:6797/dydx/crpc","rpc":"https://dydx-rpc.kingnodes.com:443","bech32Config":{"bech32PrefixAccAddr":"dydx","bech32PrefixAccPub":"dydxpub","bech32PrefixValAddr":"dydxvaloper","bech32PrefixValPub":"dydxvaloperpub","bech32PrefixConsAddr":"dydxvalcons","bech32PrefixConsPub":"dydxvalconspub"},"chainName":"dydx","feeCurrencies":[{"coinDenom":"dydx","coinMinimalDenom":"adydx","coinDecimals":18,"gasPriceStep":{"low":12500000000,"average":12500000000,"high":20000000000}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"dydx","coinMinimalDenom":"adydx","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"dymension_1100-1","currencies":[{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18},{"coinDenom":"nim","coinMinimalDenom":"ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942","coinDecimals":18},{"coinDenom":"mand","coinMinimalDenom":"ibc/5A26C8DC8DA66F4DD94326E67F94510188F5F7AFE2DB3933A0C823670E56EABF","coinDecimals":18}],"rest":"https://dym-m-api.agoranodes.com","rpc":"https://dym-m-rpc.agoranodes.com","bech32Config":{"bech32PrefixAccAddr":"dym","bech32PrefixAccPub":"dympub","bech32PrefixValAddr":"dymvaloper","bech32PrefixValPub":"dymvaloperpub","bech32PrefixConsAddr":"dymvalcons","bech32PrefixConsPub":"dymvalconspub"},"chainName":"dymension","feeCurrencies":[{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18,"gasPriceStep":{"low":5000000000,"average":5000000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"dyson-mainnet-01","currencies":[{"coinDenom":"dys","coinMinimalDenom":"dys","coinDecimals":0},{"coinDenom":"osmo","coinMinimalDenom":"ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B","coinDecimals":6},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/9BF31153F7E37F687C75A2F310E7A4DB6E0512B065F709B5EB69FE828133AFAC","coinDecimals":8},{"coinDenom":"usdc","coinMinimalDenom":"ibc/13DF61376C08483555C6D4C9203612086A1B23218EB5EBDBE609EEC7EFF2D82D","coinDecimals":6}],"rest":"https://dys-api.dysonprotocol.com:443","rpc":"https://dys-tm.dysonprotocol.com:443","bech32Config":{"bech32PrefixAccAddr":"dys","bech32PrefixAccPub":"dyspub","bech32PrefixValAddr":"dysvaloper","bech32PrefixValPub":"dysvaloperpub","bech32PrefixConsAddr":"dysvalcons","bech32PrefixConsPub":"dysvalconspub"},"chainName":"dyson","feeCurrencies":[{"coinDenom":"dys","coinMinimalDenom":"dys","coinDecimals":0,"gasPriceStep":{"low":0.0001,"average":0.0002,"high":0.0003}}],"stakeCurrency":{"coinDenom":"dys","coinMinimalDenom":"dys","coinDecimals":0},"bip44":{"coinType":118}},{"chainId":"echelon_3000-3","currencies":[{"coinDenom":"echelon","coinMinimalDenom":"aechelon","coinDecimals":18}],"rest":"https://ech01api.mindheartsoul.org","rpc":"https://ech01trpc.mindheartsoul.org","bech32Config":{"bech32PrefixAccAddr":"echelon","bech32PrefixAccPub":"echelonpub","bech32PrefixValAddr":"echelonvaloper","bech32PrefixValPub":"echelonvaloperpub","bech32PrefixConsAddr":"echelonvalcons","bech32PrefixConsPub":"echelonvalconspub"},"chainName":"echelon","feeCurrencies":[{"coinDenom":"echelon","coinMinimalDenom":"aechelon","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"echelon","coinMinimalDenom":"aechelon","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"elys-1","currencies":[{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6},{"coinDenom":"eden","coinMinimalDenom":"ueden","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6},{"coinDenom":"axl","coinMinimalDenom":"ibc/9463E39D230614B313B487836D13A392BD1731928713D4C8427A083627048DB3","coinDecimals":6}],"rest":"https://api.elys.network","rpc":"https://rpc.elys.network:443","bech32Config":{"bech32PrefixAccAddr":"elys","bech32PrefixAccPub":"elyspub","bech32PrefixValAddr":"elysvaloper","bech32PrefixValPub":"elysvaloperpub","bech32PrefixConsAddr":"elysvalcons","bech32PrefixConsPub":"elysvalconspub"},"chainName":"elys","feeCurrencies":[{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"emoney-3","currencies":[{"coinDenom":"ngm","coinMinimalDenom":"ungm","coinDecimals":6},{"coinDenom":"eur","coinMinimalDenom":"eeur","coinDecimals":6},{"coinDenom":"chf","coinMinimalDenom":"echf","coinDecimals":6},{"coinDenom":"nok","coinMinimalDenom":"enok","coinDecimals":6},{"coinDenom":"dkk","coinMinimalDenom":"edkk","coinDecimals":6},{"coinDenom":"sek","coinMinimalDenom":"esek","coinDecimals":6}],"rest":"https://emoney.validator.network/api/","rpc":"https://emoney.validator.network","bech32Config":{"bech32PrefixAccAddr":"emoney","bech32PrefixAccPub":"emoneypub","bech32PrefixValAddr":"emoneyvaloper","bech32PrefixValPub":"emoneyvaloperpub","bech32PrefixConsAddr":"emoneyvalcons","bech32PrefixConsPub":"emoneyvalconspub"},"chainName":"emoney","feeCurrencies":[{"coinDenom":"ngm","coinMinimalDenom":"ungm","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"eur","coinMinimalDenom":"eeur","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"chf","coinMinimalDenom":"echf","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"nok","coinMinimalDenom":"enok","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"sek","coinMinimalDenom":"esek","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"dkk","coinMinimalDenom":"edkk","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}}],"stakeCurrency":{"coinDenom":"ngm","coinMinimalDenom":"ungm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"empowerchain-1","currencies":[{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6}],"rest":"https://rest-empowerchain.ecostake.com:443","rpc":"https://rpc-empowerchain.ecostake.com:443","bech32Config":{"bech32PrefixAccAddr":"empower","bech32PrefixAccPub":"empowerpub","bech32PrefixValAddr":"empowervaloper","bech32PrefixValPub":"empowervaloperpub","bech32PrefixConsAddr":"empowervalcons","bech32PrefixConsPub":"empowervalconspub"},"chainName":"empowerchain","feeCurrencies":[{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"epix_4242-1","currencies":[{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18}],"rest":"https://epix.api.silknodes.io","rpc":"https://epix.rpc.silknodes.io/","bech32Config":{"bech32PrefixAccAddr":"epix","bech32PrefixAccPub":"epixpub","bech32PrefixValAddr":"epixvaloper","bech32PrefixValPub":"epixvaloperpub","bech32PrefixConsAddr":"epixvalcons","bech32PrefixConsPub":"epixvalconspub"},"chainName":"epix","feeCurrencies":[{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18,"gasPriceStep":{"low":1000000000000,"average":2000000000000,"high":3000000000000}}],"stakeCurrency":{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"ethos_7003-1","currencies":[{"coinDenom":"RYT","coinMinimalDenom":"aRYT","coinDecimals":18}],"rest":"https://ethos.provable.dev/rest/","rpc":"https://ethos-rpc.provable.dev:443/","bech32Config":{"bech32PrefixAccAddr":"ethos","bech32PrefixAccPub":"ethospub","bech32PrefixValAddr":"ethosvaloper","bech32PrefixValPub":"ethosvaloperpub","bech32PrefixConsAddr":"ethosvalcons","bech32PrefixConsPub":"ethosvalconspub"},"chainName":"ethos","feeCurrencies":[{"coinDenom":"RYT","coinMinimalDenom":"aRYT","coinDecimals":18}],"stakeCurrency":{"coinDenom":"RYT","coinMinimalDenom":"aRYT","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"evmos_9001-2","currencies":[{"coinDenom":"evmos","coinMinimalDenom":"aevmos","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/95F4898F70B1E3765715808C57E955034419200A7BB6DDECBEAA5FD3AA3DF7D5","coinDecimals":6},{"coinDenom":"neok","coinMinimalDenom":"erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9","coinDecimals":18},{"coinDenom":"berlin-legacy","coinMinimalDenom":"erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280","coinDecimals":18},{"coinDenom":"crowdp","coinMinimalDenom":"erc20/0xfbF4318d24a93753F11d365A6dcF8b830e98Ab0F","coinDecimals":18}],"rest":"https://rest.bd.evmos.org:1317","rpc":"https://rpc.lavenderfive.com:443/evmos","bech32Config":{"bech32PrefixAccAddr":"evmos","bech32PrefixAccPub":"evmospub","bech32PrefixValAddr":"evmosvaloper","bech32PrefixValPub":"evmosvaloperpub","bech32PrefixConsAddr":"evmosvalcons","bech32PrefixConsPub":"evmosvalconspub"},"chainName":"evmos","feeCurrencies":[{"coinDenom":"evmos","coinMinimalDenom":"aevmos","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"evmos","coinMinimalDenom":"aevmos","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"fetchhub-4","currencies":[{"coinDenom":"fet","coinMinimalDenom":"afet","coinDecimals":18},{"coinDenom":"mobx","coinMinimalDenom":"nanomobx","coinDecimals":9}],"rest":"https://rest-fetchhub.fetch.ai","rpc":"https://rpc-fetchhub.fetch.ai:443","bech32Config":{"bech32PrefixAccAddr":"fetch","bech32PrefixAccPub":"fetchpub","bech32PrefixValAddr":"fetchvaloper","bech32PrefixValPub":"fetchvaloperpub","bech32PrefixConsAddr":"fetchvalcons","bech32PrefixConsPub":"fetchvalconspub"},"chainName":"fetchhub","feeCurrencies":[{"coinDenom":"fet","coinMinimalDenom":"afet","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.035}}],"stakeCurrency":{"coinDenom":"fet","coinMinimalDenom":"afet","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"finschia-2","currencies":[{"coinDenom":"fnsa","coinMinimalDenom":"cony","coinDecimals":6}],"rest":"https://finschia-api.finschia.io","rpc":"https://finschia-rpc.finschia.io","bech32Config":{"bech32PrefixAccAddr":"link","bech32PrefixAccPub":"linkpub","bech32PrefixValAddr":"linkvaloper","bech32PrefixValPub":"linkvaloperpub","bech32PrefixConsAddr":"linkvalcons","bech32PrefixConsPub":"linkvalconspub"},"chainName":"finschia","feeCurrencies":[{"coinDenom":"fnsa","coinMinimalDenom":"cony","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.015,"high":0.015}}],"stakeCurrency":{"coinDenom":"fnsa","coinMinimalDenom":"cony","coinDecimals":6},"bip44":{"coinType":438}},{"chainId":"colosseum-1","currencies":[{"coinDenom":"fct","coinMinimalDenom":"ufct","coinDecimals":6}],"rest":"https://lcd-mainnet.firmachain.dev:1317","rpc":"https://lcd-mainnet.firmachain.dev:26657","bech32Config":{"bech32PrefixAccAddr":"firma","bech32PrefixAccPub":"firmapub","bech32PrefixValAddr":"firmavaloper","bech32PrefixValPub":"firmavaloperpub","bech32PrefixConsAddr":"firmavalcons","bech32PrefixConsPub":"firmavalconspub"},"chainName":"firmachain","feeCurrencies":[{"coinDenom":"fct","coinMinimalDenom":"ufct","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.15,"high":0.2}}],"stakeCurrency":{"coinDenom":"fct","coinMinimalDenom":"ufct","coinDecimals":6},"bip44":{"coinType":7777777}},{"chainId":"furya-1","currencies":[{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6}],"rest":"https://furya.api.nodeshub.online","rpc":"https://furya-rpc.synergynodes.com","bech32Config":{"bech32PrefixAccAddr":"furya","bech32PrefixAccPub":"furyapub","bech32PrefixValAddr":"furyavaloper","bech32PrefixValPub":"furyavaloperpub","bech32PrefixConsAddr":"furyavalcons","bech32PrefixConsPub":"furyavalconspub"},"chainName":"furya","feeCurrencies":[{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.5}}],"stakeCurrency":{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"fxcore","currencies":[{"coinDenom":"WFX","coinMinimalDenom":"FX","coinDecimals":18},{"coinDenom":"PUNDIX","coinMinimalDenom":"eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38","coinDecimals":18}],"rest":"https://fx-rest.functionx.io","rpc":"https://fx-json.functionx.io","bech32Config":{"bech32PrefixAccAddr":"fx","bech32PrefixAccPub":"fxpub","bech32PrefixValAddr":"fxvaloper","bech32PrefixValPub":"fxvaloperpub","bech32PrefixConsAddr":"fxvalcons","bech32PrefixConsPub":"fxvalconspub"},"chainName":"fxcore","feeCurrencies":[{"coinDenom":"WFX","coinMinimalDenom":"FX","coinDecimals":18,"gasPriceStep":{"low":4000000000000,"average":4200000000000,"high":5000000000000}}],"stakeCurrency":{"coinDenom":"WFX","coinMinimalDenom":"FX","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"wormchain","currencies":[{"coinDenom":"test","coinMinimalDenom":"utest","coinDecimals":6},{"coinDenom":"worm","coinMinimalDenom":"uworm","coinDecimals":6},{"coinDenom":"wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh","coinDecimals":8},{"coinDenom":"wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp","coinDecimals":8},{"coinDenom":"wormhole/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b","coinDecimals":8},{"coinDenom":"wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r","coinDecimals":8},{"coinDenom":"wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi","coinDecimals":6},{"coinDenom":"wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA","coinDecimals":8},{"coinDenom":"wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR","coinDecimals":5},{"coinDenom":"wormhole/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd","coinDecimals":8},{"coinDenom":"wormhole/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw","coinDecimals":8},{"coinDenom":"wormhole/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1","coinDecimals":8},{"coinDenom":"wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt","coinDecimals":6},{"coinDenom":"wormhole/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4","coinDecimals":6},{"coinDenom":"wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy","coinDecimals":6},{"coinDenom":"wormhole/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3","coinDecimals":6},{"coinDenom":"wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst","coinDecimals":5},{"coinDenom":"w","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/2Wb6ueMFc9WLc2eyYVha6qnwHKbwzUXdooXsg6XXVvos","coinDecimals":6},{"coinDenom":"wormhole/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP","coinDecimals":6}],"rest":"https://tncnt-eu-wormchain-main-01.rpc.p2p.world/lcd/","rpc":"https://tncnt-eu-wormchain-main-01.rpc.p2p.world/","bech32Config":{"bech32PrefixAccAddr":"wormhole","bech32PrefixAccPub":"wormholepub","bech32PrefixValAddr":"wormholevaloper","bech32PrefixValPub":"wormholevaloperpub","bech32PrefixConsAddr":"wormholevalcons","bech32PrefixConsPub":"wormholevalconspub"},"chainName":"gateway","feeCurrencies":[{"coinDenom":"test","coinMinimalDenom":"utest","coinDecimals":6}],"stakeCurrency":{"coinDenom":"test","coinMinimalDenom":"utest","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"genesis_29-2","currencies":[{"coinDenom":"l1","coinMinimalDenom":"el1","coinDecimals":18}],"rest":"https://api.genesisl1.org","rpc":"https://26657.genesisl1.org","bech32Config":{"bech32PrefixAccAddr":"genesis","bech32PrefixAccPub":"genesispub","bech32PrefixValAddr":"genesisvaloper","bech32PrefixValPub":"genesisvaloperpub","bech32PrefixConsAddr":"genesisvalcons","bech32PrefixConsPub":"genesisvalconspub"},"chainName":"genesisl1","feeCurrencies":[{"coinDenom":"l1","coinMinimalDenom":"el1","coinDecimals":18,"gasPriceStep":{"low":51000000000,"average":52000000000,"high":53000000000}}],"stakeCurrency":{"coinDenom":"l1","coinMinimalDenom":"el1","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"gitopia","currencies":[{"coinDenom":"LORE","coinMinimalDenom":"ulore","coinDecimals":6}],"rest":"https://gitopia-api.polkachu.com:443","rpc":"https://gitopia-rpc.polkachu.com:443","bech32Config":{"bech32PrefixAccAddr":"gitopia","bech32PrefixAccPub":"gitopiapub","bech32PrefixValAddr":"gitopiavaloper","bech32PrefixValPub":"gitopiavaloperpub","bech32PrefixConsAddr":"gitopiavalcons","bech32PrefixConsPub":"gitopiavalconspub"},"chainName":"gitopia","feeCurrencies":[{"coinDenom":"LORE","coinMinimalDenom":"ulore","coinDecimals":6,"gasPriceStep":{"low":0.0012,"average":0.0016,"high":0.0024}}],"stakeCurrency":{"coinDenom":"LORE","coinMinimalDenom":"ulore","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"govgen-1","currencies":[{"coinDenom":"govgen","coinMinimalDenom":"ugovgen","coinDecimals":6}],"rest":"https://api.govgen.io/","rpc":"https://rpc.govgen.io:443","bech32Config":{"bech32PrefixAccAddr":"govgen","bech32PrefixAccPub":"govgenpub","bech32PrefixValAddr":"govgenvaloper","bech32PrefixValPub":"govgenvaloperpub","bech32PrefixConsAddr":"govgenvalcons","bech32PrefixConsPub":"govgenvalconspub"},"chainName":"govgen","feeCurrencies":[{"coinDenom":"govgen","coinMinimalDenom":"ugovgen","coinDecimals":6,"gasPriceStep":{"low":0.006,"average":0.006,"high":0.009}}],"stakeCurrency":{"coinDenom":"govgen","coinMinimalDenom":"ugovgen","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"gravity-bridge-3","currencies":[{"coinDenom":"graviton","coinMinimalDenom":"ugraviton","coinDecimals":6},{"coinDenom":"pstake","coinMinimalDenom":"gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006","coinDecimals":18},{"coinDenom":"gweth","coinMinimalDenom":"gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2","coinDecimals":18},{"coinDenom":"gusdc","coinMinimalDenom":"gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","coinDecimals":6},{"coinDenom":"gusdt","coinMinimalDenom":"gravity0xdAC17F958D2ee523a2206206994597C13D831ec7","coinDecimals":6},{"coinDenom":"gwbtc","coinMinimalDenom":"gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599","coinDecimals":8},{"coinDenom":"gdai","coinMinimalDenom":"gravity0x6B175474E89094C44Da98b954EedeAC495271d0F","coinDecimals":18},{"coinDenom":"gsdai","coinMinimalDenom":"gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA","coinDecimals":18},{"coinDenom":"gocc","coinMinimalDenom":"gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207","coinDecimals":18},{"coinDenom":"page","coinMinimalDenom":"gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e","coinDecimals":8},{"coinDenom":"gpaxg","coinMinimalDenom":"gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78","coinDecimals":18}],"rest":"https://gravitychain.io:1317","rpc":"https://gravitychain.io:26657","bech32Config":{"bech32PrefixAccAddr":"gravity","bech32PrefixAccPub":"gravitypub","bech32PrefixValAddr":"gravityvaloper","bech32PrefixValPub":"gravityvaloperpub","bech32PrefixConsAddr":"gravityvalcons","bech32PrefixConsPub":"gravityvalconspub"},"chainName":"gravitybridge","feeCurrencies":[{"coinDenom":"graviton","coinMinimalDenom":"ugraviton","coinDecimals":6},{"coinDenom":"gusdc","coinMinimalDenom":"gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","coinDecimals":6,"gasPriceStep":{"low":0.0002,"average":0.0005,"high":0.0008}},{"coinDenom":"gusdt","coinMinimalDenom":"gravity0xdAC17F958D2ee523a2206206994597C13D831ec7","coinDecimals":6,"gasPriceStep":{"low":0.0002,"average":0.0005,"high":0.0008}}],"stakeCurrency":{"coinDenom":"graviton","coinMinimalDenom":"ugraviton","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"haqq_11235-1","currencies":[{"coinDenom":"ISLM","coinMinimalDenom":"aISLM","coinDecimals":18},{"coinDenom":"DEEN","coinMinimalDenom":"erc20/0x4FEBDDe47Ab9a76200e57eFcC80b212a07b3e6cE","coinDecimals":6}],"rest":"https://rest.cosmos.haqq.network","rpc":"https://rpc.tm.haqq.network","bech32Config":{"bech32PrefixAccAddr":"haqq","bech32PrefixAccPub":"haqqpub","bech32PrefixValAddr":"haqqvaloper","bech32PrefixValPub":"haqqvaloperpub","bech32PrefixConsAddr":"haqqvalcons","bech32PrefixConsPub":"haqqvalconspub"},"chainName":"haqq","feeCurrencies":[{"coinDenom":"ISLM","coinMinimalDenom":"aISLM","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"ISLM","coinMinimalDenom":"aISLM","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"helichain","currencies":[{"coinDenom":"heli","coinMinimalDenom":"uheli","coinDecimals":6}],"rest":"https://lcd.helichain.com/","rpc":"https://rpc.helichain.com/","bech32Config":{"bech32PrefixAccAddr":"heli","bech32PrefixAccPub":"helipub","bech32PrefixValAddr":"helivaloper","bech32PrefixValPub":"helivaloperpub","bech32PrefixConsAddr":"helivalcons","bech32PrefixConsPub":"helivalconspub"},"chainName":"heli","feeCurrencies":[{"coinDenom":"heli","coinMinimalDenom":"uheli","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.0025}}],"stakeCurrency":{"coinDenom":"heli","coinMinimalDenom":"uheli","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"highbury_710-1","currencies":[{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6},{"coinDenom":"JINX","coinMinimalDenom":"jinx","coinDecimals":6},{"coinDenom":"JINXY","coinMinimalDenom":"jinxy","coinDecimals":6}],"rest":"https://api-mainnet.furya.io/","rpc":"https://gridiron.furya.io","bech32Config":{"bech32PrefixAccAddr":"fury","bech32PrefixAccPub":"furypub","bech32PrefixValAddr":"furyvaloper","bech32PrefixValPub":"furyvaloperpub","bech32PrefixConsAddr":"furyvalcons","bech32PrefixConsPub":"furyvalconspub"},"chainName":"highbury","feeCurrencies":[{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.1,"high":0.25}}],"stakeCurrency":{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6},"bip44":{"coinType":459}},{"chainId":"humans_1089-1","currencies":[{"coinDenom":"heart","coinMinimalDenom":"aheart","coinDecimals":18}],"rest":"https://api.humans.nodestake.org","rpc":"https://rpc.humans.nodestake.org","bech32Config":{"bech32PrefixAccAddr":"human","bech32PrefixAccPub":"humanpub","bech32PrefixValAddr":"humanvaloper","bech32PrefixValPub":"humanvaloperpub","bech32PrefixConsAddr":"humanvalcons","bech32PrefixConsPub":"humanvalconspub"},"chainName":"humans","feeCurrencies":[{"coinDenom":"heart","coinMinimalDenom":"aheart","coinDecimals":18,"gasPriceStep":{"low":80000000000,"average":100000000000,"high":160000000000}}],"stakeCurrency":{"coinDenom":"heart","coinMinimalDenom":"aheart","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"ixo-5","currencies":[{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6}],"rest":"https://proxies.sifchain.finance/api/impacthub-3/rest","rpc":"https://proxies.sifchain.finance/api/impacthub-3/rpc","bech32Config":{"bech32PrefixAccAddr":"ixo","bech32PrefixAccPub":"ixopub","bech32PrefixValAddr":"ixovaloper","bech32PrefixValPub":"ixovaloperpub","bech32PrefixConsAddr":"ixovalcons","bech32PrefixConsPub":"ixovalconspub"},"chainName":"impacthub","feeCurrencies":[{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"injective-1","currencies":[{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"peggy0xdAC17F958D2ee523a2206206994597C13D831ec7","coinDecimals":6},{"coinDenom":"ampINJ","coinMinimalDenom":"factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ","coinDecimals":6},{"coinDenom":"autism","coinMinimalDenom":"factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism","coinDecimals":6},{"coinDenom":"bINJ","coinMinimalDenom":"factory/inj1dxp690rd86xltejgfq2fa7f2nxtgmm5cer3hvu/bINJ","coinDecimals":18},{"coinDenom":"NINJA","coinMinimalDenom":"factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja","coinDecimals":6},{"coinDenom":"WGMI","coinMinimalDenom":"factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/DD648F5D3CDA56D0D8D8820CF703D246B9FC4007725D8B38D23A21FF1A1477E3","coinDecimals":6},{"coinDenom":"glto","coinMinimalDenom":"peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2","coinDecimals":6},{"coinDenom":"hava","coinMinimalDenom":"factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava","coinDecimals":6},{"coinDenom":"BADKID","coinMinimalDenom":"ibc/A0C5AD197FECAF6636F589071338DC7ECD6B0809CD3A5AB131EAAA5395E7E5E8","coinDecimals":6},{"coinDenom":"NINPO","coinMinimalDenom":"inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88","coinDecimals":6},{"coinDenom":"JUDO","coinMinimalDenom":"inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h","coinDecimals":6},{"coinDenom":"beast","coinMinimalDenom":"peggy0xA4426666addBE8c4985377d36683D17FB40c31Be","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"ibc/063F4461F7317CFF10F50AB044E44932D22AAD84FA7107082744946E6DB7B7A8","coinDecimals":6},{"coinDenom":"nINJ","coinMinimalDenom":"inj1rmzufd7h09sqfrre5dtvu5d09ta7c0t4jzkr2f","coinDecimals":18},{"coinDenom":"nATOM","coinMinimalDenom":"inj16jf4qkcarp3lan4wl2qkrelf4kduvvujwg0780","coinDecimals":6},{"coinDenom":"nWETH","coinMinimalDenom":"inj1kehk5nvreklhylx22p3x0yjydfsz9fv3fvg5xt","coinDecimals":18},{"coinDenom":"nUSDT","coinMinimalDenom":"inj1cy9hes20vww2yr6crvs75gxy5hpycya2hmjg9s","coinDecimals":6},{"coinDenom":"nTIA","coinMinimalDenom":"inj1fzquxxxam59z6fzewy2hvvreeh3m04x83zg4vv","coinDecimals":6},{"coinDenom":"NBZ","coinMinimalDenom":"ibc/1011E4D6D4800DA9B8F21D7C207C0B0C18E54E614A8576037F066B775210709D","coinDecimals":6},{"coinDenom":"Talis","coinMinimalDenom":"factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/Talis","coinDecimals":6},{"coinDenom":"xTalis","coinMinimalDenom":"factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/xTalis","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/2CBC2EA121AE42563B08028466F37B600F2D7D4282342DE938283CC3FB2BC00E","coinDecimals":6},{"coinDenom":"SYN","coinMinimalDenom":"factory/inj1a6xdezq7a94qwamec6n6cnup02nvewvjtz6h6e/SYN","coinDecimals":6},{"coinDenom":"ashSYN","coinMinimalDenom":"factory/inj1ej2f3lmpxj4djsmmuxvnfuvplrut7zmwrq7zj8/syn.ash","coinDecimals":6},{"coinDenom":"COSMO","coinMinimalDenom":"factory/inj1je6n5sr4qtx2lhpldfxndntmgls9hf38ncmcez/COSMO","coinDecimals":6},{"coinDenom":"XTRUMP","coinMinimalDenom":"ibc/5339B0D20986A7C20C2548ED9D6B8DE47BB64E03ABFD051B7792E713036EA20C","coinDecimals":6},{"coinDenom":"DRUGS","coinMinimalDenom":"cw20:inj19vy83ne9tzta2yqynj8yg7dq9ghca6yqn9hyej","coinDecimals":18},{"coinDenom":"DRUGS","coinMinimalDenom":"factory/inj178zy7myyxewek7ka7v9hru8ycpvfnen6xeps89/DRUGS","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/D6E6A20ABDD600742D22464340A7701558027759CE14D12590F8EA869CCCF445","coinDecimals":6}],"rest":"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz","rpc":"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rpc.newmetric.xyz","bech32Config":{"bech32PrefixAccAddr":"inj","bech32PrefixAccPub":"injpub","bech32PrefixValAddr":"injvaloper","bech32PrefixValPub":"injvaloperpub","bech32PrefixConsAddr":"injvalcons","bech32PrefixConsPub":"injvalconspub"},"chainName":"injective","feeCurrencies":[{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18,"gasPriceStep":{"low":500000000,"average":700000000,"high":900000000}}],"stakeCurrency":{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"int3face-1","currencies":[{"coinDenom":"int3","coinMinimalDenom":"uint3","coinDecimals":6},{"coinDenom":"btc","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc","coinDecimals":8},{"coinDenom":"bch","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch","coinDecimals":8},{"coinDenom":"doge","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge","coinDecimals":8},{"coinDenom":"ltc","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc","coinDecimals":8},{"coinDenom":"ton","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/ton-ton","coinDecimals":9}],"rest":"https://api.mainnet.int3face.zone","rpc":"https://rpc.mainnet.int3face.zone","bech32Config":{"bech32PrefixAccAddr":"int3","bech32PrefixAccPub":"int3pub","bech32PrefixValAddr":"int3valoper","bech32PrefixValPub":"int3valoperpub","bech32PrefixConsAddr":"int3valcons","bech32PrefixConsPub":"int3valconspub"},"chainName":"int3face","feeCurrencies":[{"coinDenom":"int3","coinMinimalDenom":"uint3","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}},{"coinDenom":"btc","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc","coinDecimals":8,"gasPriceStep":{"low":1e-7,"average":0.0000025,"high":0.000004}},{"coinDenom":"bch","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch","coinDecimals":8,"gasPriceStep":{"low":0.000001,"average":0.000025,"high":0.00004}},{"coinDenom":"ltc","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc","coinDecimals":8,"gasPriceStep":{"low":0.000001,"average":0.000025,"high":0.00004}},{"coinDenom":"doge","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge","coinDecimals":8,"gasPriceStep":{"low":0.001,"average":0.0025,"high":0.004}},{"coinDenom":"ton","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/ton-ton","coinDecimals":9,"gasPriceStep":{"low":0.0001,"average":0.00025,"high":0.0004}}],"stakeCurrency":{"coinDenom":"int3","coinMinimalDenom":"uint3","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"irishub-1","currencies":[{"coinDenom":"iris","coinMinimalDenom":"uiris","coinDecimals":6}],"rest":"https://api-irisnet-ia.cosmosia.notional.ventures/","rpc":"https://rpc-irisnet-ia.cosmosia.notional.ventures/","bech32Config":{"bech32PrefixAccAddr":"iaa","bech32PrefixAccPub":"iaapub","bech32PrefixValAddr":"iaavaloper","bech32PrefixValPub":"iaavaloperpub","bech32PrefixConsAddr":"iaavalcons","bech32PrefixConsPub":"iaavalconspub"},"chainName":"irisnet","feeCurrencies":[{"coinDenom":"iris","coinMinimalDenom":"uiris","coinDecimals":6,"gasPriceStep":{"low":0.2,"average":0.3,"high":0.4}}],"stakeCurrency":{"coinDenom":"iris","coinMinimalDenom":"uiris","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"jackal-1","currencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"rest":"https://api.jackalprotocol.com","rpc":"https://rpc.jackalprotocol.com","bech32Config":{"bech32PrefixAccAddr":"jkl","bech32PrefixAccPub":"jklpub","bech32PrefixValAddr":"jklvaloper","bech32PrefixValPub":"jklvaloperpub","bech32PrefixConsAddr":"jklvalcons","bech32PrefixConsPub":"jklvalconspub"},"chainName":"jackal","feeCurrencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6,"gasPriceStep":{"low":0.002,"average":0.002,"high":0.02}}],"stakeCurrency":{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"joltify_1729-1","currencies":[{"coinDenom":"jolt","coinMinimalDenom":"ujolt","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/9117A26BA81E29FA4F78F57DC2BD90CD3D26848101BA880445F119B22A1E254E","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3","coinDecimals":6}],"rest":"https://lcd.joltify.io/","rpc":"https://rpc.joltify.io","bech32Config":{"bech32PrefixAccAddr":"jolt","bech32PrefixAccPub":"joltpub","bech32PrefixValAddr":"joltvaloper","bech32PrefixValPub":"joltvaloperpub","bech32PrefixConsAddr":"joltvalcons","bech32PrefixConsPub":"joltvalconspub"},"chainName":"joltify","feeCurrencies":[{"coinDenom":"jolt","coinMinimalDenom":"ujolt","coinDecimals":6}],"stakeCurrency":{"coinDenom":"jolt","coinMinimalDenom":"ujolt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"juno-1","currencies":[{"coinDenom":"juno","coinMinimalDenom":"ujuno","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6},{"coinDenom":"neta","coinMinimalDenom":"cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr","coinDecimals":6},{"coinDenom":"marble","coinMinimalDenom":"cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl","coinDecimals":3},{"coinDenom":"hope","coinMinimalDenom":"cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z","coinDecimals":6},{"coinDenom":"rac","coinMinimalDenom":"cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa","coinDecimals":6},{"coinDenom":"block","coinMinimalDenom":"cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq","coinDecimals":6},{"coinDenom":"cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49","coinMinimalDenom":"cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49","coinDecimals":0},{"coinDenom":"raw","coinMinimalDenom":"cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g","coinDecimals":6},{"coinDenom":"asvt","coinMinimalDenom":"cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w","coinDecimals":6},{"coinDenom":"hns","coinMinimalDenom":"cw20:juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k","coinDecimals":6},{"coinDenom":"joe","coinMinimalDenom":"cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3","coinDecimals":6},{"coinDenom":"dla","coinMinimalDenom":"cw20:juno1sfwye65qxcfsc837gu5qcprcz7w49gkv3wnat04764ld76hy3arqs779tr","coinDecimals":6},{"coinDenom":"glto","coinMinimalDenom":"cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se","coinDecimals":6},{"coinDenom":"gkey","coinMinimalDenom":"cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh","coinDecimals":6},{"coinDenom":"hole","coinMinimalDenom":"cw20:juno1t46z6hg8vvsena7sue0vg6w85ljar3cundplkre9sz0skeqkap9sxyyy6m","coinDecimals":6},{"coinDenom":"sejuno","coinMinimalDenom":"cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv","coinDecimals":6},{"coinDenom":"bjuno","coinMinimalDenom":"cw20:juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3","coinDecimals":6},{"coinDenom":"solar","coinMinimalDenom":"cw20:juno159q8t5g02744lxq8lfmcn6f78qqulq9wn3y9w7lxjgkz4e0a6kvsfvapse","coinDecimals":6},{"coinDenom":"seasy","coinMinimalDenom":"cw20:juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf","coinDecimals":6},{"coinDenom":"muse","coinMinimalDenom":"cw20:juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3","coinDecimals":6},{"coinDenom":"loop","coinMinimalDenom":"cw20:juno1qsrercqegvs4ye0yqg93knv73ye5dc3prqwd6jcdcuj8ggp6w0us66deup","coinDecimals":6},{"coinDenom":"fury","coinMinimalDenom":"cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz","coinDecimals":6},{"coinDenom":"phmn","coinMinimalDenom":"cw20:juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l","coinDecimals":6},{"coinDenom":"hopers","coinMinimalDenom":"cw20:juno1u45shlp0q4gcckvsj06ss4xuvsu0z24a0d0vr9ce6r24pht4e5xq7q995n","coinDecimals":6},{"coinDenom":"red","coinMinimalDenom":"cw20:juno1g647t78y2ulqlm3lss8rs3d0spzd0teuwhdvnqn92tr79yltk9dq2h24za","coinDecimals":6},{"coinDenom":"blue","coinMinimalDenom":"cw20:juno14q8kk464fafql2fwmlsgvgcdl6h2csqpzv4hr025fmcvgjahpess32k0j7","coinDecimals":6},{"coinDenom":"wynd","coinMinimalDenom":"cw20:juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9","coinDecimals":6},{"coinDenom":"banana","coinMinimalDenom":"cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj","coinDecimals":6},{"coinDenom":"nride","coinMinimalDenom":"cw20:juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq","coinDecimals":6},{"coinDenom":"sgnl","coinMinimalDenom":"cw20:juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k","coinDecimals":6},{"coinDenom":"jape","coinMinimalDenom":"cw20:juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps","coinDecimals":6},{"coinDenom":"catom","coinMinimalDenom":"cw20:juno12wxyvtqe76x2a5jj6ckp2hfq8v32m6rvyyxwwufl2tksqvkt7whqczv6pa","coinDecimals":6},{"coinDenom":"howl","coinMinimalDenom":"cw20:juno1g0wuyu2f49ncf94r65278puxzclf5arse9f3kvffxyv4se4vgdmsk4dvqz","coinDecimals":6},{"coinDenom":"fox","coinMinimalDenom":"cw20:juno1u8cr3hcjvfkzxcaacv9q75uw9hwjmn8pucc93pmy6yvkzz79kh3qncca8x","coinDecimals":6},{"coinDenom":"grdn","coinMinimalDenom":"cw20:juno1xekkh27punj0uxruv3gvuydyt856fax0nu750xns99t2qcxp7xmsqwhfma","coinDecimals":6},{"coinDenom":"mnpu","coinMinimalDenom":"cw20:juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my","coinDecimals":6},{"coinDenom":"kleo","coinMinimalDenom":"cw20:juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy","coinDecimals":6},{"coinDenom":"sikoba","coinMinimalDenom":"cw20:juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp","coinDecimals":6},{"coinDenom":"shibac","coinMinimalDenom":"cw20:juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z","coinDecimals":6},{"coinDenom":"clst","coinMinimalDenom":"cw20:juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg","coinDecimals":6},{"coinDenom":"watr","coinMinimalDenom":"cw20:juno1m4h8q4p305wgy7vkux0w6e5ylhqll3s6pmadhxkhqtuwd5wlxhxs8xklsw","coinDecimals":6},{"coinDenom":"casa","coinMinimalDenom":"cw20:juno1ju8k8sqwsqu5k6umrypmtyqu2wqcpnrkf4w4mntvl0javt4nma7s8lzgss","coinDecimals":6},{"coinDenom":"summit","coinMinimalDenom":"cw20:juno1j4ux0f6gt7e82z7jdpm25v4g2gts880ap64rdwa49989wzhd0dfqed6vqm","coinDecimals":6},{"coinDenom":"manna","coinMinimalDenom":"cw20:juno13ca2g36ng6etcfhr9qxx352uw2n5e92np54thfkm3w3nzlhsgvwsjaqlyq","coinDecimals":6},{"coinDenom":"empwr","coinMinimalDenom":"cw20:juno12etxwkxvms0uy9ak8g3pyq6a53myukufdnx82pakzmjmpm77a0ksr9gs5v","coinDecimals":6},{"coinDenom":"middle","coinMinimalDenom":"cw20:juno1525fuspletvzykpgr2atxpymu9le4mghd7qq4a4u23uwqzc2f3fq7fmafd","coinDecimals":6},{"coinDenom":"sunset","coinMinimalDenom":"cw20:juno17703kcxtsg37hryxnestejyyycuv5yyvnghp2e7w0kqvafnnyetsgzq62w","coinDecimals":6},{"coinDenom":"tree","coinMinimalDenom":"cw20:juno1uu3rxu7w7fpfj4sl4xpxppgymk57mzdzn6kg7492jdxh5dwk7d2qq9429e","coinDecimals":6},{"coinDenom":"invdrs","coinMinimalDenom":"cw20:juno1jwdy7v4egw36pd84aeks3ww6n8k7zhsumd4ac8q5lts83ppxueus4626e8","coinDecimals":6},{"coinDenom":"apemos","coinMinimalDenom":"cw20:juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06","coinDecimals":6},{"coinDenom":"osdoge","coinMinimalDenom":"cw20:juno1ytymtllllsp3hfmndvcp802p2xmy5s8m59ufel8xv9ahyxyfs4hs4kd4je","coinDecimals":6},{"coinDenom":"doga","coinMinimalDenom":"cw20:juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d","coinDecimals":6},{"coinDenom":"pepe","coinMinimalDenom":"cw20:juno1zqrj3ta4u7ylv0wqzd8t8q3jrr9rdmn43zuzp9zemeunecnhy8fss778g7","coinDecimals":6},{"coinDenom":"catmos","coinMinimalDenom":"cw20:juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488","coinDecimals":6},{"coinDenom":"spacer","coinMinimalDenom":"cw20:juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg","coinDecimals":6},{"coinDenom":"light","coinMinimalDenom":"cw20:juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l","coinDecimals":9},{"coinDenom":"mile","coinMinimalDenom":"cw20:juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d","coinDecimals":6},{"coinDenom":"void","coinMinimalDenom":"cw20:juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8","coinDecimals":6},{"coinDenom":"silica","coinMinimalDenom":"cw20:juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux","coinDecimals":6},{"coinDenom":"pepec","coinMinimalDenom":"cw20:juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k","coinDecimals":6},{"coinDenom":"pltn","coinMinimalDenom":"cw20:juno15au4k2jgwd0jnchy0fkg3lm00fpt7jt0j2duuzradn2q7sega2dszyn5pp","coinDecimals":6},{"coinDenom":"yfd","coinMinimalDenom":"cw20:juno12mcwmd6wqhledkjsurlfqtc8j0pedvxlcxw3gs4kh2qf808ehehsen8nmw","coinDecimals":6},{"coinDenom":"nexx","coinMinimalDenom":"factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX","coinDecimals":6},{"coinDenom":"dgl","coinMinimalDenom":"factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL","coinDecimals":6},{"coinDenom":"ampJUNO","coinMinimalDenom":"cw20:juno1a0khag6cfzu5lrwazmyndjgvlsuk7g4vn9jd8ceym8f4jf6v2l9q6d348a","coinDecimals":6},{"coinDenom":"bits","coinMinimalDenom":"cw20:juno14fz92ehqt37e096xr95kmy8nc0kz803uezxtg4fwx7agjjma86sqm8mg3h","coinDecimals":8},{"coinDenom":"poil","coinMinimalDenom":"cw20:juno13epyeat7ef0k7q6kllmyvc8zpfd9xm7cqjrgtk0qkgrk7n5mjfmq8979jw","coinDecimals":6},{"coinDenom":"minerva","coinMinimalDenom":"cw20:juno1h86ut5aevlxuuxrra6wy3dfq6e39zkzzv9eelz678jr6amxlc4gsx46j82","coinDecimals":6},{"coinDenom":"luno","coinMinimalDenom":"cw20:juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk","coinDecimals":6},{"coinDenom":"aten","coinMinimalDenom":"cw20:juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r","coinDecimals":6},{"coinDenom":"hera","coinMinimalDenom":"cw20:juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0","coinDecimals":6},{"coinDenom":"bJUNO","coinMinimalDenom":"cw20:juno1mvkgcr5uce2rnpzr4qrzf50hx4qreuwzlt7fzsjrhjud3xnjmttq5mkh2m","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/4A482FA914A4B9B05801ED81C33713899F322B24F76A06F4B8FE872485EA22FF","coinDecimals":6},{"coinDenom":"rstk","coinMinimalDenom":"ibc/F0C440C8040E2FCCAC621D32D3A00D9B347C989D52CE869A91CB34D07B0021D2","coinDecimals":6},{"coinDenom":"wind","coinMinimalDenom":"factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind","coinDecimals":6},{"coinDenom":"cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg","coinMinimalDenom":"cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg","coinDecimals":0},{"coinDenom":"arena","coinMinimalDenom":"factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA","coinDecimals":6},{"coinDenom":"ashWIND","coinMinimalDenom":"factory/juno16uprl38e4ljj5ctuha9ehpvp2l93z3d5jmwj2cttt6jkhlrhscpqgglalk/wind.ash","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/B4B81727559DC69159ED8BECD4452D555235CA0D11FADD3ADE121395A7E2833E","coinDecimals":18},{"coinDenom":"whale","coinMinimalDenom":"ibc/3A6ADE78FB8169C034C29C4F2E1A61CE596EC8235366F22381D981A98F1F5A5C","coinDecimals":6}],"rest":"https://lcd-juno.itastakers.com","rpc":"https://rpc-juno.itastakers.com","bech32Config":{"bech32PrefixAccAddr":"juno","bech32PrefixAccPub":"junopub","bech32PrefixValAddr":"junovaloper","bech32PrefixValPub":"junovaloperpub","bech32PrefixConsAddr":"junovalcons","bech32PrefixConsPub":"junovalconspub"},"chainName":"juno","feeCurrencies":[{"coinDenom":"juno","coinMinimalDenom":"ujuno","coinDecimals":6,"gasPriceStep":{"low":0.075,"average":0.1,"high":0.125}},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6,"gasPriceStep":{"low":0.003,"average":0.0035,"high":0.004}}],"stakeCurrency":{"coinDenom":"juno","coinMinimalDenom":"ujuno","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kava_2222-10","currencies":[{"coinDenom":"kava","coinMinimalDenom":"ukava","coinDecimals":6},{"coinDenom":"HARD","coinMinimalDenom":"hard","coinDecimals":6},{"coinDenom":"SWP","coinMinimalDenom":"swp","coinDecimals":6},{"coinDenom":"USDX","coinMinimalDenom":"usdx","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"erc20/tether/usdt","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/D4F1F74C6B90168E05B974F2EBB5938D18704B73DE273CAACF7E96F7821B2C3D","coinDecimals":18}],"rest":"https://api.data.kava.io/","rpc":"https://rpc.data.kava.io","bech32Config":{"bech32PrefixAccAddr":"kava","bech32PrefixAccPub":"kavapub","bech32PrefixValAddr":"kavavaloper","bech32PrefixValPub":"kavavaloperpub","bech32PrefixConsAddr":"kavavalcons","bech32PrefixConsPub":"kavavalconspub"},"chainName":"kava","feeCurrencies":[{"coinDenom":"kava","coinMinimalDenom":"ukava","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.1,"high":0.25}}],"stakeCurrency":{"coinDenom":"kava","coinMinimalDenom":"ukava","coinDecimals":6},"bip44":{"coinType":459}},{"chainId":"kichain-2","currencies":[{"coinDenom":"xki","coinMinimalDenom":"uxki","coinDecimals":6},{"coinDenom":"lvn","coinMinimalDenom":"cw20:ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy","coinDecimals":6}],"rest":"https://api-mainnet.blockchain.ki","rpc":"https://rpc-mainnet.blockchain.ki","bech32Config":{"bech32PrefixAccAddr":"ki","bech32PrefixAccPub":"kipub","bech32PrefixValAddr":"kivaloper","bech32PrefixValPub":"kivaloperpub","bech32PrefixConsAddr":"kivalcons","bech32PrefixConsPub":"kivalconspub"},"chainName":"kichain","feeCurrencies":[{"coinDenom":"xki","coinMinimalDenom":"uxki","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.05}}],"stakeCurrency":{"coinDenom":"xki","coinMinimalDenom":"uxki","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kima_network","currencies":[{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6}],"rest":"https://api.kima.network","rpc":"https://rpc.kima.network/","bech32Config":{"bech32PrefixAccAddr":"kima","bech32PrefixAccPub":"kimapub","bech32PrefixValAddr":"kimavaloper","bech32PrefixValPub":"kimavaloperpub","bech32PrefixConsAddr":"kimavalcons","bech32PrefixConsPub":"kimavalconspub"},"chainName":"kimanetwork","feeCurrencies":[{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.05}}],"stakeCurrency":{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"darchub","currencies":[{"coinDenom":"darc","coinMinimalDenom":"udarc","coinDecimals":6}],"rest":"https://api-konstellation-ia.cosmosia.notional.ventures/","rpc":"https://rpc-konstellation-ia.cosmosia.notional.ventures/","bech32Config":{"bech32PrefixAccAddr":"darc","bech32PrefixAccPub":"darcpub","bech32PrefixValAddr":"darcvaloper","bech32PrefixValPub":"darcvaloperpub","bech32PrefixConsAddr":"darcvalcons","bech32PrefixConsPub":"darcvalconspub"},"chainName":"konstellation","feeCurrencies":[{"coinDenom":"darc","coinMinimalDenom":"udarc","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.001,"high":0.01}}],"stakeCurrency":{"coinDenom":"darc","coinMinimalDenom":"udarc","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"luwak-1","currencies":[{"coinDenom":"XKP","coinMinimalDenom":"ukopi","coinDecimals":6},{"coinDenom":"kUSD","coinMinimalDenom":"ukusd","coinDecimals":6},{"coinDenom":"ckUSD","coinMinimalDenom":"uckusd","coinDecimals":6},{"coinDenom":"cUSDC","coinMinimalDenom":"ucusdc","coinDecimals":6},{"coinDenom":"cUSDT.inj","coinMinimalDenom":"ucusdtinj","coinDecimals":6},{"coinDenom":"USDC","coinMinimalDenom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","coinDecimals":6},{"coinDenom":"USDT.inj","coinMinimalDenom":"ibc/D8A36AE90F20FE4843A8D249B1BCF0CCDDE35C4B605C8DED57BED20C639162D0","coinDecimals":6},{"coinDenom":"INJ","coinMinimalDenom":"ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255","coinDecimals":18},{"coinDenom":"Luna","coinMinimalDenom":"ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85","coinDecimals":6},{"coinDenom":"Atom","coinMinimalDenom":"ibc/25418646C017D377ADF3202FF1E43590D0DAE3346E594E8D78176A139A928F88","coinDecimals":6},{"coinDenom":"asusdtinj","coinMinimalDenom":"uasusdtinj","coinDecimals":6},{"coinDenom":"asUSDC","coinMinimalDenom":"uasusdc","coinDecimals":6}],"rest":"https://rest.kopi.money","rpc":"https://rpc.kopi.money","bech32Config":{"bech32PrefixAccAddr":"kopi","bech32PrefixAccPub":"kopipub","bech32PrefixValAddr":"kopivaloper","bech32PrefixValPub":"kopivaloperpub","bech32PrefixConsAddr":"kopivalcons","bech32PrefixConsPub":"kopivalconspub"},"chainName":"kopi","feeCurrencies":[{"coinDenom":"XKP","coinMinimalDenom":"ukopi","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"XKP","coinMinimalDenom":"ukopi","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kaiyo-1","currencies":[{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6},{"coinDenom":"usk","coinMinimalDenom":"factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk","coinDecimals":6},{"coinDenom":"qcKUJI","coinMinimalDenom":"factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt","coinDecimals":6},{"coinDenom":"ampKUJI","coinMinimalDenom":"factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI","coinDecimals":6},{"coinDenom":"mnta","coinMinimalDenom":"factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta","coinDecimals":6},{"coinDenom":"qcMNTA","coinMinimalDenom":"factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt","coinDecimals":6},{"coinDenom":"ampMNTA","coinMinimalDenom":"factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA","coinDecimals":6},{"coinDenom":"wink","coinMinimalDenom":"factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink","coinDecimals":6},{"coinDenom":"blend","coinMinimalDenom":"factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8","coinDecimals":6},{"coinDenom":"fuzn","coinMinimalDenom":"factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn","coinDecimals":6},{"coinDenom":"rfuzn","coinMinimalDenom":"factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn","coinDecimals":6},{"coinDenom":"yfuzn","coinMinimalDenom":"factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn","coinDecimals":6},{"coinDenom":"qcFUZN","coinMinimalDenom":"factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt","coinDecimals":6},{"coinDenom":"qcAQLA","coinMinimalDenom":"factory/kujira1d9fmsgvu3yvvppvqech2s3dhrqdm5ukngcf82ghcl70edfpwcrlsu6yr0u/urcpt","coinDecimals":6},{"coinDenom":"AQLA","coinMinimalDenom":"factory/kujira1xe0awk5planmtsmjel5xtx2hzhqdw5p8z66yqd/uaqla","coinDecimals":6},{"coinDenom":"nstk","coinMinimalDenom":"factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk","coinDecimals":6},{"coinDenom":"local","coinMinimalDenom":"factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local","coinDecimals":6},{"coinDenom":"PLNK","coinMinimalDenom":"factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk","coinDecimals":6},{"coinDenom":"sol","coinMinimalDenom":"ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3","coinDecimals":8},{"coinDenom":"evmos","coinMinimalDenom":"ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10","coinDecimals":18},{"coinDenom":"avax","coinMinimalDenom":"ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F","coinDecimals":6},{"coinDenom":"cmdx","coinMinimalDenom":"ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07","coinDecimals":6},{"coinDenom":"juno","coinMinimalDenom":"ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7","coinDecimals":18},{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986","coinDecimals":6},{"coinDenom":"stars","coinMinimalDenom":"ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602","coinDecimals":6},{"coinDenom":"scrt","coinMinimalDenom":"ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5","coinDecimals":6},{"coinDenom":"stkatom","coinMinimalDenom":"ibc/086C1B2E9E611F23D3C9159C858D3F4C6A911D348DFB916A11AE306A865A77A8","coinDecimals":6},{"coinDenom":"bKUJI","coinMinimalDenom":"factory/kujira15e8q5wzlk5k38gjxlhse3vu6vqnafysncx2ltexd6y9gx50vuj2qpt7dgv/boneKuji","coinDecimals":6},{"coinDenom":"rstk","coinMinimalDenom":"ibc/82B298F9E74A9A211C55C67C7AB0C790836BD43672D5DD830F7AE2C5D010AD7D","coinDecimals":6},{"coinDenom":"xusk","coinMinimalDenom":"factory/kujira1w4yaama77v53fp0f9343t9w2f932z526vj970n2jv5055a7gt92sxgwypf/urcpt","coinDecimals":6},{"coinDenom":"xmnta","coinMinimalDenom":"factory/kujira1ya42knfcsvy6eztegsn3hz7zpjvhzn05ge85xa2dy2zrjeul9hnspp3c06/urcpt","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"ibc/0306D6B66EAA2EDBB7EAD23C0EC9DDFC69BB43E80B398035E90FBCFEF3FD1A87","coinDecimals":6},{"coinDenom":"wbtc.axl","coinMinimalDenom":"ibc/301DAF9CB0A9E247CD478533EF0E21F48FF8118C4A51F77C8BC3EB70E5566DBC","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/F97BDCE220CCB52139C73066E36C45EC7EDCEEF1DAFF891A34F4FBA195A2E6E8","coinDecimals":6},{"coinDenom":"lp-dot-mnta","coinMinimalDenom":"factory/kujira10qyzrqaza0f593cmnl4sc3p3nhqqakn9j56d899u723pznxpn8us6cypuw/ulp","coinDecimals":6},{"coinDenom":"lp-shd-mnta","coinMinimalDenom":"factory/kujira12tpc335t72qtrjh64ccdydzsr9qtswkqn72cyvfj4d5hmtgynphsv4xjtu/ulp","coinDecimals":6},{"coinDenom":"lp-dydx-mnta","coinMinimalDenom":"factory/kujira13g2eelkf9q4md4xx52ylqvlgpccn50f2vyu05eazufd2g4jatmhq2425pq/ulp","coinDecimals":6},{"coinDenom":"lp-wavax-mnta","coinMinimalDenom":"factory/kujira15pk8c09vcsgsdq4xlh2qfqxtu2r8pgdy7nggkqj8p3h2phke80pqwnvtzk/ulp","coinDecimals":6},{"coinDenom":"lp-cheq-mnta","coinMinimalDenom":"factory/kujira15w6jhxsv924mn9cfr0qg9z36hltmw4rzd68x40d9re6hzyhslumqjw9zqd/ulp","coinDecimals":6},{"coinDenom":"lp-fuzn-mnta","coinMinimalDenom":"factory/kujira1622xuv8unv22xzazljvqh8uukcdz3yzmrp6axgerh7vxg4kum5tqcwcqmv/ulp","coinDecimals":6},{"coinDenom":"lp-somm-mnta","coinMinimalDenom":"factory/kujira17djzq5x5e5zm9q9zlp6dtxdt9p8q2zvj0qtmjs0wrxm5g9e2vf5q9d6y2t/ulp","coinDecimals":6},{"coinDenom":"lp-weth-mnta","coinMinimalDenom":"factory/kujira17x2v39aut0paj5d6wc5jxvqqxrdhy9kvca4y5xn6vsfpsxkgc6gq7n4tg0/ulp","coinDecimals":6},{"coinDenom":"lp-ntrn-mnta","coinMinimalDenom":"factory/kujira18lhugzap20ndlqr5j2p86yk4pxpe9jjuac05z0ypxuwn3mm5vjhsjh4etr/ulp","coinDecimals":6},{"coinDenom":"lp-wftm-mnta","coinMinimalDenom":"factory/kujira18mveas6xseaqu3fmukwv2ac6mp4hszk08lvyamedytjs0kxm42yqs9v89x/ulp","coinDecimals":6},{"coinDenom":"lp-stars-mnta","coinMinimalDenom":"factory/kujira1av284rnqh6s0l2lwdqgpgz8wuva3wh9lkmlsupjd9escn5v4fels6kwc7v/ulp","coinDecimals":6},{"coinDenom":"lp-tia-mnta","coinMinimalDenom":"factory/kujira1cpdyhrkwdnz38u45el3zq7007at9dm6h05tc36zpxvs6vrdwzrrskt0tgg/ulp","coinDecimals":6},{"coinDenom":"lp-sol-mnta","coinMinimalDenom":"factory/kujira1eqd96322ec258w7k9n9cfqkusrlvzwv38jkph3qs720egdv0epmq70j2zl/ulp","coinDecimals":6},{"coinDenom":"lp-dym-mnta","coinMinimalDenom":"factory/kujira1fg7wmsde7ygw3pm6hqmd29cdvp947anajmunsvk0guvjta3md25qdqk4fw/ulp","coinDecimals":6},{"coinDenom":"lp-akt-mnta","coinMinimalDenom":"factory/kujira1gnftck9586x0nhsqsj99k9zednl6tx4kezu9hpph0u6jtqnafpyqxha3me/ulp","coinDecimals":6},{"coinDenom":"lp-link-mnta","coinMinimalDenom":"factory/kujira1gnvja05kkmpeh9dnxl0c2p4sde7fpsy2r44njzyqgpsf72nqs78q3gzpzc/ulp","coinDecimals":6},{"coinDenom":"lp-wtao-mnta","coinMinimalDenom":"factory/kujira1gz2kvfw7hpds9fvygwkj64znl3a9pw697g77cspcq5y4vj3ru45s7qc0rd/ulp","coinDecimals":6},{"coinDenom":"lp-mnta-kuji","coinMinimalDenom":"factory/kujira1h75predtjdm2e7u8cuvqs3usc6xs2mxlkcr20zsshvw3qap25frsr4z949/ulp","coinDecimals":6},{"coinDenom":"lp-axl-mnta","coinMinimalDenom":"factory/kujira1h929g9e9vxhc5y8v7uexdrncacxdatjupr67velewafwepfyfaaq6s7l3v/ulp","coinDecimals":6},{"coinDenom":"lp-atom-mnta","coinMinimalDenom":"factory/kujira1h9f3k54j060pzlnea8ep8qfymsmwl5yhwc5hqept5p2esqzve7tq2ghnm4/ulp","coinDecimals":6},{"coinDenom":"lp-arb-mnta","coinMinimalDenom":"factory/kujira1kc90tgn4ucvdv4c9xycktanwz2lna0nfel6244ylqjvhaetfntusnmyu3d/ulp","coinDecimals":6},{"coinDenom":"lp-whale-mnta","coinMinimalDenom":"factory/kujira1jsjygyj8hwa4f0p9wwgct4yzmzzexe5x5u6l40l7ty2qzwwwsemqavhk3x/ulp","coinDecimals":6},{"coinDenom":"lp-scrt-mnta","coinMinimalDenom":"factory/kujira1p7w9ncnnme9yzzhrvzv0hnsa5u5ga06v0ckt7lq9yfap04hc5k9sn2vf6w/ulp","coinDecimals":6},{"coinDenom":"lp-wsteth-mnta","coinMinimalDenom":"factory/kujira1qx3hcr297qmgjt5f6u9peldf4phxqufvmew8d3eey3ns29e8qp3snj6jfu/ulp","coinDecimals":6},{"coinDenom":"lp-wmatic-mnta","coinMinimalDenom":"factory/kujira1smfdnww47xav4nn849xphku3gk3xp7a24fk533dce8masnsz4v8quklajx/ulp","coinDecimals":6},{"coinDenom":"lp-uni-mnta","coinMinimalDenom":"factory/kujira1t4mr2xt4ky4mfwcy752chzlquam3hzs44mt8vwyec8mvypmzxu5s90vamt/ulp","coinDecimals":6},{"coinDenom":"lp-yieldeth-mnta","coinMinimalDenom":"factory/kujira1u8dluwa4a83q7anz0cgpmma605r07a06f0789ajcl8l0xjrplqss005cgn/ulp","coinDecimals":6},{"coinDenom":"lp-wbtc-mnta","coinMinimalDenom":"factory/kujira1vj39mdwekxznxxa97fv5gt957cghfdqhwju8fdv5ysu0x6vsyhps4zmqjl/ulp","coinDecimals":6},{"coinDenom":"lp-paxg-mnta","coinMinimalDenom":"factory/kujira1vqdyup9zxxl9gqy5hwh593vvuc84lstldj7qzt7fylf3q3e3uemqlwpg9y/ulp","coinDecimals":6},{"coinDenom":"lp-wbnb-mnta","coinMinimalDenom":"factory/kujira1y24jwsv84lnuv5j78qeqz5ujjpd058qsft7wfc0nk9jvycugm32sqnq53d/ulp","coinDecimals":6},{"coinDenom":"lp-osmo-mnta","coinMinimalDenom":"factory/kujira1ygperwf0dc9ng2jffj0pwnnray3rscn9el6d78qjtt25qwgqukqszmdwtv/ulp","coinDecimals":6},{"coinDenom":"lp-inj-mnta","coinMinimalDenom":"factory/kujira1znx048dcc6arqfw6kpckl0k4ts2h7cdx20nk22wz2cxh5vle3wxqknk238/ulp","coinDecimals":6},{"coinDenom":"lp-stosmo-osmo","coinMinimalDenom":"factory/kujira18sek950cg92gd0kvpj67dfg6p7kee6hzw92etcf2jgufr3mttvaslt5sal/ulp","coinDecimals":6},{"coinDenom":"lp-wsteth-weth","coinMinimalDenom":"factory/kujira1lyyeyuw4qgan6nz45thw2m0nmxa457uz7cp9dqw5d9a0h7ccek7qavkm6g/ulp","coinDecimals":6},{"coinDenom":"lp-qcmnta-mnta","coinMinimalDenom":"factory/kujira1ul00h0a2kgcg9x2yfa86wj9qguhyv7jmpjpw6ztt24j9mn9xjw3slawyc8/ulp","coinDecimals":6},{"coinDenom":"lp-ampmnta-mnta","coinMinimalDenom":"factory/kujira1vj36ntsqd3msc69lxldcv9dd50jngknmael9e07rz4fpn5kyq0jsglvz2m/ulp","coinDecimals":6},{"coinDenom":"lp-weth-usk","coinMinimalDenom":"factory/kujira1n648rfqqvjxm6c7zgfnfqay85rkapgg0z7da9pnmjazz5m5d7l0qxdtq90/ulp","coinDecimals":6},{"coinDenom":"nami","coinMinimalDenom":"factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/unami","coinDecimals":6},{"coinDenom":"nausd","coinMinimalDenom":"factory/kujira18thffdpuz8tm3mwwun4uhks8a2v7ye0jmw3fllqhklma82lqkpms20gh9c/unausd","coinDecimals":6},{"coinDenom":"mctest","coinMinimalDenom":"factory/kujira1mn2pgkggquqm2m44zqlaq29jxwtad53qkv4xy4/MCTest","coinDecimals":6},{"coinDenom":"auto","coinMinimalDenom":"factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/uauto","coinDecimals":6},{"coinDenom":"qcDYDX","coinMinimalDenom":"factory/kujira1seqq2ekz47uqayshqkg5wqx5vcyrmtwcl9vscnwy2gjh7mz5aapsdfxsd5/urcpt","coinDecimals":18},{"coinDenom":"rkuji","coinMinimalDenom":"factory/kujira1tsekaqv9vmem0zwskmf90gpf0twl6k57e8vdnq/urkuji","coinDecimals":6},{"coinDenom":"lp-atom-usk","coinMinimalDenom":"factory/kujira1yncutssgh2vj9scaymtteg949hwcft07c6qmgarxnaf04yesq3jsn6g2uv/ulp","coinDecimals":6},{"coinDenom":"lp-weth-usk","coinMinimalDenom":"factory/kujira1xwvvjq5w0887v2vz4e83kcu38s0jq8q8lqa3z5hxm295q7y4uejqp24la7/ulp","coinDecimals":6},{"coinDenom":"lp-sol-usk","coinMinimalDenom":"factory/kujira1vcmh95lje5dln782pxckma65eujs4sv960w22whgsp7a2ajsc6lsvnlhgd/ulp","coinDecimals":6},{"coinDenom":"lp-weth-usdc","coinMinimalDenom":"factory/kujira1n4jfv39hzv2dtshzv6gj4hp8rkdy5rrsr7l84lc3x9cahz4v0umq24q3lu/ulp","coinDecimals":6},{"coinDenom":"lp-dydx-usk","coinMinimalDenom":"factory/kujira1lctu7hy65466fxw3tcqf8w45zwrpwgd9chvjqpgyfgcr73k774nsv4ya6t/ulp","coinDecimals":6},{"coinDenom":"lp-akt-usdc","coinMinimalDenom":"factory/kujira1g5st8p6qdyf23zzerjcxgpr2r7a9wzdyaymu79ngg6ve3m9v3n4sdetv4e/ulp","coinDecimals":6},{"coinDenom":"lp-wbtc-usk","coinMinimalDenom":"factory/kujira1d7jt9zwlnpvf7sskfm57c77pm9mtwczqre75t9k80ees0v523kasss9htj/ulp","coinDecimals":6},{"coinDenom":"lp-wbtc-wbtc","coinMinimalDenom":"factory/kujira1c4e2zk4z0anrufjh64gxtse6e4s5g52fe2ja8ke3r9e0pvpd0z0qws8zsp/ulp","coinDecimals":8},{"coinDenom":"lp-inj-usdc","coinMinimalDenom":"factory/kujira14jwhlsg3az20f7keav2axxj205fyv5j8mp6rv5svqwwll3ls9slq6zwleg/ulp","coinDecimals":6},{"coinDenom":"lp-atom-usdc","coinMinimalDenom":"factory/kujira13my0qtm2a8jp0wg8uzg49tyn4zcea8scy3dc7ghn8z9eys08yzls49ymdm/ulp","coinDecimals":6},{"coinDenom":"lp-mnta-usdc","coinMinimalDenom":"factory/kujira1742pe93mxm0cwqjxgxh6th9sspdrluqvw9pha9q69eeatue4x5xs0wdq2d/ulp","coinDecimals":6},{"coinDenom":"lp-mnta-usk","coinMinimalDenom":"factory/kujira1xtaadmh06s8u3z5mypp8qayhrnxgga5wr88s7raram4rz8zu37hquf82wk/ulp","coinDecimals":6},{"coinDenom":"boon","coinMinimalDenom":"factory/kujira1gewwffxhaygxe8tacd3z9h4uyvpd2h7v9qtfmaw8jjhwalxxpd7qlqld4m/boon","coinDecimals":6},{"coinDenom":"yum","coinMinimalDenom":"ibc/507BE7E33F06026652F519AD4D36716251F2D34DF04514A905D3B19A7D8130F7","coinDecimals":18}],"rest":"https://lcd.kaiyo.kujira.setten.io","rpc":"https://rpc.kaiyo.kujira.setten.io","bech32Config":{"bech32PrefixAccAddr":"kujira","bech32PrefixAccPub":"kujirapub","bech32PrefixValAddr":"kujiravaloper","bech32PrefixValPub":"kujiravaloperpub","bech32PrefixConsAddr":"kujiravalcons","bech32PrefixConsPub":"kujiravalconspub"},"chainName":"kujira","feeCurrencies":[{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6,"gasPriceStep":{"low":0.0034,"average":0.0051,"high":0.00681}},{"coinDenom":"usk","coinMinimalDenom":"factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk","coinDecimals":6,"gasPriceStep":{"low":0.01186,"average":0.01779,"high":0.02372}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F","coinDecimals":6,"gasPriceStep":{"low":0.0119,"average":0.01785,"high":0.02379}},{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6,"gasPriceStep":{"low":0.00129,"average":0.00193,"high":0.00258}},{"coinDenom":"osmo","coinMinimalDenom":"ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23","coinDecimals":6,"gasPriceStep":{"low":0.01795,"average":0.02692,"high":0.0359}},{"coinDenom":"cmdx","coinMinimalDenom":"ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07","coinDecimals":6,"gasPriceStep":{"low":0.65943,"average":0.98915,"high":1.31887}},{"coinDenom":"evmos","coinMinimalDenom":"ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10","coinDecimals":18,"gasPriceStep":{"low":160416396197,"average":240624594296,"high":320832792394}},{"coinDenom":"juno","coinMinimalDenom":"ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5","coinDecimals":6,"gasPriceStep":{"low":0.02689,"average":0.04034,"high":0.05379}},{"coinDenom":"luna","coinMinimalDenom":"ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986","coinDecimals":6,"gasPriceStep":{"low":0.01495,"average":0.02243,"high":0.02991}},{"coinDenom":"scrt","coinMinimalDenom":"ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5","coinDecimals":6,"gasPriceStep":{"low":0.03139,"average":0.04709,"high":0.06278}},{"coinDenom":"stars","coinMinimalDenom":"ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602","coinDecimals":6,"gasPriceStep":{"low":0.90403,"average":1.35605,"high":1.80806}},{"coinDenom":"avax","coinMinimalDenom":"ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2","coinDecimals":18,"gasPriceStep":{"low":559196837,"average":838795256,"high":1118393675}},{"coinDenom":"weth","coinMinimalDenom":"ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7","coinDecimals":18,"gasPriceStep":{"low":5772801,"average":8659201,"high":11545602}},{"coinDenom":"mnta","coinMinimalDenom":"factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta","coinDecimals":6,"gasPriceStep":{"low":0.01807,"average":0.02711,"high":0.03615}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9","coinDecimals":6,"gasPriceStep":{"low":0.01194,"average":0.01792,"high":0.02389}},{"coinDenom":"sol","coinMinimalDenom":"ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3","coinDecimals":8,"gasPriceStep":{"low":0.00019,"average":0.00029,"high":0.00039}}],"stakeCurrency":{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kyve-1","currencies":[{"coinDenom":"kyve","coinMinimalDenom":"ukyve","coinDecimals":6}],"rest":"https://api.kyve.network","rpc":"https://rpc.kyve.network","bech32Config":{"bech32PrefixAccAddr":"kyve","bech32PrefixAccPub":"kyvepub","bech32PrefixValAddr":"kyvevaloper","bech32PrefixValPub":"kyvevaloperpub","bech32PrefixConsAddr":"kyvevalcons","bech32PrefixConsPub":"kyvevalconspub"},"chainName":"kyve","feeCurrencies":[{"coinDenom":"kyve","coinMinimalDenom":"ukyve","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.03,"high":0.06}}],"stakeCurrency":{"coinDenom":"kyve","coinMinimalDenom":"ukyve","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"lambda_92000-1","currencies":[{"coinDenom":"lamb","coinMinimalDenom":"ulamb","coinDecimals":18}],"rest":"https://rest.lambda.im","rpc":"https://rpc.lambda.im","bech32Config":{"bech32PrefixAccAddr":"lamb","bech32PrefixAccPub":"lambpub","bech32PrefixValAddr":"lambvaloper","bech32PrefixValPub":"lambvaloperpub","bech32PrefixConsAddr":"lambvalcons","bech32PrefixConsPub":"lambvalconspub"},"chainName":"lambda","feeCurrencies":[{"coinDenom":"lamb","coinMinimalDenom":"ulamb","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"lamb","coinMinimalDenom":"ulamb","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"lava-mainnet-1","currencies":[{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6}],"rest":"https://lava-api.finteh.org:443","rpc":"https://lava.tendermintrpc.lava.build","bech32Config":{"bech32PrefixAccAddr":"lava@","bech32PrefixAccPub":"lava@pub","bech32PrefixValAddr":"lava@valoper","bech32PrefixValPub":"lava@valoperpub","bech32PrefixConsAddr":"lava@valcons","bech32PrefixConsPub":"lava@valconspub"},"chainName":"lava","feeCurrencies":[{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6,"gasPriceStep":{"low":0.00002,"average":0.025,"high":0.05}}],"stakeCurrency":{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"likecoin-mainnet-2","currencies":[{"coinDenom":"like","coinMinimalDenom":"nanolike","coinDecimals":9}],"rest":"https://mainnet-node.like.co","rpc":"https://mainnet-node.like.co/rpc/","bech32Config":{"bech32PrefixAccAddr":"like","bech32PrefixAccPub":"likepub","bech32PrefixValAddr":"likevaloper","bech32PrefixValPub":"likevaloperpub","bech32PrefixConsAddr":"likevalcons","bech32PrefixConsPub":"likevalconspub"},"chainName":"likecoin","feeCurrencies":[{"coinDenom":"like","coinMinimalDenom":"nanolike","coinDecimals":9,"gasPriceStep":{"low":1000,"average":10000,"high":1000000}}],"stakeCurrency":{"coinDenom":"like","coinMinimalDenom":"nanolike","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"logos_7002-1","currencies":[{"coinDenom":"LYT","coinMinimalDenom":"aLYT","coinDecimals":18}],"rest":"https://logos.provable.dev/rest/","rpc":"https://logos-rpc.provable.dev:443/","bech32Config":{"bech32PrefixAccAddr":"logos","bech32PrefixAccPub":"logospub","bech32PrefixValAddr":"logosvaloper","bech32PrefixValPub":"logosvaloperpub","bech32PrefixConsAddr":"logosvalcons","bech32PrefixConsPub":"logosvalconspub"},"chainName":"logos","feeCurrencies":[{"coinDenom":"LYT","coinMinimalDenom":"aLYT","coinDecimals":18}],"stakeCurrency":{"coinDenom":"LYT","coinMinimalDenom":"aLYT","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"loop-1","currencies":[{"coinDenom":"token","coinMinimalDenom":"token","coinDecimals":0},{"coinDenom":"poa","coinMinimalDenom":"upoa","coinDecimals":6}],"rest":"https://api.loop.pfc.zone/","rpc":"https://rpc.loop.pfc.zone/","bech32Config":{"bech32PrefixAccAddr":"loop","bech32PrefixAccPub":"looppub","bech32PrefixValAddr":"loopvaloper","bech32PrefixValPub":"loopvaloperpub","bech32PrefixConsAddr":"loopvalcons","bech32PrefixConsPub":"loopvalconspub"},"chainName":"loop","feeCurrencies":[{"coinDenom":"token","coinMinimalDenom":"token","coinDecimals":0}],"stakeCurrency":{"coinDenom":"token","coinMinimalDenom":"token","coinDecimals":0},"bip44":{"coinType":118}},{"chainId":"loyal-main-02","currencies":[{"coinDenom":"lyl","coinMinimalDenom":"ulyl","coinDecimals":6}],"rest":"https://lcd-main.joinloyal.io/","rpc":"https://rpc-main.joinloyal.io/","bech32Config":{"bech32PrefixAccAddr":"loyal","bech32PrefixAccPub":"loyalpub","bech32PrefixValAddr":"loyalvaloper","bech32PrefixValPub":"loyalvaloperpub","bech32PrefixConsAddr":"loyalvalcons","bech32PrefixConsPub":"loyalvalconspub"},"chainName":"loyal","feeCurrencies":[{"coinDenom":"lyl","coinMinimalDenom":"ulyl","coinDecimals":6}],"stakeCurrency":{"coinDenom":"lyl","coinMinimalDenom":"ulyl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"lum-network-1","currencies":[{"coinDenom":"lum","coinMinimalDenom":"ulum","coinDecimals":6}],"rest":"https://rest.node0.mainnet.lum.network","rpc":"https://rpc.node0.mainnet.lum.network","bech32Config":{"bech32PrefixAccAddr":"lum","bech32PrefixAccPub":"lumpub","bech32PrefixValAddr":"lumvaloper","bech32PrefixValPub":"lumvaloperpub","bech32PrefixConsAddr":"lumvalcons","bech32PrefixConsPub":"lumvalconspub"},"chainName":"lumnetwork","feeCurrencies":[{"coinDenom":"lum","coinMinimalDenom":"ulum","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"lum","coinMinimalDenom":"ulum","coinDecimals":6},"bip44":{"coinType":880}},{"chainId":"mande_18071918-1","currencies":[{"coinDenom":"mand","coinMinimalDenom":"amand","coinDecimals":18}],"rest":"https://mande-mainnet-rest.public.blastapi.io","rpc":"https://mande-mainnet-tendermint.public.blastapi.io","bech32Config":{"bech32PrefixAccAddr":"mande","bech32PrefixAccPub":"mandepub","bech32PrefixValAddr":"mandevaloper","bech32PrefixValPub":"mandevaloperpub","bech32PrefixConsAddr":"mandevalcons","bech32PrefixConsPub":"mandevalconspub"},"chainName":"mande","feeCurrencies":[{"coinDenom":"mand","coinMinimalDenom":"amand","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":20000000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"mand","coinMinimalDenom":"amand","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"mantra-1","currencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6}],"rest":"https://api.mantrachain.io","rpc":"https://rpc.mantrachain.io","bech32Config":{"bech32PrefixAccAddr":"mantra","bech32PrefixAccPub":"mantrapub","bech32PrefixValAddr":"mantravaloper","bech32PrefixValPub":"mantravaloperpub","bech32PrefixConsAddr":"mantravalcons","bech32PrefixConsPub":"mantravalconspub"},"chainName":"mantrachain","feeCurrencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.03}}],"stakeCurrency":{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mars-1","currencies":[{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6}],"rest":"https://rest.marsprotocol.io:443","rpc":"https://rpc.marsprotocol.io:443","bech32Config":{"bech32PrefixAccAddr":"mars","bech32PrefixAccPub":"marspub","bech32PrefixValAddr":"marsvaloper","bech32PrefixValPub":"marsvaloperpub","bech32PrefixConsAddr":"marsvalcons","bech32PrefixConsPub":"marsvalconspub"},"chainName":"mars","feeCurrencies":[{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6}],"stakeCurrency":{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"medasdigital-2","currencies":[{"coinDenom":"medas","coinMinimalDenom":"umedas","coinDecimals":6}],"rest":"https://lcd.medas-digital.io:1317/","rpc":"https://rpc.medas-digital.io:26657/","bech32Config":{"bech32PrefixAccAddr":"medas","bech32PrefixAccPub":"medaspub","bech32PrefixValAddr":"medasvaloper","bech32PrefixValPub":"medasvaloperpub","bech32PrefixConsAddr":"medasvalcons","bech32PrefixConsPub":"medasvalconspub"},"chainName":"medasdigital","feeCurrencies":[{"coinDenom":"medas","coinMinimalDenom":"umedas","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.4}}],"stakeCurrency":{"coinDenom":"medas","coinMinimalDenom":"umedas","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"meme-1","currencies":[{"coinDenom":"meme","coinMinimalDenom":"umeme","coinDecimals":6},{"coinDenom":"planq","coinMinimalDenom":"ibc/FACC1CE598366EA01D86CF1CBE05F1A6C7511F673E91DEFF04342ED8DEFE3A60","coinDecimals":18}],"rest":"https://api-meme-1.meme.sx/","rpc":"https://rpc-meme-1.meme.sx/","bech32Config":{"bech32PrefixAccAddr":"meme","bech32PrefixAccPub":"memepub","bech32PrefixValAddr":"memevaloper","bech32PrefixValPub":"memevaloperpub","bech32PrefixConsAddr":"memevalcons","bech32PrefixConsPub":"memevalconspub"},"chainName":"meme","feeCurrencies":[{"coinDenom":"meme","coinMinimalDenom":"umeme","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.035,"high":0.045}}],"stakeCurrency":{"coinDenom":"meme","coinMinimalDenom":"umeme","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"migaloo-1","currencies":[{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6},{"coinDenom":"ampWHALE","coinMinimalDenom":"factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE","coinDecimals":6},{"coinDenom":"bWHALE","coinMinimalDenom":"factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale","coinDecimals":6},{"coinDenom":"fable","coinMinimalDenom":"factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable","coinDecimals":6},{"coinDenom":"bluna","coinMinimalDenom":"ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708","coinDecimals":6},{"coinDenom":"RAC","coinMinimalDenom":"factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac","coinDecimals":6},{"coinDenom":"ASH","coinMinimalDenom":"factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/86A25A8A327164AE7C68A29B6ED745C7EEDC36E260A6666F33A6407BECEC4737","coinDecimals":6},{"coinDenom":"mUSDC","coinMinimalDenom":"cw20:migaloo10nucfm2zqgzqmy7y7ls398t58pjt9cwjsvpy88y2nvamtl34rgmqt5em2v","coinDecimals":6},{"coinDenom":"GUPPY","coinMinimalDenom":"factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy","coinDecimals":6},{"coinDenom":"OPHIR","coinMinimalDenom":"factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir","coinDecimals":6},{"coinDenom":"SHARK","coinMinimalDenom":"factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark","coinDecimals":6},{"coinDenom":"lsdSHARK","coinMinimalDenom":"factory/migaloo1p3aj9f09d7c4jxhgue0hpdpw370j6gzc59nxxx6l8d0gc9f9rfwsdwetus/lsdSHARK","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/4627AD2524E3E0523047E35BB76CC90E37D9D57ACF14F0FCBCEB2480705F3CB8","coinDecimals":6},{"coinDenom":"Rakoff","coinMinimalDenom":"ibc/44C29C91F202E20C8E28DFB1FA89B725C54171CD77B8948836C72E7A97E4A018","coinDecimals":6},{"coinDenom":"gash","coinMinimalDenom":"factory/migaloo1r9x8fz4alekzr78k42rpmr9unpa7egsldpqeynmwl2nfvzexue9sn8l5rg/gash","coinDecimals":6},{"coinDenom":"rstk","coinMinimalDenom":"factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk","coinDecimals":6},{"coinDenom":"frog","coinMinimalDenom":"ibc/B1BD4EF49A2E051EFC85E8C6A932B559CE62F9519E0E83BE29A8F0BDF89BD1D3","coinDecimals":6},{"coinDenom":"GRAC","coinMinimalDenom":"factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac","coinDecimals":6},{"coinDenom":"wind","coinMinimalDenom":"ibc/721B42229246EEDA7A656DB17E494127F91E84AD63E21852737628321892A928","coinDecimals":6},{"coinDenom":"shitmos","coinMinimalDenom":"ibc/0E1B883A15D5FCA533332CBAB1A672934C3936920399F2A3EB4F438E3EBAD0E9","coinDecimals":6},{"coinDenom":"ampGASH","coinMinimalDenom":"factory/migaloo1nsskhvvh0msm7d5ke2kfg24a8d4jecsnxd28s27h0uz5kf9ap60shlqmcl/ampGASH","coinDecimals":6},{"coinDenom":"SYN","coinMinimalDenom":"ibc/33E97105B5C1F48CB7D6400F4673F9B3699AC59EDB621CCCD57D5D480E0C83B6","coinDecimals":6},{"coinDenom":"DGN","coinMinimalDenom":"ibc/D8C6D71032EC7CC4C9CCD0FF709CF87D34A7311FE5491E70F7EDE2351D189C10","coinDecimals":6}],"rest":"https://migaloo-api.polkachu.com:443","rpc":"https://migaloo-rpc.polkachu.com:443","bech32Config":{"bech32PrefixAccAddr":"migaloo","bech32PrefixAccPub":"migaloopub","bech32PrefixValAddr":"migaloovaloper","bech32PrefixValPub":"migaloovaloperpub","bech32PrefixConsAddr":"migaloovalcons","bech32PrefixConsPub":"migaloovalconspub"},"chainName":"migaloo","feeCurrencies":[{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6,"gasPriceStep":{"low":1,"average":2,"high":3}}],"stakeCurrency":{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"milkyway","currencies":[{"coinDenom":"milk","coinMinimalDenom":"umilk","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6},{"coinDenom":"milkTIA","coinMinimalDenom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","coinDecimals":6},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0","coinDecimals":6}],"rest":"https://lcd.mainnet.milkyway.zone/","rpc":"https://rpc.mainnet.milkyway.zone/","bech32Config":{"bech32PrefixAccAddr":"milk","bech32PrefixAccPub":"milkpub","bech32PrefixValAddr":"milkvaloper","bech32PrefixValPub":"milkvaloperpub","bech32PrefixConsAddr":"milkvalcons","bech32PrefixConsPub":"milkvalconspub"},"chainName":"milkyway","feeCurrencies":[{"coinDenom":"milkTIA","coinMinimalDenom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}},{"coinDenom":"tia","coinMinimalDenom":"ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}}],"stakeCurrency":{"coinDenom":"milk","coinMinimalDenom":"umilk","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mtgbp-1","currencies":[{"coinDenom":"mtgbp","coinMinimalDenom":"mtgbp","coinDecimals":0}],"rest":"https://lcd.mtgbp.com","rpc":"https://rcp.mtgbp.com","bech32Config":{"bech32PrefixAccAddr":"mtgbp","bech32PrefixAccPub":"mtgbppub","bech32PrefixValAddr":"mtgbpvaloper","bech32PrefixValPub":"mtgbpvaloperpub","bech32PrefixConsAddr":"mtgbpvalcons","bech32PrefixConsPub":"mtgbpvalconspub"},"chainName":"mtgbp","feeCurrencies":[{"coinDenom":"mtgbp","coinMinimalDenom":"mtgbp","coinDecimals":0,"gasPriceStep":{"low":0.000001,"average":0.000005,"high":0.0001}}],"stakeCurrency":{"coinDenom":"mtgbp","coinMinimalDenom":"mtgbp","coinDecimals":0},"bip44":{"coinType":1179993441}},{"chainId":"mun-1","currencies":[{"coinDenom":"mun","coinMinimalDenom":"umun","coinDecimals":6}],"rest":"https://mainnet1.mun.money","rpc":"https://mainnet1rpc.mun.money","bech32Config":{"bech32PrefixAccAddr":"mun","bech32PrefixAccPub":"munpub","bech32PrefixValAddr":"munvaloper","bech32PrefixValPub":"munvaloperpub","bech32PrefixConsAddr":"munvalcons","bech32PrefixConsPub":"munvalconspub"},"chainName":"mun","feeCurrencies":[{"coinDenom":"mun","coinMinimalDenom":"umun","coinDecimals":6}],"stakeCurrency":{"coinDenom":"mun","coinMinimalDenom":"umun","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mythos_7001-1","currencies":[{"coinDenom":"MYT","coinMinimalDenom":"aMYT","coinDecimals":18}],"rest":"https://mythos.provable.dev/rest/","rpc":"https://mythos-rpc.provable.dev:443/","bech32Config":{"bech32PrefixAccAddr":"mythos","bech32PrefixAccPub":"mythospub","bech32PrefixValAddr":"mythosvaloper","bech32PrefixValPub":"mythosvaloperpub","bech32PrefixConsAddr":"mythosvalcons","bech32PrefixConsPub":"mythosvalconspub"},"chainName":"mythos","feeCurrencies":[{"coinDenom":"MYT","coinMinimalDenom":"aMYT","coinDecimals":18}],"stakeCurrency":{"coinDenom":"MYT","coinMinimalDenom":"aMYT","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"Neutaro-1","currencies":[{"coinDenom":"neutaro","coinMinimalDenom":"uneutaro","coinDecimals":6}],"rest":"https://api2.neutaro.io:443","rpc":"https://rpc2.neutaro.io:443","bech32Config":{"bech32PrefixAccAddr":"neutaro","bech32PrefixAccPub":"neutaropub","bech32PrefixValAddr":"neutarovaloper","bech32PrefixValPub":"neutarovaloperpub","bech32PrefixConsAddr":"neutarovalcons","bech32PrefixConsPub":"neutarovalconspub"},"chainName":"neutaro","feeCurrencies":[{"coinDenom":"neutaro","coinMinimalDenom":"uneutaro","coinDecimals":6}],"stakeCurrency":{"coinDenom":"neutaro","coinMinimalDenom":"uneutaro","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"neutron-1","currencies":[{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6},{"coinDenom":"axlusdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7","coinDecimals":6},{"coinDenom":"ASTROPEPE","coinMinimalDenom":"factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe","coinDecimals":6},{"coinDenom":"wstETH","coinMinimalDenom":"factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH","coinDecimals":18},{"coinDenom":"sat","coinMinimalDenom":"ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130","coinDecimals":18},{"coinDenom":"newt","coinMinimalDenom":"factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro","coinDecimals":6},{"coinDenom":"xASTRO","coinMinimalDenom":"factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO","coinDecimals":6},{"coinDenom":"astro.cw20","coinMinimalDenom":"ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A","coinDecimals":6},{"coinDenom":"corgi","coinMinimalDenom":"factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi","coinDecimals":6},{"coinDenom":"circus","coinMinimalDenom":"factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus","coinDecimals":6},{"coinDenom":"jimmy","coinMinimalDenom":"factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY","coinDecimals":6},{"coinDenom":"bad","coinMinimalDenom":"factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad","coinDecimals":6},{"coinDenom":"bitcosmos","coinMinimalDenom":"neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj","coinDecimals":6},{"coinDenom":"wtf","coinMinimalDenom":"neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf","coinDecimals":6},{"coinDenom":"nls","coinMinimalDenom":"ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972","coinDecimals":6},{"coinDenom":"goddard","coinMinimalDenom":"factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard","coinDecimals":6},{"coinDenom":"apollo","coinMinimalDenom":"factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO","coinDecimals":6},{"coinDenom":"newtroll","coinMinimalDenom":"factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll","coinDecimals":6},{"coinDenom":"retro","coinMinimalDenom":"factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro","coinDecimals":6},{"coinDenom":"goddard","coinMinimalDenom":"factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958","coinDecimals":6},{"coinDenom":"boy","coinMinimalDenom":"neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv","coinDecimals":6},{"coinDenom":"BADKID","coinMinimalDenom":"ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8","coinDecimals":6},{"coinDenom":"cartel","coinMinimalDenom":"factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel","coinDecimals":6},{"coinDenom":"ATOM1KLFG","coinMinimalDenom":"factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81","coinDecimals":6},{"coinDenom":"WEIRD","coinMinimalDenom":"factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD","coinDecimals":6},{"coinDenom":"takumi","coinMinimalDenom":"factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI","coinDecimals":6},{"coinDenom":"NBZ","coinMinimalDenom":"factory/neutron1a6ydq8urdj0gkvjw9e9e5y9r5ce2qegm9m4xufpt96kcm60kmuass0mqq4/nbz","coinDecimals":6},{"coinDenom":"MARS","coinMinimalDenom":"factory/neutron1ndu2wvkrxtane8se2tr48gv7nsm46y5gcqjhux/MARS","coinDecimals":6},{"coinDenom":"dATOM","coinMinimalDenom":"factory/neutron1k6hr0f83e7un2wjf29cspk7j69jrnskk65k3ek2nj9dztrlzpj6q00rtsa/udatom","coinDecimals":6},{"coinDenom":"SIN","coinMinimalDenom":"factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/sin","coinDecimals":6},{"coinDenom":"GOP","coinMinimalDenom":"factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/GOP","coinDecimals":6},{"coinDenom":"arena","coinMinimalDenom":"factory/neutron129ukd5cwahcjkccujz87rjemjukff7jf6sau72qrhva677xgz9gs4m4jeq/uarena","coinDecimals":6},{"coinDenom":"AXV","coinMinimalDenom":"cw20:neutron10dxyft3nv4vpxh5vrpn0xw8geej8dw3g39g7nqp8mrm307ypssksau29af","coinDecimals":6},{"coinDenom":"axlwbtc","coinMinimalDenom":"ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363","coinDecimals":8},{"coinDenom":"xATOM","coinMinimalDenom":"cw20:neutron1vjl4ze7gr32lar5s4fj776v70j4ml7mlt4aqln2hwgfhqjck8xwqfhx8vj","coinDecimals":6},{"coinDenom":"amATOM","coinMinimalDenom":"factory/neutron1shwxlkpdjd8h5wdtrykypwd2v62z5glr95yp0etdcspkkjwm5meq82ndxs/amatom","coinDecimals":6},{"coinDenom":"JSD","coinMinimalDenom":"factory/neutron1mdy5fhtwdjagp5eallsdhlx6gxylm8rxqk72wjzg6y5d5kt44ysqprkduw/JSD","coinDecimals":6}],"rest":"https://api.novel.remedy.tm.p2p.org","rpc":"https://rpc-voidara.neutron-1.neutron.org","bech32Config":{"bech32PrefixAccAddr":"neutron","bech32PrefixAccPub":"neutronpub","bech32PrefixValAddr":"neutronvaloper","bech32PrefixValPub":"neutronvaloperpub","bech32PrefixConsAddr":"neutronvalcons","bech32PrefixConsPub":"neutronvalconspub"},"chainName":"neutron","feeCurrencies":[{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6,"gasPriceStep":{"low":0.0053,"average":0.0053,"high":0.0053}},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6,"gasPriceStep":{"low":0.0008,"average":0.0008,"high":0.0008}},{"coinDenom":"axlusdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6,"gasPriceStep":{"low":0.008,"average":0.008,"high":0.008}},{"coinDenom":"wstETH","coinMinimalDenom":"factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH","coinDecimals":18,"gasPriceStep":{"low":2903231.6597,"average":2903231.6597,"high":2903231.6597}},{"coinDenom":"dydx","coinMinimalDenom":"ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130","coinDecimals":18,"gasPriceStep":{"low":2564102564.1026,"average":2564102564.1026,"high":2564102564.1026}},{"coinDenom":"tia","coinMinimalDenom":"ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7","coinDecimals":6,"gasPriceStep":{"low":0.0004,"average":0.0004,"high":0.0004}}],"stakeCurrency":{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cataclysm-1","currencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},{"coinDenom":"stNIBI","coinMinimalDenom":"tf/nibi1udqqx30cw8nwjxtl4l28ym9hhrp933zlq8dqxfjzcdhvl8y24zcqpzmh8m/ampNIBI","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6},{"coinDenom":"AXV","coinMinimalDenom":"tf/nibi1vetfuua65frvf6f458xgtjerf0ra7wwjykrdpuyn0jur5x07awxsfka0ga/axv","coinDecimals":6},{"coinDenom":"tf/nibi149m52kn7nvsg5nftvv4fh85scsavpdfxp5nr7zasz97dum89dp5qkyhy0t/uoprek","coinMinimalDenom":"tf/nibi149m52kn7nvsg5nftvv4fh85scsavpdfxp5nr7zasz97dum89dp5qkyhy0t/uoprek","coinDecimals":0},{"coinDenom":"tf/nibi1lp28kx3gz0prsztl024z730ufkg3alahaq3e7a6gae22nk0dqdvsyrrgqw/utestate","coinMinimalDenom":"tf/nibi1lp28kx3gz0prsztl024z730ufkg3alahaq3e7a6gae22nk0dqdvsyrrgqw/utestate","coinDecimals":0},{"coinDenom":"tf/nibi1xpp7yn0tce62ffattws3gpd6v0tah0mlevef3ej3r4pnfvsehcgqk3jvxq/NPP","coinMinimalDenom":"tf/nibi1xpp7yn0tce62ffattws3gpd6v0tah0mlevef3ej3r4pnfvsehcgqk3jvxq/NPP","coinDecimals":0}],"rest":"https://lcd.nibiru.fi","rpc":"https://rpc.nibiru.fi","bech32Config":{"bech32PrefixAccAddr":"nibi","bech32PrefixAccPub":"nibipub","bech32PrefixValAddr":"nibivaloper","bech32PrefixValPub":"nibivaloperpub","bech32PrefixConsAddr":"nibivalcons","bech32PrefixConsPub":"nibivalconspub"},"chainName":"nibiru","feeCurrencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"nim_1122-1","currencies":[{"coinDenom":"nim","coinMinimalDenom":"anim","coinDecimals":18}],"rest":"https://rest.mainnet.nimnet.tech","rpc":"https://rpc.mainnet.nimnet.tech","bech32Config":{"bech32PrefixAccAddr":"nim","bech32PrefixAccPub":"nimpub","bech32PrefixValAddr":"nimvaloper","bech32PrefixValPub":"nimvaloperpub","bech32PrefixConsAddr":"nimvalcons","bech32PrefixConsPub":"nimvalconspub"},"chainName":"nim","feeCurrencies":[{"coinDenom":"nim","coinMinimalDenom":"anim","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":20000000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"nim","coinMinimalDenom":"anim","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"noble-1","currencies":[{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":6},{"coinDenom":"frienzies","coinMinimalDenom":"ufrienzies","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6},{"coinDenom":"usdy","coinMinimalDenom":"ausdy","coinDecimals":18},{"coinDenom":"eure","coinMinimalDenom":"ueure","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/9BE17980291443F276406CFE7368A720676FC06D5805C1A23AE52C2534E705F1","coinDecimals":18}],"rest":"https://noble-api.polkachu.com","rpc":"https://noble-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"noble","bech32PrefixAccPub":"noblepub","bech32PrefixValAddr":"noblevaloper","bech32PrefixValPub":"noblevaloperpub","bech32PrefixConsAddr":"noblevalcons","bech32PrefixConsPub":"noblevalconspub"},"chainName":"noble","feeCurrencies":[{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.1,"high":0.2}},{"coinDenom":"atom","coinMinimalDenom":"ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.01,"high":0.02}}],"stakeCurrency":{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pirin-1","currencies":[{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/7FBDBEEEBA9C50C4BCDF7BF438EAB99E64360833D240B32655C96E319559E911","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/AF5559D128329B6C753F15481BEC26E533B847A471074703FA4903E7E6F61BA1","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/6CDD4663F2F09CD62285E2D45891FC149A3568E316CE3EBBE201A71A78A69388","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"ibc/FCFF8B19C61677F3B78E2A5AE3B4A34A8D23858D16905F253B8438B3AFD07FF8","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"ibc/A7C4A3FB19E88ABE60416125F9189DA680800F4CDD14E3C10C874E022BEFF04C","coinDecimals":18},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/84E70F4A34FB2DE135FD3A04FDDF53B7DA4206080AA785C8BAB7F8B26299A221","coinDecimals":8},{"coinDenom":"akt","coinMinimalDenom":"ibc/ADC63C00000CA75F909D2BE3ACB5A9980BED3A73B92746E0FCE6C67414055459","coinDecimals":6},{"coinDenom":"axl","coinMinimalDenom":"ibc/1B03A71B8E6F6EF424411DC9326A8E0D25D096E4D2616425CFAF2AF06F0FE717","coinDecimals":6},{"coinDenom":"juno","coinMinimalDenom":"ibc/4F3E83AB35529435E4BFEA001F5D935E7250133347C4E1010A9C77149EF0394C","coinDecimals":6},{"coinDenom":"evmos","coinMinimalDenom":"ibc/A59A9C955F1AB8B76671B00C1A0482C64A6590352944BB5880E5122358F7E1CE","coinDecimals":18},{"coinDenom":"stk/atom","coinMinimalDenom":"ibc/DAAD372DB7DD45BBCFA4DDD40CA9793E9D265D1530083AB41A8A0C53C3EBE865","coinDecimals":6},{"coinDenom":"scrt","coinMinimalDenom":"ibc/EA00FFF0335B07B5CD1530B7EB3D2C710620AE5B168C71AFF7B50532D690E107","coinDecimals":6},{"coinDenom":"cro","coinMinimalDenom":"ibc/E1BCC0F7B932E654B1A930F72B76C0678D55095387E2A4D8F00E941A8F82EE48","coinDecimals":8},{"coinDenom":"stars","coinMinimalDenom":"ibc/11E3CF372E065ACB1A39C531A3C7E7E03F60B5D0653AD2139D31128ACD2772B5","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6},{"coinDenom":"strd","coinMinimalDenom":"ibc/04CA9067228BB51F1C39A506DA00DF07E1496D8308DD21E8EF66AD6169FA722B","coinDecimals":6},{"coinDenom":"cudos","coinMinimalDenom":"ibc/BB9810E7FE8836311126F15BE0B20E7463189751840F8C3FEF3AC8F87D8AB7C8","coinDecimals":18},{"coinDenom":"allBTC","coinMinimalDenom":"ibc/E45CFCB959F4F6D1065B7033EE49A88E606E6AD82E75725219B3D68B0FA89987","coinDecimals":8},{"coinDenom":"allSOL","coinMinimalDenom":"ibc/762E1E45658845A12E214A91C3C05FDFC5951D60404FAADA225A369A96DCD9A9","coinDecimals":9},{"coinDenom":"ntrn","coinMinimalDenom":"ibc/3D6BC6E049CAEB905AC97031A42800588C58FB471EBDC7A3530FFCD0C3DC9E09","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/6DF8CF5C976851D152E2C7270B0AB25C4F9D64C0A46513A68D6CBB2662A98DF4","coinDecimals":18},{"coinDenom":"dATOM","coinMinimalDenom":"ibc/EB08474FFC49B6BB2F03F7D9B08697138F4DA53347CA1AB718C8BCFBB58C1B2B","coinDecimals":6}],"rest":"lcd.nolus.network","rpc":"rpc.nolus.network","bech32Config":{"bech32PrefixAccAddr":"nolus","bech32PrefixAccPub":"noluspub","bech32PrefixValAddr":"nolusvaloper","bech32PrefixValPub":"nolusvaloperpub","bech32PrefixConsAddr":"nolusvalcons","bech32PrefixConsPub":"nolusvalconspub"},"chainName":"nolus","feeCurrencies":[{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.05}}],"stakeCurrency":{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nomic-stakenet-3","currencies":[{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},{"coinDenom":"nbtc","coinMinimalDenom":"usat","coinDecimals":14}],"rest":"https://app.nomic.io:8443","rpc":"https://stakenet-rpc.nomic.io:2096","bech32Config":{"bech32PrefixAccAddr":"nomic","bech32PrefixAccPub":"nomicpub","bech32PrefixValAddr":"nomicvaloper","bech32PrefixValPub":"nomicvaloperpub","bech32PrefixConsAddr":"nomicvalcons","bech32PrefixConsPub":"nomicvalconspub"},"chainName":"nomic","feeCurrencies":[{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},{"coinDenom":"nbtc","coinMinimalDenom":"usat","coinDecimals":14}],"stakeCurrency":{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nyx","currencies":[{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6},{"coinDenom":"nym","coinMinimalDenom":"unym","coinDecimals":6}],"rest":"https://nym-api.polkachu.com/","rpc":"https://rpc.nymtech.net/","bech32Config":{"bech32PrefixAccAddr":"n","bech32PrefixAccPub":"npub","bech32PrefixValAddr":"nvaloper","bech32PrefixValPub":"nvaloperpub","bech32PrefixConsAddr":"nvalcons","bech32PrefixConsPub":"nvalconspub"},"chainName":"nyx","feeCurrencies":[{"coinDenom":"nym","coinMinimalDenom":"unym","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}},{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"odin-mainnet-freya","currencies":[{"coinDenom":"odin","coinMinimalDenom":"loki","coinDecimals":6},{"coinDenom":"geo","coinMinimalDenom":"mGeo","coinDecimals":6},{"coinDenom":"doki","coinMinimalDenom":"udoki","coinDecimals":6},{"coinDenom":"myrk","coinMinimalDenom":"umyrk","coinDecimals":6},{"coinDenom":"O9W","coinMinimalDenom":"mO9W","coinDecimals":6}],"rest":"https://api.odinprotocol.io","rpc":"https://rpc.odinprotocol.io","bech32Config":{"bech32PrefixAccAddr":"odin","bech32PrefixAccPub":"odinpub","bech32PrefixValAddr":"odinvaloper","bech32PrefixValPub":"odinvaloperpub","bech32PrefixConsAddr":"odinvalcons","bech32PrefixConsPub":"odinvalconspub"},"chainName":"odin","feeCurrencies":[{"coinDenom":"odin","coinMinimalDenom":"loki","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.06}}],"stakeCurrency":{"coinDenom":"odin","coinMinimalDenom":"loki","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"omniflixhub-1","currencies":[{"coinDenom":"flix","coinMinimalDenom":"uflix","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/A8C2D23A1E6F95DA4E48BA349667E322BD7A6C996D8A4AAE8BA72E190F3D1477","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B","coinDecimals":6},{"coinDenom":"ist","coinMinimalDenom":"ibc/43D3010F4CA111744AC8B68E460BC95E565C32928A267FA2B30609C04C10B274","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/AC4C84DD7D3732CFA95A420247FAD5179BE4F42E5635E2BF0A62C67E2E2FA4A9","coinDecimals":6},{"coinDenom":"akt","coinMinimalDenom":"ibc/6901B45BC2C5418ED8B3C3C9F9A641A3DAF2D234230AFA9DF32D8F9F9434721C","coinDecimals":6},{"coinDenom":"baddog","coinMinimalDenom":"ibc/9F28238BDB687A86681B30764BA1437E079C3565D04FDD7862055A83F7E5C630","coinDecimals":6},{"coinDenom":"ygata","coinMinimalDenom":"factory/omniflix1fwphj5p6qd8gtkehkzfgac38eur4uqzgz97uwvf6hsc0vjl004gqfj0xnv/ygata","coinDecimals":6}],"rest":"https://api.omniflix.nodestake.org","rpc":"https://omniflix-rpc.kingnodes.com","bech32Config":{"bech32PrefixAccAddr":"omniflix","bech32PrefixAccPub":"omniflixpub","bech32PrefixValAddr":"omniflixvaloper","bech32PrefixValPub":"omniflixvaloperpub","bech32PrefixConsAddr":"omniflixvalcons","bech32PrefixConsPub":"omniflixvalconspub"},"chainName":"omniflixhub","feeCurrencies":[{"coinDenom":"flix","coinMinimalDenom":"uflix","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.0025,"high":0.025}}],"stakeCurrency":{"coinDenom":"flix","coinMinimalDenom":"uflix","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"onex-mainnet-1","currencies":[{"coinDenom":"onex","coinMinimalDenom":"aonex","coinDecimals":18}],"rest":"https://rest.mainnet.onex.onomy.io","rpc":"https://rpc.mainnet.onex.onomy.io","bech32Config":{"bech32PrefixAccAddr":"onomy","bech32PrefixAccPub":"onomypub","bech32PrefixValAddr":"onomyvaloper","bech32PrefixValPub":"onomyvaloperpub","bech32PrefixConsAddr":"onomyvalcons","bech32PrefixConsPub":"onomyvalconspub"},"chainName":"onex","feeCurrencies":[{"coinDenom":"onex","coinMinimalDenom":"aonex","coinDecimals":18}],"stakeCurrency":{"coinDenom":"onex","coinMinimalDenom":"aonex","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"onomy-mainnet-1","currencies":[{"coinDenom":"nom","coinMinimalDenom":"anom","coinDecimals":18}],"rest":"https://rest-mainnet.onomy.io","rpc":"https://rpc-mainnet.onomy.io","bech32Config":{"bech32PrefixAccAddr":"onomy","bech32PrefixAccPub":"onomypub","bech32PrefixValAddr":"onomyvaloper","bech32PrefixValPub":"onomyvaloperpub","bech32PrefixConsAddr":"onomyvalcons","bech32PrefixConsPub":"onomyvalconspub"},"chainName":"onomy","feeCurrencies":[{"coinDenom":"nom","coinMinimalDenom":"anom","coinDecimals":18}],"stakeCurrency":{"coinDenom":"nom","coinMinimalDenom":"anom","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"Oraichain","currencies":[{"coinDenom":"ORAI","coinMinimalDenom":"orai","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/A2E2EEC9057A4A1C2C0A6A4C78B0239118DF5F278830F50B4A6BDD7A66506B78","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/9C4DCD21B48231D0BC2AC3D1B74A864746B37E4292694C93C617324250D002FC","coinDecimals":6},{"coinDenom":"inj","coinMinimalDenom":"ibc/49D820DFDE9F885D7081725A58202ABA2F465CAEE4AFBC683DFB79A8E013E83E","coinDecimals":6},{"coinDenom":"inj","coinMinimalDenom":"cw20:orai19rtmkk6sn4tppvjmp5d5zj6gfsdykrl5rw2euu5gwur3luheuuusesqn49","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"cw20:orai12hzjxfh77wl572gdzct2fxv2arxcwh6gykc7qh","coinDecimals":6},{"coinDenom":"airi","coinMinimalDenom":"cw20:orai10ldgzued6zjp0mkqwsv2mux3ml50l97c74x8sg","coinDecimals":6},{"coinDenom":"oraix","coinMinimalDenom":"cw20:orai1lus0f0rhx8s03gdllx2n6vhkmf0536dv57wfge","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"cw20:orai15un8msx3n5zf9ahlxmfeqd2kwa5wm0nrpxer304m9nd5q6qq0g6sku5pdd","coinDecimals":6},{"coinDenom":"kwt","coinMinimalDenom":"cw20:orai1nd4r053e3kgedgld2ymen8l9yrw8xpjyaal7j5","coinDecimals":6},{"coinDenom":"milky","coinMinimalDenom":"cw20:orai1gzvndtzceqwfymu2kqhta2jn6gmzxvzqwdgvjw","coinDecimals":6},{"coinDenom":"scorai","coinMinimalDenom":"cw20:orai1065qe48g7aemju045aeyprflytemx7kecxkf5m7u5h5mphd0qlcs47pclp","coinDecimals":6},{"coinDenom":"wtrx","coinMinimalDenom":"cw20:orai1c7tpjenafvgjtgm9aqwm7afnke6c56hpdms8jc6md40xs3ugd0es5encn0","coinDecimals":6},{"coinDenom":"scatom","coinMinimalDenom":"cw20:orai19q4qak2g3cj2xc2y3060t0quzn3gfhzx08rjlrdd3vqxhjtat0cq668phq","coinDecimals":6},{"coinDenom":"xoch","coinMinimalDenom":"cw20:orai1lplapmgqnelqn253stz6kmvm3ulgdaytn89a8mz9y85xq8wd684s6xl3lt","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"cw20:orai1dqa52a7hxxuv8ghe7q5v0s36ra0cthea960q2cukznleqhk0wpnshfegez","coinDecimals":6},{"coinDenom":"btc","coinMinimalDenom":"cw20:orai10g6frpysmdgw5tdqke47als6f97aqmr8s3cljsvjce4n5enjftcqtamzsd","coinDecimals":6},{"coinDenom":"och","coinMinimalDenom":"cw20:orai1hn8w33cqvysun2aujk5sv33tku4pgcxhhnsxmvnkfvdxagcx0p8qa4l98q","coinDecimals":6},{"coinDenom":"ton","coinMinimalDenom":"factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/ton","coinDecimals":9},{"coinDenom":"pepe","coinMinimalDenom":"factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/extPEPE","coinDecimals":6},{"coinDenom":"hmstr","coinMinimalDenom":"factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/HMSTR","coinDecimals":9}],"rest":"http://lcd.orai.io","rpc":"https://rpc.orai.io","bech32Config":{"bech32PrefixAccAddr":"orai","bech32PrefixAccPub":"oraipub","bech32PrefixValAddr":"oraivaloper","bech32PrefixValPub":"oraivaloperpub","bech32PrefixConsAddr":"oraivalcons","bech32PrefixConsPub":"oraivalconspub"},"chainName":"oraichain","feeCurrencies":[{"coinDenom":"ORAI","coinMinimalDenom":"orai","coinDecimals":6,"gasPriceStep":{"low":0.003,"average":0.005,"high":0.007}}],"stakeCurrency":{"coinDenom":"ORAI","coinMinimalDenom":"orai","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"osmosis-1","currencies":[{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6},{"coinDenom":"ion","coinMinimalDenom":"uion","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5","coinDecimals":18},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F","coinDecimals":8},{"coinDenom":"usdt","coinMinimalDenom":"ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4","coinDecimals":6},{"coinDenom":"dai","coinMinimalDenom":"ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7","coinDecimals":18},{"coinDenom":"busd","coinMinimalDenom":"ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D","coinDecimals":18},{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6},{"coinDenom":"cro","coinMinimalDenom":"ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1","coinDecimals":8},{"coinDenom":"wbnb","coinMinimalDenom":"ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D","coinDecimals":18},{"coinDenom":"wmatic","coinMinimalDenom":"ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB","coinDecimals":18},{"coinDenom":"avax","coinMinimalDenom":"ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373","coinDecimals":18},{"coinDenom":"luna","coinMinimalDenom":"ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0","coinDecimals":6},{"coinDenom":"juno","coinMinimalDenom":"ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED","coinDecimals":6},{"coinDenom":"dot","coinMinimalDenom":"ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7","coinDecimals":10},{"coinDenom":"evmos","coinMinimalDenom":"ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A","coinDecimals":18},{"coinDenom":"kava","coinMinimalDenom":"ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205","coinDecimals":6},{"coinDenom":"scrt","coinMinimalDenom":"ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A","coinDecimals":6},{"coinDenom":"ust","coinMinimalDenom":"ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC","coinDecimals":6},{"coinDenom":"stars","coinMinimalDenom":"ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4","coinDecimals":6},{"coinDenom":"huahua","coinMinimalDenom":"ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228","coinDecimals":6},{"coinDenom":"xprt","coinMinimalDenom":"ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293","coinDecimals":6},{"coinDenom":"pstake","coinMinimalDenom":"ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961","coinDecimals":18},{"coinDenom":"akt","coinMinimalDenom":"ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4","coinDecimals":6},{"coinDenom":"regen","coinMinimalDenom":"ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076","coinDecimals":6},{"coinDenom":"dvpn","coinMinimalDenom":"ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84","coinDecimals":6},{"coinDenom":"iris","coinMinimalDenom":"ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0","coinDecimals":6},{"coinDenom":"iov","coinMinimalDenom":"ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC","coinDecimals":6},{"coinDenom":"ngm","coinMinimalDenom":"ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59","coinDecimals":6},{"coinDenom":"eur","coinMinimalDenom":"ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F","coinDecimals":6},{"coinDenom":"like","coinMinimalDenom":"ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525","coinDecimals":9},{"coinDenom":"ixo","coinMinimalDenom":"ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B","coinDecimals":6},{"coinDenom":"bcna","coinMinimalDenom":"ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5","coinDecimals":6},{"coinDenom":"btsg","coinMinimalDenom":"ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452","coinDecimals":6},{"coinDenom":"xki","coinMinimalDenom":"ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E","coinDecimals":6},{"coinDenom":"med","coinMinimalDenom":"ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB","coinDecimals":6},{"coinDenom":"ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4","coinMinimalDenom":"ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4","coinDecimals":0},{"coinDenom":"cmdx","coinMinimalDenom":"ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0","coinDecimals":6},{"coinDenom":"cheq","coinMinimalDenom":"ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA","coinDecimals":9},{"coinDenom":"lum","coinMinimalDenom":"ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2","coinDecimals":6},{"coinDenom":"vdl","coinMinimalDenom":"ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD","coinDecimals":6},{"coinDenom":"dsm","coinMinimalDenom":"ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C","coinDecimals":6},{"coinDenom":"dig","coinMinimalDenom":"ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D","coinDecimals":6},{"coinDenom":"somm","coinMinimalDenom":"ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E","coinDecimals":6},{"coinDenom":"band","coinMinimalDenom":"ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE","coinDecimals":6},{"coinDenom":"darc","coinMinimalDenom":"ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593","coinDecimals":6},{"coinDenom":"umee","coinMinimalDenom":"ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C","coinDecimals":6},{"coinDenom":"graviton","coinMinimalDenom":"ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44","coinDecimals":6},{"coinDenom":"dec","coinMinimalDenom":"ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84","coinDecimals":6},{"coinDenom":"marble","coinMinimalDenom":"ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6","coinDecimals":3},{"coinDenom":"dswth","coinMinimalDenom":"ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3","coinDecimals":8},{"coinDenom":"crbrus","coinMinimalDenom":"ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7","coinDecimals":6},{"coinDenom":"fet","coinMinimalDenom":"ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447","coinDecimals":18},{"coinDenom":"mntl","coinMinimalDenom":"ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC","coinDecimals":6},{"coinDenom":"neta","coinMinimalDenom":"ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A","coinDecimals":6},{"coinDenom":"INJ","coinMinimalDenom":"ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273","coinDecimals":18},{"coinDenom":"krt","coinMinimalDenom":"ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780","coinDecimals":6},{"coinDenom":"tick","coinMinimalDenom":"ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8","coinDecimals":6},{"coinDenom":"ROWAN","coinMinimalDenom":"ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB","coinDecimals":18},{"coinDenom":"ctk","coinMinimalDenom":"ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3","coinDecimals":6},{"coinDenom":"hope","coinMinimalDenom":"ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B","coinDecimals":6},{"coinDenom":"rac","coinMinimalDenom":"ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788","coinDecimals":6},{"coinDenom":"frax","coinMinimalDenom":"ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE","coinDecimals":18},{"coinDenom":"gwbtc","coinMinimalDenom":"ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796","coinDecimals":8},{"coinDenom":"gweth","coinMinimalDenom":"ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5","coinDecimals":18},{"coinDenom":"gusdc","coinMinimalDenom":"ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E","coinDecimals":6},{"coinDenom":"gdai","coinMinimalDenom":"ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5","coinDecimals":18},{"coinDenom":"gusdt","coinMinimalDenom":"ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805","coinDecimals":6},{"coinDenom":"block","coinMinimalDenom":"ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3","coinDecimals":6},{"coinDenom":"hash","coinMinimalDenom":"ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2","coinDecimals":9},{"coinDenom":"glx","coinMinimalDenom":"ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2","coinDecimals":6},{"coinDenom":"ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB","coinMinimalDenom":"ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB","coinDecimals":0},{"coinDenom":"raw","coinMinimalDenom":"ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC","coinDecimals":6},{"coinDenom":"meme","coinMinimalDenom":"ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA","coinDecimals":6},{"coinDenom":"asvt","coinMinimalDenom":"ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7","coinDecimals":6},{"coinDenom":"joe","coinMinimalDenom":"ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9","coinDecimals":6},{"coinDenom":"atolo","coinMinimalDenom":"ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219","coinDecimals":6},{"coinDenom":"HARD","coinMinimalDenom":"ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC","coinDecimals":6},{"coinDenom":"SWP","coinMinimalDenom":"ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5","coinDecimals":6},{"coinDenom":"link","coinMinimalDenom":"ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049","coinDecimals":18},{"coinDenom":"l1","coinMinimalDenom":"ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4","coinDecimals":18},{"coinDenom":"aave","coinMinimalDenom":"ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE","coinDecimals":18},{"coinDenom":"ape","coinMinimalDenom":"ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4","coinDecimals":18},{"coinDenom":"mkr","coinMinimalDenom":"ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3","coinDecimals":18},{"coinDenom":"rai","coinMinimalDenom":"ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E","coinDecimals":18},{"coinDenom":"shib","coinMinimalDenom":"ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2","coinDecimals":18},{"coinDenom":"kuji","coinMinimalDenom":"ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE","coinDecimals":6},{"coinDenom":"tgd","coinMinimalDenom":"ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C","coinDecimals":6},{"coinDenom":"echelon","coinMinimalDenom":"ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D","coinDecimals":18},{"coinDenom":"odin","coinMinimalDenom":"ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B","coinDecimals":6},{"coinDenom":"geo","coinMinimalDenom":"ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A","coinDecimals":6},{"coinDenom":"O9W","coinMinimalDenom":"ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D","coinDecimals":6},{"coinDenom":"lvn","coinMinimalDenom":"ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121","coinDecimals":6},{"coinDenom":"wglmr","coinMinimalDenom":"ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49","coinDecimals":18},{"coinDenom":"glto","coinMinimalDenom":"ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E","coinDecimals":6},{"coinDenom":"gkey","coinMinimalDenom":"ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8","coinDecimals":6},{"coinDenom":"cre","coinMinimalDenom":"ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580","coinDecimals":6},{"coinDenom":"lumen","coinMinimalDenom":"ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7","coinDecimals":6},{"coinDenom":"ORAI","coinMinimalDenom":"ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D","coinDecimals":6},{"coinDenom":"cudos","coinMinimalDenom":"ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B","coinDecimals":18},{"coinDenom":"USDX","coinMinimalDenom":"ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE","coinDecimals":6},{"coinDenom":"bld","coinMinimalDenom":"ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604","coinDecimals":6},{"coinDenom":"ist","coinMinimalDenom":"ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5","coinDecimals":6},{"coinDenom":"sejuno","coinMinimalDenom":"ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B","coinDecimals":6},{"coinDenom":"bjuno","coinMinimalDenom":"ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3","coinDecimals":6},{"coinDenom":"strd","coinMinimalDenom":"ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901","coinDecimals":6},{"coinDenom":"ststars","coinMinimalDenom":"ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A","coinDecimals":6},{"coinDenom":"solar","coinMinimalDenom":"ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C","coinDecimals":6},{"coinDenom":"seasy","coinMinimalDenom":"ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6","coinDecimals":6},{"coinDenom":"axl","coinMinimalDenom":"ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E","coinDecimals":6},{"coinDenom":"rebus","coinMinimalDenom":"ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9","coinDecimals":18},{"coinDenom":"tori","coinMinimalDenom":"ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC","coinDecimals":6},{"coinDenom":"stjuno","coinMinimalDenom":"ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC","coinDecimals":6},{"coinDenom":"muse","coinMinimalDenom":"ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F","coinDecimals":6},{"coinDenom":"lamb","coinMinimalDenom":"ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB","coinDecimals":18},{"coinDenom":"usk","coinMinimalDenom":"ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC","coinDecimals":6},{"coinDenom":"FUND","coinMinimalDenom":"ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC","coinDecimals":9},{"coinDenom":"jkl","coinMinimalDenom":"ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA","coinDecimals":6},{"coinDenom":"alter","coinMinimalDenom":"ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3","coinDecimals":6},{"coinDenom":"butt","coinMinimalDenom":"ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8","coinDecimals":6},{"coinDenom":"shd","coinMinimalDenom":"ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C","coinDecimals":8},{"coinDenom":"sienna","coinMinimalDenom":"ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213","coinDecimals":18},{"coinDenom":"stkd-scrt","coinMinimalDenom":"ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4","coinDecimals":6},{"coinDenom":"bze","coinMinimalDenom":"ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88","coinDecimals":6},{"coinDenom":"fury","coinMinimalDenom":"ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF","coinDecimals":6},{"coinDenom":"acre","coinMinimalDenom":"ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06","coinDecimals":18},{"coinDenom":"cmst","coinMinimalDenom":"ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E","coinDecimals":6},{"coinDenom":"imv","coinMinimalDenom":"ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4","coinDecimals":18},{"coinDenom":"medas","coinMinimalDenom":"ibc/FBBC35295AA037DC0A77796B08DC3003EC918E18E75D61D675A0EEAC0643F36C","coinDecimals":6},{"coinDenom":"phmn","coinMinimalDenom":"ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B","coinDecimals":6},{"coinDenom":"amber","coinMinimalDenom":"ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55","coinDecimals":6},{"coinDenom":"nom","coinMinimalDenom":"ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163","coinDecimals":18},{"coinDenom":"stkatom","coinMinimalDenom":"ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC","coinDecimals":6},{"coinDenom":"ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D","coinMinimalDenom":"ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D","coinDecimals":0},{"coinDenom":"hopers","coinMinimalDenom":"ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099","coinDecimals":6},{"coinDenom":"arusd","coinMinimalDenom":"ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F","coinDecimals":18},{"coinDenom":"planq","coinMinimalDenom":"ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF","coinDecimals":18},{"coinDenom":"ftm","coinMinimalDenom":"ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4","coinDecimals":18},{"coinDenom":"canto","coinMinimalDenom":"ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F","coinDecimals":18},{"coinDenom":"qstars","coinMinimalDenom":"ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83","coinDecimals":6},{"coinDenom":"wynd","coinMinimalDenom":"ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3","coinDecimals":6},{"coinDenom":"polygon-usdc","coinMinimalDenom":"ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A","coinDecimals":6},{"coinDenom":"avalanche-usdc","coinMinimalDenom":"ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C","coinDecimals":6},{"coinDenom":"MARS.old","coinMinimalDenom":"ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580","coinDecimals":6},{"coinDenom":"cnto","coinMinimalDenom":"ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5","coinDecimals":18},{"coinDenom":"stluna","coinMinimalDenom":"ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372","coinDecimals":6},{"coinDenom":"stevmos","coinMinimalDenom":"ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01","coinDecimals":18},{"coinDenom":"nride","coinMinimalDenom":"ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C","coinDecimals":6},{"coinDenom":"ebl","coinMinimalDenom":"ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F","coinDecimals":6},{"coinDenom":"qatom","coinMinimalDenom":"ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC","coinDecimals":6},{"coinDenom":"harbor","coinMinimalDenom":"ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A","coinDecimals":6},{"coinDenom":"qregen","coinMinimalDenom":"ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206","coinDecimals":6},{"coinDenom":"fox","coinMinimalDenom":"ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6","coinDecimals":6},{"coinDenom":"qck","coinMinimalDenom":"ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D","coinDecimals":6},{"coinDenom":"ARKH","coinMinimalDenom":"ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28","coinDecimals":6},{"coinDenom":"qosmo","coinMinimalDenom":"ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC","coinDecimals":6},{"coinDenom":"frienzies","coinMinimalDenom":"ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D","coinDecimals":6},{"coinDenom":"grdn","coinMinimalDenom":"ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA","coinDecimals":6},{"coinDenom":"mnpu","coinMinimalDenom":"ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E","coinDecimals":6},{"coinDenom":"shibac","coinMinimalDenom":"ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8","coinDecimals":6},{"coinDenom":"sikoba","coinMinimalDenom":"ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E","coinDecimals":6},{"coinDenom":"nct","coinMinimalDenom":"ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68","coinDecimals":6},{"coinDenom":"clst","coinMinimalDenom":"ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA","coinDecimals":6},{"coinDenom":"osdoge","coinMinimalDenom":"ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156","coinDecimals":6},{"coinDenom":"apemos","coinMinimalDenom":"ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D","coinDecimals":6},{"coinDenom":"invdrs","coinMinimalDenom":"ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54","coinDecimals":6},{"coinDenom":"doga","coinMinimalDenom":"ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250","coinDecimals":6},{"coinDenom":"catmos","coinMinimalDenom":"ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835","coinDecimals":6},{"coinDenom":"summit","coinMinimalDenom":"ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A","coinDecimals":6},{"coinDenom":"flix","coinMinimalDenom":"ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F","coinDecimals":6},{"coinDenom":"spacer","coinMinimalDenom":"ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C","coinDecimals":6},{"coinDenom":"light","coinMinimalDenom":"ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29","coinDecimals":9},{"coinDenom":"silk","coinMinimalDenom":"ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7","coinDecimals":6},{"coinDenom":"mile","coinMinimalDenom":"ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF","coinDecimals":6},{"coinDenom":"manna","coinMinimalDenom":"ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B","coinDecimals":6},{"coinDenom":"fil","coinMinimalDenom":"ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D","coinDecimals":18},{"coinDenom":"void","coinMinimalDenom":"ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960","coinDecimals":6},{"coinDenom":"shd","coinMinimalDenom":"ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A","coinDecimals":8},{"coinDenom":"bnt","coinMinimalDenom":"ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8","coinDecimals":6},{"coinDenom":"arb","coinMinimalDenom":"ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6","coinDecimals":18},{"coinDenom":"silica","coinMinimalDenom":"ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07","coinDecimals":6},{"coinDenom":"pepec","coinMinimalDenom":"ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93","coinDecimals":6},{"coinDenom":"pepe","coinMinimalDenom":"ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B","coinDecimals":18},{"coinDenom":"ibcx","coinMinimalDenom":"factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx","coinDecimals":6},{"coinDenom":"cbeth","coinMinimalDenom":"ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A","coinDecimals":18},{"coinDenom":"reth","coinMinimalDenom":"ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222","coinDecimals":18},{"coinDenom":"sfrxeth","coinMinimalDenom":"ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46","coinDecimals":18},{"coinDenom":"wsteth","coinMinimalDenom":"ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C","coinDecimals":18},{"coinDenom":"LORE","coinMinimalDenom":"ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3","coinDecimals":6},{"coinDenom":"roar","coinMinimalDenom":"ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0","coinDecimals":6},{"coinDenom":"stumee","coinMinimalDenom":"ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F","coinDecimals":6},{"coinDenom":"stibcx","coinMinimalDenom":"factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx","coinDecimals":6},{"coinDenom":"nls","coinMinimalDenom":"ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782","coinDecimals":6},{"coinDenom":"cub","coinMinimalDenom":"ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3","coinDecimals":6},{"coinDenom":"blue","coinMinimalDenom":"ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E","coinDecimals":6},{"coinDenom":"ntrn","coinMinimalDenom":"ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682","coinDecimals":6},{"coinDenom":"casa","coinMinimalDenom":"ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE","coinDecimals":6},{"coinDenom":"pica","coinMinimalDenom":"ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516","coinDecimals":12},{"coinDenom":"ksm","coinMinimalDenom":"ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C","coinDecimals":12},{"coinDenom":"dot","coinMinimalDenom":"ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244","coinDecimals":10},{"coinDenom":"qsr","coinMinimalDenom":"ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477","coinDecimals":6},{"coinDenom":"arch","coinMinimalDenom":"ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85","coinDecimals":18},{"coinDenom":"mpwr","coinMinimalDenom":"ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38","coinDecimals":6},{"coinDenom":"watr","coinMinimalDenom":"ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E","coinDecimals":6},{"coinDenom":"kyve","coinMinimalDenom":"ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB","coinDecimals":6},{"coinDenom":"ampOSMO","coinMinimalDenom":"factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO","coinDecimals":6},{"coinDenom":"sei","coinMinimalDenom":"ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D","coinDecimals":6},{"coinDenom":"qsomm","coinMinimalDenom":"ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208","coinDecimals":6},{"coinDenom":"pasg","coinMinimalDenom":"ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED","coinDecimals":6},{"coinDenom":"stsomm","coinMinimalDenom":"ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B","coinDecimals":6},{"coinDenom":"wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8","coinMinimalDenom":"ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA","coinDecimals":8},{"coinDenom":"wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5","coinMinimalDenom":"ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E","coinDecimals":5},{"coinDenom":"wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6","coinMinimalDenom":"ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C","coinDecimals":6},{"coinDenom":"wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8","coinMinimalDenom":"ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5","coinDecimals":8},{"coinDenom":"wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8","coinMinimalDenom":"ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE","coinDecimals":8},{"coinDenom":"mnta","coinMinimalDenom":"ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B","coinDecimals":6},{"coinDenom":"dgl","coinMinimalDenom":"ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9","coinDecimals":6},{"coinDenom":"wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6","coinMinimalDenom":"ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695","coinDecimals":6},{"coinDenom":"wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8","coinMinimalDenom":"ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC","coinDecimals":8},{"coinDenom":"usdc","coinMinimalDenom":"ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4","coinDecimals":6},{"coinDenom":"YieldETH","coinMinimalDenom":"ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668","coinDecimals":18},{"coinDenom":"xpla","coinMinimalDenom":"ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8","coinDecimals":18},{"coinDenom":"oin","coinMinimalDenom":"ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6","coinDecimals":6},{"coinDenom":"neok","coinMinimalDenom":"ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71","coinDecimals":18},{"coinDenom":"rio","coinMinimalDenom":"ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF","coinDecimals":18},{"coinDenom":"cdt","coinMinimalDenom":"factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt","coinDecimals":6},{"coinDenom":"mbrn","coinMinimalDenom":"factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn","coinDecimals":6},{"coinDenom":"sge","coinMinimalDenom":"ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA","coinDecimals":6},{"coinDenom":"fis","coinMinimalDenom":"ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862","coinDecimals":6},{"coinDenom":"ratom","coinMinimalDenom":"ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7","coinDecimals":6},{"coinDenom":"strdst","coinMinimalDenom":"ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B","coinDecimals":6},{"coinDenom":"DORA","coinMinimalDenom":"ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A","coinDecimals":18},{"coinDenom":"core","coinMinimalDenom":"ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C","coinDecimals":18},{"coinDenom":"WFX","coinMinimalDenom":"ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9","coinDecimals":18},{"coinDenom":"nbtc","coinMinimalDenom":"ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F","coinDecimals":14},{"coinDenom":"nois","coinMinimalDenom":"ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90","coinDecimals":6},{"coinDenom":"sqosmo","coinMinimalDenom":"factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo","coinDecimals":6},{"coinDenom":"nstk","coinMinimalDenom":"ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C","coinDecimals":6},{"coinDenom":"BRNCH","coinMinimalDenom":"ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02","coinDecimals":6},{"coinDenom":"wstETH","coinMinimalDenom":"ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5","coinDecimals":18},{"coinDenom":"sqatom","coinMinimalDenom":"factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom","coinDecimals":6},{"coinDenom":"sqbtc","coinMinimalDenom":"factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc","coinDecimals":6},{"coinDenom":"qwoyn","coinMinimalDenom":"ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D","coinDecimals":6},{"coinDenom":"ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20","coinMinimalDenom":"ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20","coinDecimals":0},{"coinDenom":"ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761","coinMinimalDenom":"ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761","coinDecimals":0},{"coinDenom":"volt","coinMinimalDenom":"ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA","coinDecimals":3},{"coinDenom":"ampere","coinMinimalDenom":"ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424","coinDecimals":3},{"coinDenom":"source","coinMinimalDenom":"ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7","coinDecimals":6},{"coinDenom":"wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6","coinMinimalDenom":"ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5","coinDecimals":6},{"coinDenom":"stkosmo","coinMinimalDenom":"ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E","coinDecimals":6},{"coinDenom":"lvn","coinMinimalDenom":"factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn","coinDecimals":6},{"coinDenom":"puppy","coinMinimalDenom":"ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963","coinDecimals":6},{"coinDenom":"newt","coinMinimalDenom":"ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD","coinDecimals":6},{"coinDenom":"milkTIA","coinMinimalDenom":"factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA","coinDecimals":6},{"coinDenom":"ASH","coinMinimalDenom":"ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC","coinDecimals":6},{"coinDenom":"RAC","coinMinimalDenom":"ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493","coinDecimals":6},{"coinDenom":"GUPPY","coinMinimalDenom":"ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D","coinDecimals":6},{"coinDenom":"ISLM","coinMinimalDenom":"ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA","coinDecimals":18},{"coinDenom":"autism","coinMinimalDenom":"ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D","coinDecimals":6},{"coinDenom":"page","coinMinimalDenom":"ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99","coinDecimals":8},{"coinDenom":"PURSE","coinMinimalDenom":"ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519","coinDecimals":18},{"coinDenom":"NINJA","coinMinimalDenom":"ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3","coinDecimals":6},{"coinDenom":"kleo","coinMinimalDenom":"ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF","coinDecimals":6},{"coinDenom":"nyx","coinMinimalDenom":"ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317","coinDecimals":6},{"coinDenom":"nym","coinMinimalDenom":"ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539","coinDecimals":6},{"coinDenom":"achihuahuawifhat","coinMinimalDenom":"ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7","coinDecimals":6},{"coinDenom":"circus","coinMinimalDenom":"ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C","coinDecimals":6},{"coinDenom":"jape","coinMinimalDenom":"ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE","coinDecimals":6},{"coinDenom":"WOOF","coinMinimalDenom":"ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53","coinDecimals":6},{"coinDenom":"sneaky","coinMinimalDenom":"ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F","coinDecimals":6},{"coinDenom":"wbtc","coinMinimalDenom":"factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc","coinDecimals":8},{"coinDenom":"bad","coinMinimalDenom":"ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23","coinDecimals":6},{"coinDenom":"sgnl","coinMinimalDenom":"ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO","coinDecimals":6},{"coinDenom":"sqtia","coinMinimalDenom":"factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia","coinDecimals":6},{"coinDenom":"apollo","coinMinimalDenom":"ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1","coinDecimals":6},{"coinDenom":"stDYDX","coinMinimalDenom":"ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C","coinDecimals":18},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9","coinDecimals":6},{"coinDenom":"stSAGA","coinMinimalDenom":"ibc/2CD9F8161C3FC332E78EF0C25F6E684D09379FB2F56EF9267E7EC139642EC57B","coinDecimals":6},{"coinDenom":"stINJ","coinMinimalDenom":"ibc/C04DFC9BCD893E57F2BEFE40F63EFD18D2768514DBD5F63ABD2FF7F48FC01D36","coinDecimals":18},{"coinDenom":"glto","coinMinimalDenom":"ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7","coinDecimals":6},{"coinDenom":"dym","coinMinimalDenom":"ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110","coinDecimals":18},{"coinDenom":"RAPTR","coinMinimalDenom":"factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR","coinDecimals":6},{"coinDenom":"astro.cw20","coinMinimalDenom":"ibc/C25A2303FE24B922DAFFDCE377AC5A42E5EF746806D32E2ED4B610DE85C203F7","coinDecimals":6},{"coinDenom":"BADKID","coinMinimalDenom":"factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID","coinDecimals":6},{"coinDenom":"wormhole/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3/6","coinMinimalDenom":"ibc/F08DE332018E8070CC4C68FE06E04E254F527556A614F5F8F9A68AF38D367E45","coinDecimals":6},{"coinDenom":"heart","coinMinimalDenom":"ibc/35CECC330D11DD00FACB555D07687631E0BC7D226260CC5F015F6D7980819533","coinDecimals":18},{"coinDenom":"berlin","coinMinimalDenom":"ibc/2BF9656CAB0384A31167DB9B0254F0FB1CB4346A229BD7E5CBDCBB911C3740F7","coinDecimals":18},{"coinDenom":"scr","coinMinimalDenom":"ibc/178248C262DE2E141EE6287EE7AB0854F05F25B0A3F40C4B912FA1C7E51F466E","coinDecimals":9},{"coinDenom":"c4e","coinMinimalDenom":"ibc/62118FB4D5FEDD5D2B18DC93648A745CD5E5B01D420E9B7A5FED5381CB13A7E8","coinDecimals":6},{"coinDenom":"bitmos","coinMinimalDenom":"ibc/7D389F0ABF1E4D45BE6D7BBE36A2C50EA0559C01E076B02F8E381E685EC1F942","coinDecimals":6},{"coinDenom":"srcx","coinMinimalDenom":"ibc/C97473CD237EBA2F94FDFA6ABA5EC0E22FA140655D73D2A2754F03A347BBA40B","coinDecimals":9},{"coinDenom":"rock","coinMinimalDenom":"ibc/0835781EF3F3ADD053874323AB660C75B50B18B16733CAB783CA6BBD78244EDF","coinDecimals":6},{"coinDenom":"wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5","coinMinimalDenom":"ibc/CDD1E59BD5034C1B2597DD199782204EB397DB93200AA2E99C0AF3A66B2915FA","coinDecimals":5},{"coinDenom":"aioz","coinMinimalDenom":"ibc/BB0AFE2AFBD6E883690DAE4B9168EAC2B306BCC9C9292DACBB4152BBB08DB25F","coinDecimals":18},{"coinDenom":"stDYM","coinMinimalDenom":"ibc/D53E785DC9C5C2CA50CADB1EFE4DE5D0C30418BE0E9C6F2AF9F092A247E8BC22","coinDecimals":18},{"coinDenom":"doki","coinMinimalDenom":"ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B","coinDecimals":6},{"coinDenom":"sail","coinMinimalDenom":"factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail","coinDecimals":6},{"coinDenom":"SHARK","coinMinimalDenom":"ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834","coinDecimals":6},{"coinDenom":"xrp","coinMinimalDenom":"ibc/63A7CA0B6838AD8CAD6B5103998FF9B9B6A6F06FBB9638BFF51E63E0142339F3","coinDecimals":6},{"coinDenom":"allXRP","coinMinimalDenom":"factory/osmo1qnglc04tmhg32uc4kxlxh55a5cmhj88cpa3rmtly484xqu82t79sfv94w0/alloyed/allXRP","coinDecimals":6},{"coinDenom":"SEIYAN","coinMinimalDenom":"ibc/86074B8DF625A75C25D52FA6112E3FD5446BA41FE418880C168CA99D10E22F05","coinDecimals":6},{"coinDenom":"nibi","coinMinimalDenom":"ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF","coinDecimals":6},{"coinDenom":"beast","coinMinimalDenom":"ibc/B84F8CC583A54DA8173711C0B66B22FDC1954FEB1CA8DBC66C89919DAFE02000","coinDecimals":6},{"coinDenom":"cvnt","coinMinimalDenom":"ibc/044B7B28AFE93CEC769CF529ADC626DA09EA0EFA3E0E3284D540E9E00E01E24A","coinDecimals":18},{"coinDenom":"toro","coinMinimalDenom":"factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro","coinDecimals":6},{"coinDenom":"sayve","coinMinimalDenom":"ibc/06EF575844982382F4D1BC3830D294557A30EDB3CD223153AFC8DFEF06349C56","coinDecimals":6},{"coinDenom":"LAB","coinMinimalDenom":"factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB","coinDecimals":6},{"coinDenom":"bOSMO","coinMinimalDenom":"factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/boneOsmo","coinDecimals":6},{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/46D8D1A6E2A80ECCB7CA6663086A2E749C508B68DA56A077CD26E6F4F9691EEE","coinDecimals":18},{"coinDenom":"tnkr","coinMinimalDenom":"ibc/3A0A392E610A8D477851ABFEA74F3D828F36C015AB8E93B0FBB7566A6D13C4D6","coinDecimals":12},{"coinDenom":"w","coinMinimalDenom":"ibc/AC6EE43E608B5A7EEE460C960480BC1C3708010E32B2071C429DA259836E10C3","coinDecimals":6},{"coinDenom":"dhp","coinMinimalDenom":"ibc/FD506CCA1FC574F2A8175FB574C981E9F6351E194AA48AC219BD67FF934E2F33","coinDecimals":6},{"coinDenom":"fury","coinMinimalDenom":"ibc/E4C60B9F95BF54CC085A5E39F6057ABD4DF92793D330EB884A36530F7E6804DE","coinDecimals":6},{"coinDenom":"saga","coinMinimalDenom":"ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2","coinDecimals":6},{"coinDenom":"ATOM1KLFG","coinMinimalDenom":"ibc/0E77E090EC04C476DE2BC0A7056580AC47660DAEB7B0D4701C085E3A046AC7B7","coinDecimals":6},{"coinDenom":"SHIDO","coinMinimalDenom":"ibc/62B50BB1DAEAD2A92D6C6ACAC118F4ED8CBE54265DCF5688E8D0A0A978AA46E7","coinDecimals":18},{"coinDenom":"cif","coinMinimalDenom":"ibc/EFC1776BEFB7842F2DC7BABD9A3050E188145C99007ECC5F3526FED45A68D5F5","coinDecimals":6},{"coinDenom":"hava","coinMinimalDenom":"ibc/884EBC228DFCE8F1304D917A712AA9611427A6C1ECC3179B2E91D7468FB091A2","coinDecimals":6},{"coinDenom":"IBC","coinMinimalDenom":"factory/osmo1kqdw6pvn0xww6tyfv2sqvkkencdz0qw406x54r/IBC","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/5EC896BED3EBCB2CB6F1C167582E4EFA3F6FA3385F28BA5EA92D4A489DA010C5","coinDecimals":18},{"coinDenom":"astro","coinMinimalDenom":"ibc/B8C608CEE08C4F30A15A7955306F2EDAF4A02BB191CABC4185C1A57FD978DA1B","coinDecimals":6},{"coinDenom":"xASTRO","coinMinimalDenom":"ibc/2ED09B03AA396BC2F35B741F4CA4A82D33A24A1007BFC1973299842DD626F564","coinDecimals":6},{"coinDenom":"gpaxg","coinMinimalDenom":"ibc/A5CCD24BA902843B1003A7EEE5F937C632808B9CF4925601241B15C5A0A51A53","coinDecimals":18},{"coinDenom":"rstk","coinMinimalDenom":"ibc/04FAC73DFF7F1DD59395948F2F043B0BBF978AD4533EE37E811340F501A08FFB","coinDecimals":6},{"coinDenom":"BERNESE","coinMinimalDenom":"factory/osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss/BERNESE","coinDecimals":6},{"coinDenom":"eth","coinMinimalDenom":"ibc/A23E590BA7E0D808706FB5085A449B3B9D6864AE4DDE7DAF936243CEBB2A3D43","coinDecimals":18},{"coinDenom":"dai","coinMinimalDenom":"ibc/37DFAFDA529FF7D513B0DB23E9728DF9BF73122D38D46824C78BB7F91E6A736B","coinDecimals":18},{"coinDenom":"fxs","coinMinimalDenom":"ibc/5435437A8C9416B650DDA49C338B63CCFC6465123B715F6BAA9B1B2071E27913","coinDecimals":18},{"coinDenom":"frax","coinMinimalDenom":"ibc/9A8CBC029002DC5170E715F93FBF35011FFC9796371F59B1F3C3094AE1B453A9","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/078AD6F581E8115CDFBD8FFA29D8C71AFE250CE952AFF80040CBC64868D44AD3","coinDecimals":6},{"coinDenom":"sfrax","coinMinimalDenom":"ibc/0EFA07F312E05258A56AE1DD600E39B9151CF7A91C8A94EEBCF4F03ECFE5DD98","coinDecimals":18},{"coinDenom":"frxeth","coinMinimalDenom":"ibc/688E70EF567E5D4BA1CF4C54BAD758C288BC1A6C8B0B12979F911A2AE95E27EC","coinDecimals":18},{"coinDenom":"sfrxeth","coinMinimalDenom":"ibc/F17CCB4F07948CC2D8B72952C2D0A84F2B763962F698774BB121B872AE4611B5","coinDecimals":18},{"coinDenom":"clay","coinMinimalDenom":"ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B","coinDecimals":6},{"coinDenom":"404dr","coinMinimalDenom":"ibc/B797E4F42CD33C50511B341E50C5CC0E8EF0D93B1E1247ABAA071583B8619202","coinDecimals":6},{"coinDenom":"wLIBRA","coinMinimalDenom":"factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA","coinDecimals":6},{"coinDenom":"nim","coinMinimalDenom":"ibc/279D69A6EF8E37456C8D2DC7A7C1C50F7A566EC4758F6DE17472A9FDE36C4426","coinDecimals":18},{"coinDenom":"seda","coinMinimalDenom":"ibc/956AEF1DA92F70584266E87978C3F30A43B91EE6ABC62F03D097E79F6B99C4D8","coinDecimals":18},{"coinDenom":"CAC","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/cac","coinDecimals":6},{"coinDenom":"WEIRD","coinMinimalDenom":"ibc/38ADC6FFDDDB7D70B72AD0322CEA8844CB18FAA0A23400DBA8A99D43E18B3748","coinDecimals":6},{"coinDenom":"PBB","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/pbb","coinDecimals":6},{"coinDenom":"bwh","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bwh","coinDecimals":6},{"coinDenom":"ibc/0D62E47FDEBBC199D4E1853C0708F0F9337AC62D95B719585C9700E466060995","coinMinimalDenom":"ibc/0D62E47FDEBBC199D4E1853C0708F0F9337AC62D95B719585C9700E466060995","coinDecimals":0},{"coinDenom":"SHITMOS","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos","coinDecimals":6},{"coinDenom":"qjuno","coinMinimalDenom":"ibc/B4E18E61E1505C2F371B621E49B09E983F6A138F251A7B5286A6BDF739FD0D54","coinDecimals":6},{"coinDenom":"qsaga","coinMinimalDenom":"ibc/F2D400F2728E9DA06EAE2AFAB289931A69EDDA5A661578C66A3177EDFE3C0D13","coinDecimals":6},{"coinDenom":"qdydx","coinMinimalDenom":"ibc/273C593E51ACE56F1F2BDB3E03A5CB81BB208B894BCAA642676A32C3454E8C27","coinDecimals":18},{"coinDenom":"qbld","coinMinimalDenom":"ibc/C1C106D915C8E8C59E5DC69BF30FEF64729A6F788060B184C86A315DBB762EF7","coinDecimals":6},{"coinDenom":"pepe","coinMinimalDenom":"ibc/5B5BFCC8A9F0D554A4245117F7798E85BE25B6C73DBFA2D6F369BD9DD6CACC6D","coinDecimals":18},{"coinDenom":"crv","coinMinimalDenom":"ibc/080CE38C1E49595F2199E88BE7281F93FAEEF3FE354EECED0640625E8311C9CF","coinDecimals":18},{"coinDenom":"ezeth","coinMinimalDenom":"ibc/39AAE0F5F918B731BEF1E02E9BAED33C242805F668B0A941AC509FB569FE51CB","coinDecimals":18},{"coinDenom":"usde","coinMinimalDenom":"ibc/BFFE212A23384C4EB055CF6F95A1F5EC1BE0F9BD286FAA66C3748F0444E67D63","coinDecimals":18},{"coinDenom":"ena","coinMinimalDenom":"ibc/257FF64F160106F6EE43CEE7C761DA64C1346221895373CC810FFA1BFAC5A7CD","coinDecimals":18},{"coinDenom":"eeth","coinMinimalDenom":"ibc/8D0FFEA4EDB04E3C1738C9599B66AE49683E0540FC4C1214AC84534C200D818B","coinDecimals":18},{"coinDenom":"pxeth","coinMinimalDenom":"ibc/D09BB89B2187EF13EF006B44510749B0F02FD0B34F8BB55C70D812A1FF6148C7","coinDecimals":18},{"coinDenom":"crvusd","coinMinimalDenom":"ibc/63551E7BB24008F0AFC1CB051A423A5104F781F035F8B1A191264B7086A0A0F6","coinDecimals":18},{"coinDenom":"WIHA","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/wiha","coinDecimals":6},{"coinDenom":"CRAZYHORSE","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/crazyhorse","coinDecimals":6},{"coinDenom":"COCA","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/coca","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/0233A3F2541FD43DBCA569B27AF886E97F5C03FC0305E4A8A3FAC6AC26249C7A","coinDecimals":6},{"coinDenom":"edgesol","coinMinimalDenom":"ibc/B83F9E20B4A07FA8846880000BD9D8985D89567A090F5E9390C64E81C39B4607","coinDecimals":9},{"coinDenom":"lst","coinMinimalDenom":"ibc/F618D130A2B8203D169811658BD0361F18DC2453085965FA0E5AEB8018DD54EE","coinDecimals":9},{"coinDenom":"jitosol","coinMinimalDenom":"ibc/9A83BDF4C8C5FFDDE735533BC8CD4363714A6474AED1C2C492FB003BB77C7982","coinDecimals":9},{"coinDenom":"wsol","coinMinimalDenom":"ibc/0F9E9277B61A78CB31014D541ACA5BF6AB06DFC4524C4C836490B131DAAECD78","coinDecimals":9},{"coinDenom":"allUSDT","coinMinimalDenom":"factory/osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek/alloyed/allUSDT","coinDecimals":6},{"coinDenom":"whine","coinMinimalDenom":"ibc/A8C568580D613F16F7E9075EA9FAD69FEBE0CC1F4AF46C60255FEC4459C166F1","coinDecimals":6},{"coinDenom":"BAG","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bag","coinDecimals":6},{"coinDenom":"allBTC","coinMinimalDenom":"factory/osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3/alloyed/allBTC","coinDecimals":8},{"coinDenom":"n43","coinMinimalDenom":"ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58","coinDecimals":6},{"coinDenom":"rakoff","coinMinimalDenom":"ibc/46579C587A0B8CF8B0A1FF6B0EFA2082F11876578E47FC81A9CAAD31F424AF98","coinDecimals":6},{"coinDenom":"arbitrum-weth","coinMinimalDenom":"ibc/64E62451C9A5682FF3047429C6E4714A02CDC0C35DE35CAB01E18D1188004CEB","coinDecimals":18},{"coinDenom":"base-weth","coinMinimalDenom":"ibc/D7D6DEF2A4F7ED0A6F5F0E266C1B2C9726E82F67EBBE49BBB47B3DEC289F8D7B","coinDecimals":18},{"coinDenom":"polygon-weth","coinMinimalDenom":"ibc/F9EB60AC212DBF05F4C5ED0FDE03BB9F08309B0EE9899A406AD4B904CF84968E","coinDecimals":18},{"coinDenom":"stISLM","coinMinimalDenom":"ibc/245C3CA604AAB4BB9EEA5E86F23F52D59253D8722C8FC9C4E3E69F77C5CD3D2F","coinDecimals":18},{"coinDenom":"mand","coinMinimalDenom":"ibc/739D70CB432FE1C6D94AF306B68C14F4CFB0B9EDD1238D3A8718B1B0E84E8547","coinDecimals":18},{"coinDenom":"neutaro","coinMinimalDenom":"ibc/DAED51CBD967A3BE0C467687970AFD97B202AFE4A1718B36936F49178AFE0133","coinDecimals":6},{"coinDenom":"wormhole/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP/6","coinMinimalDenom":"ibc/E0D6A7FFAE26FA90C8F1AA3461A5A21E74DB154F183EAE56C96769F48F81FCA2","coinDecimals":6},{"coinDenom":"usdy","coinMinimalDenom":"ibc/23104D411A6EB6031FA92FB75F227422B84989969E91DCAD56A535DD7FF0A373","coinDecimals":18},{"coinDenom":"TURD","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/turd","coinDecimals":6},{"coinDenom":"fct","coinMinimalDenom":"ibc/E43ABCC7E80E99E4E6E1226AE5695DDE0F83CB5C257CD04D47C36B8B90C1C839","coinDecimals":6},{"coinDenom":"allETH","coinMinimalDenom":"factory/osmo1k6c8jln7ejuqwtqmay3yvzrg3kueaczl96pk067ldg8u835w0yhsw27twm/alloyed/allETH","coinDecimals":18},{"coinDenom":"allSOL","coinMinimalDenom":"factory/osmo1n3n75av8awcnw4jl62n3l48e6e4sxqmaf97w5ua6ddu4s475q5qq9udvx4/alloyed/allSOL","coinDecimals":9},{"coinDenom":"lava","coinMinimalDenom":"ibc/1AEF145C549D4F9847C79E49710B198C294C7F4A107F4610DEE8E725FFC4B378","coinDecimals":6},{"coinDenom":"penumbra","coinMinimalDenom":"ibc/0FA9232B262B89E77D1335D54FB1E1F506A92A7E4B51524B400DC69C68D28372","coinDecimals":6},{"coinDenom":"trx","coinMinimalDenom":"factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/TRX.rt","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/USDT.rt","coinDecimals":6},{"coinDenom":"COSMO","coinMinimalDenom":"ibc/4925733868E7999F5822C961ADE9470A7FC5FA4A560BAE1DE102783C3F64C201","coinDecimals":6},{"coinDenom":"stBAND","coinMinimalDenom":"ibc/603140E681973C7A3A33B06B1D377AAD0F6AC376119735CECC04C9184A1AB080","coinDecimals":6},{"coinDenom":"COOK","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/COOK","coinDecimals":6},{"coinDenom":"trx","coinMinimalDenom":"factory/osmo14mafhhp337yjj2aujplawz0tks6jd2lel4hkwz4agyzhvvztzaqsqzjq8x/alloyed/allTRX","coinDecimals":6},{"coinDenom":"ROUTE","coinMinimalDenom":"ibc/3F8F00094F0F79D17750FF69C5F09B078084018570AAF4F1C92C86D3F73E6488","coinDecimals":18},{"coinDenom":"op","coinMinimalDenom":"factory/osmo1nufyzqlm8qhu2w7lm0l4rrax0ec8rsk69mga4tel8eare7c7ljaqpk2lyg/alloyed/allOP","coinDecimals":12},{"coinDenom":"op","coinMinimalDenom":"ibc/14A291DD362798D6805B7ABCB8D09AEEE02176108F89FA09AA43EA2EE096A2A9","coinDecimals":18},{"coinDenom":"shib","coinMinimalDenom":"factory/osmo1f588gk9dazpsueevdl2w6wfkmfmhg5gdvg2uerdlzl0atkasqhsq59qc6a/alloyed/allSHIB","coinDecimals":12},{"coinDenom":"arb","coinMinimalDenom":"factory/osmo1p7x454ex08s4f9ztmm7wfv7lvtgdkfztj2u7v7fezfcauy85q35qmqrdpk/alloyed/allARB","coinDecimals":12},{"coinDenom":"link","coinMinimalDenom":"factory/osmo18zdw5yvs6gfp95rp74qqwug9yduw2fyr8kplk2xgs726s9axc5usa2vpgw/alloyed/allLINK","coinDecimals":12},{"coinDenom":"pepe","coinMinimalDenom":"factory/osmo1nnlxegt0scm9qkzys9c874t0ntapv4epfjy2w49c0xdrp3dr0v4ssmelzx/alloyed/allPEPE","coinDecimals":12},{"coinDenom":"dot","coinMinimalDenom":"factory/osmo1r53fx9fvcdzncrs7zkn4gw5vfelx5gk8k5wc6wqha2jpkh992rusr5tk02/alloyed/allDOT","coinDecimals":10},{"coinDenom":"unicorn","coinMinimalDenom":"ibc/C91210281CEB708DC6E41A47FC9EC298F45712273DD58C682BEBAD00DCB59DC2","coinDecimals":6},{"coinDenom":"DEEN","coinMinimalDenom":"ibc/108604FDBE97DAEF128FD4ECFEB2A8AFC2D04A7162C97EAA2FD5BCB0869D0BBC","coinDecimals":6},{"coinDenom":"CosmoUSD","coinMinimalDenom":"factory/osmo104jtrwcljnxfljhml8mxrw7qetcsdmqvy3sprw/ucosmousd","coinDecimals":6},{"coinDenom":"XTRUMP","coinMinimalDenom":"factory/osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl/XTRUMP","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/2AD3C64D19ADFBB522CD738B58F421102143F827C1CAFF574A8BF0B81017D53D","coinDecimals":6},{"coinDenom":"fBAD","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBAD","coinDecimals":9},{"coinDenom":"fMAD","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fMAD","coinDecimals":9},{"coinDenom":"fSLOTH","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fSLOTH","coinDecimals":9},{"coinDenom":"fNUT","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fNUT","coinDecimals":9},{"coinDenom":"MARS","coinMinimalDenom":"ibc/B67DF59507B3755EEDE0866C449445BD54B4DA82CCEBA89D775E53DC35664255","coinDecimals":6},{"coinDenom":"ton","coinMinimalDenom":"ibc/905889A7F0B94F1CE1506D9BADF13AE9141E4CBDBCD565E1DFC7AE418B3E3E98","coinDecimals":9},{"coinDenom":"ton","coinMinimalDenom":"factory/osmo12lnwf54yd30p6amzaged2atln8k0l32n7ncxf04ctg7u7ymnsy7qkqgsw4/alloyed/allTON","coinDecimals":9},{"coinDenom":"display_stBTC","coinMinimalDenom":"ibc/453B5B25834A5D4B8FE1E894E69D73F46424F28E8ED3D8E8CA654AEFF1EC5D3B","coinDecimals":18},{"coinDenom":"BVT0","coinMinimalDenom":"factory/osmo1xu0gk9aggv79597xwazyfzaggv2pze9z7cq3p9p72tkkux9a7xaqufa792/BVT","coinDecimals":18},{"coinDenom":"BVT1","coinMinimalDenom":"factory/osmo16nxtnrnl7lctvnhhpcxqmmpv63n93zgg0ukaveyc0jl4dtad79cs53c3an/BVT","coinDecimals":18},{"coinDenom":"AVAIL","coinMinimalDenom":"factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/AVAIL.rt","coinDecimals":18},{"coinDenom":"eure","coinMinimalDenom":"ibc/92AE2F53284505223A1BB80D132F859A00E190C6A738772F0B3EF65E20BA484F","coinDecimals":6},{"coinDenom":"andr","coinMinimalDenom":"ibc/631DB9935E8523BDCF76B55129F5238A14C809CCB3B43AECC157DC19702F3F9E","coinDecimals":6},{"coinDenom":"ckBTC","coinMinimalDenom":"factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-icrc-ckBTC","coinDecimals":8},{"coinDenom":"fWIZ","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWIZ","coinDecimals":9},{"coinDenom":"fWITCH","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWITCH","coinDecimals":9},{"coinDenom":"fCRYPTONIUM","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fCRYPTONIUM","coinDecimals":9},{"coinDenom":"fATLAS","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fATLAS","coinDecimals":9},{"coinDenom":"fGECK","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fGECK","coinDecimals":9},{"coinDenom":"fBULLS","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBULLS","coinDecimals":9},{"coinDenom":"SIN","coinMinimalDenom":"ibc/2BF7FB3908B469FA9672767DC74AF8A18E2F47F8B623B0685DE290B828FCBD23","coinDecimals":6},{"coinDenom":"KIMA","coinMinimalDenom":"ibc/629B5691DE993DCD07AA1B0587AD52A7FA4E8F28B77DE15BCBDF936CA6F76E6C","coinDecimals":6},{"coinDenom":"stos","coinMinimalDenom":"ibc/ABD49F44559CB3E557CC458459CB6A67CEBD66E23C7674A0B2B445230BDA1F6C","coinDecimals":18},{"coinDenom":"uni","coinMinimalDenom":"ibc/AE2719773D6FCDD05AC17B1ED63F672F5F9D84144A61965F348C86C2A83AD161","coinDecimals":18},{"coinDenom":"allUNI","coinMinimalDenom":"factory/osmo1eqjda4pc6e09jtxzxggf6jl3jye2yn453ja58we5gxwzmf5ah28qvlnaz8/alloyed/allUNI","coinDecimals":12},{"coinDenom":"lp:8:osmo","coinMinimalDenom":"ibc/54B2D9DC9602A1CE2A0329D51C6A1C7C4ADE71477186AEAAA549318C4513A453","coinDecimals":6},{"coinDenom":"int3","coinMinimalDenom":"ibc/7D29C888219883C47C623578ACACFC89CC29AA70FBF09C895A1EED911BF90F32","coinDecimals":6},{"coinDenom":"doge","coinMinimalDenom":"ibc/B3DFDC2958A2BE482532DA3B6B5729B469BE7475598F7487D98B1B3E085245DE","coinDecimals":8},{"coinDenom":"btc","coinMinimalDenom":"ibc/2F4258D6E1E01B203D6CA83F2C7E4959615053A21EC2C2FC196F7911CAC832EF","coinDecimals":8},{"coinDenom":"bch","coinMinimalDenom":"ibc/869E01805EBBDDCAEA588666CD5149728B7DC7D69F30D92F77AD67F77CEB3FDA","coinDecimals":8},{"coinDenom":"ltc","coinMinimalDenom":"ibc/905326586AE1C86AC8B1CDB20BE957DE5FB23963EDD2C9ADD3E835CC22115A46","coinDecimals":8},{"coinDenom":"ton","coinMinimalDenom":"ibc/DDE1238DCBC338C0FD0700A72CBD64C017B7A646C4A46789ADFB5D47F1E52E38","coinDecimals":9},{"coinDenom":"usdt","coinMinimalDenom":"ibc/57B63A0795B6BC0AC4EFD0D4DEE9FE71FCC1D0FFA87F6280C9CDEF4F6727A173","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/EEA21E12A250B7FBBCBBBD1F7AA78984F5C12D684B32EBEEFC585FF596A7BCDA","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/2F6003A92088B989A159C593C551DF7B04FA0A0419CA3ED087E45E0006ECFF6E","coinDecimals":6},{"coinDenom":"cbbtc","coinMinimalDenom":"ibc/616C2EA69BC328F245CE449785CB0B526B462C48F19DCF9B3D30699579B4308A","coinDecimals":8},{"coinDenom":"fbtc","coinMinimalDenom":"ibc/22C342A34DD0189AC2B2697EE76C360A9FBA53748ABA76E12C3A9E9F5F1E130F","coinDecimals":8},{"coinDenom":"lbtc","coinMinimalDenom":"ibc/4AC81C97BBB5482536F6401328E0E10BCCD98F0F471DCF64319A811E25E53CAB","coinDecimals":8},{"coinDenom":"rbtc","coinMinimalDenom":"factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/BTC.rt","coinDecimals":18},{"coinDenom":"allDOGE","coinMinimalDenom":"factory/osmo10pk4crey8fpdyqd62rsau0y02e3rk055w5u005ah6ly7k849k5tsf72x40/alloyed/allDOGE","coinDecimals":8},{"coinDenom":"allLTC","coinMinimalDenom":"factory/osmo1csp8fk353hnq2tmulklecxpex43qmjvrkxjcsh4c3eqcw2vjcslq5jls9v/alloyed/allLTC","coinDecimals":8},{"coinDenom":"allBCH","coinMinimalDenom":"factory/osmo1cranx3twqxfrgeqvgsu262gy54vafpc9xap6scye99v244zl970s7kw2sz/alloyed/allBCH","coinDecimals":8},{"coinDenom":"om","coinMinimalDenom":"ibc/164807F6226F91990F358C6467EEE8B162E437BDCD3DADEC3F0CE20693720795","coinDecimals":6},{"coinDenom":"atone","coinMinimalDenom":"ibc/715283E4A955EB803AB1DD30B488587A4D63BF0B51BADA537053DEE479BA10D6","coinDecimals":6},{"coinDenom":"Spice","coinMinimalDenom":"factory/osmo1n6asrjy9754q8y9jsxqf557zmsv3s3xa5m9eg5/uspice","coinDecimals":6},{"coinDenom":"yum","coinMinimalDenom":"ibc/21D8071EF5B02A86D945430D859A594CBF28287D38104A264BB9FD3B22BBF5DE","coinDecimals":18},{"coinDenom":"ygata","coinMinimalDenom":"ibc/50F886EFA15E1FF3D9226B177083A1EFF944176181C70B6131D74FE5AFB1F2C0","coinDecimals":6},{"coinDenom":"DGN","coinMinimalDenom":"ibc/3B95D63B520C283BCA86F8CD426D57584039463FD684A5CBA31D2780B86A1995","coinDecimals":6},{"coinDenom":"SYNT","coinMinimalDenom":"ibc/1B454982D3746951510D3845145B83628D4ED380D95722C8077776C4689F973A","coinDecimals":6},{"coinDenom":"BOMU","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bomu","coinDecimals":6},{"coinDenom":"dATOM","coinMinimalDenom":"ibc/C1B4D4804EB8F95FFB75E6395A301F0AD6D7DDE5C3A45571B70E46A368DD353E","coinDecimals":6},{"coinDenom":"KIMA","coinMinimalDenom":"ibc/A6712952E566B8A9F29D0A533F043C3CE3CF9870B01A2180E390133119C14A71","coinDecimals":6},{"coinDenom":"fury","coinMinimalDenom":"ibc/42D0FBF9DDC72D7359D309A93A6DF9F6FDEE3987EA1C5B3CDE95C06FCE183F12","coinDecimals":6},{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07","coinDecimals":18},{"coinDenom":"dhp","coinMinimalDenom":"ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9","coinDecimals":6},{"coinDenom":"avalanche-usdc","coinMinimalDenom":"ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43","coinDecimals":6},{"coinDenom":"nom","coinMinimalDenom":"ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C","coinDecimals":6},{"coinDenom":"ymos","coinMinimalDenom":"factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos","coinDecimals":6},{"coinDenom":"factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz","coinMinimalDenom":"factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz","coinDecimals":0},{"coinDenom":"ashLAB","coinMinimalDenom":"factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash","coinDecimals":6},{"coinDenom":"grac","coinMinimalDenom":"ibc/58E4261D2E21FE3A459C290A9F97F3DCD257B28F48AAE828298B38E048804829","coinDecimals":6},{"coinDenom":"earnUSDC","coinMinimalDenom":"factory/osmo1vf6e300hv2qe7r5rln8deft45ewgyytjnwfrdfcv5rgzrfy0s6cswjqf9r/mars-usdc-looped","coinDecimals":6},{"coinDenom":"earnCDT","coinMinimalDenom":"factory/osmo1jw6r68y0uhfmqagc7uhtdddctc7wq95pncvrqnvtd47w4hx46p7se9nju5/earn-cdt","coinDecimals":6},{"coinDenom":"Sherpa","coinMinimalDenom":"factory/osmo1n6asrjy9754q8y9jsxqf557zmsv3s3xa5m9eg5/usherpa","coinDecimals":6},{"coinDenom":"allFIL","coinMinimalDenom":"factory/osmo1ss0n3ghv5rr4z4y54fnkprc69tegmdm3ejlkgr2z4utnyg7eljgs9pztvs/alloyed/allFIL","coinDecimals":12},{"coinDenom":"icp","coinMinimalDenom":"factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-native-ICP","coinDecimals":8}],"rest":"https://lcd.osmosis.zone/","rpc":"https://rpc.osmosis.zone/","bech32Config":{"bech32PrefixAccAddr":"osmo","bech32PrefixAccPub":"osmopub","bech32PrefixValAddr":"osmovaloper","bech32PrefixValPub":"osmovaloperpub","bech32PrefixConsAddr":"osmovalcons","bech32PrefixConsPub":"osmovalconspub"},"chainName":"osmosis","feeCurrencies":[{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"panacea-3","currencies":[{"coinDenom":"med","coinMinimalDenom":"umed","coinDecimals":6}],"rest":"https://api.gopanacea.org","rpc":"https://rpc.gopanacea.org","bech32Config":{"bech32PrefixAccAddr":"panacea","bech32PrefixAccPub":"panaceapub","bech32PrefixValAddr":"panaceavaloper","bech32PrefixValPub":"panaceavaloperpub","bech32PrefixConsAddr":"panaceavalcons","bech32PrefixConsPub":"panaceavalconspub"},"chainName":"panacea","feeCurrencies":[{"coinDenom":"med","coinMinimalDenom":"umed","coinDecimals":6,"gasPriceStep":{"low":5,"average":7,"high":9}}],"stakeCurrency":{"coinDenom":"med","coinMinimalDenom":"umed","coinDecimals":6},"bip44":{"coinType":371}},{"chainId":"passage-2","currencies":[{"coinDenom":"pasg","coinMinimalDenom":"upasg","coinDecimals":6}],"rest":"https://api.passage.vitwit.com","rpc":"https://rpc.passage.vitwit.com","bech32Config":{"bech32PrefixAccAddr":"pasg","bech32PrefixAccPub":"pasgpub","bech32PrefixValAddr":"pasgvaloper","bech32PrefixValPub":"pasgvaloperpub","bech32PrefixConsAddr":"pasgvalcons","bech32PrefixConsPub":"pasgvalconspub"},"chainName":"passage","feeCurrencies":[{"coinDenom":"pasg","coinMinimalDenom":"upasg","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.0025,"high":0.01}}],"stakeCurrency":{"coinDenom":"pasg","coinMinimalDenom":"upasg","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"core-1","currencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},{"coinDenom":"stkatom","coinMinimalDenom":"stk/uatom","coinDecimals":6},{"coinDenom":"pstake","coinMinimalDenom":"ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444","coinDecimals":18},{"coinDenom":"atom","coinMinimalDenom":"ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E","coinDecimals":18},{"coinDenom":"stkosmo","coinMinimalDenom":"stk/uosmo","coinDecimals":6},{"coinDenom":"stkdydx","coinMinimalDenom":"stk/adydx","coinDecimals":18},{"coinDenom":"stkstars","coinMinimalDenom":"stk/ustars","coinDecimals":6},{"coinDenom":"stars","coinMinimalDenom":"ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B","coinDecimals":6},{"coinDenom":"shd","coinMinimalDenom":"ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B","coinDecimals":8},{"coinDenom":"stkhuahua","coinMinimalDenom":"stk/uhuahua","coinDecimals":6},{"coinDenom":"huahua","coinMinimalDenom":"ibc/B597D779FCDD9021263C98A48F1AFA9D2BCCCE980F397CDE5681CCEDE7DEE1A4","coinDecimals":6},{"coinDenom":"stkxprt","coinMinimalDenom":"stk/uxprt","coinDecimals":6},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/CCA9F9B22D39884C09975D45E1869B73A12B87080EE53CB44905CE2C422CA228","coinDecimals":8}],"rest":"https://rest.core.persistence.one","rpc":"https://rpc.core.persistence.one","bech32Config":{"bech32PrefixAccAddr":"persistence","bech32PrefixAccPub":"persistencepub","bech32PrefixValAddr":"persistencevaloper","bech32PrefixValPub":"persistencevaloperpub","bech32PrefixConsAddr":"persistencevalcons","bech32PrefixConsPub":"persistencevalconspub"},"chainName":"persistence","feeCurrencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6}],"stakeCurrency":{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"planq_7070-2","currencies":[{"coinDenom":"planq","coinMinimalDenom":"aplanq","coinDecimals":18},{"coinDenom":"srcx","coinMinimalDenom":"erc20/0x091F9A57A3F58d758b6572E9d41675918EAC7F09","coinDecimals":9},{"coinDenom":"meme","coinMinimalDenom":"ibc/747FF58D3F211497581252CEBE11D7E785FC1E53AC5C29497A361E3830F1AF4A","coinDecimals":6}],"rest":"https://rest.planq.network","rpc":"https://rpc.planq.network","bech32Config":{"bech32PrefixAccAddr":"plq","bech32PrefixAccPub":"plqpub","bech32PrefixValAddr":"plqvaloper","bech32PrefixValPub":"plqvaloperpub","bech32PrefixConsAddr":"plqvalcons","bech32PrefixConsPub":"plqvalconspub"},"chainName":"planq","feeCurrencies":[{"coinDenom":"planq","coinMinimalDenom":"aplanq","coinDecimals":18,"gasPriceStep":{"low":30000000000,"average":35000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"planq","coinMinimalDenom":"aplanq","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"point_10687-1","currencies":[{"coinDenom":"point","coinMinimalDenom":"apoint","coinDecimals":18}],"rest":"https://rpc-mainnet-1.point.space:1317","rpc":"https://rpc-mainnet-1.point.space:26657","bech32Config":{"bech32PrefixAccAddr":"point","bech32PrefixAccPub":"pointpub","bech32PrefixValAddr":"pointvaloper","bech32PrefixValPub":"pointvaloperpub","bech32PrefixConsAddr":"pointvalcons","bech32PrefixConsPub":"pointvalconspub"},"chainName":"point","feeCurrencies":[{"coinDenom":"point","coinMinimalDenom":"apoint","coinDecimals":18,"gasPriceStep":{"low":5000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"point","coinMinimalDenom":"apoint","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"pio-mainnet-1","currencies":[{"coinDenom":"hash","coinMinimalDenom":"nhash","coinDecimals":9}],"rest":"https://api-provenance.takeshi.team","rpc":"https://rpc-provenance.takeshi.team/","bech32Config":{"bech32PrefixAccAddr":"pb","bech32PrefixAccPub":"pbpub","bech32PrefixValAddr":"pbvaloper","bech32PrefixValPub":"pbvaloperpub","bech32PrefixConsAddr":"pbvalcons","bech32PrefixConsPub":"pbvalconspub"},"chainName":"provenance","feeCurrencies":[{"coinDenom":"hash","coinMinimalDenom":"nhash","coinDecimals":9,"gasPriceStep":{"low":1905,"average":2100,"high":2500}}],"stakeCurrency":{"coinDenom":"hash","coinMinimalDenom":"nhash","coinDecimals":9},"bip44":{"coinType":505}},{"chainId":"pryzm-1","currencies":[{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6},{"coinDenom":"auuu","coinMinimalDenom":"factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6},{"coinDenom":"INJ","coinMinimalDenom":"ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255","coinDecimals":18},{"coinDenom":"osmo","coinMinimalDenom":"ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/BF28D9C17E0306B194D50F51C3B2590BEAD15E04E03ADD34C3A26E62D85C9676","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/B8AF5D92165F35AB31F3FC7C7B444B9D240760FA5D406C49D24862BD0284E395","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/B9E4FD154C92D3A23BEA029906C4C5FF2FE74CB7E3A058290B77197A263CF88B","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/F8CA5236869F819BC006EEF088E67889A26E4140339757878F0F4E229CDDA858","coinDecimals":18},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/FA78980867B7E87F382CDA00275C55DDC248CABC7DEE27AC6868CCF97DD5E02F","coinDecimals":6},{"coinDenom":"stDYDX","coinMinimalDenom":"ibc/120DC39B61CC121E91525C1D51624E41BBE74C537D7B0BE50BBFF9A00E37B6EE","coinDecimals":18},{"coinDenom":"dATOM","coinMinimalDenom":"ibc/EA6E1E8BA2EB9F681C4BD12C8C81A46530A62934F2BD561B120A00F46946CE87","coinDecimals":6},{"coinDenom":"catom","coinMinimalDenom":"c:uatom","coinDecimals":6},{"coinDenom":"cINJ","coinMinimalDenom":"c:inj","coinDecimals":18},{"coinDenom":"cosmo","coinMinimalDenom":"c:uosmo","coinDecimals":6},{"coinDenom":"cluna","coinMinimalDenom":"c:uluna","coinDecimals":6},{"coinDenom":"cauuu","coinMinimalDenom":"factory/pryzm1qg5ega6dykkxc307y25pecuufrjkxkaggkkxh7nad0vhyhtuhw3sk0s70x/cuauuu","coinDecimals":6},{"coinDenom":"ctia","coinMinimalDenom":"c:utia","coinDecimals":6},{"coinDenom":"pATOM30Sep2024","coinMinimalDenom":"p:uatom:30Sep2024","coinDecimals":6},{"coinDenom":"pATOM31Dec2024","coinMinimalDenom":"p:uatom:31Dec2024","coinDecimals":6},{"coinDenom":"pATOM31Dec2025","coinMinimalDenom":"p:uatom:31Dec2025","coinDecimals":6},{"coinDenom":"pATOM31Dec2026","coinMinimalDenom":"p:uatom:31Dec2026","coinDecimals":6},{"coinDenom":"pOSMO30Sep2024","coinMinimalDenom":"p:uosmo:30Sep2024","coinDecimals":6},{"coinDenom":"pOSMO31Dec2024","coinMinimalDenom":"p:uosmo:31Dec2024","coinDecimals":6},{"coinDenom":"pOSMO31Dec2025","coinMinimalDenom":"p:uosmo:31Dec2025","coinDecimals":6},{"coinDenom":"pOSMO31Dec2026","coinMinimalDenom":"p:uosmo:31Dec2026","coinDecimals":6},{"coinDenom":"pINJ30Sep2024","coinMinimalDenom":"p:inj:30Sep2024","coinDecimals":18},{"coinDenom":"pINJ31Dec2024","coinMinimalDenom":"p:inj:31Dec2024","coinDecimals":18},{"coinDenom":"pINJ31Dec2025","coinMinimalDenom":"p:inj:31Dec2025","coinDecimals":18},{"coinDenom":"pINJ31Dec2026","coinMinimalDenom":"p:inj:31Dec2026","coinDecimals":18},{"coinDenom":"pLUNA30Sep2024","coinMinimalDenom":"p:uluna:30Sep2024","coinDecimals":6},{"coinDenom":"pLUNA31Dec2024","coinMinimalDenom":"p:uluna:31Dec2024","coinDecimals":6},{"coinDenom":"pLUNA31Dec2026","coinMinimalDenom":"p:uluna:31Dec2026","coinDecimals":6},{"coinDenom":"pLUNA31Dec2025","coinMinimalDenom":"p:uluna:31Dec2025","coinDecimals":6},{"coinDenom":"pAUUU30Sep2024","coinMinimalDenom":"p:uauuu:30Sep2024","coinDecimals":6},{"coinDenom":"pAUUU31Dec2024","coinMinimalDenom":"p:uauuu:31Dec2024","coinDecimals":6},{"coinDenom":"pAUUU31Dec2025","coinMinimalDenom":"p:uauuu:31Dec2025","coinDecimals":6},{"coinDenom":"pAUUU31Dec2026","coinMinimalDenom":"p:uauuu:31Dec2026","coinDecimals":6},{"coinDenom":"pstTIA30Sep2024","coinMinimalDenom":"p:stutia:30Sep2024","coinDecimals":6},{"coinDenom":"pstTIA31Dec2024","coinMinimalDenom":"p:stutia:31Dec2024","coinDecimals":6},{"coinDenom":"pstTIA31Dec2025","coinMinimalDenom":"p:stutia:31Dec2025","coinDecimals":6},{"coinDenom":"pstTIA31Dec2026","coinMinimalDenom":"p:stutia:31Dec2026","coinDecimals":6},{"coinDenom":"pstDYDX30Sep2024","coinMinimalDenom":"p:stadydx:30Sep2024","coinDecimals":18},{"coinDenom":"pstDYDX31Dec2024","coinMinimalDenom":"p:stadydx:31Dec2024","coinDecimals":18},{"coinDenom":"pstDYDX31Dec2025","coinMinimalDenom":"p:stadydx:31Dec2025","coinDecimals":18},{"coinDenom":"pstDYDX31Dec2026","coinMinimalDenom":"p:stadydx:31Dec2026","coinDecimals":18},{"coinDenom":"pdATOM31Dec2024","coinMinimalDenom":"p:udatom:31Dec2024","coinDecimals":6},{"coinDenom":"pdATOM30Jun2025","coinMinimalDenom":"p:udatom:30Jun2025","coinDecimals":6},{"coinDenom":"pdATOM31Dec2025","coinMinimalDenom":"p:udatom:31Dec2025","coinDecimals":6},{"coinDenom":"pdATOM31Dec2026","coinMinimalDenom":"p:udatom:31Dec2026","coinDecimals":6},{"coinDenom":"pTIA31Dec2024","coinMinimalDenom":"p:utia:31Dec2024","coinDecimals":6},{"coinDenom":"pTIA31Dec2025","coinMinimalDenom":"p:utia:31Dec2025","coinDecimals":6},{"coinDenom":"pTIA31Dec2026","coinMinimalDenom":"p:utia:31Dec2026","coinDecimals":6},{"coinDenom":"yATOM30Sep2024","coinMinimalDenom":"y:uatom:30Sep2024","coinDecimals":6},{"coinDenom":"yATOM31Dec2024","coinMinimalDenom":"y:uatom:31Dec2024","coinDecimals":6},{"coinDenom":"yATOM31Dec2025","coinMinimalDenom":"y:uatom:31Dec2025","coinDecimals":6},{"coinDenom":"yATOM31Dec2026","coinMinimalDenom":"y:uatom:31Dec2026","coinDecimals":6},{"coinDenom":"yOSMO30Sep2024","coinMinimalDenom":"y:uosmo:30Sep2024","coinDecimals":6},{"coinDenom":"yOSMO31Dec2024","coinMinimalDenom":"y:uosmo:31Dec2024","coinDecimals":6},{"coinDenom":"yOSMO31Dec2025","coinMinimalDenom":"y:uosmo:31Dec2025","coinDecimals":6},{"coinDenom":"yOSMO31Dec2026","coinMinimalDenom":"y:uosmo:31Dec2026","coinDecimals":6},{"coinDenom":"yINJ30Sep2024","coinMinimalDenom":"y:inj:30Sep2024","coinDecimals":18},{"coinDenom":"yINJ31Dec2024","coinMinimalDenom":"y:inj:31Dec2024","coinDecimals":18},{"coinDenom":"yINJ31Dec2025","coinMinimalDenom":"y:inj:31Dec2025","coinDecimals":18},{"coinDenom":"yINJ31Dec2026","coinMinimalDenom":"y:inj:31Dec2026","coinDecimals":18},{"coinDenom":"yLUNA30Sep2024","coinMinimalDenom":"y:uluna:30Sep2024","coinDecimals":6},{"coinDenom":"yLUNA31Dec2024","coinMinimalDenom":"y:uluna:31Dec2024","coinDecimals":6},{"coinDenom":"yLUNA31Dec2025","coinMinimalDenom":"y:uluna:31Dec2025","coinDecimals":6},{"coinDenom":"yLUNA31Dec2026","coinMinimalDenom":"y:uluna:31Dec2026","coinDecimals":6},{"coinDenom":"yAUUU30Sep2024","coinMinimalDenom":"y:uauuu:30Sep2024","coinDecimals":6},{"coinDenom":"yAUUU31Dec2024","coinMinimalDenom":"y:uauuu:31Dec2024","coinDecimals":6},{"coinDenom":"yAUUU31Dec2025","coinMinimalDenom":"y:uauuu:31Dec2025","coinDecimals":6},{"coinDenom":"yAUUU31Dec2026","coinMinimalDenom":"y:uauuu:31Dec2026","coinDecimals":6},{"coinDenom":"ystTIA30Sep2024","coinMinimalDenom":"y:stutia:30Sep2024","coinDecimals":6},{"coinDenom":"ystTIA31Dec2024","coinMinimalDenom":"y:stutia:31Dec2024","coinDecimals":6},{"coinDenom":"ystTIA31Dec2025","coinMinimalDenom":"y:stutia:31Dec2025","coinDecimals":6},{"coinDenom":"ystTIA31Dec2026","coinMinimalDenom":"y:stutia:31Dec2026","coinDecimals":6},{"coinDenom":"ystDYDX30Sep2024","coinMinimalDenom":"y:stadydx:30Sep2024","coinDecimals":18},{"coinDenom":"ystDYDX31Dec2024","coinMinimalDenom":"y:stadydx:31Dec2024","coinDecimals":18},{"coinDenom":"ystDYDX31Dec2025","coinMinimalDenom":"y:stadydx:31Dec2025","coinDecimals":18},{"coinDenom":"ystDYDX31Dec2026","coinMinimalDenom":"y:stadydx:31Dec2026","coinDecimals":18},{"coinDenom":"ydATOM31Dec2024","coinMinimalDenom":"y:udatom:31Dec2024","coinDecimals":6},{"coinDenom":"ydATOM30Jun2025","coinMinimalDenom":"y:udatom:30Jun2025","coinDecimals":6},{"coinDenom":"ydATOM31Dec2025","coinMinimalDenom":"y:udatom:31Dec2025","coinDecimals":6},{"coinDenom":"ydATOM31Dec2026","coinMinimalDenom":"y:udatom:31Dec2026","coinDecimals":6},{"coinDenom":"yTIA31Dec2024","coinMinimalDenom":"y:utia:31Dec2024","coinDecimals":6},{"coinDenom":"yTIA31Dec2025","coinMinimalDenom":"y:utia:31Dec2025","coinDecimals":6},{"coinDenom":"yTIA31Dec2026","coinMinimalDenom":"y:utia:31Dec2026","coinDecimals":6},{"coinDenom":"lp:6:usdc.axl-usdc","coinMinimalDenom":"lp:6:uusdc.axl-uusdc","coinDecimals":6},{"coinDenom":"lp:0:atom","coinMinimalDenom":"lp:0:uatom","coinDecimals":6},{"coinDenom":"lp:2:atomypt-atom","coinMinimalDenom":"lp:2:uatomypt-uatom","coinDecimals":6},{"coinDenom":"lp:3:atom-usdc","coinMinimalDenom":"lp:3:uatom-uusdc","coinDecimals":6},{"coinDenom":"lp:1:INJ","coinMinimalDenom":"lp:1:inj","coinDecimals":18},{"coinDenom":"lp:4:INJypt-INJ","coinMinimalDenom":"lp:4:injypt-inj","coinDecimals":18},{"coinDenom":"lp:5:INJ-usdc","coinMinimalDenom":"lp:5:inj-uusdc","coinDecimals":18},{"coinDenom":"lp:8:osmo","coinMinimalDenom":"lp:8:uosmo","coinDecimals":6},{"coinDenom":"lp:10:osmoypt-osmo","coinMinimalDenom":"lp:10:uosmoypt-uosmo","coinDecimals":6},{"coinDenom":"lp:11:osmo-usdc","coinMinimalDenom":"lp:11:uosmo-uusdc","coinDecimals":6},{"coinDenom":"lp:9:luna","coinMinimalDenom":"lp:9:uluna","coinDecimals":6},{"coinDenom":"lp:12:lunaypt-luna","coinMinimalDenom":"lp:12:ulunaypt-uluna","coinDecimals":6},{"coinDenom":"lp:13:luna-usdc","coinMinimalDenom":"lp:13:uluna-uusdc","coinDecimals":6},{"coinDenom":"lp:14:auuu","coinMinimalDenom":"lp:14:uauuu","coinDecimals":6},{"coinDenom":"lp:17:auuuypt-auuu","coinMinimalDenom":"lp:17:uauuuypt-uauuu","coinDecimals":6},{"coinDenom":"lp:7:auuu-usdc","coinMinimalDenom":"lp:7:uauuu-uusdc","coinDecimals":6},{"coinDenom":"lp:15:stdydx","coinMinimalDenom":"lp:15:stadydx","coinDecimals":18},{"coinDenom":"lp:18:stdydxypt-dydx","coinMinimalDenom":"lp:18:stadydxypt-adydx","coinDecimals":18},{"coinDenom":"lp:19:dydx-usdc","coinMinimalDenom":"lp:19:adydx-uusdc","coinDecimals":18},{"coinDenom":"lp:16:sttia","coinMinimalDenom":"lp:16:stutia","coinDecimals":6},{"coinDenom":"lp:20:sttiaypt-tia","coinMinimalDenom":"lp:20:stutiaypt-utia","coinDecimals":6},{"coinDenom":"lp:24:tia","coinMinimalDenom":"lp:24:utia","coinDecimals":6},{"coinDenom":"lp:25:tiaypt-tia","coinMinimalDenom":"lp:25:utiaypt-utia","coinDecimals":6},{"coinDenom":"lp:21:tia-usdc","coinMinimalDenom":"lp:21:utia-uusdc","coinDecimals":6},{"coinDenom":"lp:22:datom","coinMinimalDenom":"lp:22:udatom","coinDecimals":6},{"coinDenom":"lp:23:datomypt-atom","coinMinimalDenom":"lp:23:udatomypt-uatom","coinDecimals":6}],"rest":"https://api.pryzm.zone","rpc":"https://rpc.pryzm.zone","bech32Config":{"bech32PrefixAccAddr":"pryzm","bech32PrefixAccPub":"pryzmpub","bech32PrefixValAddr":"pryzmvaloper","bech32PrefixValPub":"pryzmvaloperpub","bech32PrefixConsAddr":"pryzmvalcons","bech32PrefixConsPub":"pryzmvalconspub"},"chainName":"pryzm","feeCurrencies":[{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.003,"high":0.004}},{"coinDenom":"INJ","coinMinimalDenom":"ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255","coinDecimals":18,"gasPriceStep":{"low":500000000,"average":600000000,"high":700000000}},{"coinDenom":"osmo","coinMinimalDenom":"ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}},{"coinDenom":"tia","coinMinimalDenom":"ibc/BF28D9C17E0306B194D50F51C3B2590BEAD15E04E03ADD34C3A26E62D85C9676","coinDecimals":6,"gasPriceStep":{"low":0.002,"average":0.003,"high":0.004}},{"coinDenom":"luna","coinMinimalDenom":"ibc/B8AF5D92165F35AB31F3FC7C7B444B9D240760FA5D406C49D24862BD0284E395","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.02,"high":0.03}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.03,"high":0.04}},{"coinDenom":"auuu","coinMinimalDenom":"factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.015,"high":0.02}},{"coinDenom":"dydx","coinMinimalDenom":"ibc/F8CA5236869F819BC006EEF088E67889A26E4140339757878F0F4E229CDDA858","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":12000000000,"high":14000000000}},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/FA78980867B7E87F382CDA00275C55DDC248CABC7DEE27AC6868CCF97DD5E02F","coinDecimals":6,"gasPriceStep":{"low":0.002,"average":0.003,"high":0.004}},{"coinDenom":"stDYDX","coinMinimalDenom":"ibc/120DC39B61CC121E91525C1D51624E41BBE74C537D7B0BE50BBFF9A00E37B6EE","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":12000000000,"high":14000000000}},{"coinDenom":"dATOM","coinMinimalDenom":"ibc/EA6E1E8BA2EB9F681C4BD12C8C81A46530A62934F2BD561B120A00F46946CE87","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.003,"high":0.004}}],"stakeCurrency":{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"PUNDIX","currencies":[{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78","coinDecimals":18},{"coinDenom":"PURSE","coinMinimalDenom":"bsc0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C","coinDecimals":18}],"rest":"https://px-rest.pundix.com","rpc":"https://px-json.pundix.com","bech32Config":{"bech32PrefixAccAddr":"px","bech32PrefixAccPub":"pxpub","bech32PrefixValAddr":"pxvaloper","bech32PrefixValPub":"pxvaloperpub","bech32PrefixConsAddr":"pxvalcons","bech32PrefixConsPub":"pxvalconspub"},"chainName":"pundix","feeCurrencies":[{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78","coinDecimals":18,"gasPriceStep":{"low":2000000000000,"average":2500000000000,"high":3000000000000}}],"stakeCurrency":{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"pylons-mainnet-1","currencies":[{"coinDenom":"rock","coinMinimalDenom":"ubedrock","coinDecimals":6}],"rest":"https://rest.nodejumper.io/pylons","rpc":"https://rpc.nodejumper.io:443/pylons","bech32Config":{"bech32PrefixAccAddr":"pylo","bech32PrefixAccPub":"pylopub","bech32PrefixValAddr":"pylovaloper","bech32PrefixValPub":"pylovaloperpub","bech32PrefixConsAddr":"pylovalcons","bech32PrefixConsPub":"pylovalconspub"},"chainName":"pylons","feeCurrencies":[{"coinDenom":"rock","coinMinimalDenom":"ubedrock","coinDecimals":6}],"stakeCurrency":{"coinDenom":"rock","coinMinimalDenom":"ubedrock","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"qfs-1","currencies":[{"coinDenom":"qfs","coinMinimalDenom":"qfs","coinDecimals":0}],"rest":"https://lcd.qfsone.com","rpc":"https://rcp.qfsone.com","bech32Config":{"bech32PrefixAccAddr":"qfs","bech32PrefixAccPub":"qfspub","bech32PrefixValAddr":"qfsvaloper","bech32PrefixValPub":"qfsvaloperpub","bech32PrefixConsAddr":"qfsvalcons","bech32PrefixConsPub":"qfsvalconspub"},"chainName":"qfs","feeCurrencies":[{"coinDenom":"qfs","coinMinimalDenom":"qfs","coinDecimals":0,"gasPriceStep":{"low":0.000001,"average":0.000005,"high":0.0001}}],"stakeCurrency":{"coinDenom":"qfs","coinMinimalDenom":"qfs","coinDecimals":0},"bip44":{"coinType":1179993431}},{"chainId":"quasar-1","currencies":[{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A","coinDecimals":6}],"rest":"https://rest.lavenderfive.com:443/quasar","rpc":"https://rpc.lavenderfive.com:443/quasar","bech32Config":{"bech32PrefixAccAddr":"quasar","bech32PrefixAccPub":"quasarpub","bech32PrefixValAddr":"quasarvaloper","bech32PrefixValPub":"quasarvaloperpub","bech32PrefixConsAddr":"quasarvalcons","bech32PrefixConsPub":"quasarvalconspub"},"chainName":"quasar","feeCurrencies":[{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.3}},{"coinDenom":"osmo","coinMinimalDenom":"ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"atom","coinMinimalDenom":"ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"quicksilver-2","currencies":[{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6},{"coinDenom":"qstars","coinMinimalDenom":"uqstars","coinDecimals":6},{"coinDenom":"qatom","coinMinimalDenom":"uqatom","coinDecimals":6},{"coinDenom":"qregen","coinMinimalDenom":"uqregen","coinDecimals":6},{"coinDenom":"qosmo","coinMinimalDenom":"uqosmo","coinDecimals":6},{"coinDenom":"qsomm","coinMinimalDenom":"uqsomm","coinDecimals":6},{"coinDenom":"qjuno","coinMinimalDenom":"uqjuno","coinDecimals":6},{"coinDenom":"qdydx","coinMinimalDenom":"aqdydx","coinDecimals":18},{"coinDenom":"qsaga","coinMinimalDenom":"uqsaga","coinDecimals":6},{"coinDenom":"qbld","coinMinimalDenom":"uqbld","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/5666A86DCC869C75F69A7938AD6DCFECAC4A09C73522599E7A85B10143E5FBD2","coinDecimals":6}],"rest":"https://api-quicksilver.takeshi.team:443","rpc":"https://rpc-quicksilver.takeshi.team:443","bech32Config":{"bech32PrefixAccAddr":"quick","bech32PrefixAccPub":"quickpub","bech32PrefixValAddr":"quickvaloper","bech32PrefixValPub":"quickvaloperpub","bech32PrefixConsAddr":"quickvalcons","bech32PrefixConsPub":"quickvalconspub"},"chainName":"quicksilver","feeCurrencies":[{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.00025}}],"stakeCurrency":{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"qwoyn-1","currencies":[{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6}],"rest":"https://rest-qwoyn.theamsolutions.info:443","rpc":"https://rpc.qwoyn.studio:443","bech32Config":{"bech32PrefixAccAddr":"qwoyn","bech32PrefixAccPub":"qwoynpub","bech32PrefixValAddr":"qwoynvaloper","bech32PrefixValPub":"qwoynvaloperpub","bech32PrefixConsAddr":"qwoynvalcons","bech32PrefixConsPub":"qwoynvalconspub"},"chainName":"qwoyn","feeCurrencies":[{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.05,"high":0.075}}],"stakeCurrency":{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"realionetwork_3301-1","currencies":[{"coinDenom":"rio","coinMinimalDenom":"ario","coinDecimals":18},{"coinDenom":"rst","coinMinimalDenom":"arst","coinDecimals":18}],"rest":"https://realio-api.genznodes.dev","rpc":"https://realio-rpc.genznodes.dev","bech32Config":{"bech32PrefixAccAddr":"realio","bech32PrefixAccPub":"realiopub","bech32PrefixValAddr":"realiovaloper","bech32PrefixValPub":"realiovaloperpub","bech32PrefixConsAddr":"realiovalcons","bech32PrefixConsPub":"realiovalconspub"},"chainName":"realio","feeCurrencies":[{"coinDenom":"rio","coinMinimalDenom":"ario","coinDecimals":18,"gasPriceStep":{"low":4000000000,"average":5000000000,"high":8000000000}}],"stakeCurrency":{"coinDenom":"rio","coinMinimalDenom":"ario","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"reb_1111-1","currencies":[{"coinDenom":"rebus","coinMinimalDenom":"arebus","coinDecimals":18}],"rest":"https://api.rebuschain.com:1317/","rpc":"https://api.rebuschain.com:26657/","bech32Config":{"bech32PrefixAccAddr":"rebus","bech32PrefixAccPub":"rebuspub","bech32PrefixValAddr":"rebusvaloper","bech32PrefixValPub":"rebusvaloperpub","bech32PrefixConsAddr":"rebusvalcons","bech32PrefixConsPub":"rebusvalconspub"},"chainName":"rebus","feeCurrencies":[{"coinDenom":"rebus","coinMinimalDenom":"arebus","coinDecimals":18,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"rebus","coinMinimalDenom":"arebus","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"regen-1","currencies":[{"coinDenom":"regen","coinMinimalDenom":"uregen","coinDecimals":6},{"coinDenom":"nct","coinMinimalDenom":"eco.uC.NCT","coinDecimals":6}],"rest":"http://public-rpc.regen.vitwit.com:1317","rpc":"https://rpc-regen.ecostake.com","bech32Config":{"bech32PrefixAccAddr":"regen","bech32PrefixAccPub":"regenpub","bech32PrefixValAddr":"regenvaloper","bech32PrefixValPub":"regenvaloperpub","bech32PrefixConsAddr":"regenvalcons","bech32PrefixConsPub":"regenvalconspub"},"chainName":"regen","feeCurrencies":[{"coinDenom":"regen","coinMinimalDenom":"uregen","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"regen","coinMinimalDenom":"uregen","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"titan-1","currencies":[{"coinDenom":"atolo","coinMinimalDenom":"uatolo","coinDecimals":6}],"rest":"https://restapi.rizon.world/","rpc":"https://rpcapi.rizon.world/","bech32Config":{"bech32PrefixAccAddr":"rizon","bech32PrefixAccPub":"rizonpub","bech32PrefixValAddr":"rizonvaloper","bech32PrefixValPub":"rizonvaloperpub","bech32PrefixConsAddr":"rizonvalcons","bech32PrefixConsPub":"rizonvalconspub"},"chainName":"rizon","feeCurrencies":[{"coinDenom":"atolo","coinMinimalDenom":"uatolo","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.035}}],"stakeCurrency":{"coinDenom":"atolo","coinMinimalDenom":"uatolo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"router_9600-1","currencies":[{"coinDenom":"ROUTE","coinMinimalDenom":"route","coinDecimals":18}],"rest":"https://sentry.lcd.routerprotocol.com/","rpc":"https://sentry.tm.rpc.routerprotocol.com/","bech32Config":{"bech32PrefixAccAddr":"router","bech32PrefixAccPub":"routerpub","bech32PrefixValAddr":"routervaloper","bech32PrefixValPub":"routervaloperpub","bech32PrefixConsAddr":"routervalcons","bech32PrefixConsPub":"routervalconspub"},"chainName":"routerchain","feeCurrencies":[{"coinDenom":"ROUTE","coinMinimalDenom":"route","coinDecimals":18,"gasPriceStep":{"low":7,"average":7,"high":10}}],"stakeCurrency":{"coinDenom":"ROUTE","coinMinimalDenom":"route","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"ssc-1","currencies":[{"coinDenom":"saga","coinMinimalDenom":"usaga","coinDecimals":6}],"rest":"https://saga-mainnet-lcd.autostake.com:443","rpc":"https://rpc-saga.keplr.app","bech32Config":{"bech32PrefixAccAddr":"saga","bech32PrefixAccPub":"sagapub","bech32PrefixValAddr":"sagavaloper","bech32PrefixValPub":"sagavaloperpub","bech32PrefixConsAddr":"sagavalcons","bech32PrefixConsPub":"sagavalconspub"},"chainName":"saga","feeCurrencies":[{"coinDenom":"saga","coinMinimalDenom":"usaga","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"saga","coinMinimalDenom":"usaga","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"scorum-1","currencies":[{"coinDenom":"scr","coinMinimalDenom":"nscr","coinDecimals":9},{"coinDenom":"gas","coinMinimalDenom":"gas","coinDecimals":0}],"rest":"https://scorum-blockchain-mainnet-api.scorum.com","rpc":"https://scorum-blockchain-mainnet-rpc.scorum.com","bech32Config":{"bech32PrefixAccAddr":"scorum","bech32PrefixAccPub":"scorumpub","bech32PrefixValAddr":"scorumvaloper","bech32PrefixValPub":"scorumvaloperpub","bech32PrefixConsAddr":"scorumvalcons","bech32PrefixConsPub":"scorumvalconspub"},"chainName":"scorum","feeCurrencies":[{"coinDenom":"gas","coinMinimalDenom":"gas","coinDecimals":0,"gasPriceStep":{"low":1,"average":1,"high":1}}],"stakeCurrency":{"coinDenom":"scr","coinMinimalDenom":"nscr","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"secret-4","currencies":[{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6},{"coinDenom":"sienna","coinMinimalDenom":"cw20:secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4","coinDecimals":18},{"coinDenom":"shd","coinMinimalDenom":"cw20:secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d","coinDecimals":8},{"coinDenom":"shd","coinMinimalDenom":"cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm","coinDecimals":8},{"coinDenom":"silk","coinMinimalDenom":"cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd","coinDecimals":6},{"coinDenom":"stkd-scrt","coinMinimalDenom":"cw20:secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4","coinDecimals":6},{"coinDenom":"butt","coinMinimalDenom":"cw20:secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt","coinDecimals":6},{"coinDenom":"alter","coinMinimalDenom":"cw20:secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej","coinDecimals":6},{"coinDenom":"amber","coinMinimalDenom":"cw20:secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852","coinDecimals":6},{"coinDenom":"shill","coinMinimalDenom":"cw20:secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse","coinDecimals":6}],"rest":"https://rest.lavenderfive.com:443/secretnetwork","rpc":"https://scrt.public-rpc.com","bech32Config":{"bech32PrefixAccAddr":"secret","bech32PrefixAccPub":"secretpub","bech32PrefixValAddr":"secretvaloper","bech32PrefixValPub":"secretvaloperpub","bech32PrefixConsAddr":"secretvalcons","bech32PrefixConsPub":"secretvalconspub"},"chainName":"secretnetwork","feeCurrencies":[{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.1,"high":0.25}}],"stakeCurrency":{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6},"bip44":{"coinType":529}},{"chainId":"seda-1","currencies":[{"coinDenom":"seda","coinMinimalDenom":"aseda","coinDecimals":18}],"rest":"https://lcd.mainnet.seda.xyz/","rpc":"https://rpc.mainnet.seda.xyz/","bech32Config":{"bech32PrefixAccAddr":"seda","bech32PrefixAccPub":"sedapub","bech32PrefixValAddr":"sedavaloper","bech32PrefixValPub":"sedavaloperpub","bech32PrefixConsAddr":"sedavalcons","bech32PrefixConsPub":"sedavalconspub"},"chainName":"seda","feeCurrencies":[{"coinDenom":"seda","coinMinimalDenom":"aseda","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":10000000000,"high":14000000000}}],"stakeCurrency":{"coinDenom":"seda","coinMinimalDenom":"aseda","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"pacific-1","currencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6},{"coinDenom":"oin","coinMinimalDenom":"factory/sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w/OIN","coinDecimals":6},{"coinDenom":"ampSEI","coinMinimalDenom":"factory/sei1x2fgaaqecvk8kwuqkjqcj27clw5p5g99uawdzy9sc4rku8avumcq3cky4k/ampSEI","coinDecimals":6},{"coinDenom":"popeye","coinMinimalDenom":"factory/sei1fl8pg59wfsgw2wp4aruk38zqccfnc2g8ptrm24/popeye","coinDecimals":6},{"coinDenom":"sensei","coinMinimalDenom":"factory/sei1ta5rkr6y2qlkj7px8w2cvear7m2822q4f4ea0m/sensei","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/B023C57727A38A9CF87238F9008477C3761AD4774D528BFA458DD707D90B553A","coinDecimals":6},{"coinDenom":"oozaru","coinMinimalDenom":"sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda","coinDecimals":6},{"coinDenom":"SEIYAN","coinMinimalDenom":"cw20:sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"ibc/063F4461F7317CFF10F50AB044E44932D22AAD84FA7107082744946E6DB7B7A8","coinDecimals":6}],"rest":"https://rest.sei-apis.com","rpc":"https://rpc.sei-apis.com","bech32Config":{"bech32PrefixAccAddr":"sei","bech32PrefixAccPub":"seipub","bech32PrefixValAddr":"seivaloper","bech32PrefixValPub":"seivaloperpub","bech32PrefixConsAddr":"seivalcons","bech32PrefixConsPub":"seivalconspub"},"chainName":"sei","feeCurrencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.02,"high":0.04}}],"stakeCurrency":{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"self-1","currencies":[{"coinDenom":"slf","coinMinimalDenom":"uslf","coinDecimals":6}],"rest":"https://api.selfchain.io","rpc":"https://rpc.selfchain.io:26657","bech32Config":{"bech32PrefixAccAddr":"self","bech32PrefixAccPub":"selfpub","bech32PrefixValAddr":"selfvaloper","bech32PrefixValPub":"selfvaloperpub","bech32PrefixConsAddr":"selfvalcons","bech32PrefixConsPub":"selfvalconspub"},"chainName":"self","feeCurrencies":[{"coinDenom":"slf","coinMinimalDenom":"uslf","coinDecimals":6,"gasPriceStep":{"low":0.005,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"slf","coinMinimalDenom":"uslf","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sentinelhub-2","currencies":[{"coinDenom":"dvpn","coinMinimalDenom":"udvpn","coinDecimals":6}],"rest":"https://api-sentinel.busurnode.com","rpc":"https://rpc-sentinel.busurnode.com","bech32Config":{"bech32PrefixAccAddr":"sent","bech32PrefixAccPub":"sentpub","bech32PrefixValAddr":"sentvaloper","bech32PrefixValPub":"sentvaloperpub","bech32PrefixConsAddr":"sentvalcons","bech32PrefixConsPub":"sentvalconspub"},"chainName":"sentinel","feeCurrencies":[{"coinDenom":"dvpn","coinMinimalDenom":"udvpn","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.4}}],"stakeCurrency":{"coinDenom":"dvpn","coinMinimalDenom":"udvpn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sgenet-1","currencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"rest":"https://rest.lavenderfive.com:443/sge","rpc":"https://rpc.lavenderfive.com:443/sge","bech32Config":{"bech32PrefixAccAddr":"sge","bech32PrefixAccPub":"sgepub","bech32PrefixValAddr":"sgevaloper","bech32PrefixValPub":"sgevaloperpub","bech32PrefixConsAddr":"sgevalcons","bech32PrefixConsPub":"sgevalconspub"},"chainName":"sge","feeCurrencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.5}}],"stakeCurrency":{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"ShareRing-VoyagerNet","currencies":[{"coinDenom":"shr","coinMinimalDenom":"nshr","coinDecimals":9}],"rest":"https://lcd.explorer.shareri.ng/","rpc":"https://rpc.explorer.shareri.ng","bech32Config":{"bech32PrefixAccAddr":"shareledger","bech32PrefixAccPub":"shareledgerpub","bech32PrefixValAddr":"shareledgervaloper","bech32PrefixValPub":"shareledgervaloperpub","bech32PrefixConsAddr":"shareledgervalcons","bech32PrefixConsPub":"shareledgervalconspub"},"chainName":"shareledger","feeCurrencies":[{"coinDenom":"shr","coinMinimalDenom":"nshr","coinDecimals":9,"gasPriceStep":{"low":2000,"average":3000,"high":4000}}],"stakeCurrency":{"coinDenom":"shr","coinMinimalDenom":"nshr","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"shentu-2.2","currencies":[{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6}],"rest":"https://rest.shentu.org/","rpc":"https://rpc.shentu.org:443","bech32Config":{"bech32PrefixAccAddr":"shentu","bech32PrefixAccPub":"shentupub","bech32PrefixValAddr":"shentuvaloper","bech32PrefixValPub":"shentuvaloperpub","bech32PrefixConsAddr":"shentuvalcons","bech32PrefixConsPub":"shentuvalconspub"},"chainName":"shentu","feeCurrencies":[{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"shido_9008-1","currencies":[{"coinDenom":"SHIDO","coinMinimalDenom":"shido","coinDecimals":18}],"rest":"https://swagger.shidoscan.com","rpc":"https://tendermint.shidoscan.com","bech32Config":{"bech32PrefixAccAddr":"shido","bech32PrefixAccPub":"shidopub","bech32PrefixValAddr":"shidovaloper","bech32PrefixValPub":"shidovaloperpub","bech32PrefixConsAddr":"shidovalcons","bech32PrefixConsPub":"shidovalconspub"},"chainName":"shido","feeCurrencies":[{"coinDenom":"SHIDO","coinMinimalDenom":"shido","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"SHIDO","coinMinimalDenom":"shido","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"sifchain-1","currencies":[{"coinDenom":"ROWAN","coinMinimalDenom":"rowan","coinDecimals":18}],"rest":"https://api-sifchain-ia.cosmosia.notional.ventures/","rpc":"https://sifchain-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"sif","bech32PrefixAccPub":"sifpub","bech32PrefixValAddr":"sifvaloper","bech32PrefixValPub":"sifvaloperpub","bech32PrefixConsAddr":"sifvalcons","bech32PrefixConsPub":"sifvalconspub"},"chainName":"sifchain","feeCurrencies":[{"coinDenom":"ROWAN","coinMinimalDenom":"rowan","coinDecimals":18,"gasPriceStep":{"low":1000000000000,"average":1500000000000,"high":2000000000000}}],"stakeCurrency":{"coinDenom":"ROWAN","coinMinimalDenom":"rowan","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"sixnet","currencies":[{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6}],"rest":"https://sixnet-api.sixprotocol.net:443","rpc":"https://sixnet-rpc.sixprotocol.net:443","bech32Config":{"bech32PrefixAccAddr":"6x","bech32PrefixAccPub":"6xpub","bech32PrefixValAddr":"6xvaloper","bech32PrefixValPub":"6xvaloperpub","bech32PrefixConsAddr":"6xvalcons","bech32PrefixConsPub":"6xvalconspub"},"chainName":"six","feeCurrencies":[{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6,"gasPriceStep":{"low":1.25,"average":1.5,"high":1.75}}],"stakeCurrency":{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sommelier-3","currencies":[{"coinDenom":"somm","coinMinimalDenom":"usomm","coinDecimals":6}],"rest":"https://api-sommelier.pupmos.network","rpc":"https://sommelier-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"somm","bech32PrefixAccPub":"sommpub","bech32PrefixValAddr":"sommvaloper","bech32PrefixValPub":"sommvaloperpub","bech32PrefixConsAddr":"sommvalcons","bech32PrefixConsPub":"sommvalconspub"},"chainName":"sommelier","feeCurrencies":[{"coinDenom":"somm","coinMinimalDenom":"usomm","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"somm","coinMinimalDenom":"usomm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"source-1","currencies":[{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6},{"coinDenom":"srcx","coinMinimalDenom":"ibc/FC5A7360EEED0713AE3E83E9D55A69AF873056A172AC495890ACE4582FF9685A","coinDecimals":9}],"rest":"https://api.source.nodestake.org","rpc":"https://rpc.source.nodestake.org","bech32Config":{"bech32PrefixAccAddr":"source","bech32PrefixAccPub":"sourcepub","bech32PrefixValAddr":"sourcevaloper","bech32PrefixValPub":"sourcevaloperpub","bech32PrefixConsAddr":"sourcevalcons","bech32PrefixConsPub":"sourcevalconspub"},"chainName":"source","feeCurrencies":[{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.075,"high":0.1}}],"stakeCurrency":{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"stafihub-1","currencies":[{"coinDenom":"fis","coinMinimalDenom":"ufis","coinDecimals":6},{"coinDenom":"ratom","coinMinimalDenom":"uratom","coinDecimals":6},{"coinDenom":"riris","coinMinimalDenom":"uriris","coinDecimals":6},{"coinDenom":"rhuahua","coinMinimalDenom":"urhuahua","coinDecimals":6},{"coinDenom":"rswth","coinMinimalDenom":"urswth","coinDecimals":8}],"rest":"https://public-rest-rpc1.stafihub.io","rpc":"https://public-rpc1.stafihub.io:443","bech32Config":{"bech32PrefixAccAddr":"stafi","bech32PrefixAccPub":"stafipub","bech32PrefixValAddr":"stafivaloper","bech32PrefixValPub":"stafivaloperpub","bech32PrefixConsAddr":"stafivalcons","bech32PrefixConsPub":"stafivalconspub"},"chainName":"stafihub","feeCurrencies":[{"coinDenom":"fis","coinMinimalDenom":"ufis","coinDecimals":6}],"stakeCurrency":{"coinDenom":"fis","coinMinimalDenom":"ufis","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"stargaze-1","currencies":[{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6},{"coinDenom":"strdst","coinMinimalDenom":"factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust","coinDecimals":6},{"coinDenom":"GAZE","coinMinimalDenom":"factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/mGAZE","coinDecimals":6},{"coinDenom":"BRNCH","coinMinimalDenom":"factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uBRNCH","coinDecimals":6},{"coinDenom":"OHH","coinMinimalDenom":"factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uOHH","coinDecimals":6},{"coinDenom":"sneaky","coinMinimalDenom":"factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky","coinDecimals":6},{"coinDenom":"LAB","coinMinimalDenom":"ibc/93B1AE0AD5E88242745B245064A2A51DDA1319C18176A966D5F8F9E02ED5373E","coinDecimals":6},{"coinDenom":"CDT","coinMinimalDenom":"ibc/B0263C28B6F44651F4596413B41FDB749EA010BD1220816DAC0ABF9947C1E806","coinDecimals":6},{"coinDenom":"MBRN","coinMinimalDenom":"ibc/E94BB144B818CB8061F43E202BEA1E9273B87D6326C8C6F4E6AE71C62FD37854","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"ibc/C9C8D88917374F27F03CBCEAF4F1B85F45A62F9F2316CBAADAAC5FDB3675DD3F","coinDecimals":6},{"coinDenom":"PLEB","coinMinimalDenom":"factory/stars1k7qsxdxh8calmt4txk75e6hdntefslegwddqnlwjjqgjkmcfqy0qa97sn8/pleb","coinDecimals":6},{"coinDenom":"KINGSHIT","coinMinimalDenom":"factory/stars133a6mnkp9d3pkt48y699hy0tvq5xngpz7cwak0qr4suq0cj9zpfslvt0em/kingshit","coinDecimals":6},{"coinDenom":"BOTZ","coinMinimalDenom":"factory/stars132jrwxjps93usq3ejy7cq6qqc7j3gtx3mu8jhaj5nnk3p0ste2ssqsndvj/botz","coinDecimals":6},{"coinDenom":"COCKS","coinMinimalDenom":"factory/stars14mfk0sd6rlajkvgpgrvfk9lfhjwmkrzvednekvcn32jzy3drjy5sfem9p7/cocks","coinDecimals":6},{"coinDenom":"XTRUMP","coinMinimalDenom":"ibc/4982C47384F003FCCB02490F92CE2F23DBEC9A7A0C1F440BDB12D24357E6703D","coinDecimals":6},{"coinDenom":"WOLFSHIT","coinMinimalDenom":"factory/stars167y92c2fe690l0lrqyk9tahpqvu97au0cmpayh3j9455r2f6f06s78emw4/wolfshit","coinDecimals":6},{"coinDenom":"VLT","coinMinimalDenom":"factory/stars1t6fyr84hn6lyjdvk3e3c697cptfn5cwat2jxqyzuvuesaypznslshy6x9v/vlt","coinDecimals":6},{"coinDenom":"bglSTARS","coinMinimalDenom":"factory/stars1ur79p98rmpn456esgzjernaxy7v25mlwqsv8uhymzxahfw77427syk2h9j/bglSTARS","coinDecimals":6},{"coinDenom":"bglUSDC","coinMinimalDenom":"factory/stars1ur79p98rmpn456esgzjernaxy7v25mlwqsv8uhymzxahfw77427syk2h9j/bglUSDC","coinDecimals":6},{"coinDenom":"SHITMOS","coinMinimalDenom":"ibc/8577E98BDDD2758FD5647A53563DAAC89921326F964EBF899B945ED05A66CA5F","coinDecimals":6},{"coinDenom":"ygata","coinMinimalDenom":"ibc/2A56F95E2B74AB769816403D384E2199C7BC510BFD2F8352FAC6DF0294B83EBA","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/D29FF5FFE7B9A5C6CE595FF963F7C93F2B8603586645C39B13E1D336847863C3","coinDecimals":18}],"rest":"https://rest.stargaze-apis.com/","rpc":"https://rpc.stargaze-apis.com/","bech32Config":{"bech32PrefixAccAddr":"stars","bech32PrefixAccPub":"starspub","bech32PrefixValAddr":"starsvaloper","bech32PrefixValPub":"starsvaloperpub","bech32PrefixConsAddr":"starsvalcons","bech32PrefixConsPub":"starsvalconspub"},"chainName":"stargaze","feeCurrencies":[{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6,"gasPriceStep":{"low":1,"average":1.1,"high":1.2}}],"stakeCurrency":{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"iov-mainnet-ibc","currencies":[{"coinDenom":"iov","coinMinimalDenom":"uiov","coinDecimals":6}],"rest":"https://api-starname-ia.cosmosia.notional.ventures/","rpc":"https://rpc-starname-ia.cosmosia.notional.ventures/","bech32Config":{"bech32PrefixAccAddr":"star","bech32PrefixAccPub":"starpub","bech32PrefixValAddr":"starvaloper","bech32PrefixValPub":"starvaloperpub","bech32PrefixConsAddr":"starvalcons","bech32PrefixConsPub":"starvalconspub"},"chainName":"starname","feeCurrencies":[{"coinDenom":"iov","coinMinimalDenom":"uiov","coinDecimals":6,"gasPriceStep":{"low":1,"average":2,"high":3}}],"stakeCurrency":{"coinDenom":"iov","coinMinimalDenom":"uiov","coinDecimals":6},"bip44":{"coinType":234}},{"chainId":"stratos-1","currencies":[{"coinDenom":"stos","coinMinimalDenom":"wei","coinDecimals":18}],"rest":"https://rest.thestratos.org","rpc":"https://rpc.thestratos.org","bech32Config":{"bech32PrefixAccAddr":"st","bech32PrefixAccPub":"stpub","bech32PrefixValAddr":"stvaloper","bech32PrefixValPub":"stvaloperpub","bech32PrefixConsAddr":"stvalcons","bech32PrefixConsPub":"stvalconspub"},"chainName":"stratos","feeCurrencies":[{"coinDenom":"stos","coinMinimalDenom":"wei","coinDecimals":18,"gasPriceStep":{"low":1000000000,"average":1200000000,"high":1600000000}}],"stakeCurrency":{"coinDenom":"stos","coinMinimalDenom":"wei","coinDecimals":18},"bip44":{"coinType":606}},{"chainId":"stride-1","currencies":[{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"stuatom","coinDecimals":6},{"coinDenom":"ststars","coinMinimalDenom":"stustars","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"stuosmo","coinDecimals":6},{"coinDenom":"stjuno","coinMinimalDenom":"stujuno","coinDecimals":6},{"coinDenom":"stluna","coinMinimalDenom":"stuluna","coinDecimals":6},{"coinDenom":"stINJ","coinMinimalDenom":"stinj","coinDecimals":18},{"coinDenom":"stevmos","coinMinimalDenom":"staevmos","coinDecimals":18},{"coinDenom":"stDYDX","coinMinimalDenom":"stadydx","coinDecimals":18},{"coinDenom":"stTIA","coinMinimalDenom":"stutia","coinDecimals":6},{"coinDenom":"stDYM","coinMinimalDenom":"stadym","coinDecimals":18},{"coinDenom":"stumee","coinMinimalDenom":"stuumee","coinDecimals":6},{"coinDenom":"stcmdx","coinMinimalDenom":"stucmdx","coinDecimals":6},{"coinDenom":"stsomm","coinMinimalDenom":"stusomm","coinDecimals":6},{"coinDenom":"stSAGA","coinMinimalDenom":"stusaga","coinDecimals":6},{"coinDenom":"TIA","coinMinimalDenom":"ibc/BF3B4F53F3694B66E13C23107C84B6485BD2B96296BB7EC680EA77BBA75B4801","coinDecimals":6},{"coinDenom":"stISLM","coinMinimalDenom":"staISLM","coinDecimals":18},{"coinDenom":"stBAND","coinMinimalDenom":"stuband","coinDecimals":6}],"rest":"https://stride-api.polkachu.com/","rpc":"https://stride-rpc.polkachu.com/","bech32Config":{"bech32PrefixAccAddr":"stride","bech32PrefixAccPub":"stridepub","bech32PrefixValAddr":"stridevaloper","bech32PrefixValPub":"stridevaloperpub","bech32PrefixConsAddr":"stridevalcons","bech32PrefixConsPub":"stridevalconspub"},"chainName":"stride","feeCurrencies":[{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6,"gasPriceStep":{"low":0.005,"average":0.005,"high":0.05}},{"coinDenom":"statom","coinMinimalDenom":"stuatom","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0002,"high":0.0005}},{"coinDenom":"stosmo","coinMinimalDenom":"stuosmo","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.004}},{"coinDenom":"ststars","coinMinimalDenom":"stustars","coinDecimals":6,"gasPriceStep":{"low":1,"average":1.1,"high":1.2}},{"coinDenom":"stjuno","coinMinimalDenom":"stujuno","coinDecimals":6,"gasPriceStep":{"low":0.075,"average":0.1,"high":0.125}},{"coinDenom":"stluna","coinMinimalDenom":"stuluna","coinDecimals":6,"gasPriceStep":{"low":0.0125,"average":0.015,"high":0.04}},{"coinDenom":"stevmos","coinMinimalDenom":"staevmos","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}},{"coinDenom":"stINJ","coinMinimalDenom":"stinj","coinDecimals":18,"gasPriceStep":{"low":500000000,"average":700000000,"high":900000000}},{"coinDenom":"stcmdx","coinMinimalDenom":"stucmdx","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.025,"high":0.04}},{"coinDenom":"stumee","coinMinimalDenom":"stuumee","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.12,"high":0.2}},{"coinDenom":"stTIA","coinMinimalDenom":"stutia","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}},{"coinDenom":"stDYDX","coinMinimalDenom":"stadydx","coinDecimals":18,"gasPriceStep":{"low":15000000000,"average":15000000000,"high":20000000000}},{"coinDenom":"stDYM","coinMinimalDenom":"stadym","coinDecimals":18,"gasPriceStep":{"low":15000000000,"average":15000000000,"high":20000000000}},{"coinDenom":"stSAGA","coinMinimalDenom":"stusaga","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.015,"high":0.03}},{"coinDenom":"TIA","coinMinimalDenom":"ibc/BF3B4F53F3694B66E13C23107C84B6485BD2B96296BB7EC680EA77BBA75B4801","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}}],"stakeCurrency":{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"synternet-1","currencies":[{"coinDenom":"SYNT","coinMinimalDenom":"usynt","coinDecimals":6}],"rest":"https://api.synternet.com/","rpc":"https://rpc.synternet.com/","bech32Config":{"bech32PrefixAccAddr":"synt","bech32PrefixAccPub":"syntpub","bech32PrefixValAddr":"syntvaloper","bech32PrefixValPub":"syntvaloperpub","bech32PrefixConsAddr":"syntvalcons","bech32PrefixConsPub":"syntvalconspub"},"chainName":"synternet","feeCurrencies":[{"coinDenom":"SYNT","coinMinimalDenom":"usynt","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"SYNT","coinMinimalDenom":"usynt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"taketitan-12","currencies":[{"coinDenom":"ttnc","coinMinimalDenom":"ttnc","coinDecimals":0}],"rest":"https://lcdttnc.taketitan.com","rpc":"https://rcpttnc.taketitan.com","bech32Config":{"bech32PrefixAccAddr":"taketitan","bech32PrefixAccPub":"taketitanpub","bech32PrefixValAddr":"taketitanvaloper","bech32PrefixValPub":"taketitanvaloperpub","bech32PrefixConsAddr":"taketitanvalcons","bech32PrefixConsPub":"taketitanvalconspub"},"chainName":"taketitan","feeCurrencies":[{"coinDenom":"ttnc","coinMinimalDenom":"ttnc","coinDecimals":0,"gasPriceStep":{"low":0.000001,"average":0.000005,"high":0.0001}}],"stakeCurrency":{"coinDenom":"ttnc","coinMinimalDenom":"ttnc","coinDecimals":0},"bip44":{"coinType":1179993421}},{"chainId":"tenet_1559-1","currencies":[{"coinDenom":"tenet","coinMinimalDenom":"atenet","coinDecimals":18}],"rest":"https://app.rpc.tenet.org","rpc":"https://tendermint-1.rpc.tenet.org","bech32Config":{"bech32PrefixAccAddr":"tenet","bech32PrefixAccPub":"tenetpub","bech32PrefixValAddr":"tenetvaloper","bech32PrefixValPub":"tenetvaloperpub","bech32PrefixConsAddr":"tenetvalcons","bech32PrefixConsPub":"tenetvalconspub"},"chainName":"tenet","feeCurrencies":[{"coinDenom":"tenet","coinMinimalDenom":"atenet","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"tenet","coinMinimalDenom":"atenet","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"teritori-1","currencies":[{"coinDenom":"tori","coinMinimalDenom":"utori","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/A670D9568B3E399316EEDE40C1181B7AA4BD0695F0B37513CE9B95B977DFC12E","coinDecimals":6},{"coinDenom":"kuji","coinMinimalDenom":"ibc/1FECA3491D88F4AD24DE0948ED96718CA6D93F6730CEE7708E621B953594BB5E","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9","coinDecimals":6},{"coinDenom":"scrt","coinMinimalDenom":"ibc/F3F6BDEE1A79664B169D742651107BF4E03FA67E931452E27380B75F5917B7E9","coinDecimals":6}],"rest":"https://teritori-api.polkachu.com","rpc":"https://teritori-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"tori","bech32PrefixAccPub":"toripub","bech32PrefixValAddr":"torivaloper","bech32PrefixValPub":"torivaloperpub","bech32PrefixConsAddr":"torivalcons","bech32PrefixConsPub":"torivalconspub"},"chainName":"teritori","feeCurrencies":[{"coinDenom":"tori","coinMinimalDenom":"utori","coinDecimals":6}],"stakeCurrency":{"coinDenom":"tori","coinMinimalDenom":"utori","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"morocco-1","currencies":[{"coinDenom":"terp","coinMinimalDenom":"uterp","coinDecimals":6},{"coinDenom":"thiol","coinMinimalDenom":"uthiol","coinDecimals":6}],"rest":"https://api-terp.zenchainlabs.io:443","rpc":"https://rpc-terp.zenchainlabs.io/","bech32Config":{"bech32PrefixAccAddr":"terp","bech32PrefixAccPub":"terppub","bech32PrefixValAddr":"terpvaloper","bech32PrefixValPub":"terpvaloperpub","bech32PrefixConsAddr":"terpvalcons","bech32PrefixConsPub":"terpvalconspub"},"chainName":"terpnetwork","feeCurrencies":[{"coinDenom":"thiol","coinMinimalDenom":"uthiol","coinDecimals":6}],"stakeCurrency":{"coinDenom":"terp","coinMinimalDenom":"uterp","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"columbus-5","currencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},{"coinDenom":"ust","coinMinimalDenom":"uusd","coinDecimals":6},{"coinDenom":"krt","coinMinimalDenom":"ukrw","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"cw20:terra1php5m8a6qd68z02t3zpw4jv2pj4vgw4wz0t8mz","coinDecimals":6},{"coinDenom":"bluna","coinMinimalDenom":"cw20:terra1kc87mu460fwkqte29rquh4hc20m54fxwtsx7gp","coinDecimals":6},{"coinDenom":"beth","coinMinimalDenom":"cw20:terra1dzhzukyezv0etz22ud940z7adyv7xgcjkahuun","coinDecimals":6},{"coinDenom":"aust","coinMinimalDenom":"cw20:terra1hzh9vpxhsk8253se0vv5jj6etdvxu3nv8z07zu","coinDecimals":6},{"coinDenom":"anc","coinMinimalDenom":"cw20:terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76","coinDecimals":6},{"coinDenom":"mir","coinMinimalDenom":"cw20:terra15gwkyepfc6xgca5t5zefzwy42uts8l2m4g40k6","coinDecimals":6},{"coinDenom":"maapl","coinMinimalDenom":"cw20:terra1vxtwu4ehgzz77mnfwrntyrmgl64qjs75mpwqaz","coinDecimals":6},{"coinDenom":"mabnb","coinMinimalDenom":"cw20:terra1g4x2pzmkc9z3mseewxf758rllg08z3797xly0n","coinDecimals":6},{"coinDenom":"mamc","coinMinimalDenom":"cw20:terra1qelfthdanju7wavc5tq0k5r0rhsyzyyrsn09qy","coinDecimals":6},{"coinDenom":"mamd","coinMinimalDenom":"cw20:terra18ej5nsuu867fkx4tuy2aglpvqjrkcrjjslap3z","coinDecimals":6},{"coinDenom":"mamzn","coinMinimalDenom":"cw20:terra165nd2qmrtszehcfrntlplzern7zl4ahtlhd5t2","coinDecimals":6},{"coinDenom":"markk","coinMinimalDenom":"cw20:terra1qqfx5jph0rsmkur2zgzyqnfucra45rtjae5vh6","coinDecimals":6},{"coinDenom":"mbaba","coinMinimalDenom":"cw20:terra1w7zgkcyt7y4zpct9dw8mw362ywvdlydnum2awa","coinDecimals":6},{"coinDenom":"mbtc","coinMinimalDenom":"cw20:terra1rhhvx8nzfrx5fufkuft06q5marfkucdqwq5sjw","coinDecimals":6},{"coinDenom":"mcoin","coinMinimalDenom":"cw20:terra18wayjpyq28gd970qzgjfmsjj7dmgdk039duhph","coinDecimals":6},{"coinDenom":"mdis","coinMinimalDenom":"cw20:terra149755r3y0rve30e209awkhn5cxgkn5c8ju9pm5","coinDecimals":6},{"coinDenom":"mdot","coinMinimalDenom":"cw20:terra19ya4jpvjvvtggepvmmj6ftmwly3p7way0tt08r","coinDecimals":6},{"coinDenom":"meth","coinMinimalDenom":"cw20:terra1dk3g53js3034x4v5c3vavhj2738une880yu6kx","coinDecimals":6},{"coinDenom":"mfb","coinMinimalDenom":"cw20:terra1mqsjugsugfprn3cvgxsrr8akkvdxv2pzc74us7","coinDecimals":6},{"coinDenom":"mglxy","coinMinimalDenom":"cw20:terra1l5lrxtwd98ylfy09fn866au6dp76gu8ywnudls","coinDecimals":6},{"coinDenom":"mgme","coinMinimalDenom":"cw20:terra1m6j6j9gw728n82k78s0j9kq8l5p6ne0xcc820p","coinDecimals":6},{"coinDenom":"mgoogl","coinMinimalDenom":"cw20:terra1h8arz2k547uvmpxctuwush3jzc8fun4s96qgwt","coinDecimals":6},{"coinDenom":"mgs","coinMinimalDenom":"cw20:terra137drsu8gce5thf6jr5mxlfghw36rpljt3zj73v","coinDecimals":6},{"coinDenom":"mhood","coinMinimalDenom":"cw20:terra18yqdfzfhnguerz9du5mnvxsh5kxlknqhcxzjfr","coinDecimals":6},{"coinDenom":"miau","coinMinimalDenom":"cw20:terra10h7ry7apm55h4ez502dqdv9gr53juu85nkd4aq","coinDecimals":6},{"coinDenom":"miau","coinMinimalDenom":"cw20:terra15hp9pr8y4qsvqvxf3m4xeptlk7l8h60634gqec","coinDecimals":6},{"coinDenom":"mjnj","coinMinimalDenom":"cw20:terra1ptdxmj3xmmljzx02nr4auwfuelmj0cnkh8egs2","coinDecimals":6},{"coinDenom":"mko","coinMinimalDenom":"cw20:terra1qsnj5gvq8rgs7yws8x5u02gwd5wvtu4tks0hjm","coinDecimals":6},{"coinDenom":"mmsft","coinMinimalDenom":"cw20:terra1227ppwxxj3jxz8cfgq00jgnxqcny7ryenvkwj6","coinDecimals":6},{"coinDenom":"mnflx","coinMinimalDenom":"cw20:terra1jsxngqasf2zynj5kyh0tgq9mj3zksa5gk35j4k","coinDecimals":6},{"coinDenom":"mnio","coinMinimalDenom":"cw20:terra1dj2cj02zak0nvwy3uj9r9dhhxhdwxnw6psse6p","coinDecimals":6},{"coinDenom":"mnke","coinMinimalDenom":"cw20:terra17ana8hvzea0q7w367dm0dw48sxwql39qekpt7g","coinDecimals":6},{"coinDenom":"mnvda","coinMinimalDenom":"cw20:terra1drsjzvzej4h4qlehcfwclxg4w5l3h5tuvd3jd8","coinDecimals":6},{"coinDenom":"mpypl","coinMinimalDenom":"cw20:terra1rh2907984nudl7vh56qjdtvv7947z4dujj92sx","coinDecimals":6},{"coinDenom":"mqqq","coinMinimalDenom":"cw20:terra1csk6tc7pdmpr782w527hwhez6gfv632tyf72cp","coinDecimals":6},{"coinDenom":"msbux","coinMinimalDenom":"cw20:terra1246zy658dfgtausf0c4a6ly8sc2e285q4kxqga","coinDecimals":6},{"coinDenom":"mslv","coinMinimalDenom":"cw20:terra1kscs6uhrqwy6rx5kuw5lwpuqvm3t6j2d6uf2lp","coinDecimals":6},{"coinDenom":"mspy","coinMinimalDenom":"cw20:terra1aa00lpfexyycedfg5k2p60l9djcmw0ue5l8fhc","coinDecimals":6},{"coinDenom":"msq","coinMinimalDenom":"cw20:terra1u43zu5amjlsgty5j64445fr9yglhm53m576ugh","coinDecimals":6},{"coinDenom":"mtsla","coinMinimalDenom":"cw20:terra14y5affaarufk3uscy2vr6pe6w6zqf2wpjzn5sh","coinDecimals":6},{"coinDenom":"mtwtr","coinMinimalDenom":"cw20:terra1cc3enj9qgchlrj34cnzhwuclc4vl2z3jl7tkqg","coinDecimals":6},{"coinDenom":"muso","coinMinimalDenom":"cw20:terra1lvmx8fsagy70tv0fhmfzdw9h6s3sy4prz38ugf","coinDecimals":6},{"coinDenom":"mvixy","coinMinimalDenom":"cw20:terra19cmt6vzvhnnnfsmccaaxzy2uaj06zjktu6yzjx","coinDecimals":6},{"coinDenom":"mvixy","coinMinimalDenom":"cw20:terra1zp3a6q6q4953cz376906g5qfmxnlg77hx3te45","coinDecimals":6},{"coinDenom":"lota","coinMinimalDenom":"cw20:terra1ez46kxtulsdv07538fh5ra5xj8l68mu8eg24vr","coinDecimals":6},{"coinDenom":"dph","coinMinimalDenom":"cw20:terra17jnhankdfl8vyzj6vejt7ag8uz0cjc9crkl2h7","coinDecimals":6},{"coinDenom":"mine","coinMinimalDenom":"cw20:terra1kcthelkax4j9x8d3ny6sdag0qmxxynl3qtcrpy","coinDecimals":6},{"coinDenom":"bpsidp-24m","coinMinimalDenom":"cw20:terra1zsaswh926ey8qa5x4vj93kzzlfnef0pstuca0y","coinDecimals":6},{"coinDenom":"spec","coinMinimalDenom":"cw20:terra1s5eczhe0h0jutf46re52x5z4r03c8hupacxmdr","coinDecimals":6},{"coinDenom":"loop","coinMinimalDenom":"cw20:terra1nef5jf6c7js9x6gkntlehgywvjlpytm7pcgkn4","coinDecimals":6},{"coinDenom":"loopr","coinMinimalDenom":"cw20:terra1jx4lmmke2srcvpjeereetc9hgegp4g5j0p9r2q","coinDecimals":6},{"coinDenom":"stt","coinMinimalDenom":"cw20:terra13xujxcrc9dqft4p9a8ls0w3j0xnzm6y2uvve8n","coinDecimals":6},{"coinDenom":"twd","coinMinimalDenom":"cw20:terra19djkaepjjswucys4npd5ltaxgsntl7jf0xz7w6","coinDecimals":6},{"coinDenom":"xtra","coinMinimalDenom":"cw20:terra1kvjscdgwuvwc6uzm4rqfjl6nlmuhj28tequlnc","coinDecimals":6},{"coinDenom":"miaw","coinMinimalDenom":"cw20:terra1vtr50tw0pgqpes34zqu60n554p9x4950wk8f63","coinDecimals":6},{"coinDenom":"psi","coinMinimalDenom":"cw20:terra12897djskt9rge8dtmm86w654g7kzckkd698608","coinDecimals":6},{"coinDenom":"nluna","coinMinimalDenom":"cw20:terra10f2mt82kjnkxqj2gepgwl637u2w4ue2z5nhz5j","coinDecimals":6},{"coinDenom":"neth","coinMinimalDenom":"cw20:terra178v546c407pdnx5rer3hu8s2c0fc924k74ymnn","coinDecimals":6},{"coinDenom":"cnluna","coinMinimalDenom":"cw20:terra1u553zk43jd4rwzc53qrdrq4jc2p8rextyq09dj","coinDecimals":6},{"coinDenom":"cneth","coinMinimalDenom":"cw20:terra1nagqpmyw55yjphea4rhntlfv87ugmeaj8ym756","coinDecimals":6},{"coinDenom":"navax","coinMinimalDenom":"cw20:terra13k62n0285wj8ug0ngcgpf7dgnkzqeu279tz636","coinDecimals":6},{"coinDenom":"natom","coinMinimalDenom":"cw20:terra1jtdc6zpf95tvh9peuaxwp3v0yqszcnwl8j5ade","coinDecimals":6},{"coinDenom":"vkr","coinMinimalDenom":"cw20:terra1dy9kmlm4anr92e42mrkjwzyvfqwz66un00rwr5","coinDecimals":6},{"coinDenom":"orion","coinMinimalDenom":"cw20:terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03","coinDecimals":8},{"coinDenom":"tland","coinMinimalDenom":"cw20:terra1r5506ckw5tfr3z52jwlek8vg9sn3yflrqrzfsc","coinDecimals":6},{"coinDenom":"vust","coinMinimalDenom":"cw20:terra1w0p5zre38ecdy3ez8efd5h9fvgum5s206xknrg","coinDecimals":6},{"coinDenom":"eth","coinMinimalDenom":"cw20:terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r","coinDecimals":8},{"coinDenom":"wbtc","coinMinimalDenom":"cw20:terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55","coinDecimals":8},{"coinDenom":"sol","coinMinimalDenom":"cw20:terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk","coinDecimals":8},{"coinDenom":"maticet","coinMinimalDenom":"cw20:terra1dfasranqm4uyaz72r960umxy0w8t6zewqlnkuq","coinDecimals":8},{"coinDenom":"bnb","coinMinimalDenom":"cw20:terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8","coinDecimals":8},{"coinDenom":"cake","coinMinimalDenom":"cw20:terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av","coinDecimals":8},{"coinDenom":"link","coinMinimalDenom":"cw20:terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym","coinDecimals":8},{"coinDenom":"sushi","coinMinimalDenom":"cw20:terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a","coinDecimals":8},{"coinDenom":"uni","coinMinimalDenom":"cw20:terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf","coinDecimals":8},{"coinDenom":"usdtet","coinMinimalDenom":"cw20:terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva","coinDecimals":6},{"coinDenom":"usdcet","coinMinimalDenom":"cw20:terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06","coinDecimals":6},{"coinDenom":"kuji","coinMinimalDenom":"cw20:terra1xfsdgcemqwxp4hhnyk4rle6wr22sseq7j07dnn","coinDecimals":6},{"coinDenom":"skuji","coinMinimalDenom":"cw20:terra188w26t95tf4dz77raftme8p75rggatxjxfeknw","coinDecimals":6},{"coinDenom":"wsteth","coinMinimalDenom":"cw20:terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur","coinDecimals":8},{"coinDenom":"wstsol","coinMinimalDenom":"cw20:terra1t9ul45l7m6jw6sxgvnp8e5hj8xzkjsg82g84ap","coinDecimals":8},{"coinDenom":"wsbsol","coinMinimalDenom":"cw20:terra1c3xd5s2j3ejx2d94tvcjfkrdeu6rmz48ghzznj","coinDecimals":8},{"coinDenom":"ldo","coinMinimalDenom":"cw20:terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z","coinDecimals":8},{"coinDenom":"webeth","coinMinimalDenom":"cw20:terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz","coinDecimals":8},{"coinDenom":"stluna","coinMinimalDenom":"cw20:terra1yg3j2s986nyp5z7r2lvt0hx3r0lnd7kwvwwtsc","coinDecimals":6},{"coinDenom":"xdefi","coinMinimalDenom":"cw20:terra169edevav3pdrtjcx35j6pvzuv54aevewar4nlh","coinDecimals":8},{"coinDenom":"btl","coinMinimalDenom":"cw20:terra193c42lfwmlkasvcw22l9qqzc5q2dx208tkd7wl","coinDecimals":6},{"coinDenom":"lunax","coinMinimalDenom":"cw20:terra17y9qkl8dfkeg4py7n0g5407emqnemc3yqk5rup","coinDecimals":6},{"coinDenom":"luni","coinMinimalDenom":"cw20:terra1m3tdguf59xq3pa2twk5fjte5g6szj5y9x5npy7","coinDecimals":6},{"coinDenom":"ply","coinMinimalDenom":"cw20:terra13awdgcx40tz5uygkgm79dytez3x87rpg4uhnvu","coinDecimals":6},{"coinDenom":"tfloki","coinMinimalDenom":"cw20:terra1u2k0nkenw0p25ljsr4ksh7rxm65y466vkdewwj","coinDecimals":6},{"coinDenom":"tftic","coinMinimalDenom":"cw20:terra1a8k3jyv3wf6k3zngza5h6srrxcckdf7zv90p6u","coinDecimals":6},{"coinDenom":"tfticii","coinMinimalDenom":"cw20:terra1xt9fgu7965kgvunnjts9zkprd8986kcc444q86","coinDecimals":6},{"coinDenom":"tfticiii","coinMinimalDenom":"cw20:terra1vte2xv7dr8sfnrnwdf9arcyprqgr0hty5ads28","coinDecimals":6},{"coinDenom":"moon","coinMinimalDenom":"cw20:terra1hmxxq0y8h79f3228vs0czc4uz5jdgjt0appp26","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"cw20:terra1xj49zyqrwpv5k928jwfpfy2ha668nwdgkwlrg3","coinDecimals":6},{"coinDenom":"xastro.cw20","coinMinimalDenom":"cw20:terra14lpnyzc9z4g3ugr4lhm8s4nle0tq8vcltkhzh7","coinDecimals":6},{"coinDenom":"halo","coinMinimalDenom":"cw20:terra1w8kvd6cqpsthupsk4l0clwnmek4l3zr7c84kwq","coinDecimals":6},{"coinDenom":"pug","coinMinimalDenom":"cw20:terra1kdfsdm3c4reun9j3m4mk3nmyw4a4ns7mj24q3j","coinDecimals":6},{"coinDenom":"orne","coinMinimalDenom":"cw20:terra1hnezwjqlhzawcrfysczcxs6xqxu2jawn729kkf","coinDecimals":6},{"coinDenom":"tns","coinMinimalDenom":"cw20:terra14vz4v8adanzph278xyeggll4tfww7teh0xtw2y","coinDecimals":6},{"coinDenom":"xrune","coinMinimalDenom":"cw20:terra1td743l5k5cmfy7tqq202g7vkmdvq35q48u2jfm","coinDecimals":6},{"coinDenom":"alot","coinMinimalDenom":"cw20:terra1366wmr8t8rrkh6mag8fagqxntmf2qe4kyte784","coinDecimals":6},{"coinDenom":"sity","coinMinimalDenom":"cw20:terra1z09gnzufuflz6ckd9k0u456l9dnpgsynu0yyhe","coinDecimals":6},{"coinDenom":"glow","coinMinimalDenom":"cw20:terra13zx49nk8wjavedjzu8xkk95r3t0ta43c9ptul7","coinDecimals":6},{"coinDenom":"apollo","coinMinimalDenom":"cw20:terra100yeqvww74h4yaejj6h733thgcafdaukjtw397","coinDecimals":6},{"coinDenom":"abr","coinMinimalDenom":"cw20:terra1a7ye2splpfzyenu0yrdu8t83uzgusx2malkc7u","coinDecimals":6},{"coinDenom":"whgtps","coinMinimalDenom":"cw20:terra1y3d5qexmyac0fg53pfglh2pjk0664ymfvcq9mc","coinDecimals":8},{"coinDenom":"prism","coinMinimalDenom":"cw20:terra1dh9478k2qvqhqeajhn75a2a7dsnf74y5ukregw","coinDecimals":6},{"coinDenom":"sdollar","coinMinimalDenom":"cw20:terra1l0y8yg0s86x299nqw0p6fhh7ngex3r4phtjeuq","coinDecimals":2},{"coinDenom":"whsail","coinMinimalDenom":"cw20:terra1ku5e0dhutxhuxudsmsn5647wwcz6ndr3rsh90k","coinDecimals":6},{"coinDenom":"whgsail","coinMinimalDenom":"cw20:terra1rl0cpwgtwl4utnaynugevdje37fnmsea7rv4uu","coinDecimals":8},{"coinDenom":"xprism","coinMinimalDenom":"cw20:terra1042wzrwg2uk6jqxjm34ysqquyr9esdgm5qyswz","coinDecimals":6},{"coinDenom":"cde","coinMinimalDenom":"cw20:terra13fs83g5atgjwuh7c5ydzh6n7gecel6xyhhy2t5","coinDecimals":9},{"coinDenom":"ctx","coinMinimalDenom":"cw20:terra1rl20t79ffsrqfa29rke48tj05gj9jxumm92vg8","coinDecimals":6},{"coinDenom":"cluna","coinMinimalDenom":"cw20:terra13zaagrrrxj47qjwczsczujlvnnntde7fdt0mau","coinDecimals":6},{"coinDenom":"pluna","coinMinimalDenom":"cw20:terra1tlgelulz9pdkhls6uglfn5lmxarx7f2gxtdzh2","coinDecimals":6},{"coinDenom":"yluna","coinMinimalDenom":"cw20:terra17wkadg0tah554r35x6wvff0y5s7ve8npcjfuhz","coinDecimals":6},{"coinDenom":"atlo","coinMinimalDenom":"cw20:terra1cl7whtrqmz5ldr553q69qahck8xvk80fm33qjx","coinDecimals":6},{"coinDenom":"local","coinMinimalDenom":"cw20:terra1vchw83qt25j89zqwdpmdzj722sqxthnckqzxxp","coinDecimals":6},{"coinDenom":"luv","coinMinimalDenom":"cw20:terra15k5r9r8dl8r7xlr29pry8a9w7sghehcnv5mgp6","coinDecimals":6},{"coinDenom":"robo","coinMinimalDenom":"cw20:terra1f62tqesptvmhtzr8sudru00gsdtdz24srgm7wp","coinDecimals":6},{"coinDenom":"luart","coinMinimalDenom":"cw20:terra1vwz7t30q76s7xx6qgtxdqnu6vpr3ak3vw62ygk","coinDecimals":6},{"coinDenom":"mars","coinMinimalDenom":"cw20:terra12hgwnpupflfpuual532wgrxu2gjp0tcagzgx4n","coinDecimals":6},{"coinDenom":"xmars","coinMinimalDenom":"cw20:terra1a04v570f9cxp49mk06vjsm8axsswndpwwt67k4","coinDecimals":6},{"coinDenom":"dfiat","coinMinimalDenom":"cw20:terra1vpws4hmpmpsqwnz3gljn8zj42rv7rkpc5atgt4","coinDecimals":8},{"coinDenom":"ceres","coinMinimalDenom":"cw20:terra1hppnw4jppmrzzga4yvd8s87y3dwkhe27xwwl5d","coinDecimals":6},{"coinDenom":"wasavax","coinMinimalDenom":"cw20:terra1z3e2e4jpk4n0xzzwlkgcfvc95pc5ldq0xcny58","coinDecimals":8},{"coinDenom":"mint","coinMinimalDenom":"cw20:terra1zd6let0zg0xjn2sestagxv4ax24a4ml6j40qdr","coinDecimals":6},{"coinDenom":"sd","coinMinimalDenom":"cw20:terra1ustvnmngueq0p4jd7gfnutgvdc6ujpsjhsjd02","coinDecimals":8},{"coinDenom":"xsd","coinMinimalDenom":"cw20:terra1ln2z938phz0nc2wepxpzfkwp6ezn9yrz9zv9ep","coinDecimals":8},{"coinDenom":"paxg","coinMinimalDenom":"cw20:terra1uux6gwd6pzr0gfzrru5kne55cxex9d0700c72r","coinDecimals":8},{"coinDenom":"whdao","coinMinimalDenom":"cw20:terra1efjugpjc50d8sha7lr8s48cr7wmsthz94eevcl","coinDecimals":8},{"coinDenom":"link","coinMinimalDenom":"cw20:terra1su6g4t4vwx7y0uh3ksancyaurj4l6w9pfs40qt","coinDecimals":18},{"coinDenom":"sayve","coinMinimalDenom":"cw20:terra14v9wrjs55qsn9lkvylsqela3w2ytwxzkycqzcr","coinDecimals":6},{"coinDenom":"guides","coinMinimalDenom":"cw20:terra1z55rhw0ut70jxdmpvge98mvj0rkwcz74q77z0u","coinDecimals":6},{"coinDenom":"bro","coinMinimalDenom":"cw20:terra1mt2ytlrxhvd5c4d4fshxxs3zcus3fkdmuv4mk2","coinDecimals":6},{"coinDenom":"bbro","coinMinimalDenom":"cw20:terra1qryq5wreecx2wd3cdtzz94syr4z0a92l60asds","coinDecimals":6},{"coinDenom":"gtps","coinMinimalDenom":"cw20:terra15zvyhmv6gwddht7kt4q6w5nasn4tcpgzcdfmgr","coinDecimals":18},{"coinDenom":"gfi","coinMinimalDenom":"cw20:terra15pkdjxv2ewjzn9x665y26pfz2h6ymak4d4e8se","coinDecimals":18},{"coinDenom":"ulc","coinMinimalDenom":"cw20:terra1fyjsxx73jrufw8ufgtuswa773dvdkny92k70wa","coinDecimals":18},{"coinDenom":"sst","coinMinimalDenom":"cw20:terra1689ys6p6gfu0q6xrjqkzfn80sdyhurjqn0jfdl","coinDecimals":6},{"coinDenom":"atlas","coinMinimalDenom":"cw20:terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc","coinDecimals":8},{"coinDenom":"audio","coinMinimalDenom":"cw20:terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp","coinDecimals":8},{"coinDenom":"avax","coinMinimalDenom":"cw20:terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m","coinDecimals":8},{"coinDenom":"bat","coinMinimalDenom":"cw20:terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2","coinDecimals":8},{"coinDenom":"busdbs","coinMinimalDenom":"cw20:terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd","coinDecimals":8},{"coinDenom":"dai","coinMinimalDenom":"cw20:terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95","coinDecimals":8},{"coinDenom":"maticpo","coinMinimalDenom":"cw20:terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8","coinDecimals":8},{"coinDenom":"mimet","coinMinimalDenom":"cw20:terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y","coinDecimals":8},{"coinDenom":"ray","coinMinimalDenom":"cw20:terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q","coinDecimals":6},{"coinDenom":"sbr","coinMinimalDenom":"cw20:terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc","coinDecimals":6},{"coinDenom":"shib","coinMinimalDenom":"cw20:terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd","coinDecimals":8},{"coinDenom":"srmso","coinMinimalDenom":"cw20:terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c","coinDecimals":6},{"coinDenom":"usdcav","coinMinimalDenom":"cw20:terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w","coinDecimals":6},{"coinDenom":"usdcbs","coinMinimalDenom":"cw20:terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu","coinDecimals":8},{"coinDenom":"usdcpo","coinMinimalDenom":"cw20:terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x","coinDecimals":6},{"coinDenom":"usdcso","coinMinimalDenom":"cw20:terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4","coinDecimals":6},{"coinDenom":"usdtav","coinMinimalDenom":"cw20:terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx","coinDecimals":6},{"coinDenom":"usdtbs","coinMinimalDenom":"cw20:terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd","coinDecimals":8},{"coinDenom":"usdtso","coinMinimalDenom":"cw20:terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5","coinDecimals":6},{"coinDenom":"gohm","coinMinimalDenom":"cw20:terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3","coinDecimals":8},{"coinDenom":"msol","coinMinimalDenom":"cw20:terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y","coinDecimals":8},{"coinDenom":"steth","coinMinimalDenom":"cw20:terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d","coinDecimals":8},{"coinDenom":"lct","coinMinimalDenom":"cw20:terra1srp2u95kxps35nvan88gn96nfqhukqya2d0ffc","coinDecimals":6},{"coinDenom":"batom","coinMinimalDenom":"cw20:terra18zqcnl83z98tf6lly37gghm7238k7lh79u4z9a","coinDecimals":6},{"coinDenom":"webatom","coinMinimalDenom":"cw20:terra128pe5jpempxu0nws5lw28se9zknhsr78626cpn","coinDecimals":6},{"coinDenom":"wcoin","coinMinimalDenom":"cw20:terra1laczhlpxlgmrwr9un9ds74qxd2fj4754nf82dn","coinDecimals":6},{"coinDenom":"lctfancard","coinMinimalDenom":"cw20:terra1thhm2u93m2stytzynhsxh5h3jrtg540x4punqy","coinDecimals":6},{"coinDenom":"kntc","coinMinimalDenom":"cw20:terra1yeyr6taynkwdl85ppaggr3zr8txhf66cny2ang","coinDecimals":6},{"coinDenom":"kust","coinMinimalDenom":"cw20:terra1g53pyke8jtmt4lwvk4yl0xaqc4u0qlsl8dz3ex","coinDecimals":6},{"coinDenom":"steak","coinMinimalDenom":"cw20:terra1rl4zyexjphwgx6v3ytyljkkc4mrje2pyznaclv","coinDecimals":6},{"coinDenom":"cst","coinMinimalDenom":"cw20:terra1jkkt5638cd5pur0u5jnr2juw0v6hz5d6z8xu8m","coinDecimals":6},{"coinDenom":"cstfancard","coinMinimalDenom":"cw20:terra1kz7qszu7p4dg9lts7m9m7lpuarsnan47jh3fam","coinDecimals":6},{"coinDenom":"nwld","coinMinimalDenom":"cw20:terra1amz5c45l34n7w8m5a3z7rd7u0k037x4nnsemwj","coinDecimals":9},{"coinDenom":"fury","coinMinimalDenom":"cw20:terra1cdc6nlsx0l6jmt3nnx7gxjggf902wge3n2z76k","coinDecimals":6},{"coinDenom":"rct","coinMinimalDenom":"cw20:terra17n223dxpkypc5c48la7aqjvverczg82ga3cr93","coinDecimals":6},{"coinDenom":"vitc","coinMinimalDenom":"cw20:terra14vw4sfqwe7jw8ppcc7u44vq7hy9qa2nlstnxmu","coinDecimals":6},{"coinDenom":"sb","coinMinimalDenom":"cw20:terra1948uvsah8aw40dhsa9mhl3htq8lraj0smlh77g","coinDecimals":6},{"coinDenom":"toad","coinMinimalDenom":"cw20:terra1rz964297kvt86rteajhtp4hsffhcum0ye8eljh","coinDecimals":6},{"coinDenom":"orionastro","coinMinimalDenom":"cw20:terra1yhlhrea3rgyx2xdnsswsfakn28qa8z7yp5gmhd","coinDecimals":6},{"coinDenom":"retro","coinMinimalDenom":"cw20:terra1j4hwavavmtsafa6zr0npalfz3tk9gf3p4787mp","coinDecimals":6},{"coinDenom":"tnd","coinMinimalDenom":"cw20:terra16wggm67a34msdxasg2vergm2pt289y7930wv7d","coinDecimals":6},{"coinDenom":"stnd","coinMinimalDenom":"cw20:terra1n9k2he20h5vpyn4mgv7pg4pzvw2n3wc4a86v3g","coinDecimals":6},{"coinDenom":"nwt","coinMinimalDenom":"cw20:terra1ezz5xply2v3xdyv32gy5tcd7zq4k235q4xtzwe","coinDecimals":9},{"coinDenom":"aut","coinMinimalDenom":"uaud","coinDecimals":6},{"coinDenom":"cat","coinMinimalDenom":"ucad","coinDecimals":6},{"coinDenom":"cht","coinMinimalDenom":"uchf","coinDecimals":6},{"coinDenom":"cnt","coinMinimalDenom":"ucny","coinDecimals":6},{"coinDenom":"dkt","coinMinimalDenom":"udkk","coinDecimals":6},{"coinDenom":"eut","coinMinimalDenom":"ueur","coinDecimals":6},{"coinDenom":"gbt","coinMinimalDenom":"ugbp","coinDecimals":6},{"coinDenom":"hkt","coinMinimalDenom":"uhkd","coinDecimals":6},{"coinDenom":"idt","coinMinimalDenom":"uidr","coinDecimals":6},{"coinDenom":"int","coinMinimalDenom":"uinr","coinDecimals":6},{"coinDenom":"jpt","coinMinimalDenom":"ujpy","coinDecimals":6},{"coinDenom":"mnt","coinMinimalDenom":"umnt","coinDecimals":6},{"coinDenom":"myt","coinMinimalDenom":"umyr","coinDecimals":6},{"coinDenom":"not","coinMinimalDenom":"unok","coinDecimals":6},{"coinDenom":"pht","coinMinimalDenom":"uphp","coinDecimals":6},{"coinDenom":"sdt","coinMinimalDenom":"usdr","coinDecimals":6},{"coinDenom":"set","coinMinimalDenom":"usek","coinDecimals":6},{"coinDenom":"sgt","coinMinimalDenom":"usgd","coinDecimals":6},{"coinDenom":"tht","coinMinimalDenom":"uthb","coinDecimals":6},{"coinDenom":"twt","coinMinimalDenom":"utwd","coinDecimals":6},{"coinDenom":"neb","coinMinimalDenom":"cw20:terra1mpq5zkkm39nmjrjg9raknpfrfmcfwv0nh0whvn","coinDecimals":6},{"coinDenom":"trit","coinMinimalDenom":"cw20:terra1g6fm3yu79gv0rc8067n2nnfpf0vks6n0wpzaf4u7w48tdrmj98zsy7uu00","coinDecimals":6},{"coinDenom":"juris","coinMinimalDenom":"cw20:terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2","coinDecimals":6},{"coinDenom":"tadf","coinMinimalDenom":"cw20:terra19gzvkw5hft3ulp8n6ws3p9yradhc802axqal59lzxau6rqxktj9q0dwf9c","coinDecimals":6},{"coinDenom":"frog","coinMinimalDenom":"cw20:terra1wez9puj43v4s25vrex7cv3ut3w75w4h6j5e537sujyuxj0r5ne2qp9uwl9","coinDecimals":6}],"rest":"https://terra-classic-lcd.publicnode.com","rpc":"https://terra-classic-rpc.publicnode.com:443","bech32Config":{"bech32PrefixAccAddr":"terra","bech32PrefixAccPub":"terrapub","bech32PrefixValAddr":"terravaloper","bech32PrefixValPub":"terravaloperpub","bech32PrefixConsAddr":"terravalcons","bech32PrefixConsPub":"terravalconspub"},"chainName":"terra","feeCurrencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6,"gasPriceStep":{"low":28.325,"average":28.325,"high":50}},{"coinDenom":"sdt","coinMinimalDenom":"usdr","coinDecimals":6,"gasPriceStep":{"low":0.52469,"average":0.52469,"high":0.52469}},{"coinDenom":"ust","coinMinimalDenom":"uusd","coinDecimals":6,"gasPriceStep":{"low":0.75,"average":0.75,"high":0.75}},{"coinDenom":"krt","coinMinimalDenom":"ukrw","coinDecimals":6,"gasPriceStep":{"low":850,"average":850,"high":850}},{"coinDenom":"mnt","coinMinimalDenom":"umnt","coinDecimals":6,"gasPriceStep":{"low":2142.855,"average":2142.855,"high":2142.855}},{"coinDenom":"eut","coinMinimalDenom":"ueur","coinDecimals":6,"gasPriceStep":{"low":0.625,"average":0.625,"high":0.625}},{"coinDenom":"cnt","coinMinimalDenom":"ucny","coinDecimals":6,"gasPriceStep":{"low":4.9,"average":4.9,"high":4.9}},{"coinDenom":"jpt","coinMinimalDenom":"ujpy","coinDecimals":6,"gasPriceStep":{"low":81.85,"average":81.85,"high":81.85}},{"coinDenom":"gbt","coinMinimalDenom":"ugbp","coinDecimals":6,"gasPriceStep":{"low":0.55,"average":0.55,"high":0.55}},{"coinDenom":"int","coinMinimalDenom":"uinr","coinDecimals":6,"gasPriceStep":{"low":54.4,"average":54.4,"high":54.4}},{"coinDenom":"cat","coinMinimalDenom":"ucad","coinDecimals":6,"gasPriceStep":{"low":0.95,"average":0.95,"high":0.95}},{"coinDenom":"cht","coinMinimalDenom":"uchf","coinDecimals":6,"gasPriceStep":{"low":0.7,"average":0.7,"high":0.7}},{"coinDenom":"aut","coinMinimalDenom":"uaud","coinDecimals":6,"gasPriceStep":{"low":0.95,"average":0.95,"high":0.95}},{"coinDenom":"sgt","coinMinimalDenom":"usgd","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"tht","coinMinimalDenom":"uthb","coinDecimals":6,"gasPriceStep":{"low":23.1,"average":23.1,"high":23.1}},{"coinDenom":"set","coinMinimalDenom":"usek","coinDecimals":6,"gasPriceStep":{"low":6.25,"average":6.25,"high":6.25}},{"coinDenom":"not","coinMinimalDenom":"unok","coinDecimals":6,"gasPriceStep":{"low":6.25,"average":6.25,"high":6.25}},{"coinDenom":"dkt","coinMinimalDenom":"udkk","coinDecimals":6,"gasPriceStep":{"low":4.5,"average":4.5,"high":4.5}},{"coinDenom":"idt","coinMinimalDenom":"uidr","coinDecimals":6,"gasPriceStep":{"low":10900,"average":10900,"high":10900}},{"coinDenom":"pht","coinMinimalDenom":"uphp","coinDecimals":6,"gasPriceStep":{"low":38,"average":38,"high":38}},{"coinDenom":"hkt","coinMinimalDenom":"uhkd","coinDecimals":6,"gasPriceStep":{"low":5.85,"average":5.85,"high":5.85}},{"coinDenom":"myt","coinMinimalDenom":"umyr","coinDecimals":6,"gasPriceStep":{"low":3,"average":3,"high":3}},{"coinDenom":"twt","coinMinimalDenom":"utwd","coinDecimals":6,"gasPriceStep":{"low":20,"average":20,"high":20}}],"stakeCurrency":{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},"bip44":{"coinType":330}},{"chainId":"phoenix-1","currencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},{"coinDenom":"astro.cw20","coinMinimalDenom":"cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"ibc/8D8A7F7253615E5F76CB6252A1E1BD921D5EDB7BBAAF8913FB1C77FF125D9995","coinDecimals":6},{"coinDenom":"cw20:terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k","coinMinimalDenom":"cw20:terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k","coinDecimals":0},{"coinDenom":"Reis","coinMinimalDenom":"cw20:terra1sdglum2dt4f3fmq7jrt2phf2tegmnudc7qqqqujkpqcm9ujuxxkqakv5u8","coinDecimals":6},{"coinDenom":"Escudos","coinMinimalDenom":"cw20:terra1qj5hs3e86qn4vm9dvtgtlkdp550r0rayk9wpay44mfw3gn3tr8nq5jw3dg","coinDecimals":6},{"coinDenom":"Alem","coinMinimalDenom":"cw20:terra1cmf8ytutcwrjrv08zskj9phuh46a3w3nkjax7en4hxezsrdr58lqvzy05q","coinDecimals":6},{"coinDenom":"AMG","coinMinimalDenom":"cw20:terra1en42e2vsvtdsvrcqg5s5e5e4djejjaed6fxmvtpweg3tu33h6k5qkg9c40","coinDecimals":6},{"coinDenom":"ARK","coinMinimalDenom":"cw20:terra1ysd87nayjuelxj4wvp4wnp9as0mwszzkje6a9z6f3xx2903ghnsq4hm50y","coinDecimals":6},{"coinDenom":"DANU","coinMinimalDenom":"cw20:terra1vj68f2ntauaj5dfvy5z4tq4we3hsyg363k63js5sae2t7th9aacqan89sr","coinDecimals":6},{"coinDenom":"TRS","coinMinimalDenom":"cw20:terra1swzpenwh39f8aa7qht34r05f8ew6k2vehvqt2aw4fjy0fgghhheqs9l6h7","coinDecimals":6},{"coinDenom":"PLASMA","coinMinimalDenom":"cw20:terra1mqs6mdx0ak7qvjzs6efhg65g4j5pzwpdkcgdsv5tpekln3qhggrq3qzvdp","coinDecimals":6},{"coinDenom":"DMT","coinMinimalDenom":"cw20:terra1xfkkgwxychgrnq0vcp82u32mecrzj8s64s03cxtmf46k6j2n2wssc7rzjf","coinDecimals":6},{"coinDenom":"ampluna","coinMinimalDenom":"cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct","coinDecimals":6},{"coinDenom":"roar","coinMinimalDenom":"cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv","coinDecimals":6},{"coinDenom":"gem","coinMinimalDenom":"cw20:terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv","coinDecimals":6},{"coinDenom":"cub","coinMinimalDenom":"cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t","coinDecimals":6},{"coinDenom":"blue","coinMinimalDenom":"cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584","coinDecimals":6},{"coinDenom":"xxx","coinMinimalDenom":"cw20:terra10se906awphtccf4vd83m0ulpmpt9v4msuakmpy0pwvmtxmup3kdq25rayn","coinDecimals":10},{"coinDenom":"GUGU","coinMinimalDenom":"cw20:terra19nu4q2y0xe3vza6ve5ymup33uzm049pnrqq5ddeuulmrg279t57qstcces","coinDecimals":6},{"coinDenom":"bLUNA","coinMinimalDenom":"cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml","coinDecimals":6},{"coinDenom":"sayve","coinMinimalDenom":"cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3","coinDecimals":6},{"coinDenom":"ampWHALEt","coinMinimalDenom":"factory/terra1j35ta0llaxcf55auv2cjqau5a7aee6g8fz7md7my7005cvh23jfsaw83dy/ampWHALEt","coinDecimals":6},{"coinDenom":"boneWHALEt","coinMinimalDenom":"factory/terra10j3zrymfrkta2pxe0gklc79gu06tqyuy8c3kh6tqdsrrprsjqkrqzfl4df/boneWHALEt","coinDecimals":6},{"coinDenom":"ampROAR","coinMinimalDenom":"factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR","coinDecimals":6},{"coinDenom":"nico","coinMinimalDenom":"cw20:terra1e0efrrrj8d55pflme3dmtyuj7klzcef5cfmz6r2jyqz77kk2jz3qa6drg3","coinDecimals":18},{"coinDenom":"seas","coinMinimalDenom":"cw20:terra1rc6ssp5rym7a0hg29xpj4cc9e67tl56kg5jyzgl9qrhfxxc2ugvsnrkala","coinDecimals":6},{"coinDenom":"bitz","coinMinimalDenom":"cw20:terra18vp5s0r7keezm35hdxsgw8zgfnyn8wejdkk893ag2kqncgpqxhjqwjpc0v","coinDecimals":6},{"coinDenom":"factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH","coinMinimalDenom":"ibc/A356EC90DC3AE43D485514DA7260EDC7ABB5CFAA0654CE2524C739392975AD3C","coinDecimals":18},{"coinDenom":"seul","coinMinimalDenom":"cw20:terra13s5pxw5j2p4ssvzwvxd8l7h30vke8vjgtng75vqgv6p9vddfk3hskfka0l","coinDecimals":6},{"coinDenom":"xseul","coinMinimalDenom":"cw20:terra1q328gl40az3cf9x67cgudn8e8w2az9vsmhtkwsgdu7a43rhy5caqc82yr5","coinDecimals":6},{"coinDenom":"ito","coinMinimalDenom":"cw20:terra1c77xqv746m7ghxayrge79dxr4kcezev8g6cnrfled4f3n4ufj0vs5gz28s","coinDecimals":6},{"coinDenom":"ARMANI","coinMinimalDenom":"cw20:terra1aa7stl3fytvave9xtcexgv0kne4k7ks068dcljkrfj37hy8q270sjadav8","coinDecimals":6},{"coinDenom":"DROGO","coinMinimalDenom":"cw20:terra1cl273523kmr2uwjhhznq54je69mted2u3ljffm8kp2ap4z3drdksftwqun","coinDecimals":6},{"coinDenom":"ADO","coinMinimalDenom":"cw20:terra1w8xk6rtu40st6lvl3yv7ynw5urm2n686u9cchvrzltmnktzwdesqcwy0nu","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/E18C0D303957867A164DE2863D1C3F83135936E6F17CADF4D241FBC12B0F23B2","coinDecimals":6},{"coinDenom":"DNA","coinMinimalDenom":"cw20:terra1epka8wevu90rxlvt6g5x9veevd800a760vtuftc5kqdfmrh47qds9f0m8h","coinDecimals":6},{"coinDenom":"bitmos","coinMinimalDenom":"cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq","coinDecimals":6},{"coinDenom":"lads","coinMinimalDenom":"cw20:terra1eh8eq60cjy997w5dc3a6exfzanlaurupav8klx7m9u9ddfgh25mqjwl5vj","coinDecimals":6},{"coinDenom":"rstk","coinMinimalDenom":"ibc/F709DF4969CD26174C1A53AA95F3D98BE643C1A52C9981487766F96A1811F6A4","coinDecimals":6},{"coinDenom":"CLON","coinMinimalDenom":"cw20:terra164ssz60yvsxey0ku9mtcaegdeyxwzuwwqyrp238nvflwqve0pvxsra7fa2","coinDecimals":6},{"coinDenom":"MOAR","coinMinimalDenom":"factory/terra1dndhtdr2v7ca8rrn67chlqw3cl3xhm3m2uxls62vghcg3fsh5tpss5xmcu/MOAR","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/9B19062D46CAB50361CE9B0A3E6D0A7A53AC9E7CB361F32A73CC733144A9A9E5","coinDecimals":6},{"coinDenom":"atom-luna-lp","coinMinimalDenom":"factory/terra1djk2zl83dspt696ex5crhfacu8vm6934576t4zdd2592fzyahr2qma6guq/ULUN-IBC/-LP","coinDecimals":6},{"coinDenom":"luna-usdc-lp","coinMinimalDenom":"factory/terra12jxfw2vg4cu6mxlgf39dp5ccxtuwm468w8eh9cnh2qsxc9t0sffs7ekhft/ULUN-IBC/-LP","coinDecimals":6},{"coinDenom":"luna-usdt-lp","coinMinimalDenom":"factory/terra1w9spejtuac5dt0gympq576uhwde39exhh7hdxwl99rjvaphfukkq6y4cv7/ULUN-IBC/-LP","coinDecimals":6},{"coinDenom":"ashLUNA","coinMinimalDenom":"factory/terra1f5cfm48gcezl3cx25l64ngc4yktnmx7rcpj3kggu6v273742sqqs5yn5ks/luna.ash","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/2C962DAB9F57FE0921435426AE75196009FAA1981BF86991203C8411F8980FDB","coinDecimals":6},{"coinDenom":"COSMO","coinMinimalDenom":"ibc/4925733868E7999F5822C961ADE9470A7FC5FA4A560BAE1DE102783C3F64C201","coinDecimals":6},{"coinDenom":"DGN","coinMinimalDenom":"ibc/B2AA4C3CD19954859C3B537EC0705640AFC01075F52993D9AC5E73F07F0386CC","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/36A02FFC4E74DF4F64305130C3DFA1B06BEAC775648927AA44467C76A77AB8DB","coinDecimals":6}],"rest":"https://lcd-terra.wildsage.io","rpc":"https://rpc.lavenderfive.com:443/terra2","bech32Config":{"bech32PrefixAccAddr":"terra","bech32PrefixAccPub":"terrapub","bech32PrefixValAddr":"terravaloper","bech32PrefixValPub":"terravaloperpub","bech32PrefixConsAddr":"terravalcons","bech32PrefixConsPub":"terravalconspub"},"chainName":"terra2","feeCurrencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.015,"high":0.04}}],"stakeCurrency":{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},"bip44":{"coinType":330}},{"chainId":"tgrade-mainnet-1","currencies":[{"coinDenom":"tgd","coinMinimalDenom":"utgd","coinDecimals":6}],"rest":"https://api.mainnet-1.tgrade.confio.run","rpc":"https://rpc.mainnet-1.tgrade.confio.run","bech32Config":{"bech32PrefixAccAddr":"tgrade","bech32PrefixAccPub":"tgradepub","bech32PrefixValAddr":"tgradevaloper","bech32PrefixValPub":"tgradevaloperpub","bech32PrefixConsAddr":"tgradevalcons","bech32PrefixConsPub":"tgradevalconspub"},"chainName":"tgrade","feeCurrencies":[{"coinDenom":"tgd","coinMinimalDenom":"utgd","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.075,"high":0.1}}],"stakeCurrency":{"coinDenom":"tgd","coinMinimalDenom":"utgd","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"titan_18888-1","currencies":[{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","coinDecimals":6}],"rest":"https://titan-lcd.titanlab.io:443","rpc":"https://titan-rpc.titanlab.io:443","bech32Config":{"bech32PrefixAccAddr":"titan","bech32PrefixAccPub":"titanpub","bech32PrefixValAddr":"titanvaloper","bech32PrefixValPub":"titanvaloperpub","bech32PrefixConsAddr":"titanvalcons","bech32PrefixConsPub":"titanvalconspub"},"chainName":"titan","feeCurrencies":[{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18,"gasPriceStep":{"low":100000000000,"average":110000000000,"high":200000000000}}],"stakeCurrency":{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"umee-1","currencies":[{"coinDenom":"umee","coinMinimalDenom":"uumee","coinDecimals":6}],"rest":"https://api-umee-ia.cosmosia.notional.ventures/","rpc":"https://umee-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"umee","bech32PrefixAccPub":"umeepub","bech32PrefixValAddr":"umeevaloper","bech32PrefixValPub":"umeevaloperpub","bech32PrefixConsAddr":"umeevalcons","bech32PrefixConsPub":"umeevalconspub"},"chainName":"umee","feeCurrencies":[{"coinDenom":"umee","coinMinimalDenom":"uumee","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.12,"high":0.2}}],"stakeCurrency":{"coinDenom":"umee","coinMinimalDenom":"uumee","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"FUND-MainNet-2","currencies":[{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9}],"rest":"https://rest.unification.io","rpc":"https://rpc.unification.io:443","bech32Config":{"bech32PrefixAccAddr":"und","bech32PrefixAccPub":"undpub","bech32PrefixValAddr":"undvaloper","bech32PrefixValPub":"undvaloperpub","bech32PrefixConsAddr":"undvalcons","bech32PrefixConsPub":"undvalconspub"},"chainName":"unification","feeCurrencies":[{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9,"gasPriceStep":{"low":100,"average":200,"high":300}}],"stakeCurrency":{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9},"bip44":{"coinType":5555}},{"chainId":"ununifi-beta-v1","currencies":[{"coinDenom":"guu","coinMinimalDenom":"uguu","coinDecimals":6}],"rest":"https://a.lcd.ununifi.cauchye.net:1318","rpc":"http://a.lcd.ununifi.cauchye.net:26657","bech32Config":{"bech32PrefixAccAddr":"ununifi","bech32PrefixAccPub":"ununifipub","bech32PrefixValAddr":"ununifivaloper","bech32PrefixValPub":"ununifivaloperpub","bech32PrefixConsAddr":"ununifivalcons","bech32PrefixConsPub":"ununifivalconspub"},"chainName":"ununifi","feeCurrencies":[{"coinDenom":"guu","coinMinimalDenom":"uguu","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"guu","coinMinimalDenom":"uguu","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"uptick_117-1","currencies":[{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18}],"rest":"https://uptick-rest.brocha.in:443","rpc":"https://uptick-rpc.brocha.in:443","bech32Config":{"bech32PrefixAccAddr":"uptick","bech32PrefixAccPub":"uptickpub","bech32PrefixValAddr":"uptickvaloper","bech32PrefixValPub":"uptickvaloperpub","bech32PrefixConsAddr":"uptickvalcons","bech32PrefixConsPub":"uptickvalconspub"},"chainName":"uptick","feeCurrencies":[{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18,"gasPriceStep":{"low":13000000000,"average":16000000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"xion-mainnet-1","currencies":[{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6}],"rest":"https://api.xion-mainnet-1.burnt.com","rpc":"https://rpc.xion-mainnet-1.burnt.com","bech32Config":{"bech32PrefixAccAddr":"xion","bech32PrefixAccPub":"xionpub","bech32PrefixValAddr":"xionvaloper","bech32PrefixValPub":"xionvaloperpub","bech32PrefixConsAddr":"xionvalcons","bech32PrefixConsPub":"xionvalconspub"},"chainName":"xion","feeCurrencies":[{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.001,"high":0.01}}],"stakeCurrency":{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"dimension_37-1","currencies":[{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18}],"rest":"https://dimension-lcd.xpla.io","rpc":"https://dimension-rpc.xpla.dev","bech32Config":{"bech32PrefixAccAddr":"xpla","bech32PrefixAccPub":"xplapub","bech32PrefixValAddr":"xplavaloper","bech32PrefixValPub":"xplavaloperpub","bech32PrefixConsAddr":"xplavalcons","bech32PrefixConsPub":"xplavalconspub"},"chainName":"xpla","feeCurrencies":[{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18,"gasPriceStep":{"low":850000000000,"average":1147500000000,"high":1487500000000}}],"stakeCurrency":{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"zetachain_7000-1","currencies":[{"coinDenom":"zeta","coinMinimalDenom":"azeta","coinDecimals":18}],"rest":"https://zetachain.blockpi.network/lcd/v1/public","rpc":"https://zetachain.blockpi.network/rpc/v1/public","bech32Config":{"bech32PrefixAccAddr":"zeta","bech32PrefixAccPub":"zetapub","bech32PrefixValAddr":"zetavaloper","bech32PrefixValPub":"zetavaloperpub","bech32PrefixConsAddr":"zetavalcons","bech32PrefixConsPub":"zetavalconspub"},"chainName":"zetachain","feeCurrencies":[{"coinDenom":"zeta","coinMinimalDenom":"azeta","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"zeta","coinMinimalDenom":"azeta","coinDecimals":18},"bip44":{"coinType":60}}] \ No newline at end of file +[{"chainId":"aaronetwork","currencies":[{"coinDenom":"AARON","coinMinimalDenom":"uaaron","coinDecimals":6}],"rest":"https://mainnet-api.aaronetwork.xyz","rpc":"https://mainnet-rpc.aaronetwork.xyz","bech32Config":{"bech32PrefixAccAddr":"aaron","bech32PrefixAccPub":"aaronpub","bech32PrefixValAddr":"aaronvaloper","bech32PrefixValPub":"aaronvaloperpub","bech32PrefixConsAddr":"aaronvalcons","bech32PrefixConsPub":"aaronvalconspub"},"chainName":"aaronetwork","feeCurrencies":[{"coinDenom":"AARON","coinMinimalDenom":"uaaron","coinDecimals":6}],"stakeCurrency":{"coinDenom":"AARON","coinMinimalDenom":"uaaron","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"acre_9052-1","currencies":[{"coinDenom":"acre","coinMinimalDenom":"aacre","coinDecimals":18},{"coinDenom":"arusd","coinMinimalDenom":"erc20/0x2Cbea61fdfDFA520Ee99700F104D5b75ADf50B0c","coinDecimals":18},{"coinDenom":"cnto","coinMinimalDenom":"erc20/0xAE6D3334989a22A65228732446731438672418F2","coinDecimals":18}],"rest":"https://lcd-acre.synergynodes.com","rpc":"https://rpc-acre.synergynodes.com","bech32Config":{"bech32PrefixAccAddr":"acre","bech32PrefixAccPub":"acrepub","bech32PrefixValAddr":"acrevaloper","bech32PrefixValPub":"acrevaloperpub","bech32PrefixConsAddr":"acrevalcons","bech32PrefixConsPub":"acrevalconspub"},"chainName":"acrechain","feeCurrencies":[{"coinDenom":"acre","coinMinimalDenom":"aacre","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"acre","coinMinimalDenom":"aacre","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"agoric-3","currencies":[{"coinDenom":"bld","coinMinimalDenom":"ubld","coinDecimals":6},{"coinDenom":"ist","coinMinimalDenom":"uist","coinDecimals":6}],"rest":"https://main.api.agoric.net:443","rpc":"https://main.rpc.agoric.net:443","bech32Config":{"bech32PrefixAccAddr":"agoric","bech32PrefixAccPub":"agoricpub","bech32PrefixValAddr":"agoricvaloper","bech32PrefixValPub":"agoricvaloperpub","bech32PrefixConsAddr":"agoricvalcons","bech32PrefixConsPub":"agoricvalconspub"},"chainName":"agoric","feeCurrencies":[{"coinDenom":"bld","coinMinimalDenom":"ubld","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.05,"high":0.07}},{"coinDenom":"ist","coinMinimalDenom":"uist","coinDecimals":6,"gasPriceStep":{"low":0.0034,"average":0.007,"high":0.02}}],"stakeCurrency":{"coinDenom":"bld","coinMinimalDenom":"ubld","coinDecimals":6},"bip44":{"coinType":564}},{"chainId":"aioz_168-1","currencies":[{"coinDenom":"aioz","coinMinimalDenom":"attoaioz","coinDecimals":18}],"rest":"https://lcd-dataseed.aioz.network","rpc":"https://rpc-dataseed.aioz.network:443","bech32Config":{"bech32PrefixAccAddr":"aioz","bech32PrefixAccPub":"aiozpub","bech32PrefixValAddr":"aiozvaloper","bech32PrefixValPub":"aiozvaloperpub","bech32PrefixConsAddr":"aiozvalcons","bech32PrefixConsPub":"aiozvalconspub"},"chainName":"aioz","feeCurrencies":[{"coinDenom":"aioz","coinMinimalDenom":"attoaioz","coinDecimals":18,"gasPriceStep":{"low":7000000000,"average":7000000000,"high":10000000000}}],"stakeCurrency":{"coinDenom":"aioz","coinMinimalDenom":"attoaioz","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"akashnet-2","currencies":[{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/05DB6975261B805B6F6A157A4386C627F8A70BF8118D411655EFEDCA82BFABA5","coinDecimals":6}],"rest":"https://api.akash.forbole.com:443","rpc":"https://rpc.akash.forbole.com:443","bech32Config":{"bech32PrefixAccAddr":"akash","bech32PrefixAccPub":"akashpub","bech32PrefixValAddr":"akashvaloper","bech32PrefixValPub":"akashvaloperpub","bech32PrefixConsAddr":"akashvalcons","bech32PrefixConsPub":"akashvalconspub"},"chainName":"akash","feeCurrencies":[{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6,"gasPriceStep":{"low":0.00025,"average":0.0025,"high":0.025}}],"stakeCurrency":{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"althea_258432-1","currencies":[{"coinDenom":"althea","coinMinimalDenom":"aalthea","coinDecimals":18}],"rest":"https://nodes.chandrastation.com/api/althea/","rpc":"https://nodes.chandrastation.com/rpc/althea/","bech32Config":{"bech32PrefixAccAddr":"althea","bech32PrefixAccPub":"altheapub","bech32PrefixValAddr":"altheavaloper","bech32PrefixValPub":"altheavaloperpub","bech32PrefixConsAddr":"altheavalcons","bech32PrefixConsPub":"altheavalconspub"},"chainName":"althea","feeCurrencies":[{"coinDenom":"althea","coinMinimalDenom":"aalthea","coinDecimals":18,"gasPriceStep":{"low":100000000000,"average":100000000000,"high":300000000000}}],"stakeCurrency":{"coinDenom":"althea","coinMinimalDenom":"aalthea","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"andromeda-1","currencies":[{"coinDenom":"andr","coinMinimalDenom":"uandr","coinDecimals":6}],"rest":"https://api.andromeda-1.andromeda.aviaone.com","rpc":"https://rpc.andromeda-1.andromeda.aviaone.com","bech32Config":{"bech32PrefixAccAddr":"andr","bech32PrefixAccPub":"andrpub","bech32PrefixValAddr":"andrvaloper","bech32PrefixValPub":"andrvaloperpub","bech32PrefixConsAddr":"andrvalcons","bech32PrefixConsPub":"andrvalconspub"},"chainName":"andromeda","feeCurrencies":[{"coinDenom":"andr","coinMinimalDenom":"uandr","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.05,"high":0.075}}],"stakeCurrency":{"coinDenom":"andr","coinMinimalDenom":"uandr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"archway-1","currencies":[{"coinDenom":"arch","coinMinimalDenom":"aarch","coinDecimals":18},{"coinDenom":"bARCH","coinMinimalDenom":"archway12yurzx8zynv3ck7uh4tucre48tqsm4fac4hfk9p3l24qs2cn08dqr684cg","coinDecimals":18},{"coinDenom":"TOKN","coinMinimalDenom":"archway16kxu278xtwa9ql20yhgk9smk2k6ke74hsxeesf36c9dhxqc5zyksh8ykwu","coinDecimals":18},{"coinDenom":"ampARCH","coinMinimalDenom":"cw20:archway1fwurjg7ah4v7hhs6xsc3wutqpvmahrfhns285s0lt34tgfdhplxq6m8xg5","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/D2BCFE34F35AF2968C8E1F84557D8A2058BB56F739EB553206EFC2AD8C6EDAF0","coinDecimals":6},{"coinDenom":"vdl","coinMinimalDenom":"ibc/1BCF1FCAFE3568E234787EDFDA12460BD8931B17FE6A729DCD60FAD845558DA1","coinDecimals":6},{"coinDenom":"AXV","coinMinimalDenom":"cw20:archway1ecjefhcf8r60wtfnhwefrxhj9caeqa90fj58cqsaafqveawn6cjs5znd2n","coinDecimals":6},{"coinDenom":"wARCH","coinMinimalDenom":"cw20:archway1msc3fa4e2mh73y760qmjd3wfkzr98nl26f36xgt2xnhuw6ay3scs42zeue","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/43897B9739BD63E3A08A88191999C632E052724AB96BD4C74AE31375C991F48D","coinDecimals":6},{"coinDenom":"wUSDC","coinMinimalDenom":"cw20:archway1gaf9nw7n8v5lpjz9caxjpps006kxfcrzcuc8y5qp4clslhven2ns2g0ule","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/3F882513A0CCD1C4110ACB7C6C761AC7B48974C9D2D439CD6F652F9B44362518","coinDecimals":6}],"rest":"https://api.mainnet.archway.io","rpc":"https://rpc.mainnet.archway.io","bech32Config":{"bech32PrefixAccAddr":"archway","bech32PrefixAccPub":"archwaypub","bech32PrefixValAddr":"archwayvaloper","bech32PrefixValPub":"archwayvaloperpub","bech32PrefixConsAddr":"archwayvalcons","bech32PrefixConsPub":"archwayvalconspub"},"chainName":"archway","feeCurrencies":[{"coinDenom":"arch","coinMinimalDenom":"aarch","coinDecimals":18,"gasPriceStep":{"low":196000000000,"average":225400000000,"high":254800000000}}],"stakeCurrency":{"coinDenom":"arch","coinMinimalDenom":"aarch","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"arkh","currencies":[{"coinDenom":"ARKH","coinMinimalDenom":"arkh","coinDecimals":6}],"rest":"https://asc-blockchain-api.arkhadian.com/","rpc":"https://asc-dataseed.arkhadian.com/","bech32Config":{"bech32PrefixAccAddr":"arkh","bech32PrefixAccPub":"arkhpub","bech32PrefixValAddr":"arkhvaloper","bech32PrefixValPub":"arkhvaloperpub","bech32PrefixConsAddr":"arkhvalcons","bech32PrefixConsPub":"arkhvalconspub"},"chainName":"arkh","feeCurrencies":[{"coinDenom":"ARKH","coinMinimalDenom":"arkh","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"ARKH","coinMinimalDenom":"arkh","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mantle-1","currencies":[{"coinDenom":"mntl","coinMinimalDenom":"umntl","coinDecimals":6}],"rest":"https://rest.assetmantle.one","rpc":"https://rpc.assetmantle.one","bech32Config":{"bech32PrefixAccAddr":"mantle","bech32PrefixAccPub":"mantlepub","bech32PrefixValAddr":"mantlevaloper","bech32PrefixValPub":"mantlevaloperpub","bech32PrefixConsAddr":"mantlevalcons","bech32PrefixConsPub":"mantlevalconspub"},"chainName":"assetmantle","feeCurrencies":[{"coinDenom":"mntl","coinMinimalDenom":"umntl","coinDecimals":6}],"stakeCurrency":{"coinDenom":"mntl","coinMinimalDenom":"umntl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"atomone-1","currencies":[{"coinDenom":"atone","coinMinimalDenom":"uatone","coinDecimals":6}],"rest":"https://atomone-api.allinbits.com","rpc":"https://atomone-rpc.allinbits.com:443","bech32Config":{"bech32PrefixAccAddr":"atone","bech32PrefixAccPub":"atonepub","bech32PrefixValAddr":"atonevaloper","bech32PrefixValPub":"atonevaloperpub","bech32PrefixConsAddr":"atonevalcons","bech32PrefixConsPub":"atonevalconspub"},"chainName":"atomone","feeCurrencies":[{"coinDenom":"atone","coinMinimalDenom":"uatone","coinDecimals":6,"gasPriceStep":{"low":0.006,"average":0.006,"high":0.009}}],"stakeCurrency":{"coinDenom":"atone","coinMinimalDenom":"uatone","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"aura_6322-2","currencies":[{"coinDenom":"aura","coinMinimalDenom":"uaura","coinDecimals":6}],"rest":"https://lcd.aura.network/","rpc":"https://rpc.aura.network/","bech32Config":{"bech32PrefixAccAddr":"aura","bech32PrefixAccPub":"aurapub","bech32PrefixValAddr":"auravaloper","bech32PrefixValPub":"auravaloperpub","bech32PrefixConsAddr":"auravalcons","bech32PrefixConsPub":"auravalconspub"},"chainName":"aura","feeCurrencies":[{"coinDenom":"aura","coinMinimalDenom":"uaura","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.0025}}],"stakeCurrency":{"coinDenom":"aura","coinMinimalDenom":"uaura","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"axelar-dojo-1","currencies":[{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6},{"coinDenom":"frax","coinMinimalDenom":"frax-wei","coinDecimals":18},{"coinDenom":"dai","coinMinimalDenom":"dai-wei","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"uusdt","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"weth-wei","coinDecimals":18},{"coinDenom":"wbtc","coinMinimalDenom":"wbtc-satoshi","coinDecimals":8},{"coinDenom":"aave","coinMinimalDenom":"aave-wei","coinDecimals":18},{"coinDenom":"ape","coinMinimalDenom":"ape-wei","coinDecimals":18},{"coinDenom":"axs","coinMinimalDenom":"axs-wei","coinDecimals":18},{"coinDenom":"link","coinMinimalDenom":"link-wei","coinDecimals":18},{"coinDenom":"mkr","coinMinimalDenom":"mkr-wei","coinDecimals":18},{"coinDenom":"rai","coinMinimalDenom":"rai-wei","coinDecimals":18},{"coinDenom":"shib","coinMinimalDenom":"shib-wei","coinDecimals":18},{"coinDenom":"steth","coinMinimalDenom":"steth-wei","coinDecimals":18},{"coinDenom":"uni","coinMinimalDenom":"uni-wei","coinDecimals":18},{"coinDenom":"xcn","coinMinimalDenom":"xcn-wei","coinDecimals":18},{"coinDenom":"dot","coinMinimalDenom":"dot-planck","coinDecimals":10},{"coinDenom":"wglmr","coinMinimalDenom":"wglmr-wei","coinDecimals":18},{"coinDenom":"wmatic","coinMinimalDenom":"wmatic-wei","coinDecimals":18},{"coinDenom":"wbnb","coinMinimalDenom":"wbnb-wei","coinDecimals":18},{"coinDenom":"busd","coinMinimalDenom":"busd-wei","coinDecimals":18},{"coinDenom":"avax","coinMinimalDenom":"wavax-wei","coinDecimals":18},{"coinDenom":"ftm","coinMinimalDenom":"wftm-wei","coinDecimals":18},{"coinDenom":"polygon-usdc","coinMinimalDenom":"polygon-uusdc","coinDecimals":6},{"coinDenom":"avalanche-usdc","coinMinimalDenom":"avalanche-uusdc","coinDecimals":6},{"coinDenom":"fil","coinMinimalDenom":"wfil-wei","coinDecimals":18},{"coinDenom":"arb","coinMinimalDenom":"arb-wei","coinDecimals":18},{"coinDenom":"pepe","coinMinimalDenom":"pepe-wei","coinDecimals":18},{"coinDenom":"cbeth","coinMinimalDenom":"cbeth-wei","coinDecimals":18},{"coinDenom":"reth","coinMinimalDenom":"reth-wei","coinDecimals":18},{"coinDenom":"sfrxeth","coinMinimalDenom":"sfrxeth-wei","coinDecimals":18},{"coinDenom":"wsteth","coinMinimalDenom":"wsteth-wei","coinDecimals":18},{"coinDenom":"YieldETH","coinMinimalDenom":"yieldeth-wei","coinDecimals":18},{"coinDenom":"ox","coinMinimalDenom":"ox-wei","coinDecimals":18},{"coinDenom":"yum","coinMinimalDenom":"yum-wei","coinDecimals":18},{"coinDenom":"arbitrum-weth","coinMinimalDenom":"arbitrum-weth-wei","coinDecimals":18},{"coinDenom":"base-weth","coinMinimalDenom":"base-weth-wei","coinDecimals":18},{"coinDenom":"polygon-weth","coinMinimalDenom":"polygon-weth-wei","coinDecimals":18},{"coinDenom":"op","coinMinimalDenom":"op-wei","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"arbitrum-uusdt","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"optimism-uusdt","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"polygon-uusdt","coinDecimals":6},{"coinDenom":"cbbtc","coinMinimalDenom":"cbbtc-satoshi","coinDecimals":8},{"coinDenom":"fbtc","coinMinimalDenom":"fbtc-satoshi","coinDecimals":8},{"coinDenom":"lbtc","coinMinimalDenom":"lbtc-satoshi","coinDecimals":8},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/53046FFF6CAD109D8F9B2C7C9913853AD241928CD05CDDE419343D176025DA74","coinDecimals":18}],"rest":"https://lcd-axelar.imperator.co:443","rpc":"https://rpc-axelar.imperator.co:443","bech32Config":{"bech32PrefixAccAddr":"axelar","bech32PrefixAccPub":"axelarpub","bech32PrefixValAddr":"axelarvaloper","bech32PrefixValPub":"axelarvaloperpub","bech32PrefixConsAddr":"axelarvalcons","bech32PrefixConsPub":"axelarvalconspub"},"chainName":"axelar","feeCurrencies":[{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6,"gasPriceStep":{"low":0.007,"average":0.007,"high":0.01}}],"stakeCurrency":{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"laozi-mainnet","currencies":[{"coinDenom":"band","coinMinimalDenom":"uband","coinDecimals":6}],"rest":"https://laozi1.bandchain.org/api","rpc":"http://rpc.laozi1.bandchain.org:80","bech32Config":{"bech32PrefixAccAddr":"band","bech32PrefixAccPub":"bandpub","bech32PrefixValAddr":"bandvaloper","bech32PrefixValPub":"bandvaloperpub","bech32PrefixConsAddr":"bandvalcons","bech32PrefixConsPub":"bandvalconspub"},"chainName":"bandchain","feeCurrencies":[{"coinDenom":"band","coinMinimalDenom":"uband","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.003,"high":0.005}}],"stakeCurrency":{"coinDenom":"band","coinMinimalDenom":"uband","coinDecimals":6},"bip44":{"coinType":494}},{"chainId":"beezee-1","currencies":[{"coinDenom":"bze","coinMinimalDenom":"ubze","coinDecimals":6},{"coinDenom":"vdl","coinMinimalDenom":"factory/bze13gzq40che93tgfm9kzmkpjamah5nj0j73pyhqk/uvdl","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6},{"coinDenom":"C2M","coinMinimalDenom":"factory/bze15pqjgk4la0mfphwddce00d05n3th3u66n3ptcv/2MARS","coinDecimals":6},{"coinDenom":"arch","coinMinimalDenom":"ibc/C00D101A3572A5374E23F11944463D1325319E255D7C824B33AF2F927F532348","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/6490A7EAB61059BFC1CDDEB05917DD70BDF3A611654162A1A47DB930D40D8AF4","coinDecimals":6},{"coinDenom":"Spice","coinMinimalDenom":"ibc/08EAEAB525E59C611D5BD8FAC4BE65DF65A69E62874377F6889BBD01A33F385F","coinDecimals":6},{"coinDenom":"jkl","coinMinimalDenom":"ibc/4AA3B163580B4377250CD4486FB6AD098EB27822EE056949EC4A39B09C5E3B4E","coinDecimals":6},{"coinDenom":"flix","coinMinimalDenom":"ibc/FF39851E73089ACBD0B09BDF62FA3C67FBD77A2CD97CD159DBCE9C770561F8AF","coinDecimals":6},{"coinDenom":"Sherpa","coinMinimalDenom":"ibc/02EE50AB3A4B7540FA001B24CB75E688016F65547CABE885EA184338440080B2","coinDecimals":6}],"rest":"https://rest.getbze.com","rpc":"https://rpc.getbze.com","bech32Config":{"bech32PrefixAccAddr":"bze","bech32PrefixAccPub":"bzepub","bech32PrefixValAddr":"bzevaloper","bech32PrefixValPub":"bzevaloperpub","bech32PrefixConsAddr":"bzevalcons","bech32PrefixConsPub":"bzevalconspub"},"chainName":"beezee","feeCurrencies":[{"coinDenom":"bze","coinMinimalDenom":"ubze","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"bze","coinMinimalDenom":"ubze","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"bitbadges-1","currencies":[{"coinDenom":"badge","coinMinimalDenom":"ubadge","coinDecimals":9},{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":9}],"rest":"http://134.122.12.165:1317","rpc":"http://134.122.12.165:26657","bech32Config":{"bech32PrefixAccAddr":"bb","bech32PrefixAccPub":"bbpub","bech32PrefixValAddr":"bbvaloper","bech32PrefixValPub":"bbvaloperpub","bech32PrefixConsAddr":"bbvalcons","bech32PrefixConsPub":"bbvalconspub"},"chainName":"bitbadges","feeCurrencies":[{"coinDenom":"badge","coinMinimalDenom":"ubadge","coinDecimals":9,"gasPriceStep":{"low":0.00025,"average":0.0025,"high":0.025}}],"stakeCurrency":{"coinDenom":"badge","coinMinimalDenom":"ubadge","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"bitcanna-1","currencies":[{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6}],"rest":"https://lcd.bitcanna.io","rpc":"https://rpc.bitcanna.io/","bech32Config":{"bech32PrefixAccAddr":"bcna","bech32PrefixAccPub":"bcnapub","bech32PrefixValAddr":"bcnavaloper","bech32PrefixValPub":"bcnavaloperpub","bech32PrefixConsAddr":"bcnavalcons","bech32PrefixConsPub":"bcnavalconspub"},"chainName":"bitcanna","feeCurrencies":[{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.0025,"high":0.01}}],"stakeCurrency":{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"bitsong-2b","currencies":[{"coinDenom":"btsg","coinMinimalDenom":"ubtsg","coinDecimals":6},{"coinDenom":"clay","coinMinimalDenom":"ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09","coinDecimals":6},{"coinDenom":"fasano","coinMinimalDenom":"ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7","coinDecimals":6},{"coinDenom":"d9x","coinMinimalDenom":"ft575B10B0CEE2C164D9ED6A96313496F164A9607C","coinDecimals":6},{"coinDenom":"fonti","coinMinimalDenom":"ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305","coinDecimals":6},{"coinDenom":"bjks","coinMinimalDenom":"ft52EEB0EE509AC546ED92EAC8591F731F213DDD16","coinDecimals":6},{"coinDenom":"rwne","coinMinimalDenom":"ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A","coinDecimals":6},{"coinDenom":"enmoda","coinMinimalDenom":"ft85AE1716C5E39EA6D64BBD7898C3899A7B500626","coinDecimals":6},{"coinDenom":"404dr","coinMinimalDenom":"ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A","coinDecimals":6},{"coinDenom":"n43","coinMinimalDenom":"ft387C1C279D962ED80C09C1D592A92C4275FD7C5D","coinDecimals":6},{"coinDenom":"lobo","coinMinimalDenom":"ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB","coinDecimals":6},{"coinDenom":"vibra","coinMinimalDenom":"ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B","coinDecimals":6},{"coinDenom":"karina","coinMinimalDenom":"ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE","coinDecimals":6},{"coinDenom":"testa","coinMinimalDenom":"ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12","coinDecimals":6},{"coinDenom":"cmqz","coinMinimalDenom":"ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3","coinDecimals":6},{"coinDenom":"ft347B1612A2B7659913679CF6CD45B8B130C50A00/6","coinMinimalDenom":"ft347B1612A2B7659913679CF6CD45B8B130C50A00","coinDecimals":6}],"rest":"https://api-bitsong-ia.cosmosia.notional.ventures/","rpc":"https://rpc-bitsong-ia.cosmosia.notional.ventures/","bech32Config":{"bech32PrefixAccAddr":"bitsong","bech32PrefixAccPub":"bitsongpub","bech32PrefixValAddr":"bitsongvaloper","bech32PrefixValPub":"bitsongvaloperpub","bech32PrefixConsAddr":"bitsongvalcons","bech32PrefixConsPub":"bitsongvalconspub"},"chainName":"bitsong","feeCurrencies":[{"coinDenom":"btsg","coinMinimalDenom":"ubtsg","coinDecimals":6,"gasPriceStep":{"low":3,"average":10,"high":20}}],"stakeCurrency":{"coinDenom":"btsg","coinMinimalDenom":"ubtsg","coinDecimals":6},"bip44":{"coinType":639}},{"chainId":"bluzelle-9","currencies":[{"coinDenom":"bnt","coinMinimalDenom":"ubnt","coinDecimals":6},{"coinDenom":"elt","coinMinimalDenom":"uelt","coinDecimals":6},{"coinDenom":"g4","coinMinimalDenom":"ug4","coinDecimals":6}],"rest":"https://a.client.sentry.net.bluzelle.com:1317","rpc":"https://a.client.sentry.net.bluzelle.com:26657","bech32Config":{"bech32PrefixAccAddr":"bluzelle","bech32PrefixAccPub":"bluzellepub","bech32PrefixValAddr":"bluzellevaloper","bech32PrefixValPub":"bluzellevaloperpub","bech32PrefixConsAddr":"bluzellevalcons","bech32PrefixConsPub":"bluzellevalconspub"},"chainName":"bluzelle","feeCurrencies":[{"coinDenom":"bnt","coinMinimalDenom":"ubnt","coinDecimals":6,"gasPriceStep":{"low":0.002,"average":0.002,"high":0.025}}],"stakeCurrency":{"coinDenom":"bnt","coinMinimalDenom":"ubnt","coinDecimals":6},"bip44":{"coinType":483}},{"chainId":"bostrom","currencies":[{"coinDenom":"boot","coinMinimalDenom":"boot","coinDecimals":0},{"coinDenom":"hydrogen","coinMinimalDenom":"hydrogen","coinDecimals":0},{"coinDenom":"ampere","coinMinimalDenom":"milliampere","coinDecimals":3},{"coinDenom":"volt","coinMinimalDenom":"millivolt","coinDecimals":3},{"coinDenom":"tocyb","coinMinimalDenom":"tocyb","coinDecimals":0}],"rest":"https://lcd.bostrom.cybernode.ai","rpc":"https://rpc.bostrom.cybernode.ai","bech32Config":{"bech32PrefixAccAddr":"bostrom","bech32PrefixAccPub":"bostrompub","bech32PrefixValAddr":"bostromvaloper","bech32PrefixValPub":"bostromvaloperpub","bech32PrefixConsAddr":"bostromvalcons","bech32PrefixConsPub":"bostromvalconspub"},"chainName":"bostrom","feeCurrencies":[{"coinDenom":"boot","coinMinimalDenom":"boot","coinDecimals":0}],"stakeCurrency":{"coinDenom":"boot","coinMinimalDenom":"boot","coinDecimals":0},"bip44":{"coinType":118}},{"chainId":"bouachain","currencies":[{"coinDenom":"bouacoin","coinMinimalDenom":"ubouacoin","coinDecimals":8}],"rest":"https://lcd.bouachain.com","rpc":"https://rpc.bouachain.com","bech32Config":{"bech32PrefixAccAddr":"boua","bech32PrefixAccPub":"bouapub","bech32PrefixValAddr":"bouavaloper","bech32PrefixValPub":"bouavaloperpub","bech32PrefixConsAddr":"bouavalcons","bech32PrefixConsPub":"bouavalconspub"},"chainName":"bouachain","feeCurrencies":[{"coinDenom":"bouacoin","coinMinimalDenom":"ubouacoin","coinDecimals":8,"gasPriceStep":{"low":0.0006,"average":0.012,"high":0.04}}],"stakeCurrency":{"coinDenom":"bouacoin","coinMinimalDenom":"ubouacoin","coinDecimals":8},"bip44":{"coinType":118}},{"chainId":"canto_7700-1","currencies":[{"coinDenom":"canto","coinMinimalDenom":"acanto","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/FAFF3F7B2FE30447544A27910DF77069763CF25472BFCF63A9E7C81F0AD545AC","coinDecimals":6}],"rest":"https://api.canto.nodestake.top","rpc":"https://rpc.canto.nodestake.top","bech32Config":{"bech32PrefixAccAddr":"canto","bech32PrefixAccPub":"cantopub","bech32PrefixValAddr":"cantovaloper","bech32PrefixValPub":"cantovaloperpub","bech32PrefixConsAddr":"cantovalcons","bech32PrefixConsPub":"cantovalconspub"},"chainName":"canto","feeCurrencies":[{"coinDenom":"canto","coinMinimalDenom":"acanto","coinDecimals":18,"gasPriceStep":{"low":1000000000000,"average":2000000000000,"high":3000000000000}}],"stakeCurrency":{"coinDenom":"canto","coinMinimalDenom":"acanto","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"carbon-1","currencies":[{"coinDenom":"dswth","coinMinimalDenom":"swth","coinDecimals":8},{"coinDenom":"dusc","coinMinimalDenom":"usc","coinDecimals":8},{"coinDenom":"bnb","coinMinimalDenom":"bnb.1.6.773edb","coinDecimals":18},{"coinDenom":"bneo","coinMinimalDenom":"bneo.1.14.e2e5f6","coinDecimals":8},{"coinDenom":"busd","coinMinimalDenom":"busd.1.6.754a80","coinDecimals":18},{"coinDenom":"cglp","coinMinimalDenom":"cglp.1.19.1698d3","coinDecimals":18},{"coinDenom":"usd","coinMinimalDenom":"cgt/1","coinDecimals":18},{"coinDenom":"eth","coinMinimalDenom":"eth.1.19.c3b805","coinDecimals":18},{"coinDenom":"eth","coinMinimalDenom":"eth.1.2.942d87","coinDecimals":18},{"coinDenom":"stars","coinMinimalDenom":"ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6},{"coinDenom":"milkTIA","coinMinimalDenom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","coinDecimals":6},{"coinDenom":"strd","coinMinimalDenom":"ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5","coinDecimals":6},{"coinDenom":"evmos","coinMinimalDenom":"ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364","coinDecimals":18},{"coinDenom":"iris","coinMinimalDenom":"ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118","coinDecimals":6},{"coinDenom":"kuji","coinMinimalDenom":"ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93","coinDecimals":6},{"coinDenom":"canto","coinMinimalDenom":"ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861","coinDecimals":18},{"coinDenom":"atom","coinMinimalDenom":"ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"usdc.1.2.343151","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"usdc.1.6.53ff75","coinDecimals":18},{"coinDenom":"zil","coinMinimalDenom":"zil.1.18.1a4a06","coinDecimals":12}],"rest":"https://api.carbon.network","rpc":"https://tm-api.carbon.network","bech32Config":{"bech32PrefixAccAddr":"swth","bech32PrefixAccPub":"swthpub","bech32PrefixValAddr":"swthvaloper","bech32PrefixValPub":"swthvaloperpub","bech32PrefixConsAddr":"swthvalcons","bech32PrefixConsPub":"swthvalconspub"},"chainName":"carbon","feeCurrencies":[{"coinDenom":"dswth","coinMinimalDenom":"swth","coinDecimals":8,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"dusc","coinMinimalDenom":"usc","coinDecimals":8,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.0001}},{"coinDenom":"bnb","coinMinimalDenom":"bnb.1.6.773edb","coinDecimals":18,"gasPriceStep":{"low":1000000,"average":1000000,"high":1000000}},{"coinDenom":"bneo","coinMinimalDenom":"bneo.1.14.e2e5f6","coinDecimals":8,"gasPriceStep":{"low":0.0015,"average":0.0015,"high":0.0015}},{"coinDenom":"busd","coinMinimalDenom":"busd.1.6.754a80","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":100000000,"high":100000000}},{"coinDenom":"cglp","coinMinimalDenom":"cglp.1.19.1698d3","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":100000000,"high":100000000}},{"coinDenom":"usd","coinMinimalDenom":"cgt/1","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":100000000,"high":100000000}},{"coinDenom":"eth","coinMinimalDenom":"eth.1.19.c3b805","coinDecimals":18,"gasPriceStep":{"low":100000,"average":100000,"high":100000}},{"coinDenom":"eth","coinMinimalDenom":"eth.1.2.942d87","coinDecimals":18,"gasPriceStep":{"low":100000,"average":100000,"high":100000}},{"coinDenom":"stars","coinMinimalDenom":"ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C","coinDecimals":6,"gasPriceStep":{"low":0.0035,"average":0.0035,"high":0.0035}},{"coinDenom":"milkTIA","coinMinimalDenom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","coinDecimals":6,"gasPriceStep":{"low":0.0000075,"average":0.0000075,"high":0.0000075}},{"coinDenom":"luna","coinMinimalDenom":"ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5","coinDecimals":6,"gasPriceStep":{"low":0.00005,"average":0.00005,"high":0.00005}},{"coinDenom":"strd","coinMinimalDenom":"ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5","coinDecimals":6,"gasPriceStep":{"low":0.00032,"average":0.00032,"high":0.00032}},{"coinDenom":"evmos","coinMinimalDenom":"ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364","coinDecimals":18,"gasPriceStep":{"low":300000000,"average":300000000,"high":300000000}},{"coinDenom":"iris","coinMinimalDenom":"ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118","coinDecimals":6,"gasPriceStep":{"low":0.0006,"average":0.0006,"high":0.0006}},{"coinDenom":"kuji","coinMinimalDenom":"ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5","coinDecimals":6,"gasPriceStep":{"low":0.00015,"average":0.00015,"high":0.00015}},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6,"gasPriceStep":{"low":0.0000075,"average":0.0000075,"high":0.0000075}},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93","coinDecimals":6,"gasPriceStep":{"low":0.00015,"average":0.00015,"high":0.00015}},{"coinDenom":"canto","coinMinimalDenom":"ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861","coinDecimals":18,"gasPriceStep":{"low":200000000,"average":200000000,"high":200000000}},{"coinDenom":"atom","coinMinimalDenom":"ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701","coinDecimals":6,"gasPriceStep":{"low":0.00001,"average":0.00001,"high":0.00001}},{"coinDenom":"statom","coinMinimalDenom":"ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C","coinDecimals":6,"gasPriceStep":{"low":0.00001,"average":0.00001,"high":0.00001}},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6,"gasPriceStep":{"low":0.00015,"average":0.00015,"high":0.00015}},{"coinDenom":"usdc","coinMinimalDenom":"usdc.1.2.343151","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.0001}},{"coinDenom":"usdc","coinMinimalDenom":"usdc.1.6.53ff75","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":100000000,"high":100000000}},{"coinDenom":"zil","coinMinimalDenom":"zil.1.18.1a4a06","coinDecimals":12,"gasPriceStep":{"low":6000,"average":6000,"high":6000}}],"stakeCurrency":{"coinDenom":"dswth","coinMinimalDenom":"swth","coinDecimals":8},"bip44":{"coinType":118}},{"chainId":"celestia","currencies":[{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6}],"rest":"https://public-celestia-lcd.numia.xyz","rpc":"https://public-celestia-rpc.numia.xyz","bech32Config":{"bech32PrefixAccAddr":"celestia","bech32PrefixAccPub":"celestiapub","bech32PrefixValAddr":"celestiavaloper","bech32PrefixValPub":"celestiavaloperpub","bech32PrefixConsAddr":"celestiavalcons","bech32PrefixConsPub":"celestiavalconspub"},"chainName":"celestia","feeCurrencies":[{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}}],"stakeCurrency":{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"perun-1","currencies":[{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6}],"rest":"https://lcd.c4e.io/","rpc":"https://rpc.c4e.io/","bech32Config":{"bech32PrefixAccAddr":"c4e","bech32PrefixAccPub":"c4epub","bech32PrefixValAddr":"c4evaloper","bech32PrefixValPub":"c4evaloperpub","bech32PrefixConsAddr":"c4evalcons","bech32PrefixConsPub":"c4evalconspub"},"chainName":"chain4energy","feeCurrencies":[{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cheqd-mainnet-1","currencies":[{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9}],"rest":"https://api.cheqd.net","rpc":"https://rpc.cheqd.net","bech32Config":{"bech32PrefixAccAddr":"cheqd","bech32PrefixAccPub":"cheqdpub","bech32PrefixValAddr":"cheqdvaloper","bech32PrefixValPub":"cheqdvaloperpub","bech32PrefixConsAddr":"cheqdvalcons","bech32PrefixConsPub":"cheqdvalconspub"},"chainName":"cheqd","feeCurrencies":[{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9,"gasPriceStep":{"low":50,"average":75,"high":100}}],"stakeCurrency":{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"chihuahua-1","currencies":[{"coinDenom":"huahua","coinMinimalDenom":"uhuahua","coinDecimals":6},{"coinDenom":"puppy","coinMinimalDenom":"cw20:chihuahua1yl8z39ugle8s02fpwkhh293509q5xcpalmdzc4amvchz8nkexrmsy95gef","coinDecimals":6},{"coinDenom":"achihuahuawifhat","coinMinimalDenom":"factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat","coinDecimals":6},{"coinDenom":"WOOF","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof","coinDecimals":6},{"coinDenom":"TACOS","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos","coinDecimals":6},{"coinDenom":"WEED","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uweed","coinDecimals":6},{"coinDenom":"BDOG","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog","coinDecimals":6},{"coinDenom":"CORSO","coinMinimalDenom":"factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso","coinDecimals":6},{"coinDenom":"bHUAHUA","coinMinimalDenom":"cw20:chihuahua1jz5n4aynhpxx7clf2m8hrv9dp5nz83k67fgaxhy4p9dfwl6zssrq3ymr6w","coinDecimals":6},{"coinDenom":"ashHUAHUA","coinMinimalDenom":"factory/chihuahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0/uhuahua.ash","coinDecimals":6},{"coinDenom":"ampGASH","coinMinimalDenom":"ibc/7D01429FF7542DBC41C261793B480B63FE7A83260C751989CC268BC7E852EB99","coinDecimals":6},{"coinDenom":"GUPPY","coinMinimalDenom":"ibc/DBBDE1753EFA93F09C468DB5E384861BB741D4AA73E9C7032D139BB2C99FDD65","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/FA7112322CE7656DC84D441E49BAEAB9DC0AB3C7618A178A212CDE8B3F17C70B","coinDecimals":6},{"coinDenom":"Chihuahua","coinMinimalDenom":"factory/chihuahua1mzcfzh4ufk2cta59pm9a6wdyvv8c4v5epqzj46/Chihuahua","coinDecimals":6}],"rest":"https://api.chihuahua.wtf","rpc":"https://rpc.chihuahua.wtf","bech32Config":{"bech32PrefixAccAddr":"chihuahua","bech32PrefixAccPub":"chihuahuapub","bech32PrefixValAddr":"chihuahuavaloper","bech32PrefixValPub":"chihuahuavaloperpub","bech32PrefixConsAddr":"chihuahuavalcons","bech32PrefixConsPub":"chihuahuavalconspub"},"chainName":"chihuahua","feeCurrencies":[{"coinDenom":"huahua","coinMinimalDenom":"uhuahua","coinDecimals":6,"gasPriceStep":{"low":500,"average":1250,"high":2000}}],"stakeCurrency":{"coinDenom":"huahua","coinMinimalDenom":"uhuahua","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"chimba","currencies":[{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6}],"rest":"https://mainnet.chimba.ooo","rpc":"https://rpc.mainnet.chimba.ooo","bech32Config":{"bech32PrefixAccAddr":"chimba","bech32PrefixAccPub":"chimbapub","bech32PrefixValAddr":"chimbavaloper","bech32PrefixValPub":"chimbavaloperpub","bech32PrefixConsAddr":"chimbavalcons","bech32PrefixConsPub":"chimbavalconspub"},"chainName":"chimba","feeCurrencies":[{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6,"gasPriceStep":{"low":1,"average":5,"high":10}}],"stakeCurrency":{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cifer-2","currencies":[{"coinDenom":"cif","coinMinimalDenom":"ucif","coinDecimals":6}],"rest":"https://api.cifer.ai","rpc":"http://34.128.114.243:26657","bech32Config":{"bech32PrefixAccAddr":"cife","bech32PrefixAccPub":"cifepub","bech32PrefixValAddr":"cifevaloper","bech32PrefixValPub":"cifevaloperpub","bech32PrefixConsAddr":"cifevalcons","bech32PrefixConsPub":"cifevalconspub"},"chainName":"cifer","feeCurrencies":[{"coinDenom":"cif","coinMinimalDenom":"ucif","coinDecimals":6,"gasPriceStep":{"low":1,"average":5,"high":10}}],"stakeCurrency":{"coinDenom":"cif","coinMinimalDenom":"ucif","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cnho_stables-1","currencies":[{"coinDenom":"CNHO","coinMinimalDenom":"ucnho","coinDecimals":6}],"rest":"https://api.cnho.io","rpc":"https://rpc.cnho.io","bech32Config":{"bech32PrefixAccAddr":"cnho","bech32PrefixAccPub":"cnhopub","bech32PrefixValAddr":"cnhovaloper","bech32PrefixValPub":"cnhovaloperpub","bech32PrefixConsAddr":"cnhovalcons","bech32PrefixConsPub":"cnhovalconspub"},"chainName":"cnhostables","feeCurrencies":[{"coinDenom":"CNHO","coinMinimalDenom":"ucnho","coinDecimals":6,"gasPriceStep":{"low":0.000001,"average":0.00001,"high":0.025}}],"stakeCurrency":{"coinDenom":"CNHO","coinMinimalDenom":"ucnho","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"comdex-1","currencies":[{"coinDenom":"cmdx","coinMinimalDenom":"ucmdx","coinDecimals":6},{"coinDenom":"harbor","coinMinimalDenom":"uharbor","coinDecimals":6},{"coinDenom":"cmst","coinMinimalDenom":"ucmst","coinDecimals":6}],"rest":"https://rest.comdex.one","rpc":"https://rpc.comdex.one","bech32Config":{"bech32PrefixAccAddr":"comdex","bech32PrefixAccPub":"comdexpub","bech32PrefixValAddr":"comdexvaloper","bech32PrefixValPub":"comdexvaloperpub","bech32PrefixConsAddr":"comdexvalcons","bech32PrefixConsPub":"comdexvalconspub"},"chainName":"comdex","feeCurrencies":[{"coinDenom":"cmdx","coinMinimalDenom":"ucmdx","coinDecimals":6}],"stakeCurrency":{"coinDenom":"cmdx","coinMinimalDenom":"ucmdx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"commercio-3","currencies":[{"coinDenom":"commercio","coinMinimalDenom":"ucommercio","coinDecimals":6},{"coinDenom":"ccc","coinMinimalDenom":"uccc","coinDecimals":6}],"rest":"https://lcd-mainnet.commercio.network","rpc":"https://rpc-mainnet.commercio.network","bech32Config":{"bech32PrefixAccAddr":"did:com:","bech32PrefixAccPub":"did:com:pub","bech32PrefixValAddr":"did:com:valoper","bech32PrefixValPub":"did:com:valoperpub","bech32PrefixConsAddr":"did:com:valcons","bech32PrefixConsPub":"did:com:valconspub"},"chainName":"commercionetwork","feeCurrencies":[{"coinDenom":"commercio","coinMinimalDenom":"ucommercio","coinDecimals":6}],"stakeCurrency":{"coinDenom":"commercio","coinMinimalDenom":"ucommercio","coinDecimals":6},"bip44":{"coinType":701}},{"chainId":"centauri-1","currencies":[{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12},{"coinDenom":"ksm","coinMinimalDenom":"ibc/EE9046745AEC0E8302CB7ED9D5AD67F528FB3B7AE044B247FB0FB293DBDA35E9","coinDecimals":12},{"coinDenom":"dot","coinMinimalDenom":"ibc/3CC19CEC7E5A3E90E78A5A9ECC5A0E2F8F826A375CF1E096F4515CF09DA3E366","coinDecimals":10},{"coinDenom":"usdt","coinMinimalDenom":"ibc/F3EC9F834E57DF704FA3AEAF14E8391C2E58397FE56960AD70E67562990D8265","coinDecimals":6},{"coinDenom":"tnkr","coinMinimalDenom":"ibc/C58E5D2571042137CB68B1B9851C4E7211C05F7C2C79E21E0966AF0F063961F8","coinDecimals":12},{"coinDenom":"eth","coinMinimalDenom":"ibc/F9D075D4079FC56A9C49B601E54A45292C319D8B0E8CC0F8439041130AA7166C","coinDecimals":18},{"coinDenom":"dai","coinMinimalDenom":"ibc/A342F6F8D1CDE1D934C50E8EAFF91E813D971E1BFEED7E557F1674E01004A533","coinDecimals":18},{"coinDenom":"fxs","coinMinimalDenom":"ibc/5F9BE030FC355733EC79307409FA98398BBFC747C9430B326C144A74F6808B29","coinDecimals":18},{"coinDenom":"frax","coinMinimalDenom":"ibc/4F20D68B51ED559F99C3CD658383E91F45486D884BF546E7B25337A058562CDB","coinDecimals":18},{"coinDenom":"frxeth","coinMinimalDenom":"ibc/458032E654E41DB91EF98F13E2CE4F9E0FE86BA3E0CDBEC074A854E9F5229A90","coinDecimals":18},{"coinDenom":"sfrxeth","coinMinimalDenom":"ibc/4E0ECE7819D77B0F2B49F5C34B5E594A02D2BA8B1B0F103208F847B53EBFB69A","coinDecimals":18},{"coinDenom":"sfrax","coinMinimalDenom":"ibc/5BD7F23FE150D9CF3BCC944DB829380BCC51A4022A131151C4D13B3AFAC2D1D9","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/37CC704EA53E96AB09A9C31D79142DE7DB252420F3AB18015F9870AE219947BD","coinDecimals":6},{"coinDenom":"crv","coinMinimalDenom":"ibc/52C8C6197989684F891076F228F20CD1659AB6E1776E3B85E65CBBEC67DA5DED","coinDecimals":18},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/1507315B0C337368B85A7EC67C3956C508E1106EBD96336B1B092F7B2815B3E5","coinDecimals":18},{"coinDenom":"steth","coinMinimalDenom":"ibc/74F65FE91F672BC2524C039B3CD0211F6D370071209552533DF26D57743D5FFD","coinDecimals":18},{"coinDenom":"reth","coinMinimalDenom":"ibc/207E7F34DFEBF714CED4900C1FD85BAF200230BF431EE8133EB26B98CB535EDC","coinDecimals":18},{"coinDenom":"crvusd","coinMinimalDenom":"ibc/C9D79BE8E3E75CA2DFDC722C77D7B179C39A4802D59019C790A825FDE34B724A","coinDecimals":18},{"coinDenom":"pxeth","coinMinimalDenom":"ibc/36EF1EA47A09689C81D848B08E5240FA9FF13B17DB7DCF48B77D4D0D9B152821","coinDecimals":18},{"coinDenom":"eeth","coinMinimalDenom":"ibc/34C23BA6BAA2EAE0199D85AD1E2E214F76B0BFAD42BF75542D15F71264EEB05B","coinDecimals":18},{"coinDenom":"ena","coinMinimalDenom":"ibc/B089810D5A6316AD5E9C7808733DC4AB11C7BA3033221D28711FC7206BACB929","coinDecimals":18},{"coinDenom":"usde","coinMinimalDenom":"ibc/FFD9EB71B4480ED4D73F7370A2AEBDB48447A0AAE27265F8060A957F0FF71983","coinDecimals":18},{"coinDenom":"ezeth","coinMinimalDenom":"ibc/E317539F148285AAC77E7614101CBE94E20EDF169B233A5E0C867112972F9041","coinDecimals":18},{"coinDenom":"pepe","coinMinimalDenom":"ibc/6367C5AF2E2477FB13DD0C8CB0027FEDDF5AE947EE84C69FB75003E604E29D05","coinDecimals":18},{"coinDenom":"wsol","coinMinimalDenom":"ibc/2CC39C8141F257EBBA250F65B9D0F31DC8D153C225E51EC192DE6E3F65D43F0C","coinDecimals":9},{"coinDenom":"msol","coinMinimalDenom":"ibc/C280CB39B97E7CD33A0BF149CFD392C2A3F95FF896AFF89CFF2FA181479BED8D","coinDecimals":9},{"coinDenom":"jitosol","coinMinimalDenom":"ibc/91A2FE07F8BDFC0552B1C9972FCCBF2CFD067DDE5F496D81E5132CE57762B0F2","coinDecimals":9},{"coinDenom":"bsol","coinMinimalDenom":"ibc/F52A71607B3AA7BBA8A222A9176E9939E92AB3656A094289CD218907D45DB716","coinDecimals":9},{"coinDenom":"lst","coinMinimalDenom":"ibc/55F5B582483FEFA5422794292B079B4D49A5BAB9881E7C801F9F271F1D234F1D","coinDecimals":9},{"coinDenom":"edgesol","coinMinimalDenom":"ibc/BADB5950C4A81AC201696EBCB33CD295137FA86F0AA620CDDE946D3700E0208C","coinDecimals":9},{"coinDenom":"hsol","coinMinimalDenom":"ibc/531C52D572698BCBA29F44D959E73CD2148EE6542A3118F9E56621A28E1FF4C6","coinDecimals":9},{"coinDenom":"jupsol","coinMinimalDenom":"ibc/6976998E24F1CFC373A9F799C9CE901F5EC32C3E33B2B09384A05774D9339626","coinDecimals":9},{"coinDenom":"wif","coinMinimalDenom":"ibc/BA34EAA22BBDA46C228DC70E4ED7E42A0867D5B051D625F953CC7B1CEF58C071","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/D105950618E47CA2AEC314282BC401625025F80A4F812808DEEBB1941C685575","coinDecimals":6},{"coinDenom":"whine","coinMinimalDenom":"ibc/9D5DA3720001F91DD76B8F609A93F96688EC8185B54BF9A1A1450EB34FF2D912","coinDecimals":6},{"coinDenom":"unicorn","coinMinimalDenom":"ibc/586C150919550F6106711C7557DAAAEAB765DDF05648BAC0D96487AE90394BA1","coinDecimals":6}],"rest":"https://api-composable-ia.cosmosia.notional.ventures","rpc":"https://rpc-composable-ia.cosmosia.notional.ventures","bech32Config":{"bech32PrefixAccAddr":"pica","bech32PrefixAccPub":"picapub","bech32PrefixValAddr":"picavaloper","bech32PrefixValPub":"picavaloperpub","bech32PrefixConsAddr":"picavalcons","bech32PrefixConsPub":"picavalconspub"},"chainName":"composable","feeCurrencies":[{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12}],"stakeCurrency":{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12},"bip44":{"coinType":118}},{"chainId":"cvn_2032-1","currencies":[{"coinDenom":"cvnt","coinMinimalDenom":"acvnt","coinDecimals":18}],"rest":"https://api.cvn.io","rpc":"https://rpc.cvn.io/","bech32Config":{"bech32PrefixAccAddr":"cvn","bech32PrefixAccPub":"cvnpub","bech32PrefixValAddr":"cvnvaloper","bech32PrefixValPub":"cvnvaloperpub","bech32PrefixConsAddr":"cvnvalcons","bech32PrefixConsPub":"cvnvalconspub"},"chainName":"conscious","feeCurrencies":[{"coinDenom":"cvnt","coinMinimalDenom":"acvnt","coinDecimals":18,"gasPriceStep":{"low":100000000,"average":200000000,"high":300000000}}],"stakeCurrency":{"coinDenom":"cvnt","coinMinimalDenom":"acvnt","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"coreum-mainnet-1","currencies":[{"coinDenom":"core","coinMinimalDenom":"ucore","coinDecimals":6},{"coinDenom":"xrp","coinMinimalDenom":"drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz","coinDecimals":6}],"rest":"https://rest-coreum.ecostake.com","rpc":"https://full-node.mainnet-1.coreum.dev:26657","bech32Config":{"bech32PrefixAccAddr":"core","bech32PrefixAccPub":"corepub","bech32PrefixValAddr":"corevaloper","bech32PrefixValPub":"corevaloperpub","bech32PrefixConsAddr":"corevalcons","bech32PrefixConsPub":"corevalconspub"},"chainName":"coreum","feeCurrencies":[{"coinDenom":"core","coinMinimalDenom":"ucore","coinDecimals":6,"gasPriceStep":{"low":0.0625,"average":0.0625,"high":62.5}}],"stakeCurrency":{"coinDenom":"core","coinMinimalDenom":"ucore","coinDecimals":6},"bip44":{"coinType":990}},{"chainId":"cosmoshub-4","currencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0","coinDecimals":6},{"coinDenom":"ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729","coinMinimalDenom":"ibc/4925E6ABA571A44D2BE0286D2D29AF42A294D0FF2BB16490149A1B26EAD33729","coinDecimals":0},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/74C4FE1EC3BDD66B02C691496371DDBB86DDE512C5BC072D76262C6C9B4B20D1","coinDecimals":18}],"rest":"https://cosmoshub.lava.build:443","rpc":"https://cosmoshub.tendermintrpc.lava.build:443","bech32Config":{"bech32PrefixAccAddr":"cosmos","bech32PrefixAccPub":"cosmospub","bech32PrefixValAddr":"cosmosvaloper","bech32PrefixValPub":"cosmosvaloperpub","bech32PrefixConsAddr":"cosmosvalcons","bech32PrefixConsPub":"cosmosvalconspub"},"chainName":"cosmoshub","feeCurrencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"coss-1","currencies":[{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6},{"coinDenom":"coss","coinMinimalDenom":"ucoss","coinDecimals":6},{"coinDenom":"cias","coinMinimalDenom":"ucias","coinDecimals":6}],"rest":"https://coss-rest.coss.ink","rpc":"https://coss-rpc.coss.ink","bech32Config":{"bech32PrefixAccAddr":"coss","bech32PrefixAccPub":"cosspub","bech32PrefixValAddr":"cossvaloper","bech32PrefixValPub":"cossvaloperpub","bech32PrefixConsAddr":"cossvalcons","bech32PrefixConsPub":"cossvalconspub"},"chainName":"coss","feeCurrencies":[{"coinDenom":"coss","coinMinimalDenom":"ucoss","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}},{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}},{"coinDenom":"cias","coinMinimalDenom":"ucias","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}}],"stakeCurrency":{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"crescent-1","currencies":[{"coinDenom":"cre","coinMinimalDenom":"ucre","coinDecimals":6},{"coinDenom":"bcre","coinMinimalDenom":"ubcre","coinDecimals":6}],"rest":"https://mainnet.crescent.network:1317","rpc":"https://mainnet.crescent.network:26657","bech32Config":{"bech32PrefixAccAddr":"cre","bech32PrefixAccPub":"crepub","bech32PrefixValAddr":"crevaloper","bech32PrefixValPub":"crevaloperpub","bech32PrefixConsAddr":"crevalcons","bech32PrefixConsPub":"crevalconspub"},"chainName":"crescent","feeCurrencies":[{"coinDenom":"cre","coinMinimalDenom":"ucre","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"cre","coinMinimalDenom":"ucre","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cronosmainnet_25-1","currencies":[{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/9106F2626880DF7FAD30621F355423B2A7523D8E2274475F009644D708A90682","coinDecimals":6}],"rest":"https://rest.cronos.org/","rpc":"https://rpc.cronos.org/","bech32Config":{"bech32PrefixAccAddr":"crc","bech32PrefixAccPub":"crcpub","bech32PrefixValAddr":"crcvaloper","bech32PrefixValPub":"crcvaloperpub","bech32PrefixConsAddr":"crcvalcons","bech32PrefixConsPub":"crcvalconspub"},"chainName":"cronos","feeCurrencies":[{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":18}],"stakeCurrency":{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"crypto-org-chain-mainnet-1","currencies":[{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":8},{"coinDenom":"lumen","coinMinimalDenom":"baseXLM","coinDecimals":7},{"coinDenom":"lumen","coinMinimalDenom":"ibc/34A1D4BF5FFCDB912F64FE71D54426D56970F873F1279983B69C713B3A62D10D","coinDecimals":7}],"rest":"https://rest.mainnet.crypto.org/","rpc":"https://rpc.mainnet.crypto.org/","bech32Config":{"bech32PrefixAccAddr":"cro","bech32PrefixAccPub":"cropub","bech32PrefixValAddr":"crovaloper","bech32PrefixValPub":"crovaloperpub","bech32PrefixConsAddr":"crovalcons","bech32PrefixConsPub":"crovalconspub"},"chainName":"cryptoorgchain","feeCurrencies":[{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":8,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}}],"stakeCurrency":{"coinDenom":"cro","coinMinimalDenom":"basecro","coinDecimals":8},"bip44":{"coinType":394}},{"chainId":"mainnet-3","currencies":[{"coinDenom":"dec","coinMinimalDenom":"udec","coinDecimals":6}],"rest":"https://rest.mainnet.decentr.xyz","rpc":"https://poseidon.mainnet.decentr.xyz","bech32Config":{"bech32PrefixAccAddr":"decentr","bech32PrefixAccPub":"decentrpub","bech32PrefixValAddr":"decentrvaloper","bech32PrefixValPub":"decentrvaloperpub","bech32PrefixConsAddr":"decentrvalcons","bech32PrefixConsPub":"decentrvalconspub"},"chainName":"decentr","feeCurrencies":[{"coinDenom":"dec","coinMinimalDenom":"udec","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.025}}],"stakeCurrency":{"coinDenom":"dec","coinMinimalDenom":"udec","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"desmos-mainnet","currencies":[{"coinDenom":"dsm","coinMinimalDenom":"udsm","coinDecimals":6}],"rest":"https://api.mainnet.desmos.network","rpc":"https://rpc.mainnet.desmos.network","bech32Config":{"bech32PrefixAccAddr":"desmos","bech32PrefixAccPub":"desmospub","bech32PrefixValAddr":"desmosvaloper","bech32PrefixValPub":"desmosvaloperpub","bech32PrefixConsAddr":"desmosvalcons","bech32PrefixConsPub":"desmosvalconspub"},"chainName":"desmos","feeCurrencies":[{"coinDenom":"dsm","coinMinimalDenom":"udsm","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.03,"high":0.05}}],"stakeCurrency":{"coinDenom":"dsm","coinMinimalDenom":"udsm","coinDecimals":6},"bip44":{"coinType":852}},{"chainId":"dhealth","currencies":[{"coinDenom":"dhp","coinMinimalDenom":"udhp","coinDecimals":6}],"rest":"https://lcd.dhealth.com","rpc":"https://rpc.dhealth.com","bech32Config":{"bech32PrefixAccAddr":"dh","bech32PrefixAccPub":"dhpub","bech32PrefixValAddr":"dhvaloper","bech32PrefixValPub":"dhvaloperpub","bech32PrefixConsAddr":"dhvalcons","bech32PrefixConsPub":"dhvalconspub"},"chainName":"dhealth","feeCurrencies":[{"coinDenom":"dhp","coinMinimalDenom":"udhp","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}}],"stakeCurrency":{"coinDenom":"dhp","coinMinimalDenom":"udhp","coinDecimals":6},"bip44":{"coinType":10111}},{"chainId":"vota-ash","currencies":[{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18}],"rest":"https://vota-rest.dorafactory.org","rpc":"https://vota-rpc.dorafactory.org/","bech32Config":{"bech32PrefixAccAddr":"dora","bech32PrefixAccPub":"dorapub","bech32PrefixValAddr":"doravaloper","bech32PrefixValPub":"doravaloperpub","bech32PrefixConsAddr":"doravalcons","bech32PrefixConsPub":"doravalconspub"},"chainName":"doravota","feeCurrencies":[{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18,"gasPriceStep":{"low":100000000000,"average":100000000000,"high":100000000000}}],"stakeCurrency":{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"dungeon-1","currencies":[{"coinDenom":"DGN","coinMinimalDenom":"udgn","coinDecimals":6}],"rest":"https://dungeon.api.quasarstaking.ai","rpc":"https://dungeon.rpc.quasarstaking.ai","bech32Config":{"bech32PrefixAccAddr":"dungeon","bech32PrefixAccPub":"dungeonpub","bech32PrefixValAddr":"dungeonvaloper","bech32PrefixValPub":"dungeonvaloperpub","bech32PrefixConsAddr":"dungeonvalcons","bech32PrefixConsPub":"dungeonvalconspub"},"chainName":"dungeon","feeCurrencies":[{"coinDenom":"DGN","coinMinimalDenom":"udgn","coinDecimals":6}],"stakeCurrency":{"coinDenom":"DGN","coinMinimalDenom":"udgn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"dydx-mainnet-1","currencies":[{"coinDenom":"dydx","coinMinimalDenom":"adydx","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","coinDecimals":6}],"rest":"https://community.nuxian-node.ch:6797/dydx/crpc","rpc":"https://dydx-rpc.kingnodes.com:443","bech32Config":{"bech32PrefixAccAddr":"dydx","bech32PrefixAccPub":"dydxpub","bech32PrefixValAddr":"dydxvaloper","bech32PrefixValPub":"dydxvaloperpub","bech32PrefixConsAddr":"dydxvalcons","bech32PrefixConsPub":"dydxvalconspub"},"chainName":"dydx","feeCurrencies":[{"coinDenom":"dydx","coinMinimalDenom":"adydx","coinDecimals":18,"gasPriceStep":{"low":12500000000,"average":12500000000,"high":20000000000}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"dydx","coinMinimalDenom":"adydx","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"dymension_1100-1","currencies":[{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18},{"coinDenom":"nim","coinMinimalDenom":"ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942","coinDecimals":18},{"coinDenom":"mand","coinMinimalDenom":"ibc/5A26C8DC8DA66F4DD94326E67F94510188F5F7AFE2DB3933A0C823670E56EABF","coinDecimals":18}],"rest":"https://dym-m-api.agoranodes.com","rpc":"https://dym-m-rpc.agoranodes.com","bech32Config":{"bech32PrefixAccAddr":"dym","bech32PrefixAccPub":"dympub","bech32PrefixValAddr":"dymvaloper","bech32PrefixValPub":"dymvaloperpub","bech32PrefixConsAddr":"dymvalcons","bech32PrefixConsPub":"dymvalconspub"},"chainName":"dymension","feeCurrencies":[{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18,"gasPriceStep":{"low":5000000000,"average":5000000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"dyson-mainnet-01","currencies":[{"coinDenom":"dys","coinMinimalDenom":"dys","coinDecimals":0},{"coinDenom":"osmo","coinMinimalDenom":"ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B","coinDecimals":6},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/9BF31153F7E37F687C75A2F310E7A4DB6E0512B065F709B5EB69FE828133AFAC","coinDecimals":8},{"coinDenom":"usdc","coinMinimalDenom":"ibc/13DF61376C08483555C6D4C9203612086A1B23218EB5EBDBE609EEC7EFF2D82D","coinDecimals":6}],"rest":"https://dys-api.dysonprotocol.com:443","rpc":"https://dys-tm.dysonprotocol.com:443","bech32Config":{"bech32PrefixAccAddr":"dys","bech32PrefixAccPub":"dyspub","bech32PrefixValAddr":"dysvaloper","bech32PrefixValPub":"dysvaloperpub","bech32PrefixConsAddr":"dysvalcons","bech32PrefixConsPub":"dysvalconspub"},"chainName":"dyson","feeCurrencies":[{"coinDenom":"dys","coinMinimalDenom":"dys","coinDecimals":0,"gasPriceStep":{"low":0.0001,"average":0.0002,"high":0.0003}}],"stakeCurrency":{"coinDenom":"dys","coinMinimalDenom":"dys","coinDecimals":0},"bip44":{"coinType":118}},{"chainId":"echelon_3000-3","currencies":[{"coinDenom":"echelon","coinMinimalDenom":"aechelon","coinDecimals":18}],"rest":"https://ech01api.mindheartsoul.org","rpc":"https://ech01trpc.mindheartsoul.org","bech32Config":{"bech32PrefixAccAddr":"echelon","bech32PrefixAccPub":"echelonpub","bech32PrefixValAddr":"echelonvaloper","bech32PrefixValPub":"echelonvaloperpub","bech32PrefixConsAddr":"echelonvalcons","bech32PrefixConsPub":"echelonvalconspub"},"chainName":"echelon","feeCurrencies":[{"coinDenom":"echelon","coinMinimalDenom":"aechelon","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"echelon","coinMinimalDenom":"aechelon","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"elys-1","currencies":[{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6},{"coinDenom":"eden","coinMinimalDenom":"ueden","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6},{"coinDenom":"axl","coinMinimalDenom":"ibc/9463E39D230614B313B487836D13A392BD1731928713D4C8427A083627048DB3","coinDecimals":6}],"rest":"https://api.elys.network","rpc":"https://rpc.elys.network:443","bech32Config":{"bech32PrefixAccAddr":"elys","bech32PrefixAccPub":"elyspub","bech32PrefixValAddr":"elysvaloper","bech32PrefixValPub":"elysvaloperpub","bech32PrefixConsAddr":"elysvalcons","bech32PrefixConsPub":"elysvalconspub"},"chainName":"elys","feeCurrencies":[{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"emoney-3","currencies":[{"coinDenom":"ngm","coinMinimalDenom":"ungm","coinDecimals":6},{"coinDenom":"eur","coinMinimalDenom":"eeur","coinDecimals":6},{"coinDenom":"chf","coinMinimalDenom":"echf","coinDecimals":6},{"coinDenom":"nok","coinMinimalDenom":"enok","coinDecimals":6},{"coinDenom":"dkk","coinMinimalDenom":"edkk","coinDecimals":6},{"coinDenom":"sek","coinMinimalDenom":"esek","coinDecimals":6}],"rest":"https://emoney.validator.network/api/","rpc":"https://emoney.validator.network","bech32Config":{"bech32PrefixAccAddr":"emoney","bech32PrefixAccPub":"emoneypub","bech32PrefixValAddr":"emoneyvaloper","bech32PrefixValPub":"emoneyvaloperpub","bech32PrefixConsAddr":"emoneyvalcons","bech32PrefixConsPub":"emoneyvalconspub"},"chainName":"emoney","feeCurrencies":[{"coinDenom":"ngm","coinMinimalDenom":"ungm","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"eur","coinMinimalDenom":"eeur","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"chf","coinMinimalDenom":"echf","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"nok","coinMinimalDenom":"enok","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"sek","coinMinimalDenom":"esek","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"dkk","coinMinimalDenom":"edkk","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}}],"stakeCurrency":{"coinDenom":"ngm","coinMinimalDenom":"ungm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"empowerchain-1","currencies":[{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6}],"rest":"https://rest-empowerchain.ecostake.com:443","rpc":"https://rpc-empowerchain.ecostake.com:443","bech32Config":{"bech32PrefixAccAddr":"empower","bech32PrefixAccPub":"empowerpub","bech32PrefixValAddr":"empowervaloper","bech32PrefixValPub":"empowervaloperpub","bech32PrefixConsAddr":"empowervalcons","bech32PrefixConsPub":"empowervalconspub"},"chainName":"empowerchain","feeCurrencies":[{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"epix_4242-1","currencies":[{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18}],"rest":"https://epix.api.silknodes.io","rpc":"https://epix.rpc.silknodes.io/","bech32Config":{"bech32PrefixAccAddr":"epix","bech32PrefixAccPub":"epixpub","bech32PrefixValAddr":"epixvaloper","bech32PrefixValPub":"epixvaloperpub","bech32PrefixConsAddr":"epixvalcons","bech32PrefixConsPub":"epixvalconspub"},"chainName":"epix","feeCurrencies":[{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18,"gasPriceStep":{"low":1000000000000,"average":2000000000000,"high":3000000000000}}],"stakeCurrency":{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"ethos_7003-1","currencies":[{"coinDenom":"RYT","coinMinimalDenom":"aRYT","coinDecimals":18}],"rest":"https://ethos.provable.dev/rest/","rpc":"https://ethos-rpc.provable.dev:443/","bech32Config":{"bech32PrefixAccAddr":"ethos","bech32PrefixAccPub":"ethospub","bech32PrefixValAddr":"ethosvaloper","bech32PrefixValPub":"ethosvaloperpub","bech32PrefixConsAddr":"ethosvalcons","bech32PrefixConsPub":"ethosvalconspub"},"chainName":"ethos","feeCurrencies":[{"coinDenom":"RYT","coinMinimalDenom":"aRYT","coinDecimals":18}],"stakeCurrency":{"coinDenom":"RYT","coinMinimalDenom":"aRYT","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"evmos_9001-2","currencies":[{"coinDenom":"evmos","coinMinimalDenom":"aevmos","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/95F4898F70B1E3765715808C57E955034419200A7BB6DDECBEAA5FD3AA3DF7D5","coinDecimals":6},{"coinDenom":"neok","coinMinimalDenom":"erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9","coinDecimals":18},{"coinDenom":"berlin-legacy","coinMinimalDenom":"erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280","coinDecimals":18},{"coinDenom":"crowdp","coinMinimalDenom":"erc20/0xfbF4318d24a93753F11d365A6dcF8b830e98Ab0F","coinDecimals":18}],"rest":"https://rest.bd.evmos.org:1317","rpc":"https://rpc.lavenderfive.com:443/evmos","bech32Config":{"bech32PrefixAccAddr":"evmos","bech32PrefixAccPub":"evmospub","bech32PrefixValAddr":"evmosvaloper","bech32PrefixValPub":"evmosvaloperpub","bech32PrefixConsAddr":"evmosvalcons","bech32PrefixConsPub":"evmosvalconspub"},"chainName":"evmos","feeCurrencies":[{"coinDenom":"evmos","coinMinimalDenom":"aevmos","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"evmos","coinMinimalDenom":"aevmos","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"fetchhub-4","currencies":[{"coinDenom":"fet","coinMinimalDenom":"afet","coinDecimals":18},{"coinDenom":"mobx","coinMinimalDenom":"nanomobx","coinDecimals":9}],"rest":"https://rest-fetchhub.fetch.ai","rpc":"https://rpc-fetchhub.fetch.ai:443","bech32Config":{"bech32PrefixAccAddr":"fetch","bech32PrefixAccPub":"fetchpub","bech32PrefixValAddr":"fetchvaloper","bech32PrefixValPub":"fetchvaloperpub","bech32PrefixConsAddr":"fetchvalcons","bech32PrefixConsPub":"fetchvalconspub"},"chainName":"fetchhub","feeCurrencies":[{"coinDenom":"fet","coinMinimalDenom":"afet","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.035}}],"stakeCurrency":{"coinDenom":"fet","coinMinimalDenom":"afet","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"finschia-2","currencies":[{"coinDenom":"fnsa","coinMinimalDenom":"cony","coinDecimals":6}],"rest":"https://finschia-api.finschia.io","rpc":"https://finschia-rpc.finschia.io","bech32Config":{"bech32PrefixAccAddr":"link","bech32PrefixAccPub":"linkpub","bech32PrefixValAddr":"linkvaloper","bech32PrefixValPub":"linkvaloperpub","bech32PrefixConsAddr":"linkvalcons","bech32PrefixConsPub":"linkvalconspub"},"chainName":"finschia","feeCurrencies":[{"coinDenom":"fnsa","coinMinimalDenom":"cony","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.015,"high":0.015}}],"stakeCurrency":{"coinDenom":"fnsa","coinMinimalDenom":"cony","coinDecimals":6},"bip44":{"coinType":438}},{"chainId":"colosseum-1","currencies":[{"coinDenom":"fct","coinMinimalDenom":"ufct","coinDecimals":6}],"rest":"https://lcd-mainnet.firmachain.dev:1317","rpc":"https://lcd-mainnet.firmachain.dev:26657","bech32Config":{"bech32PrefixAccAddr":"firma","bech32PrefixAccPub":"firmapub","bech32PrefixValAddr":"firmavaloper","bech32PrefixValPub":"firmavaloperpub","bech32PrefixConsAddr":"firmavalcons","bech32PrefixConsPub":"firmavalconspub"},"chainName":"firmachain","feeCurrencies":[{"coinDenom":"fct","coinMinimalDenom":"ufct","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.15,"high":0.2}}],"stakeCurrency":{"coinDenom":"fct","coinMinimalDenom":"ufct","coinDecimals":6},"bip44":{"coinType":7777777}},{"chainId":"furya-1","currencies":[{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6}],"rest":"https://furya.api.nodeshub.online","rpc":"https://furya-rpc.synergynodes.com","bech32Config":{"bech32PrefixAccAddr":"furya","bech32PrefixAccPub":"furyapub","bech32PrefixValAddr":"furyavaloper","bech32PrefixValPub":"furyavaloperpub","bech32PrefixConsAddr":"furyavalcons","bech32PrefixConsPub":"furyavalconspub"},"chainName":"furya","feeCurrencies":[{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.5}}],"stakeCurrency":{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"fxcore","currencies":[{"coinDenom":"WFX","coinMinimalDenom":"FX","coinDecimals":18},{"coinDenom":"PUNDIX","coinMinimalDenom":"eth0x0FD10b9899882a6f2fcb5c371E17e70FdEe00C38","coinDecimals":18}],"rest":"https://fx-rest.functionx.io","rpc":"https://fx-json.functionx.io","bech32Config":{"bech32PrefixAccAddr":"fx","bech32PrefixAccPub":"fxpub","bech32PrefixValAddr":"fxvaloper","bech32PrefixValPub":"fxvaloperpub","bech32PrefixConsAddr":"fxvalcons","bech32PrefixConsPub":"fxvalconspub"},"chainName":"fxcore","feeCurrencies":[{"coinDenom":"WFX","coinMinimalDenom":"FX","coinDecimals":18,"gasPriceStep":{"low":4000000000000,"average":4200000000000,"high":5000000000000}}],"stakeCurrency":{"coinDenom":"WFX","coinMinimalDenom":"FX","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"wormchain","currencies":[{"coinDenom":"test","coinMinimalDenom":"utest","coinDecimals":6},{"coinDenom":"worm","coinMinimalDenom":"uworm","coinDecimals":6},{"coinDenom":"wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh","coinDecimals":8},{"coinDenom":"wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp","coinDecimals":8},{"coinDenom":"wormhole/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b","coinDecimals":8},{"coinDenom":"wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r","coinDecimals":8},{"coinDenom":"wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi","coinDecimals":6},{"coinDenom":"wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA","coinDecimals":8},{"coinDenom":"wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR","coinDecimals":5},{"coinDenom":"wormhole/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd","coinDecimals":8},{"coinDenom":"wormhole/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw","coinDecimals":8},{"coinDenom":"wormhole/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1/8","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1","coinDecimals":8},{"coinDenom":"wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt","coinDecimals":6},{"coinDenom":"wormhole/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4","coinDecimals":6},{"coinDenom":"wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy","coinDecimals":6},{"coinDenom":"wormhole/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3","coinDecimals":6},{"coinDenom":"wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst","coinDecimals":5},{"coinDenom":"w","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/2Wb6ueMFc9WLc2eyYVha6qnwHKbwzUXdooXsg6XXVvos","coinDecimals":6},{"coinDenom":"wormhole/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP/6","coinMinimalDenom":"factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP","coinDecimals":6}],"rest":"https://tncnt-eu-wormchain-main-01.rpc.p2p.world/lcd/","rpc":"https://tncnt-eu-wormchain-main-01.rpc.p2p.world/","bech32Config":{"bech32PrefixAccAddr":"wormhole","bech32PrefixAccPub":"wormholepub","bech32PrefixValAddr":"wormholevaloper","bech32PrefixValPub":"wormholevaloperpub","bech32PrefixConsAddr":"wormholevalcons","bech32PrefixConsPub":"wormholevalconspub"},"chainName":"gateway","feeCurrencies":[{"coinDenom":"test","coinMinimalDenom":"utest","coinDecimals":6}],"stakeCurrency":{"coinDenom":"test","coinMinimalDenom":"utest","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"genesis_29-2","currencies":[{"coinDenom":"l1","coinMinimalDenom":"el1","coinDecimals":18}],"rest":"https://api.genesisl1.org","rpc":"https://26657.genesisl1.org","bech32Config":{"bech32PrefixAccAddr":"genesis","bech32PrefixAccPub":"genesispub","bech32PrefixValAddr":"genesisvaloper","bech32PrefixValPub":"genesisvaloperpub","bech32PrefixConsAddr":"genesisvalcons","bech32PrefixConsPub":"genesisvalconspub"},"chainName":"genesisl1","feeCurrencies":[{"coinDenom":"l1","coinMinimalDenom":"el1","coinDecimals":18,"gasPriceStep":{"low":51000000000,"average":52000000000,"high":53000000000}}],"stakeCurrency":{"coinDenom":"l1","coinMinimalDenom":"el1","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"gitopia","currencies":[{"coinDenom":"LORE","coinMinimalDenom":"ulore","coinDecimals":6}],"rest":"https://gitopia-api.polkachu.com:443","rpc":"https://gitopia-rpc.polkachu.com:443","bech32Config":{"bech32PrefixAccAddr":"gitopia","bech32PrefixAccPub":"gitopiapub","bech32PrefixValAddr":"gitopiavaloper","bech32PrefixValPub":"gitopiavaloperpub","bech32PrefixConsAddr":"gitopiavalcons","bech32PrefixConsPub":"gitopiavalconspub"},"chainName":"gitopia","feeCurrencies":[{"coinDenom":"LORE","coinMinimalDenom":"ulore","coinDecimals":6,"gasPriceStep":{"low":0.0012,"average":0.0016,"high":0.0024}}],"stakeCurrency":{"coinDenom":"LORE","coinMinimalDenom":"ulore","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"govgen-1","currencies":[{"coinDenom":"govgen","coinMinimalDenom":"ugovgen","coinDecimals":6}],"rest":"https://api.govgen.io/","rpc":"https://rpc.govgen.io:443","bech32Config":{"bech32PrefixAccAddr":"govgen","bech32PrefixAccPub":"govgenpub","bech32PrefixValAddr":"govgenvaloper","bech32PrefixValPub":"govgenvaloperpub","bech32PrefixConsAddr":"govgenvalcons","bech32PrefixConsPub":"govgenvalconspub"},"chainName":"govgen","feeCurrencies":[{"coinDenom":"govgen","coinMinimalDenom":"ugovgen","coinDecimals":6,"gasPriceStep":{"low":0.006,"average":0.006,"high":0.009}}],"stakeCurrency":{"coinDenom":"govgen","coinMinimalDenom":"ugovgen","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"gravity-bridge-3","currencies":[{"coinDenom":"graviton","coinMinimalDenom":"ugraviton","coinDecimals":6},{"coinDenom":"pstake","coinMinimalDenom":"gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006","coinDecimals":18},{"coinDenom":"gweth","coinMinimalDenom":"gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2","coinDecimals":18},{"coinDenom":"gusdc","coinMinimalDenom":"gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","coinDecimals":6},{"coinDenom":"gusdt","coinMinimalDenom":"gravity0xdAC17F958D2ee523a2206206994597C13D831ec7","coinDecimals":6},{"coinDenom":"gwbtc","coinMinimalDenom":"gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599","coinDecimals":8},{"coinDenom":"gdai","coinMinimalDenom":"gravity0x6B175474E89094C44Da98b954EedeAC495271d0F","coinDecimals":18},{"coinDenom":"gsdai","coinMinimalDenom":"gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA","coinDecimals":18},{"coinDenom":"gocc","coinMinimalDenom":"gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207","coinDecimals":18},{"coinDenom":"page","coinMinimalDenom":"gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e","coinDecimals":8},{"coinDenom":"gpaxg","coinMinimalDenom":"gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78","coinDecimals":18}],"rest":"https://gravitychain.io:1317","rpc":"https://gravitychain.io:26657","bech32Config":{"bech32PrefixAccAddr":"gravity","bech32PrefixAccPub":"gravitypub","bech32PrefixValAddr":"gravityvaloper","bech32PrefixValPub":"gravityvaloperpub","bech32PrefixConsAddr":"gravityvalcons","bech32PrefixConsPub":"gravityvalconspub"},"chainName":"gravitybridge","feeCurrencies":[{"coinDenom":"graviton","coinMinimalDenom":"ugraviton","coinDecimals":6},{"coinDenom":"gusdc","coinMinimalDenom":"gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","coinDecimals":6,"gasPriceStep":{"low":0.0002,"average":0.0005,"high":0.0008}},{"coinDenom":"gusdt","coinMinimalDenom":"gravity0xdAC17F958D2ee523a2206206994597C13D831ec7","coinDecimals":6,"gasPriceStep":{"low":0.0002,"average":0.0005,"high":0.0008}}],"stakeCurrency":{"coinDenom":"graviton","coinMinimalDenom":"ugraviton","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"haqq_11235-1","currencies":[{"coinDenom":"ISLM","coinMinimalDenom":"aISLM","coinDecimals":18},{"coinDenom":"DEEN","coinMinimalDenom":"erc20/0x4FEBDDe47Ab9a76200e57eFcC80b212a07b3e6cE","coinDecimals":6}],"rest":"https://rest.cosmos.haqq.network","rpc":"https://rpc.tm.haqq.network","bech32Config":{"bech32PrefixAccAddr":"haqq","bech32PrefixAccPub":"haqqpub","bech32PrefixValAddr":"haqqvaloper","bech32PrefixValPub":"haqqvaloperpub","bech32PrefixConsAddr":"haqqvalcons","bech32PrefixConsPub":"haqqvalconspub"},"chainName":"haqq","feeCurrencies":[{"coinDenom":"ISLM","coinMinimalDenom":"aISLM","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"ISLM","coinMinimalDenom":"aISLM","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"helichain","currencies":[{"coinDenom":"heli","coinMinimalDenom":"uheli","coinDecimals":6}],"rest":"https://lcd.helichain.com/","rpc":"https://rpc.helichain.com/","bech32Config":{"bech32PrefixAccAddr":"heli","bech32PrefixAccPub":"helipub","bech32PrefixValAddr":"helivaloper","bech32PrefixValPub":"helivaloperpub","bech32PrefixConsAddr":"helivalcons","bech32PrefixConsPub":"helivalconspub"},"chainName":"heli","feeCurrencies":[{"coinDenom":"heli","coinMinimalDenom":"uheli","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.0025}}],"stakeCurrency":{"coinDenom":"heli","coinMinimalDenom":"uheli","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"highbury_710-1","currencies":[{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6},{"coinDenom":"JINX","coinMinimalDenom":"jinx","coinDecimals":6},{"coinDenom":"JINXY","coinMinimalDenom":"jinxy","coinDecimals":6}],"rest":"https://api-mainnet.furya.io/","rpc":"https://gridiron.furya.io","bech32Config":{"bech32PrefixAccAddr":"fury","bech32PrefixAccPub":"furypub","bech32PrefixValAddr":"furyvaloper","bech32PrefixValPub":"furyvaloperpub","bech32PrefixConsAddr":"furyvalcons","bech32PrefixConsPub":"furyvalconspub"},"chainName":"highbury","feeCurrencies":[{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.1,"high":0.25}}],"stakeCurrency":{"coinDenom":"fury","coinMinimalDenom":"ufury","coinDecimals":6},"bip44":{"coinType":459}},{"chainId":"humans_1089-1","currencies":[{"coinDenom":"heart","coinMinimalDenom":"aheart","coinDecimals":18}],"rest":"https://api.humans.nodestake.org","rpc":"https://rpc.humans.nodestake.org","bech32Config":{"bech32PrefixAccAddr":"human","bech32PrefixAccPub":"humanpub","bech32PrefixValAddr":"humanvaloper","bech32PrefixValPub":"humanvaloperpub","bech32PrefixConsAddr":"humanvalcons","bech32PrefixConsPub":"humanvalconspub"},"chainName":"humans","feeCurrencies":[{"coinDenom":"heart","coinMinimalDenom":"aheart","coinDecimals":18,"gasPriceStep":{"low":80000000000,"average":100000000000,"high":160000000000}}],"stakeCurrency":{"coinDenom":"heart","coinMinimalDenom":"aheart","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"ixo-5","currencies":[{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6}],"rest":"https://proxies.sifchain.finance/api/impacthub-3/rest","rpc":"https://proxies.sifchain.finance/api/impacthub-3/rpc","bech32Config":{"bech32PrefixAccAddr":"ixo","bech32PrefixAccPub":"ixopub","bech32PrefixValAddr":"ixovaloper","bech32PrefixValPub":"ixovaloperpub","bech32PrefixConsAddr":"ixovalcons","bech32PrefixConsPub":"ixovalconspub"},"chainName":"impacthub","feeCurrencies":[{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"injective-1","currencies":[{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"peggy0xdAC17F958D2ee523a2206206994597C13D831ec7","coinDecimals":6},{"coinDenom":"ampINJ","coinMinimalDenom":"factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ","coinDecimals":6},{"coinDenom":"autism","coinMinimalDenom":"factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism","coinDecimals":6},{"coinDenom":"bINJ","coinMinimalDenom":"factory/inj1dxp690rd86xltejgfq2fa7f2nxtgmm5cer3hvu/bINJ","coinDecimals":18},{"coinDenom":"NINJA","coinMinimalDenom":"factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja","coinDecimals":6},{"coinDenom":"WGMI","coinMinimalDenom":"factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/DD648F5D3CDA56D0D8D8820CF703D246B9FC4007725D8B38D23A21FF1A1477E3","coinDecimals":6},{"coinDenom":"glto","coinMinimalDenom":"peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2","coinDecimals":6},{"coinDenom":"hava","coinMinimalDenom":"factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava","coinDecimals":6},{"coinDenom":"BADKID","coinMinimalDenom":"ibc/A0C5AD197FECAF6636F589071338DC7ECD6B0809CD3A5AB131EAAA5395E7E5E8","coinDecimals":6},{"coinDenom":"NINPO","coinMinimalDenom":"inj1sudjgsyhufqu95yp7rqad3g78ws8g6htf32h88","coinDecimals":6},{"coinDenom":"JUDO","coinMinimalDenom":"inj16ukv8g2jcmml7gykxn5ws8ykhxjkugl4zhft5h","coinDecimals":6},{"coinDenom":"beast","coinMinimalDenom":"peggy0xA4426666addBE8c4985377d36683D17FB40c31Be","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"ibc/063F4461F7317CFF10F50AB044E44932D22AAD84FA7107082744946E6DB7B7A8","coinDecimals":6},{"coinDenom":"nINJ","coinMinimalDenom":"inj1rmzufd7h09sqfrre5dtvu5d09ta7c0t4jzkr2f","coinDecimals":18},{"coinDenom":"nATOM","coinMinimalDenom":"inj16jf4qkcarp3lan4wl2qkrelf4kduvvujwg0780","coinDecimals":6},{"coinDenom":"nWETH","coinMinimalDenom":"inj1kehk5nvreklhylx22p3x0yjydfsz9fv3fvg5xt","coinDecimals":18},{"coinDenom":"nUSDT","coinMinimalDenom":"inj1cy9hes20vww2yr6crvs75gxy5hpycya2hmjg9s","coinDecimals":6},{"coinDenom":"nTIA","coinMinimalDenom":"inj1fzquxxxam59z6fzewy2hvvreeh3m04x83zg4vv","coinDecimals":6},{"coinDenom":"NBZ","coinMinimalDenom":"ibc/1011E4D6D4800DA9B8F21D7C207C0B0C18E54E614A8576037F066B775210709D","coinDecimals":6},{"coinDenom":"Talis","coinMinimalDenom":"factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/Talis","coinDecimals":6},{"coinDenom":"xTalis","coinMinimalDenom":"factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/xTalis","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/2CBC2EA121AE42563B08028466F37B600F2D7D4282342DE938283CC3FB2BC00E","coinDecimals":6},{"coinDenom":"SYN","coinMinimalDenom":"factory/inj1a6xdezq7a94qwamec6n6cnup02nvewvjtz6h6e/SYN","coinDecimals":6},{"coinDenom":"ashSYN","coinMinimalDenom":"factory/inj1ej2f3lmpxj4djsmmuxvnfuvplrut7zmwrq7zj8/syn.ash","coinDecimals":6},{"coinDenom":"COSMO","coinMinimalDenom":"factory/inj1je6n5sr4qtx2lhpldfxndntmgls9hf38ncmcez/COSMO","coinDecimals":6},{"coinDenom":"XTRUMP","coinMinimalDenom":"ibc/5339B0D20986A7C20C2548ED9D6B8DE47BB64E03ABFD051B7792E713036EA20C","coinDecimals":6},{"coinDenom":"DRUGS","coinMinimalDenom":"cw20:inj19vy83ne9tzta2yqynj8yg7dq9ghca6yqn9hyej","coinDecimals":18},{"coinDenom":"DRUGS","coinMinimalDenom":"factory/inj178zy7myyxewek7ka7v9hru8ycpvfnen6xeps89/DRUGS","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/D6E6A20ABDD600742D22464340A7701558027759CE14D12590F8EA869CCCF445","coinDecimals":6}],"rest":"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rest.newmetric.xyz","rpc":"https://6d0ff611-9009-4bd1-a7a7-acec7c70d454.injective-1.mesa-rpc.newmetric.xyz","bech32Config":{"bech32PrefixAccAddr":"inj","bech32PrefixAccPub":"injpub","bech32PrefixValAddr":"injvaloper","bech32PrefixValPub":"injvaloperpub","bech32PrefixConsAddr":"injvalcons","bech32PrefixConsPub":"injvalconspub"},"chainName":"injective","feeCurrencies":[{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18,"gasPriceStep":{"low":500000000,"average":700000000,"high":900000000}}],"stakeCurrency":{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"int3face-1","currencies":[{"coinDenom":"int3","coinMinimalDenom":"uint3","coinDecimals":6},{"coinDenom":"btc","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc","coinDecimals":8},{"coinDenom":"bch","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch","coinDecimals":8},{"coinDenom":"doge","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge","coinDecimals":8},{"coinDenom":"ltc","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc","coinDecimals":8},{"coinDenom":"ton","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/ton-ton","coinDecimals":9}],"rest":"https://api.mainnet.int3face.zone","rpc":"https://rpc.mainnet.int3face.zone","bech32Config":{"bech32PrefixAccAddr":"int3","bech32PrefixAccPub":"int3pub","bech32PrefixValAddr":"int3valoper","bech32PrefixValPub":"int3valoperpub","bech32PrefixConsAddr":"int3valcons","bech32PrefixConsPub":"int3valconspub"},"chainName":"int3face","feeCurrencies":[{"coinDenom":"int3","coinMinimalDenom":"uint3","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}},{"coinDenom":"btc","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-btc","coinDecimals":8,"gasPriceStep":{"low":1e-7,"average":0.0000025,"high":0.000004}},{"coinDenom":"bch","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/bitcoin-cash-bch","coinDecimals":8,"gasPriceStep":{"low":0.000001,"average":0.000025,"high":0.00004}},{"coinDenom":"ltc","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/litecoin-ltc","coinDecimals":8,"gasPriceStep":{"low":0.000001,"average":0.000025,"high":0.00004}},{"coinDenom":"doge","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/dogecoin-doge","coinDecimals":8,"gasPriceStep":{"low":0.001,"average":0.0025,"high":0.004}},{"coinDenom":"ton","coinMinimalDenom":"factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/ton-ton","coinDecimals":9,"gasPriceStep":{"low":0.0001,"average":0.00025,"high":0.0004}}],"stakeCurrency":{"coinDenom":"int3","coinMinimalDenom":"uint3","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"irishub-1","currencies":[{"coinDenom":"iris","coinMinimalDenom":"uiris","coinDecimals":6}],"rest":"https://api-irisnet-ia.cosmosia.notional.ventures/","rpc":"https://rpc-irisnet-ia.cosmosia.notional.ventures/","bech32Config":{"bech32PrefixAccAddr":"iaa","bech32PrefixAccPub":"iaapub","bech32PrefixValAddr":"iaavaloper","bech32PrefixValPub":"iaavaloperpub","bech32PrefixConsAddr":"iaavalcons","bech32PrefixConsPub":"iaavalconspub"},"chainName":"irisnet","feeCurrencies":[{"coinDenom":"iris","coinMinimalDenom":"uiris","coinDecimals":6,"gasPriceStep":{"low":0.2,"average":0.3,"high":0.4}}],"stakeCurrency":{"coinDenom":"iris","coinMinimalDenom":"uiris","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"jackal-1","currencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"rest":"https://api.jackalprotocol.com","rpc":"https://rpc.jackalprotocol.com","bech32Config":{"bech32PrefixAccAddr":"jkl","bech32PrefixAccPub":"jklpub","bech32PrefixValAddr":"jklvaloper","bech32PrefixValPub":"jklvaloperpub","bech32PrefixConsAddr":"jklvalcons","bech32PrefixConsPub":"jklvalconspub"},"chainName":"jackal","feeCurrencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6,"gasPriceStep":{"low":0.002,"average":0.002,"high":0.02}}],"stakeCurrency":{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"joltify_1729-1","currencies":[{"coinDenom":"jolt","coinMinimalDenom":"ujolt","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/9117A26BA81E29FA4F78F57DC2BD90CD3D26848101BA880445F119B22A1E254E","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/65D0BEC6DAD96C7F5043D1E54E54B6BB5D5B3AEC3FF6CEBB75B9E059F3580EA3","coinDecimals":6}],"rest":"https://lcd.joltify.io/","rpc":"https://rpc.joltify.io","bech32Config":{"bech32PrefixAccAddr":"jolt","bech32PrefixAccPub":"joltpub","bech32PrefixValAddr":"joltvaloper","bech32PrefixValPub":"joltvaloperpub","bech32PrefixConsAddr":"joltvalcons","bech32PrefixConsPub":"joltvalconspub"},"chainName":"joltify","feeCurrencies":[{"coinDenom":"jolt","coinMinimalDenom":"ujolt","coinDecimals":6}],"stakeCurrency":{"coinDenom":"jolt","coinMinimalDenom":"ujolt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"juno-1","currencies":[{"coinDenom":"juno","coinMinimalDenom":"ujuno","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6},{"coinDenom":"neta","coinMinimalDenom":"cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr","coinDecimals":6},{"coinDenom":"marble","coinMinimalDenom":"cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl","coinDecimals":3},{"coinDenom":"hope","coinMinimalDenom":"cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z","coinDecimals":6},{"coinDenom":"rac","coinMinimalDenom":"cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa","coinDecimals":6},{"coinDenom":"block","coinMinimalDenom":"cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq","coinDecimals":6},{"coinDenom":"cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49","coinMinimalDenom":"cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49","coinDecimals":0},{"coinDenom":"raw","coinMinimalDenom":"cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g","coinDecimals":6},{"coinDenom":"asvt","coinMinimalDenom":"cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w","coinDecimals":6},{"coinDenom":"hns","coinMinimalDenom":"cw20:juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k","coinDecimals":6},{"coinDenom":"joe","coinMinimalDenom":"cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3","coinDecimals":6},{"coinDenom":"dla","coinMinimalDenom":"cw20:juno1sfwye65qxcfsc837gu5qcprcz7w49gkv3wnat04764ld76hy3arqs779tr","coinDecimals":6},{"coinDenom":"glto","coinMinimalDenom":"cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se","coinDecimals":6},{"coinDenom":"gkey","coinMinimalDenom":"cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh","coinDecimals":6},{"coinDenom":"hole","coinMinimalDenom":"cw20:juno1t46z6hg8vvsena7sue0vg6w85ljar3cundplkre9sz0skeqkap9sxyyy6m","coinDecimals":6},{"coinDenom":"sejuno","coinMinimalDenom":"cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv","coinDecimals":6},{"coinDenom":"bjuno","coinMinimalDenom":"cw20:juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3","coinDecimals":6},{"coinDenom":"solar","coinMinimalDenom":"cw20:juno159q8t5g02744lxq8lfmcn6f78qqulq9wn3y9w7lxjgkz4e0a6kvsfvapse","coinDecimals":6},{"coinDenom":"seasy","coinMinimalDenom":"cw20:juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf","coinDecimals":6},{"coinDenom":"muse","coinMinimalDenom":"cw20:juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3","coinDecimals":6},{"coinDenom":"loop","coinMinimalDenom":"cw20:juno1qsrercqegvs4ye0yqg93knv73ye5dc3prqwd6jcdcuj8ggp6w0us66deup","coinDecimals":6},{"coinDenom":"fury","coinMinimalDenom":"cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz","coinDecimals":6},{"coinDenom":"phmn","coinMinimalDenom":"cw20:juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l","coinDecimals":6},{"coinDenom":"hopers","coinMinimalDenom":"cw20:juno1u45shlp0q4gcckvsj06ss4xuvsu0z24a0d0vr9ce6r24pht4e5xq7q995n","coinDecimals":6},{"coinDenom":"red","coinMinimalDenom":"cw20:juno1g647t78y2ulqlm3lss8rs3d0spzd0teuwhdvnqn92tr79yltk9dq2h24za","coinDecimals":6},{"coinDenom":"blue","coinMinimalDenom":"cw20:juno14q8kk464fafql2fwmlsgvgcdl6h2csqpzv4hr025fmcvgjahpess32k0j7","coinDecimals":6},{"coinDenom":"wynd","coinMinimalDenom":"cw20:juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9","coinDecimals":6},{"coinDenom":"banana","coinMinimalDenom":"cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj","coinDecimals":6},{"coinDenom":"nride","coinMinimalDenom":"cw20:juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq","coinDecimals":6},{"coinDenom":"sgnl","coinMinimalDenom":"cw20:juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k","coinDecimals":6},{"coinDenom":"jape","coinMinimalDenom":"cw20:juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps","coinDecimals":6},{"coinDenom":"catom","coinMinimalDenom":"cw20:juno12wxyvtqe76x2a5jj6ckp2hfq8v32m6rvyyxwwufl2tksqvkt7whqczv6pa","coinDecimals":6},{"coinDenom":"howl","coinMinimalDenom":"cw20:juno1g0wuyu2f49ncf94r65278puxzclf5arse9f3kvffxyv4se4vgdmsk4dvqz","coinDecimals":6},{"coinDenom":"fox","coinMinimalDenom":"cw20:juno1u8cr3hcjvfkzxcaacv9q75uw9hwjmn8pucc93pmy6yvkzz79kh3qncca8x","coinDecimals":6},{"coinDenom":"grdn","coinMinimalDenom":"cw20:juno1xekkh27punj0uxruv3gvuydyt856fax0nu750xns99t2qcxp7xmsqwhfma","coinDecimals":6},{"coinDenom":"mnpu","coinMinimalDenom":"cw20:juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my","coinDecimals":6},{"coinDenom":"kleo","coinMinimalDenom":"cw20:juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy","coinDecimals":6},{"coinDenom":"sikoba","coinMinimalDenom":"cw20:juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp","coinDecimals":6},{"coinDenom":"shibac","coinMinimalDenom":"cw20:juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z","coinDecimals":6},{"coinDenom":"clst","coinMinimalDenom":"cw20:juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg","coinDecimals":6},{"coinDenom":"watr","coinMinimalDenom":"cw20:juno1m4h8q4p305wgy7vkux0w6e5ylhqll3s6pmadhxkhqtuwd5wlxhxs8xklsw","coinDecimals":6},{"coinDenom":"casa","coinMinimalDenom":"cw20:juno1ju8k8sqwsqu5k6umrypmtyqu2wqcpnrkf4w4mntvl0javt4nma7s8lzgss","coinDecimals":6},{"coinDenom":"summit","coinMinimalDenom":"cw20:juno1j4ux0f6gt7e82z7jdpm25v4g2gts880ap64rdwa49989wzhd0dfqed6vqm","coinDecimals":6},{"coinDenom":"manna","coinMinimalDenom":"cw20:juno13ca2g36ng6etcfhr9qxx352uw2n5e92np54thfkm3w3nzlhsgvwsjaqlyq","coinDecimals":6},{"coinDenom":"empwr","coinMinimalDenom":"cw20:juno12etxwkxvms0uy9ak8g3pyq6a53myukufdnx82pakzmjmpm77a0ksr9gs5v","coinDecimals":6},{"coinDenom":"middle","coinMinimalDenom":"cw20:juno1525fuspletvzykpgr2atxpymu9le4mghd7qq4a4u23uwqzc2f3fq7fmafd","coinDecimals":6},{"coinDenom":"sunset","coinMinimalDenom":"cw20:juno17703kcxtsg37hryxnestejyyycuv5yyvnghp2e7w0kqvafnnyetsgzq62w","coinDecimals":6},{"coinDenom":"tree","coinMinimalDenom":"cw20:juno1uu3rxu7w7fpfj4sl4xpxppgymk57mzdzn6kg7492jdxh5dwk7d2qq9429e","coinDecimals":6},{"coinDenom":"invdrs","coinMinimalDenom":"cw20:juno1jwdy7v4egw36pd84aeks3ww6n8k7zhsumd4ac8q5lts83ppxueus4626e8","coinDecimals":6},{"coinDenom":"apemos","coinMinimalDenom":"cw20:juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06","coinDecimals":6},{"coinDenom":"osdoge","coinMinimalDenom":"cw20:juno1ytymtllllsp3hfmndvcp802p2xmy5s8m59ufel8xv9ahyxyfs4hs4kd4je","coinDecimals":6},{"coinDenom":"doga","coinMinimalDenom":"cw20:juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d","coinDecimals":6},{"coinDenom":"pepe","coinMinimalDenom":"cw20:juno1zqrj3ta4u7ylv0wqzd8t8q3jrr9rdmn43zuzp9zemeunecnhy8fss778g7","coinDecimals":6},{"coinDenom":"catmos","coinMinimalDenom":"cw20:juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488","coinDecimals":6},{"coinDenom":"spacer","coinMinimalDenom":"cw20:juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg","coinDecimals":6},{"coinDenom":"light","coinMinimalDenom":"cw20:juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l","coinDecimals":9},{"coinDenom":"mile","coinMinimalDenom":"cw20:juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d","coinDecimals":6},{"coinDenom":"void","coinMinimalDenom":"cw20:juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8","coinDecimals":6},{"coinDenom":"silica","coinMinimalDenom":"cw20:juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux","coinDecimals":6},{"coinDenom":"pepec","coinMinimalDenom":"cw20:juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k","coinDecimals":6},{"coinDenom":"pltn","coinMinimalDenom":"cw20:juno15au4k2jgwd0jnchy0fkg3lm00fpt7jt0j2duuzradn2q7sega2dszyn5pp","coinDecimals":6},{"coinDenom":"yfd","coinMinimalDenom":"cw20:juno12mcwmd6wqhledkjsurlfqtc8j0pedvxlcxw3gs4kh2qf808ehehsen8nmw","coinDecimals":6},{"coinDenom":"nexx","coinMinimalDenom":"factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX","coinDecimals":6},{"coinDenom":"dgl","coinMinimalDenom":"factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL","coinDecimals":6},{"coinDenom":"ampJUNO","coinMinimalDenom":"cw20:juno1a0khag6cfzu5lrwazmyndjgvlsuk7g4vn9jd8ceym8f4jf6v2l9q6d348a","coinDecimals":6},{"coinDenom":"bits","coinMinimalDenom":"cw20:juno14fz92ehqt37e096xr95kmy8nc0kz803uezxtg4fwx7agjjma86sqm8mg3h","coinDecimals":8},{"coinDenom":"poil","coinMinimalDenom":"cw20:juno13epyeat7ef0k7q6kllmyvc8zpfd9xm7cqjrgtk0qkgrk7n5mjfmq8979jw","coinDecimals":6},{"coinDenom":"minerva","coinMinimalDenom":"cw20:juno1h86ut5aevlxuuxrra6wy3dfq6e39zkzzv9eelz678jr6amxlc4gsx46j82","coinDecimals":6},{"coinDenom":"luno","coinMinimalDenom":"cw20:juno13c57ssxvlzefsj4v5spdz4m9r6c6s2far5npvmc9en7nz02xqjyqne40gk","coinDecimals":6},{"coinDenom":"aten","coinMinimalDenom":"cw20:juno1elpg96tju8a32vzn25u6asvscajjm4000589z0zthhvks28ajypqzurl7r","coinDecimals":6},{"coinDenom":"hera","coinMinimalDenom":"cw20:juno1dtd45vxvv080v9x7hffysnmvrqm6ysecjdnvafqul28646hm04xs9gheh0","coinDecimals":6},{"coinDenom":"bJUNO","coinMinimalDenom":"cw20:juno1mvkgcr5uce2rnpzr4qrzf50hx4qreuwzlt7fzsjrhjud3xnjmttq5mkh2m","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/4A482FA914A4B9B05801ED81C33713899F322B24F76A06F4B8FE872485EA22FF","coinDecimals":6},{"coinDenom":"rstk","coinMinimalDenom":"ibc/F0C440C8040E2FCCAC621D32D3A00D9B347C989D52CE869A91CB34D07B0021D2","coinDecimals":6},{"coinDenom":"wind","coinMinimalDenom":"factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind","coinDecimals":6},{"coinDenom":"cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg","coinMinimalDenom":"cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg","coinDecimals":0},{"coinDenom":"arena","coinMinimalDenom":"factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA","coinDecimals":6},{"coinDenom":"ashWIND","coinMinimalDenom":"factory/juno16uprl38e4ljj5ctuha9ehpvp2l93z3d5jmwj2cttt6jkhlrhscpqgglalk/wind.ash","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/B4B81727559DC69159ED8BECD4452D555235CA0D11FADD3ADE121395A7E2833E","coinDecimals":18},{"coinDenom":"whale","coinMinimalDenom":"ibc/3A6ADE78FB8169C034C29C4F2E1A61CE596EC8235366F22381D981A98F1F5A5C","coinDecimals":6}],"rest":"https://lcd-juno.itastakers.com","rpc":"https://rpc-juno.itastakers.com","bech32Config":{"bech32PrefixAccAddr":"juno","bech32PrefixAccPub":"junopub","bech32PrefixValAddr":"junovaloper","bech32PrefixValPub":"junovaloperpub","bech32PrefixConsAddr":"junovalcons","bech32PrefixConsPub":"junovalconspub"},"chainName":"juno","feeCurrencies":[{"coinDenom":"juno","coinMinimalDenom":"ujuno","coinDecimals":6,"gasPriceStep":{"low":0.075,"average":0.1,"high":0.125}},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6,"gasPriceStep":{"low":0.003,"average":0.0035,"high":0.004}}],"stakeCurrency":{"coinDenom":"juno","coinMinimalDenom":"ujuno","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kava_2222-10","currencies":[{"coinDenom":"kava","coinMinimalDenom":"ukava","coinDecimals":6},{"coinDenom":"HARD","coinMinimalDenom":"hard","coinDecimals":6},{"coinDenom":"SWP","coinMinimalDenom":"swp","coinDecimals":6},{"coinDenom":"USDX","coinMinimalDenom":"usdx","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"erc20/tether/usdt","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/D4F1F74C6B90168E05B974F2EBB5938D18704B73DE273CAACF7E96F7821B2C3D","coinDecimals":18}],"rest":"https://api.data.kava.io/","rpc":"https://rpc.data.kava.io","bech32Config":{"bech32PrefixAccAddr":"kava","bech32PrefixAccPub":"kavapub","bech32PrefixValAddr":"kavavaloper","bech32PrefixValPub":"kavavaloperpub","bech32PrefixConsAddr":"kavavalcons","bech32PrefixConsPub":"kavavalconspub"},"chainName":"kava","feeCurrencies":[{"coinDenom":"kava","coinMinimalDenom":"ukava","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.1,"high":0.25}}],"stakeCurrency":{"coinDenom":"kava","coinMinimalDenom":"ukava","coinDecimals":6},"bip44":{"coinType":459}},{"chainId":"kichain-2","currencies":[{"coinDenom":"xki","coinMinimalDenom":"uxki","coinDecimals":6},{"coinDenom":"lvn","coinMinimalDenom":"cw20:ki1dt3lk455ed360pna38fkhqn0p8y44qndsr77qu73ghyaz2zv4whq83mwdy","coinDecimals":6}],"rest":"https://api-mainnet.blockchain.ki","rpc":"https://rpc-mainnet.blockchain.ki","bech32Config":{"bech32PrefixAccAddr":"ki","bech32PrefixAccPub":"kipub","bech32PrefixValAddr":"kivaloper","bech32PrefixValPub":"kivaloperpub","bech32PrefixConsAddr":"kivalcons","bech32PrefixConsPub":"kivalconspub"},"chainName":"kichain","feeCurrencies":[{"coinDenom":"xki","coinMinimalDenom":"uxki","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.05}}],"stakeCurrency":{"coinDenom":"xki","coinMinimalDenom":"uxki","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kima_network","currencies":[{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6}],"rest":"https://api.kima.network","rpc":"https://rpc.kima.network/","bech32Config":{"bech32PrefixAccAddr":"kima","bech32PrefixAccPub":"kimapub","bech32PrefixValAddr":"kimavaloper","bech32PrefixValPub":"kimavaloperpub","bech32PrefixConsAddr":"kimavalcons","bech32PrefixConsPub":"kimavalconspub"},"chainName":"kimanetwork","feeCurrencies":[{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.05}}],"stakeCurrency":{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"darchub","currencies":[{"coinDenom":"darc","coinMinimalDenom":"udarc","coinDecimals":6}],"rest":"https://api-konstellation-ia.cosmosia.notional.ventures/","rpc":"https://rpc-konstellation-ia.cosmosia.notional.ventures/","bech32Config":{"bech32PrefixAccAddr":"darc","bech32PrefixAccPub":"darcpub","bech32PrefixValAddr":"darcvaloper","bech32PrefixValPub":"darcvaloperpub","bech32PrefixConsAddr":"darcvalcons","bech32PrefixConsPub":"darcvalconspub"},"chainName":"konstellation","feeCurrencies":[{"coinDenom":"darc","coinMinimalDenom":"udarc","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.001,"high":0.01}}],"stakeCurrency":{"coinDenom":"darc","coinMinimalDenom":"udarc","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"luwak-1","currencies":[{"coinDenom":"XKP","coinMinimalDenom":"ukopi","coinDecimals":6},{"coinDenom":"kUSD","coinMinimalDenom":"ukusd","coinDecimals":6},{"coinDenom":"ckUSD","coinMinimalDenom":"uckusd","coinDecimals":6},{"coinDenom":"cUSDC","coinMinimalDenom":"ucusdc","coinDecimals":6},{"coinDenom":"cUSDT.inj","coinMinimalDenom":"ucusdtinj","coinDecimals":6},{"coinDenom":"USDC","coinMinimalDenom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","coinDecimals":6},{"coinDenom":"USDT.inj","coinMinimalDenom":"ibc/D8A36AE90F20FE4843A8D249B1BCF0CCDDE35C4B605C8DED57BED20C639162D0","coinDecimals":6},{"coinDenom":"INJ","coinMinimalDenom":"ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255","coinDecimals":18},{"coinDenom":"Luna","coinMinimalDenom":"ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85","coinDecimals":6},{"coinDenom":"Atom","coinMinimalDenom":"ibc/25418646C017D377ADF3202FF1E43590D0DAE3346E594E8D78176A139A928F88","coinDecimals":6},{"coinDenom":"asusdtinj","coinMinimalDenom":"uasusdtinj","coinDecimals":6},{"coinDenom":"asUSDC","coinMinimalDenom":"uasusdc","coinDecimals":6}],"rest":"https://rest.kopi.money","rpc":"https://rpc.kopi.money","bech32Config":{"bech32PrefixAccAddr":"kopi","bech32PrefixAccPub":"kopipub","bech32PrefixValAddr":"kopivaloper","bech32PrefixValPub":"kopivaloperpub","bech32PrefixConsAddr":"kopivalcons","bech32PrefixConsPub":"kopivalconspub"},"chainName":"kopi","feeCurrencies":[{"coinDenom":"XKP","coinMinimalDenom":"ukopi","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"XKP","coinMinimalDenom":"ukopi","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kaiyo-1","currencies":[{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6},{"coinDenom":"usk","coinMinimalDenom":"factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk","coinDecimals":6},{"coinDenom":"qcKUJI","coinMinimalDenom":"factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt","coinDecimals":6},{"coinDenom":"ampKUJI","coinMinimalDenom":"factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI","coinDecimals":6},{"coinDenom":"mnta","coinMinimalDenom":"factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta","coinDecimals":6},{"coinDenom":"qcMNTA","coinMinimalDenom":"factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt","coinDecimals":6},{"coinDenom":"ampMNTA","coinMinimalDenom":"factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA","coinDecimals":6},{"coinDenom":"wink","coinMinimalDenom":"factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink","coinDecimals":6},{"coinDenom":"blend","coinMinimalDenom":"factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8","coinDecimals":6},{"coinDenom":"fuzn","coinMinimalDenom":"factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn","coinDecimals":6},{"coinDenom":"rfuzn","coinMinimalDenom":"factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn","coinDecimals":6},{"coinDenom":"yfuzn","coinMinimalDenom":"factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn","coinDecimals":6},{"coinDenom":"qcFUZN","coinMinimalDenom":"factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt","coinDecimals":6},{"coinDenom":"qcAQLA","coinMinimalDenom":"factory/kujira1d9fmsgvu3yvvppvqech2s3dhrqdm5ukngcf82ghcl70edfpwcrlsu6yr0u/urcpt","coinDecimals":6},{"coinDenom":"AQLA","coinMinimalDenom":"factory/kujira1xe0awk5planmtsmjel5xtx2hzhqdw5p8z66yqd/uaqla","coinDecimals":6},{"coinDenom":"nstk","coinMinimalDenom":"factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk","coinDecimals":6},{"coinDenom":"local","coinMinimalDenom":"factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local","coinDecimals":6},{"coinDenom":"PLNK","coinMinimalDenom":"factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk","coinDecimals":6},{"coinDenom":"sol","coinMinimalDenom":"ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3","coinDecimals":8},{"coinDenom":"evmos","coinMinimalDenom":"ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10","coinDecimals":18},{"coinDenom":"avax","coinMinimalDenom":"ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F","coinDecimals":6},{"coinDenom":"cmdx","coinMinimalDenom":"ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07","coinDecimals":6},{"coinDenom":"juno","coinMinimalDenom":"ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7","coinDecimals":18},{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986","coinDecimals":6},{"coinDenom":"stars","coinMinimalDenom":"ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602","coinDecimals":6},{"coinDenom":"scrt","coinMinimalDenom":"ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5","coinDecimals":6},{"coinDenom":"stkatom","coinMinimalDenom":"ibc/086C1B2E9E611F23D3C9159C858D3F4C6A911D348DFB916A11AE306A865A77A8","coinDecimals":6},{"coinDenom":"bKUJI","coinMinimalDenom":"factory/kujira15e8q5wzlk5k38gjxlhse3vu6vqnafysncx2ltexd6y9gx50vuj2qpt7dgv/boneKuji","coinDecimals":6},{"coinDenom":"rstk","coinMinimalDenom":"ibc/82B298F9E74A9A211C55C67C7AB0C790836BD43672D5DD830F7AE2C5D010AD7D","coinDecimals":6},{"coinDenom":"xusk","coinMinimalDenom":"factory/kujira1w4yaama77v53fp0f9343t9w2f932z526vj970n2jv5055a7gt92sxgwypf/urcpt","coinDecimals":6},{"coinDenom":"xmnta","coinMinimalDenom":"factory/kujira1ya42knfcsvy6eztegsn3hz7zpjvhzn05ge85xa2dy2zrjeul9hnspp3c06/urcpt","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"ibc/0306D6B66EAA2EDBB7EAD23C0EC9DDFC69BB43E80B398035E90FBCFEF3FD1A87","coinDecimals":6},{"coinDenom":"wbtc.axl","coinMinimalDenom":"ibc/301DAF9CB0A9E247CD478533EF0E21F48FF8118C4A51F77C8BC3EB70E5566DBC","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/F97BDCE220CCB52139C73066E36C45EC7EDCEEF1DAFF891A34F4FBA195A2E6E8","coinDecimals":6},{"coinDenom":"lp-dot-mnta","coinMinimalDenom":"factory/kujira10qyzrqaza0f593cmnl4sc3p3nhqqakn9j56d899u723pznxpn8us6cypuw/ulp","coinDecimals":6},{"coinDenom":"lp-shd-mnta","coinMinimalDenom":"factory/kujira12tpc335t72qtrjh64ccdydzsr9qtswkqn72cyvfj4d5hmtgynphsv4xjtu/ulp","coinDecimals":6},{"coinDenom":"lp-dydx-mnta","coinMinimalDenom":"factory/kujira13g2eelkf9q4md4xx52ylqvlgpccn50f2vyu05eazufd2g4jatmhq2425pq/ulp","coinDecimals":6},{"coinDenom":"lp-wavax-mnta","coinMinimalDenom":"factory/kujira15pk8c09vcsgsdq4xlh2qfqxtu2r8pgdy7nggkqj8p3h2phke80pqwnvtzk/ulp","coinDecimals":6},{"coinDenom":"lp-cheq-mnta","coinMinimalDenom":"factory/kujira15w6jhxsv924mn9cfr0qg9z36hltmw4rzd68x40d9re6hzyhslumqjw9zqd/ulp","coinDecimals":6},{"coinDenom":"lp-fuzn-mnta","coinMinimalDenom":"factory/kujira1622xuv8unv22xzazljvqh8uukcdz3yzmrp6axgerh7vxg4kum5tqcwcqmv/ulp","coinDecimals":6},{"coinDenom":"lp-somm-mnta","coinMinimalDenom":"factory/kujira17djzq5x5e5zm9q9zlp6dtxdt9p8q2zvj0qtmjs0wrxm5g9e2vf5q9d6y2t/ulp","coinDecimals":6},{"coinDenom":"lp-weth-mnta","coinMinimalDenom":"factory/kujira17x2v39aut0paj5d6wc5jxvqqxrdhy9kvca4y5xn6vsfpsxkgc6gq7n4tg0/ulp","coinDecimals":6},{"coinDenom":"lp-ntrn-mnta","coinMinimalDenom":"factory/kujira18lhugzap20ndlqr5j2p86yk4pxpe9jjuac05z0ypxuwn3mm5vjhsjh4etr/ulp","coinDecimals":6},{"coinDenom":"lp-wftm-mnta","coinMinimalDenom":"factory/kujira18mveas6xseaqu3fmukwv2ac6mp4hszk08lvyamedytjs0kxm42yqs9v89x/ulp","coinDecimals":6},{"coinDenom":"lp-stars-mnta","coinMinimalDenom":"factory/kujira1av284rnqh6s0l2lwdqgpgz8wuva3wh9lkmlsupjd9escn5v4fels6kwc7v/ulp","coinDecimals":6},{"coinDenom":"lp-tia-mnta","coinMinimalDenom":"factory/kujira1cpdyhrkwdnz38u45el3zq7007at9dm6h05tc36zpxvs6vrdwzrrskt0tgg/ulp","coinDecimals":6},{"coinDenom":"lp-sol-mnta","coinMinimalDenom":"factory/kujira1eqd96322ec258w7k9n9cfqkusrlvzwv38jkph3qs720egdv0epmq70j2zl/ulp","coinDecimals":6},{"coinDenom":"lp-dym-mnta","coinMinimalDenom":"factory/kujira1fg7wmsde7ygw3pm6hqmd29cdvp947anajmunsvk0guvjta3md25qdqk4fw/ulp","coinDecimals":6},{"coinDenom":"lp-akt-mnta","coinMinimalDenom":"factory/kujira1gnftck9586x0nhsqsj99k9zednl6tx4kezu9hpph0u6jtqnafpyqxha3me/ulp","coinDecimals":6},{"coinDenom":"lp-link-mnta","coinMinimalDenom":"factory/kujira1gnvja05kkmpeh9dnxl0c2p4sde7fpsy2r44njzyqgpsf72nqs78q3gzpzc/ulp","coinDecimals":6},{"coinDenom":"lp-wtao-mnta","coinMinimalDenom":"factory/kujira1gz2kvfw7hpds9fvygwkj64znl3a9pw697g77cspcq5y4vj3ru45s7qc0rd/ulp","coinDecimals":6},{"coinDenom":"lp-mnta-kuji","coinMinimalDenom":"factory/kujira1h75predtjdm2e7u8cuvqs3usc6xs2mxlkcr20zsshvw3qap25frsr4z949/ulp","coinDecimals":6},{"coinDenom":"lp-axl-mnta","coinMinimalDenom":"factory/kujira1h929g9e9vxhc5y8v7uexdrncacxdatjupr67velewafwepfyfaaq6s7l3v/ulp","coinDecimals":6},{"coinDenom":"lp-atom-mnta","coinMinimalDenom":"factory/kujira1h9f3k54j060pzlnea8ep8qfymsmwl5yhwc5hqept5p2esqzve7tq2ghnm4/ulp","coinDecimals":6},{"coinDenom":"lp-arb-mnta","coinMinimalDenom":"factory/kujira1kc90tgn4ucvdv4c9xycktanwz2lna0nfel6244ylqjvhaetfntusnmyu3d/ulp","coinDecimals":6},{"coinDenom":"lp-whale-mnta","coinMinimalDenom":"factory/kujira1jsjygyj8hwa4f0p9wwgct4yzmzzexe5x5u6l40l7ty2qzwwwsemqavhk3x/ulp","coinDecimals":6},{"coinDenom":"lp-scrt-mnta","coinMinimalDenom":"factory/kujira1p7w9ncnnme9yzzhrvzv0hnsa5u5ga06v0ckt7lq9yfap04hc5k9sn2vf6w/ulp","coinDecimals":6},{"coinDenom":"lp-wsteth-mnta","coinMinimalDenom":"factory/kujira1qx3hcr297qmgjt5f6u9peldf4phxqufvmew8d3eey3ns29e8qp3snj6jfu/ulp","coinDecimals":6},{"coinDenom":"lp-wmatic-mnta","coinMinimalDenom":"factory/kujira1smfdnww47xav4nn849xphku3gk3xp7a24fk533dce8masnsz4v8quklajx/ulp","coinDecimals":6},{"coinDenom":"lp-uni-mnta","coinMinimalDenom":"factory/kujira1t4mr2xt4ky4mfwcy752chzlquam3hzs44mt8vwyec8mvypmzxu5s90vamt/ulp","coinDecimals":6},{"coinDenom":"lp-yieldeth-mnta","coinMinimalDenom":"factory/kujira1u8dluwa4a83q7anz0cgpmma605r07a06f0789ajcl8l0xjrplqss005cgn/ulp","coinDecimals":6},{"coinDenom":"lp-wbtc-mnta","coinMinimalDenom":"factory/kujira1vj39mdwekxznxxa97fv5gt957cghfdqhwju8fdv5ysu0x6vsyhps4zmqjl/ulp","coinDecimals":6},{"coinDenom":"lp-paxg-mnta","coinMinimalDenom":"factory/kujira1vqdyup9zxxl9gqy5hwh593vvuc84lstldj7qzt7fylf3q3e3uemqlwpg9y/ulp","coinDecimals":6},{"coinDenom":"lp-wbnb-mnta","coinMinimalDenom":"factory/kujira1y24jwsv84lnuv5j78qeqz5ujjpd058qsft7wfc0nk9jvycugm32sqnq53d/ulp","coinDecimals":6},{"coinDenom":"lp-osmo-mnta","coinMinimalDenom":"factory/kujira1ygperwf0dc9ng2jffj0pwnnray3rscn9el6d78qjtt25qwgqukqszmdwtv/ulp","coinDecimals":6},{"coinDenom":"lp-inj-mnta","coinMinimalDenom":"factory/kujira1znx048dcc6arqfw6kpckl0k4ts2h7cdx20nk22wz2cxh5vle3wxqknk238/ulp","coinDecimals":6},{"coinDenom":"lp-stosmo-osmo","coinMinimalDenom":"factory/kujira18sek950cg92gd0kvpj67dfg6p7kee6hzw92etcf2jgufr3mttvaslt5sal/ulp","coinDecimals":6},{"coinDenom":"lp-wsteth-weth","coinMinimalDenom":"factory/kujira1lyyeyuw4qgan6nz45thw2m0nmxa457uz7cp9dqw5d9a0h7ccek7qavkm6g/ulp","coinDecimals":6},{"coinDenom":"lp-qcmnta-mnta","coinMinimalDenom":"factory/kujira1ul00h0a2kgcg9x2yfa86wj9qguhyv7jmpjpw6ztt24j9mn9xjw3slawyc8/ulp","coinDecimals":6},{"coinDenom":"lp-ampmnta-mnta","coinMinimalDenom":"factory/kujira1vj36ntsqd3msc69lxldcv9dd50jngknmael9e07rz4fpn5kyq0jsglvz2m/ulp","coinDecimals":6},{"coinDenom":"lp-weth-usk","coinMinimalDenom":"factory/kujira1n648rfqqvjxm6c7zgfnfqay85rkapgg0z7da9pnmjazz5m5d7l0qxdtq90/ulp","coinDecimals":6},{"coinDenom":"nami","coinMinimalDenom":"factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/unami","coinDecimals":6},{"coinDenom":"nausd","coinMinimalDenom":"factory/kujira18thffdpuz8tm3mwwun4uhks8a2v7ye0jmw3fllqhklma82lqkpms20gh9c/unausd","coinDecimals":6},{"coinDenom":"mctest","coinMinimalDenom":"factory/kujira1mn2pgkggquqm2m44zqlaq29jxwtad53qkv4xy4/MCTest","coinDecimals":6},{"coinDenom":"auto","coinMinimalDenom":"factory/kujira13x2l25mpkhwnwcwdzzd34cr8fyht9jlj7xu9g4uffe36g3fmln8qkvm3qn/uauto","coinDecimals":6},{"coinDenom":"qcDYDX","coinMinimalDenom":"factory/kujira1seqq2ekz47uqayshqkg5wqx5vcyrmtwcl9vscnwy2gjh7mz5aapsdfxsd5/urcpt","coinDecimals":18},{"coinDenom":"rkuji","coinMinimalDenom":"factory/kujira1tsekaqv9vmem0zwskmf90gpf0twl6k57e8vdnq/urkuji","coinDecimals":6},{"coinDenom":"lp-atom-usk","coinMinimalDenom":"factory/kujira1yncutssgh2vj9scaymtteg949hwcft07c6qmgarxnaf04yesq3jsn6g2uv/ulp","coinDecimals":6},{"coinDenom":"lp-weth-usk","coinMinimalDenom":"factory/kujira1xwvvjq5w0887v2vz4e83kcu38s0jq8q8lqa3z5hxm295q7y4uejqp24la7/ulp","coinDecimals":6},{"coinDenom":"lp-sol-usk","coinMinimalDenom":"factory/kujira1vcmh95lje5dln782pxckma65eujs4sv960w22whgsp7a2ajsc6lsvnlhgd/ulp","coinDecimals":6},{"coinDenom":"lp-weth-usdc","coinMinimalDenom":"factory/kujira1n4jfv39hzv2dtshzv6gj4hp8rkdy5rrsr7l84lc3x9cahz4v0umq24q3lu/ulp","coinDecimals":6},{"coinDenom":"lp-dydx-usk","coinMinimalDenom":"factory/kujira1lctu7hy65466fxw3tcqf8w45zwrpwgd9chvjqpgyfgcr73k774nsv4ya6t/ulp","coinDecimals":6},{"coinDenom":"lp-akt-usdc","coinMinimalDenom":"factory/kujira1g5st8p6qdyf23zzerjcxgpr2r7a9wzdyaymu79ngg6ve3m9v3n4sdetv4e/ulp","coinDecimals":6},{"coinDenom":"lp-wbtc-usk","coinMinimalDenom":"factory/kujira1d7jt9zwlnpvf7sskfm57c77pm9mtwczqre75t9k80ees0v523kasss9htj/ulp","coinDecimals":6},{"coinDenom":"lp-wbtc-wbtc","coinMinimalDenom":"factory/kujira1c4e2zk4z0anrufjh64gxtse6e4s5g52fe2ja8ke3r9e0pvpd0z0qws8zsp/ulp","coinDecimals":8},{"coinDenom":"lp-inj-usdc","coinMinimalDenom":"factory/kujira14jwhlsg3az20f7keav2axxj205fyv5j8mp6rv5svqwwll3ls9slq6zwleg/ulp","coinDecimals":6},{"coinDenom":"lp-atom-usdc","coinMinimalDenom":"factory/kujira13my0qtm2a8jp0wg8uzg49tyn4zcea8scy3dc7ghn8z9eys08yzls49ymdm/ulp","coinDecimals":6},{"coinDenom":"lp-mnta-usdc","coinMinimalDenom":"factory/kujira1742pe93mxm0cwqjxgxh6th9sspdrluqvw9pha9q69eeatue4x5xs0wdq2d/ulp","coinDecimals":6},{"coinDenom":"lp-mnta-usk","coinMinimalDenom":"factory/kujira1xtaadmh06s8u3z5mypp8qayhrnxgga5wr88s7raram4rz8zu37hquf82wk/ulp","coinDecimals":6},{"coinDenom":"boon","coinMinimalDenom":"factory/kujira1gewwffxhaygxe8tacd3z9h4uyvpd2h7v9qtfmaw8jjhwalxxpd7qlqld4m/boon","coinDecimals":6},{"coinDenom":"yum","coinMinimalDenom":"ibc/507BE7E33F06026652F519AD4D36716251F2D34DF04514A905D3B19A7D8130F7","coinDecimals":18}],"rest":"https://lcd.kaiyo.kujira.setten.io","rpc":"https://rpc.kaiyo.kujira.setten.io","bech32Config":{"bech32PrefixAccAddr":"kujira","bech32PrefixAccPub":"kujirapub","bech32PrefixValAddr":"kujiravaloper","bech32PrefixValPub":"kujiravaloperpub","bech32PrefixConsAddr":"kujiravalcons","bech32PrefixConsPub":"kujiravalconspub"},"chainName":"kujira","feeCurrencies":[{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6,"gasPriceStep":{"low":0.0034,"average":0.0051,"high":0.00681}},{"coinDenom":"usk","coinMinimalDenom":"factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk","coinDecimals":6,"gasPriceStep":{"low":0.01186,"average":0.01779,"high":0.02372}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F","coinDecimals":6,"gasPriceStep":{"low":0.0119,"average":0.01785,"high":0.02379}},{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6,"gasPriceStep":{"low":0.00129,"average":0.00193,"high":0.00258}},{"coinDenom":"osmo","coinMinimalDenom":"ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23","coinDecimals":6,"gasPriceStep":{"low":0.01795,"average":0.02692,"high":0.0359}},{"coinDenom":"cmdx","coinMinimalDenom":"ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07","coinDecimals":6,"gasPriceStep":{"low":0.65943,"average":0.98915,"high":1.31887}},{"coinDenom":"evmos","coinMinimalDenom":"ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10","coinDecimals":18,"gasPriceStep":{"low":160416396197,"average":240624594296,"high":320832792394}},{"coinDenom":"juno","coinMinimalDenom":"ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5","coinDecimals":6,"gasPriceStep":{"low":0.02689,"average":0.04034,"high":0.05379}},{"coinDenom":"luna","coinMinimalDenom":"ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986","coinDecimals":6,"gasPriceStep":{"low":0.01495,"average":0.02243,"high":0.02991}},{"coinDenom":"scrt","coinMinimalDenom":"ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5","coinDecimals":6,"gasPriceStep":{"low":0.03139,"average":0.04709,"high":0.06278}},{"coinDenom":"stars","coinMinimalDenom":"ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602","coinDecimals":6,"gasPriceStep":{"low":0.90403,"average":1.35605,"high":1.80806}},{"coinDenom":"avax","coinMinimalDenom":"ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2","coinDecimals":18,"gasPriceStep":{"low":559196837,"average":838795256,"high":1118393675}},{"coinDenom":"weth","coinMinimalDenom":"ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7","coinDecimals":18,"gasPriceStep":{"low":5772801,"average":8659201,"high":11545602}},{"coinDenom":"mnta","coinMinimalDenom":"factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta","coinDecimals":6,"gasPriceStep":{"low":0.01807,"average":0.02711,"high":0.03615}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9","coinDecimals":6,"gasPriceStep":{"low":0.01194,"average":0.01792,"high":0.02389}},{"coinDenom":"sol","coinMinimalDenom":"ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3","coinDecimals":8,"gasPriceStep":{"low":0.00019,"average":0.00029,"high":0.00039}}],"stakeCurrency":{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kyve-1","currencies":[{"coinDenom":"kyve","coinMinimalDenom":"ukyve","coinDecimals":6}],"rest":"https://api.kyve.network","rpc":"https://rpc.kyve.network","bech32Config":{"bech32PrefixAccAddr":"kyve","bech32PrefixAccPub":"kyvepub","bech32PrefixValAddr":"kyvevaloper","bech32PrefixValPub":"kyvevaloperpub","bech32PrefixConsAddr":"kyvevalcons","bech32PrefixConsPub":"kyvevalconspub"},"chainName":"kyve","feeCurrencies":[{"coinDenom":"kyve","coinMinimalDenom":"ukyve","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.03,"high":0.06}}],"stakeCurrency":{"coinDenom":"kyve","coinMinimalDenom":"ukyve","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"lambda_92000-1","currencies":[{"coinDenom":"lamb","coinMinimalDenom":"ulamb","coinDecimals":18}],"rest":"https://rest.lambda.im","rpc":"https://rpc.lambda.im","bech32Config":{"bech32PrefixAccAddr":"lamb","bech32PrefixAccPub":"lambpub","bech32PrefixValAddr":"lambvaloper","bech32PrefixValPub":"lambvaloperpub","bech32PrefixConsAddr":"lambvalcons","bech32PrefixConsPub":"lambvalconspub"},"chainName":"lambda","feeCurrencies":[{"coinDenom":"lamb","coinMinimalDenom":"ulamb","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"lamb","coinMinimalDenom":"ulamb","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"lava-mainnet-1","currencies":[{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6}],"rest":"https://lava-api.finteh.org:443","rpc":"https://lava.tendermintrpc.lava.build","bech32Config":{"bech32PrefixAccAddr":"lava@","bech32PrefixAccPub":"lava@pub","bech32PrefixValAddr":"lava@valoper","bech32PrefixValPub":"lava@valoperpub","bech32PrefixConsAddr":"lava@valcons","bech32PrefixConsPub":"lava@valconspub"},"chainName":"lava","feeCurrencies":[{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6,"gasPriceStep":{"low":0.00002,"average":0.025,"high":0.05}}],"stakeCurrency":{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"likecoin-mainnet-2","currencies":[{"coinDenom":"like","coinMinimalDenom":"nanolike","coinDecimals":9}],"rest":"https://mainnet-node.like.co","rpc":"https://mainnet-node.like.co/rpc/","bech32Config":{"bech32PrefixAccAddr":"like","bech32PrefixAccPub":"likepub","bech32PrefixValAddr":"likevaloper","bech32PrefixValPub":"likevaloperpub","bech32PrefixConsAddr":"likevalcons","bech32PrefixConsPub":"likevalconspub"},"chainName":"likecoin","feeCurrencies":[{"coinDenom":"like","coinMinimalDenom":"nanolike","coinDecimals":9,"gasPriceStep":{"low":1000,"average":10000,"high":1000000}}],"stakeCurrency":{"coinDenom":"like","coinMinimalDenom":"nanolike","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"logos_7002-1","currencies":[{"coinDenom":"LYT","coinMinimalDenom":"aLYT","coinDecimals":18}],"rest":"https://logos.provable.dev/rest/","rpc":"https://logos-rpc.provable.dev:443/","bech32Config":{"bech32PrefixAccAddr":"logos","bech32PrefixAccPub":"logospub","bech32PrefixValAddr":"logosvaloper","bech32PrefixValPub":"logosvaloperpub","bech32PrefixConsAddr":"logosvalcons","bech32PrefixConsPub":"logosvalconspub"},"chainName":"logos","feeCurrencies":[{"coinDenom":"LYT","coinMinimalDenom":"aLYT","coinDecimals":18}],"stakeCurrency":{"coinDenom":"LYT","coinMinimalDenom":"aLYT","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"loop-1","currencies":[{"coinDenom":"token","coinMinimalDenom":"token","coinDecimals":0},{"coinDenom":"poa","coinMinimalDenom":"upoa","coinDecimals":6}],"rest":"https://api.loop.pfc.zone/","rpc":"https://rpc.loop.pfc.zone/","bech32Config":{"bech32PrefixAccAddr":"loop","bech32PrefixAccPub":"looppub","bech32PrefixValAddr":"loopvaloper","bech32PrefixValPub":"loopvaloperpub","bech32PrefixConsAddr":"loopvalcons","bech32PrefixConsPub":"loopvalconspub"},"chainName":"loop","feeCurrencies":[{"coinDenom":"token","coinMinimalDenom":"token","coinDecimals":0}],"stakeCurrency":{"coinDenom":"token","coinMinimalDenom":"token","coinDecimals":0},"bip44":{"coinType":118}},{"chainId":"loyal-main-02","currencies":[{"coinDenom":"lyl","coinMinimalDenom":"ulyl","coinDecimals":6}],"rest":"https://lcd-main.joinloyal.io/","rpc":"https://rpc-main.joinloyal.io/","bech32Config":{"bech32PrefixAccAddr":"loyal","bech32PrefixAccPub":"loyalpub","bech32PrefixValAddr":"loyalvaloper","bech32PrefixValPub":"loyalvaloperpub","bech32PrefixConsAddr":"loyalvalcons","bech32PrefixConsPub":"loyalvalconspub"},"chainName":"loyal","feeCurrencies":[{"coinDenom":"lyl","coinMinimalDenom":"ulyl","coinDecimals":6}],"stakeCurrency":{"coinDenom":"lyl","coinMinimalDenom":"ulyl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"lum-network-1","currencies":[{"coinDenom":"lum","coinMinimalDenom":"ulum","coinDecimals":6}],"rest":"https://rest.node0.mainnet.lum.network","rpc":"https://rpc.node0.mainnet.lum.network","bech32Config":{"bech32PrefixAccAddr":"lum","bech32PrefixAccPub":"lumpub","bech32PrefixValAddr":"lumvaloper","bech32PrefixValPub":"lumvaloperpub","bech32PrefixConsAddr":"lumvalcons","bech32PrefixConsPub":"lumvalconspub"},"chainName":"lumnetwork","feeCurrencies":[{"coinDenom":"lum","coinMinimalDenom":"ulum","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"lum","coinMinimalDenom":"ulum","coinDecimals":6},"bip44":{"coinType":880}},{"chainId":"mande_18071918-1","currencies":[{"coinDenom":"mand","coinMinimalDenom":"amand","coinDecimals":18}],"rest":"https://mande-mainnet-rest.public.blastapi.io","rpc":"https://mande-mainnet-tendermint.public.blastapi.io","bech32Config":{"bech32PrefixAccAddr":"mande","bech32PrefixAccPub":"mandepub","bech32PrefixValAddr":"mandevaloper","bech32PrefixValPub":"mandevaloperpub","bech32PrefixConsAddr":"mandevalcons","bech32PrefixConsPub":"mandevalconspub"},"chainName":"mande","feeCurrencies":[{"coinDenom":"mand","coinMinimalDenom":"amand","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":20000000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"mand","coinMinimalDenom":"amand","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"mantra-1","currencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6}],"rest":"https://api.mantrachain.io","rpc":"https://rpc.mantrachain.io","bech32Config":{"bech32PrefixAccAddr":"mantra","bech32PrefixAccPub":"mantrapub","bech32PrefixValAddr":"mantravaloper","bech32PrefixValPub":"mantravaloperpub","bech32PrefixConsAddr":"mantravalcons","bech32PrefixConsPub":"mantravalconspub"},"chainName":"mantrachain","feeCurrencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.03}}],"stakeCurrency":{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mars-1","currencies":[{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6}],"rest":"https://rest.marsprotocol.io:443","rpc":"https://rpc.marsprotocol.io:443","bech32Config":{"bech32PrefixAccAddr":"mars","bech32PrefixAccPub":"marspub","bech32PrefixValAddr":"marsvaloper","bech32PrefixValPub":"marsvaloperpub","bech32PrefixConsAddr":"marsvalcons","bech32PrefixConsPub":"marsvalconspub"},"chainName":"mars","feeCurrencies":[{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6}],"stakeCurrency":{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"medasdigital-2","currencies":[{"coinDenom":"medas","coinMinimalDenom":"umedas","coinDecimals":6}],"rest":"https://lcd.medas-digital.io:1317/","rpc":"https://rpc.medas-digital.io:26657/","bech32Config":{"bech32PrefixAccAddr":"medas","bech32PrefixAccPub":"medaspub","bech32PrefixValAddr":"medasvaloper","bech32PrefixValPub":"medasvaloperpub","bech32PrefixConsAddr":"medasvalcons","bech32PrefixConsPub":"medasvalconspub"},"chainName":"medasdigital","feeCurrencies":[{"coinDenom":"medas","coinMinimalDenom":"umedas","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.4}}],"stakeCurrency":{"coinDenom":"medas","coinMinimalDenom":"umedas","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"meme-1","currencies":[{"coinDenom":"meme","coinMinimalDenom":"umeme","coinDecimals":6},{"coinDenom":"planq","coinMinimalDenom":"ibc/FACC1CE598366EA01D86CF1CBE05F1A6C7511F673E91DEFF04342ED8DEFE3A60","coinDecimals":18}],"rest":"https://api-meme-1.meme.sx/","rpc":"https://rpc-meme-1.meme.sx/","bech32Config":{"bech32PrefixAccAddr":"meme","bech32PrefixAccPub":"memepub","bech32PrefixValAddr":"memevaloper","bech32PrefixValPub":"memevaloperpub","bech32PrefixConsAddr":"memevalcons","bech32PrefixConsPub":"memevalconspub"},"chainName":"meme","feeCurrencies":[{"coinDenom":"meme","coinMinimalDenom":"umeme","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.035,"high":0.045}}],"stakeCurrency":{"coinDenom":"meme","coinMinimalDenom":"umeme","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"migaloo-1","currencies":[{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6},{"coinDenom":"ampWHALE","coinMinimalDenom":"factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE","coinDecimals":6},{"coinDenom":"bWHALE","coinMinimalDenom":"factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale","coinDecimals":6},{"coinDenom":"fable","coinMinimalDenom":"factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable","coinDecimals":6},{"coinDenom":"bluna","coinMinimalDenom":"ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708","coinDecimals":6},{"coinDenom":"RAC","coinMinimalDenom":"factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac","coinDecimals":6},{"coinDenom":"ASH","coinMinimalDenom":"factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/86A25A8A327164AE7C68A29B6ED745C7EEDC36E260A6666F33A6407BECEC4737","coinDecimals":6},{"coinDenom":"mUSDC","coinMinimalDenom":"cw20:migaloo10nucfm2zqgzqmy7y7ls398t58pjt9cwjsvpy88y2nvamtl34rgmqt5em2v","coinDecimals":6},{"coinDenom":"GUPPY","coinMinimalDenom":"factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy","coinDecimals":6},{"coinDenom":"OPHIR","coinMinimalDenom":"factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir","coinDecimals":6},{"coinDenom":"SHARK","coinMinimalDenom":"factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark","coinDecimals":6},{"coinDenom":"lsdSHARK","coinMinimalDenom":"factory/migaloo1p3aj9f09d7c4jxhgue0hpdpw370j6gzc59nxxx6l8d0gc9f9rfwsdwetus/lsdSHARK","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/4627AD2524E3E0523047E35BB76CC90E37D9D57ACF14F0FCBCEB2480705F3CB8","coinDecimals":6},{"coinDenom":"Rakoff","coinMinimalDenom":"ibc/44C29C91F202E20C8E28DFB1FA89B725C54171CD77B8948836C72E7A97E4A018","coinDecimals":6},{"coinDenom":"gash","coinMinimalDenom":"factory/migaloo1r9x8fz4alekzr78k42rpmr9unpa7egsldpqeynmwl2nfvzexue9sn8l5rg/gash","coinDecimals":6},{"coinDenom":"rstk","coinMinimalDenom":"factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk","coinDecimals":6},{"coinDenom":"frog","coinMinimalDenom":"ibc/B1BD4EF49A2E051EFC85E8C6A932B559CE62F9519E0E83BE29A8F0BDF89BD1D3","coinDecimals":6},{"coinDenom":"GRAC","coinMinimalDenom":"factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/ugrac","coinDecimals":6},{"coinDenom":"wind","coinMinimalDenom":"ibc/721B42229246EEDA7A656DB17E494127F91E84AD63E21852737628321892A928","coinDecimals":6},{"coinDenom":"shitmos","coinMinimalDenom":"ibc/0E1B883A15D5FCA533332CBAB1A672934C3936920399F2A3EB4F438E3EBAD0E9","coinDecimals":6},{"coinDenom":"ampGASH","coinMinimalDenom":"factory/migaloo1nsskhvvh0msm7d5ke2kfg24a8d4jecsnxd28s27h0uz5kf9ap60shlqmcl/ampGASH","coinDecimals":6},{"coinDenom":"SYN","coinMinimalDenom":"ibc/33E97105B5C1F48CB7D6400F4673F9B3699AC59EDB621CCCD57D5D480E0C83B6","coinDecimals":6},{"coinDenom":"DGN","coinMinimalDenom":"ibc/D8C6D71032EC7CC4C9CCD0FF709CF87D34A7311FE5491E70F7EDE2351D189C10","coinDecimals":6}],"rest":"https://migaloo-api.polkachu.com:443","rpc":"https://migaloo-rpc.polkachu.com:443","bech32Config":{"bech32PrefixAccAddr":"migaloo","bech32PrefixAccPub":"migaloopub","bech32PrefixValAddr":"migaloovaloper","bech32PrefixValPub":"migaloovaloperpub","bech32PrefixConsAddr":"migaloovalcons","bech32PrefixConsPub":"migaloovalconspub"},"chainName":"migaloo","feeCurrencies":[{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6,"gasPriceStep":{"low":1,"average":2,"high":3}}],"stakeCurrency":{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"milkyway","currencies":[{"coinDenom":"milk","coinMinimalDenom":"umilk","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6},{"coinDenom":"milkTIA","coinMinimalDenom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","coinDecimals":6},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0","coinDecimals":6}],"rest":"https://lcd.mainnet.milkyway.zone/","rpc":"https://rpc.mainnet.milkyway.zone/","bech32Config":{"bech32PrefixAccAddr":"milk","bech32PrefixAccPub":"milkpub","bech32PrefixValAddr":"milkvaloper","bech32PrefixValPub":"milkvaloperpub","bech32PrefixConsAddr":"milkvalcons","bech32PrefixConsPub":"milkvalconspub"},"chainName":"milkyway","feeCurrencies":[{"coinDenom":"milkTIA","coinMinimalDenom":"ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.003,"high":0.0035}},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.003,"high":0.0035}},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.003,"high":0.0035}},{"coinDenom":"tia","coinMinimalDenom":"ibc/F1183DB3D428313A6FD329DF18219F9D6B83257D07D292EA9EC1D877E89EC2B0","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.003,"high":0.0035}}],"stakeCurrency":{"coinDenom":"milk","coinMinimalDenom":"umilk","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mtgbp-1","currencies":[{"coinDenom":"mtgbp","coinMinimalDenom":"mtgbp","coinDecimals":0}],"rest":"https://lcd.mtgbp.com","rpc":"https://rcp.mtgbp.com","bech32Config":{"bech32PrefixAccAddr":"mtgbp","bech32PrefixAccPub":"mtgbppub","bech32PrefixValAddr":"mtgbpvaloper","bech32PrefixValPub":"mtgbpvaloperpub","bech32PrefixConsAddr":"mtgbpvalcons","bech32PrefixConsPub":"mtgbpvalconspub"},"chainName":"mtgbp","feeCurrencies":[{"coinDenom":"mtgbp","coinMinimalDenom":"mtgbp","coinDecimals":0,"gasPriceStep":{"low":0.000001,"average":0.000005,"high":0.0001}}],"stakeCurrency":{"coinDenom":"mtgbp","coinMinimalDenom":"mtgbp","coinDecimals":0},"bip44":{"coinType":1179993441}},{"chainId":"mun-1","currencies":[{"coinDenom":"mun","coinMinimalDenom":"umun","coinDecimals":6}],"rest":"https://mainnet1.mun.money","rpc":"https://mainnet1rpc.mun.money","bech32Config":{"bech32PrefixAccAddr":"mun","bech32PrefixAccPub":"munpub","bech32PrefixValAddr":"munvaloper","bech32PrefixValPub":"munvaloperpub","bech32PrefixConsAddr":"munvalcons","bech32PrefixConsPub":"munvalconspub"},"chainName":"mun","feeCurrencies":[{"coinDenom":"mun","coinMinimalDenom":"umun","coinDecimals":6}],"stakeCurrency":{"coinDenom":"mun","coinMinimalDenom":"umun","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mythos_7001-1","currencies":[{"coinDenom":"MYT","coinMinimalDenom":"aMYT","coinDecimals":18}],"rest":"https://mythos.provable.dev/rest/","rpc":"https://mythos-rpc.provable.dev:443/","bech32Config":{"bech32PrefixAccAddr":"mythos","bech32PrefixAccPub":"mythospub","bech32PrefixValAddr":"mythosvaloper","bech32PrefixValPub":"mythosvaloperpub","bech32PrefixConsAddr":"mythosvalcons","bech32PrefixConsPub":"mythosvalconspub"},"chainName":"mythos","feeCurrencies":[{"coinDenom":"MYT","coinMinimalDenom":"aMYT","coinDecimals":18}],"stakeCurrency":{"coinDenom":"MYT","coinMinimalDenom":"aMYT","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"Neutaro-1","currencies":[{"coinDenom":"neutaro","coinMinimalDenom":"uneutaro","coinDecimals":6}],"rest":"https://api2.neutaro.io:443","rpc":"https://rpc2.neutaro.io:443","bech32Config":{"bech32PrefixAccAddr":"neutaro","bech32PrefixAccPub":"neutaropub","bech32PrefixValAddr":"neutarovaloper","bech32PrefixValPub":"neutarovaloperpub","bech32PrefixConsAddr":"neutarovalcons","bech32PrefixConsPub":"neutarovalconspub"},"chainName":"neutaro","feeCurrencies":[{"coinDenom":"neutaro","coinMinimalDenom":"uneutaro","coinDecimals":6}],"stakeCurrency":{"coinDenom":"neutaro","coinMinimalDenom":"uneutaro","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"neutron-1","currencies":[{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6},{"coinDenom":"axlusdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7","coinDecimals":6},{"coinDenom":"ASTROPEPE","coinMinimalDenom":"factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe","coinDecimals":6},{"coinDenom":"wstETH","coinMinimalDenom":"factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH","coinDecimals":18},{"coinDenom":"sat","coinMinimalDenom":"ibc/DDC3C60EE82BF544F1A0C6A983FF500EF1C14DE20071A5E1E7C0FB470E36E920","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130","coinDecimals":18},{"coinDenom":"newt","coinMinimalDenom":"factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro","coinDecimals":6},{"coinDenom":"xASTRO","coinMinimalDenom":"factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO","coinDecimals":6},{"coinDenom":"astro.cw20","coinMinimalDenom":"ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A","coinDecimals":6},{"coinDenom":"corgi","coinMinimalDenom":"factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi","coinDecimals":6},{"coinDenom":"circus","coinMinimalDenom":"factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus","coinDecimals":6},{"coinDenom":"jimmy","coinMinimalDenom":"factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY","coinDecimals":6},{"coinDenom":"bad","coinMinimalDenom":"factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad","coinDecimals":6},{"coinDenom":"bitcosmos","coinMinimalDenom":"neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj","coinDecimals":6},{"coinDenom":"wtf","coinMinimalDenom":"neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf","coinDecimals":6},{"coinDenom":"nls","coinMinimalDenom":"ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972","coinDecimals":6},{"coinDenom":"goddard","coinMinimalDenom":"factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard","coinDecimals":6},{"coinDenom":"apollo","coinMinimalDenom":"factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO","coinDecimals":6},{"coinDenom":"newtroll","coinMinimalDenom":"factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll","coinDecimals":6},{"coinDenom":"retro","coinMinimalDenom":"factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro","coinDecimals":6},{"coinDenom":"goddard","coinMinimalDenom":"factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958","coinDecimals":6},{"coinDenom":"boy","coinMinimalDenom":"neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv","coinDecimals":6},{"coinDenom":"BADKID","coinMinimalDenom":"ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8","coinDecimals":6},{"coinDenom":"cartel","coinMinimalDenom":"factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel","coinDecimals":6},{"coinDenom":"ATOM1KLFG","coinMinimalDenom":"factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81","coinDecimals":6},{"coinDenom":"WEIRD","coinMinimalDenom":"factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/WEIRD","coinDecimals":6},{"coinDenom":"takumi","coinMinimalDenom":"factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI","coinDecimals":6},{"coinDenom":"NBZ","coinMinimalDenom":"factory/neutron1a6ydq8urdj0gkvjw9e9e5y9r5ce2qegm9m4xufpt96kcm60kmuass0mqq4/nbz","coinDecimals":6},{"coinDenom":"MARS","coinMinimalDenom":"factory/neutron1ndu2wvkrxtane8se2tr48gv7nsm46y5gcqjhux/MARS","coinDecimals":6},{"coinDenom":"dATOM","coinMinimalDenom":"factory/neutron1k6hr0f83e7un2wjf29cspk7j69jrnskk65k3ek2nj9dztrlzpj6q00rtsa/udatom","coinDecimals":6},{"coinDenom":"SIN","coinMinimalDenom":"factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/sin","coinDecimals":6},{"coinDenom":"GOP","coinMinimalDenom":"factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/GOP","coinDecimals":6},{"coinDenom":"arena","coinMinimalDenom":"factory/neutron129ukd5cwahcjkccujz87rjemjukff7jf6sau72qrhva677xgz9gs4m4jeq/uarena","coinDecimals":6},{"coinDenom":"AXV","coinMinimalDenom":"cw20:neutron10dxyft3nv4vpxh5vrpn0xw8geej8dw3g39g7nqp8mrm307ypssksau29af","coinDecimals":6},{"coinDenom":"axlwbtc","coinMinimalDenom":"ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363","coinDecimals":8},{"coinDenom":"xATOM","coinMinimalDenom":"cw20:neutron1vjl4ze7gr32lar5s4fj776v70j4ml7mlt4aqln2hwgfhqjck8xwqfhx8vj","coinDecimals":6},{"coinDenom":"amATOM","coinMinimalDenom":"factory/neutron1shwxlkpdjd8h5wdtrykypwd2v62z5glr95yp0etdcspkkjwm5meq82ndxs/amatom","coinDecimals":6},{"coinDenom":"JSD","coinMinimalDenom":"factory/neutron1mdy5fhtwdjagp5eallsdhlx6gxylm8rxqk72wjzg6y5d5kt44ysqprkduw/JSD","coinDecimals":6},{"coinDenom":"FUEL","coinMinimalDenom":"factory/neutron1zl2htquajn50vxu5ltz0y5hf2qzvkgnjaaza2rssef268xplq6vsjuruxm/fuel","coinDecimals":6},{"coinDenom":"bglUSDC","coinMinimalDenom":"factory/neutron16ue9kysgneyqktmjxdfshajgvlrcx9rehxz8x9th7g8fgtnlxwuqvg9mgp/bglUSDC","coinDecimals":6},{"coinDenom":"dTIA","coinMinimalDenom":"factory/neutron1ut4c6pv4u6vyu97yw48y8g7mle0cat54848v6m97k977022lzxtsaqsgmq/udtia","coinDecimals":6}],"rest":"https://api.novel.remedy.tm.p2p.org","rpc":"https://rpc-voidara.neutron-1.neutron.org","bech32Config":{"bech32PrefixAccAddr":"neutron","bech32PrefixAccPub":"neutronpub","bech32PrefixValAddr":"neutronvaloper","bech32PrefixValPub":"neutronvaloperpub","bech32PrefixConsAddr":"neutronvalcons","bech32PrefixConsPub":"neutronvalconspub"},"chainName":"neutron","feeCurrencies":[{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6,"gasPriceStep":{"low":0.0053,"average":0.0053,"high":0.0053}},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6,"gasPriceStep":{"low":0.0008,"average":0.0008,"high":0.0008}},{"coinDenom":"axlusdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6,"gasPriceStep":{"low":0.008,"average":0.008,"high":0.008}},{"coinDenom":"wstETH","coinMinimalDenom":"factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH","coinDecimals":18,"gasPriceStep":{"low":2903231.6597,"average":2903231.6597,"high":2903231.6597}},{"coinDenom":"dydx","coinMinimalDenom":"ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130","coinDecimals":18,"gasPriceStep":{"low":2564102564.1026,"average":2564102564.1026,"high":2564102564.1026}},{"coinDenom":"tia","coinMinimalDenom":"ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7","coinDecimals":6,"gasPriceStep":{"low":0.0004,"average":0.0004,"high":0.0004}}],"stakeCurrency":{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cataclysm-1","currencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},{"coinDenom":"stNIBI","coinMinimalDenom":"tf/nibi1udqqx30cw8nwjxtl4l28ym9hhrp933zlq8dqxfjzcdhvl8y24zcqpzmh8m/ampNIBI","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6},{"coinDenom":"AXV","coinMinimalDenom":"tf/nibi1vetfuua65frvf6f458xgtjerf0ra7wwjykrdpuyn0jur5x07awxsfka0ga/axv","coinDecimals":6},{"coinDenom":"tf/nibi149m52kn7nvsg5nftvv4fh85scsavpdfxp5nr7zasz97dum89dp5qkyhy0t/uoprek","coinMinimalDenom":"tf/nibi149m52kn7nvsg5nftvv4fh85scsavpdfxp5nr7zasz97dum89dp5qkyhy0t/uoprek","coinDecimals":0},{"coinDenom":"tf/nibi1lp28kx3gz0prsztl024z730ufkg3alahaq3e7a6gae22nk0dqdvsyrrgqw/utestate","coinMinimalDenom":"tf/nibi1lp28kx3gz0prsztl024z730ufkg3alahaq3e7a6gae22nk0dqdvsyrrgqw/utestate","coinDecimals":0},{"coinDenom":"tf/nibi1xpp7yn0tce62ffattws3gpd6v0tah0mlevef3ej3r4pnfvsehcgqk3jvxq/NPP","coinMinimalDenom":"tf/nibi1xpp7yn0tce62ffattws3gpd6v0tah0mlevef3ej3r4pnfvsehcgqk3jvxq/NPP","coinDecimals":0}],"rest":"https://lcd.nibiru.fi","rpc":"https://rpc.nibiru.fi","bech32Config":{"bech32PrefixAccAddr":"nibi","bech32PrefixAccPub":"nibipub","bech32PrefixValAddr":"nibivaloper","bech32PrefixValPub":"nibivaloperpub","bech32PrefixConsAddr":"nibivalcons","bech32PrefixConsPub":"nibivalconspub"},"chainName":"nibiru","feeCurrencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"nim_1122-1","currencies":[{"coinDenom":"nim","coinMinimalDenom":"anim","coinDecimals":18}],"rest":"https://rest.mainnet.nimnet.tech","rpc":"https://rpc.mainnet.nimnet.tech","bech32Config":{"bech32PrefixAccAddr":"nim","bech32PrefixAccPub":"nimpub","bech32PrefixValAddr":"nimvaloper","bech32PrefixValPub":"nimvaloperpub","bech32PrefixConsAddr":"nimvalcons","bech32PrefixConsPub":"nimvalconspub"},"chainName":"nim","feeCurrencies":[{"coinDenom":"nim","coinMinimalDenom":"anim","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":20000000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"nim","coinMinimalDenom":"anim","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"noble-1","currencies":[{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":6},{"coinDenom":"frienzies","coinMinimalDenom":"ufrienzies","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6},{"coinDenom":"usdy","coinMinimalDenom":"ausdy","coinDecimals":18},{"coinDenom":"eure","coinMinimalDenom":"ueure","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/9BE17980291443F276406CFE7368A720676FC06D5805C1A23AE52C2534E705F1","coinDecimals":18}],"rest":"https://noble-api.polkachu.com","rpc":"https://noble-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"noble","bech32PrefixAccPub":"noblepub","bech32PrefixValAddr":"noblevaloper","bech32PrefixValPub":"noblevaloperpub","bech32PrefixConsAddr":"noblevalcons","bech32PrefixConsPub":"noblevalconspub"},"chainName":"noble","feeCurrencies":[{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.1,"high":0.2}},{"coinDenom":"atom","coinMinimalDenom":"ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.01,"high":0.02}}],"stakeCurrency":{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pirin-1","currencies":[{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/7FBDBEEEBA9C50C4BCDF7BF438EAB99E64360833D240B32655C96E319559E911","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/AF5559D128329B6C753F15481BEC26E533B847A471074703FA4903E7E6F61BA1","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/6CDD4663F2F09CD62285E2D45891FC149A3568E316CE3EBBE201A71A78A69388","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"ibc/FCFF8B19C61677F3B78E2A5AE3B4A34A8D23858D16905F253B8438B3AFD07FF8","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"ibc/A7C4A3FB19E88ABE60416125F9189DA680800F4CDD14E3C10C874E022BEFF04C","coinDecimals":18},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/84E70F4A34FB2DE135FD3A04FDDF53B7DA4206080AA785C8BAB7F8B26299A221","coinDecimals":8},{"coinDenom":"akt","coinMinimalDenom":"ibc/ADC63C00000CA75F909D2BE3ACB5A9980BED3A73B92746E0FCE6C67414055459","coinDecimals":6},{"coinDenom":"axl","coinMinimalDenom":"ibc/1B03A71B8E6F6EF424411DC9326A8E0D25D096E4D2616425CFAF2AF06F0FE717","coinDecimals":6},{"coinDenom":"juno","coinMinimalDenom":"ibc/4F3E83AB35529435E4BFEA001F5D935E7250133347C4E1010A9C77149EF0394C","coinDecimals":6},{"coinDenom":"evmos","coinMinimalDenom":"ibc/A59A9C955F1AB8B76671B00C1A0482C64A6590352944BB5880E5122358F7E1CE","coinDecimals":18},{"coinDenom":"stk/atom","coinMinimalDenom":"ibc/DAAD372DB7DD45BBCFA4DDD40CA9793E9D265D1530083AB41A8A0C53C3EBE865","coinDecimals":6},{"coinDenom":"scrt","coinMinimalDenom":"ibc/EA00FFF0335B07B5CD1530B7EB3D2C710620AE5B168C71AFF7B50532D690E107","coinDecimals":6},{"coinDenom":"cro","coinMinimalDenom":"ibc/E1BCC0F7B932E654B1A930F72B76C0678D55095387E2A4D8F00E941A8F82EE48","coinDecimals":8},{"coinDenom":"stars","coinMinimalDenom":"ibc/11E3CF372E065ACB1A39C531A3C7E7E03F60B5D0653AD2139D31128ACD2772B5","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5","coinDecimals":6},{"coinDenom":"strd","coinMinimalDenom":"ibc/04CA9067228BB51F1C39A506DA00DF07E1496D8308DD21E8EF66AD6169FA722B","coinDecimals":6},{"coinDenom":"cudos","coinMinimalDenom":"ibc/BB9810E7FE8836311126F15BE0B20E7463189751840F8C3FEF3AC8F87D8AB7C8","coinDecimals":18},{"coinDenom":"allBTC","coinMinimalDenom":"ibc/E45CFCB959F4F6D1065B7033EE49A88E606E6AD82E75725219B3D68B0FA89987","coinDecimals":8},{"coinDenom":"allSOL","coinMinimalDenom":"ibc/762E1E45658845A12E214A91C3C05FDFC5951D60404FAADA225A369A96DCD9A9","coinDecimals":9},{"coinDenom":"ntrn","coinMinimalDenom":"ibc/3D6BC6E049CAEB905AC97031A42800588C58FB471EBDC7A3530FFCD0C3DC9E09","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/6DF8CF5C976851D152E2C7270B0AB25C4F9D64C0A46513A68D6CBB2662A98DF4","coinDecimals":18},{"coinDenom":"dATOM","coinMinimalDenom":"ibc/EB08474FFC49B6BB2F03F7D9B08697138F4DA53347CA1AB718C8BCFBB58C1B2B","coinDecimals":6}],"rest":"lcd.nolus.network","rpc":"rpc.nolus.network","bech32Config":{"bech32PrefixAccAddr":"nolus","bech32PrefixAccPub":"noluspub","bech32PrefixValAddr":"nolusvaloper","bech32PrefixValPub":"nolusvaloperpub","bech32PrefixConsAddr":"nolusvalcons","bech32PrefixConsPub":"nolusvalconspub"},"chainName":"nolus","feeCurrencies":[{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.05}}],"stakeCurrency":{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nomic-stakenet-3","currencies":[{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},{"coinDenom":"nbtc","coinMinimalDenom":"usat","coinDecimals":14}],"rest":"https://app.nomic.io:8443","rpc":"https://stakenet-rpc.nomic.io:2096","bech32Config":{"bech32PrefixAccAddr":"nomic","bech32PrefixAccPub":"nomicpub","bech32PrefixValAddr":"nomicvaloper","bech32PrefixValPub":"nomicvaloperpub","bech32PrefixConsAddr":"nomicvalcons","bech32PrefixConsPub":"nomicvalconspub"},"chainName":"nomic","feeCurrencies":[{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},{"coinDenom":"nbtc","coinMinimalDenom":"usat","coinDecimals":14}],"stakeCurrency":{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nyx","currencies":[{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6},{"coinDenom":"nym","coinMinimalDenom":"unym","coinDecimals":6}],"rest":"https://nym-api.polkachu.com/","rpc":"https://rpc.nymtech.net/","bech32Config":{"bech32PrefixAccAddr":"n","bech32PrefixAccPub":"npub","bech32PrefixValAddr":"nvaloper","bech32PrefixValPub":"nvaloperpub","bech32PrefixConsAddr":"nvalcons","bech32PrefixConsPub":"nvalconspub"},"chainName":"nyx","feeCurrencies":[{"coinDenom":"nym","coinMinimalDenom":"unym","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}},{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"odin-mainnet-freya","currencies":[{"coinDenom":"odin","coinMinimalDenom":"loki","coinDecimals":6},{"coinDenom":"geo","coinMinimalDenom":"mGeo","coinDecimals":6},{"coinDenom":"doki","coinMinimalDenom":"udoki","coinDecimals":6},{"coinDenom":"myrk","coinMinimalDenom":"umyrk","coinDecimals":6},{"coinDenom":"O9W","coinMinimalDenom":"mO9W","coinDecimals":6}],"rest":"https://api.odinprotocol.io","rpc":"https://rpc.odinprotocol.io","bech32Config":{"bech32PrefixAccAddr":"odin","bech32PrefixAccPub":"odinpub","bech32PrefixValAddr":"odinvaloper","bech32PrefixValPub":"odinvaloperpub","bech32PrefixConsAddr":"odinvalcons","bech32PrefixConsPub":"odinvalconspub"},"chainName":"odin","feeCurrencies":[{"coinDenom":"odin","coinMinimalDenom":"loki","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.06}}],"stakeCurrency":{"coinDenom":"odin","coinMinimalDenom":"loki","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"omniflixhub-1","currencies":[{"coinDenom":"flix","coinMinimalDenom":"uflix","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/A8C2D23A1E6F95DA4E48BA349667E322BD7A6C996D8A4AAE8BA72E190F3D1477","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B","coinDecimals":6},{"coinDenom":"ist","coinMinimalDenom":"ibc/43D3010F4CA111744AC8B68E460BC95E565C32928A267FA2B30609C04C10B274","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/AC4C84DD7D3732CFA95A420247FAD5179BE4F42E5635E2BF0A62C67E2E2FA4A9","coinDecimals":6},{"coinDenom":"akt","coinMinimalDenom":"ibc/6901B45BC2C5418ED8B3C3C9F9A641A3DAF2D234230AFA9DF32D8F9F9434721C","coinDecimals":6},{"coinDenom":"baddog","coinMinimalDenom":"ibc/9F28238BDB687A86681B30764BA1437E079C3565D04FDD7862055A83F7E5C630","coinDecimals":6},{"coinDenom":"ygata","coinMinimalDenom":"factory/omniflix1fwphj5p6qd8gtkehkzfgac38eur4uqzgz97uwvf6hsc0vjl004gqfj0xnv/ygata","coinDecimals":6}],"rest":"https://api.omniflix.nodestake.org","rpc":"https://omniflix-rpc.kingnodes.com","bech32Config":{"bech32PrefixAccAddr":"omniflix","bech32PrefixAccPub":"omniflixpub","bech32PrefixValAddr":"omniflixvaloper","bech32PrefixValPub":"omniflixvaloperpub","bech32PrefixConsAddr":"omniflixvalcons","bech32PrefixConsPub":"omniflixvalconspub"},"chainName":"omniflixhub","feeCurrencies":[{"coinDenom":"flix","coinMinimalDenom":"uflix","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.0025,"high":0.025}}],"stakeCurrency":{"coinDenom":"flix","coinMinimalDenom":"uflix","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"onex-mainnet-1","currencies":[{"coinDenom":"onex","coinMinimalDenom":"aonex","coinDecimals":18}],"rest":"https://rest.mainnet.onex.onomy.io","rpc":"https://rpc.mainnet.onex.onomy.io","bech32Config":{"bech32PrefixAccAddr":"onomy","bech32PrefixAccPub":"onomypub","bech32PrefixValAddr":"onomyvaloper","bech32PrefixValPub":"onomyvaloperpub","bech32PrefixConsAddr":"onomyvalcons","bech32PrefixConsPub":"onomyvalconspub"},"chainName":"onex","feeCurrencies":[{"coinDenom":"onex","coinMinimalDenom":"aonex","coinDecimals":18}],"stakeCurrency":{"coinDenom":"onex","coinMinimalDenom":"aonex","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"onomy-mainnet-1","currencies":[{"coinDenom":"nom","coinMinimalDenom":"anom","coinDecimals":18}],"rest":"https://rest-mainnet.onomy.io","rpc":"https://rpc-mainnet.onomy.io","bech32Config":{"bech32PrefixAccAddr":"onomy","bech32PrefixAccPub":"onomypub","bech32PrefixValAddr":"onomyvaloper","bech32PrefixValPub":"onomyvaloperpub","bech32PrefixConsAddr":"onomyvalcons","bech32PrefixConsPub":"onomyvalconspub"},"chainName":"onomy","feeCurrencies":[{"coinDenom":"nom","coinMinimalDenom":"anom","coinDecimals":18}],"stakeCurrency":{"coinDenom":"nom","coinMinimalDenom":"anom","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"Oraichain","currencies":[{"coinDenom":"ORAI","coinMinimalDenom":"orai","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/A2E2EEC9057A4A1C2C0A6A4C78B0239118DF5F278830F50B4A6BDD7A66506B78","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/9C4DCD21B48231D0BC2AC3D1B74A864746B37E4292694C93C617324250D002FC","coinDecimals":6},{"coinDenom":"inj","coinMinimalDenom":"ibc/49D820DFDE9F885D7081725A58202ABA2F465CAEE4AFBC683DFB79A8E013E83E","coinDecimals":6},{"coinDenom":"inj","coinMinimalDenom":"cw20:orai19rtmkk6sn4tppvjmp5d5zj6gfsdykrl5rw2euu5gwur3luheuuusesqn49","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"cw20:orai12hzjxfh77wl572gdzct2fxv2arxcwh6gykc7qh","coinDecimals":6},{"coinDenom":"airi","coinMinimalDenom":"cw20:orai10ldgzued6zjp0mkqwsv2mux3ml50l97c74x8sg","coinDecimals":6},{"coinDenom":"oraix","coinMinimalDenom":"cw20:orai1lus0f0rhx8s03gdllx2n6vhkmf0536dv57wfge","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"cw20:orai15un8msx3n5zf9ahlxmfeqd2kwa5wm0nrpxer304m9nd5q6qq0g6sku5pdd","coinDecimals":6},{"coinDenom":"kwt","coinMinimalDenom":"cw20:orai1nd4r053e3kgedgld2ymen8l9yrw8xpjyaal7j5","coinDecimals":6},{"coinDenom":"milky","coinMinimalDenom":"cw20:orai1gzvndtzceqwfymu2kqhta2jn6gmzxvzqwdgvjw","coinDecimals":6},{"coinDenom":"scorai","coinMinimalDenom":"cw20:orai1065qe48g7aemju045aeyprflytemx7kecxkf5m7u5h5mphd0qlcs47pclp","coinDecimals":6},{"coinDenom":"wtrx","coinMinimalDenom":"cw20:orai1c7tpjenafvgjtgm9aqwm7afnke6c56hpdms8jc6md40xs3ugd0es5encn0","coinDecimals":6},{"coinDenom":"scatom","coinMinimalDenom":"cw20:orai19q4qak2g3cj2xc2y3060t0quzn3gfhzx08rjlrdd3vqxhjtat0cq668phq","coinDecimals":6},{"coinDenom":"xoch","coinMinimalDenom":"cw20:orai1lplapmgqnelqn253stz6kmvm3ulgdaytn89a8mz9y85xq8wd684s6xl3lt","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"cw20:orai1dqa52a7hxxuv8ghe7q5v0s36ra0cthea960q2cukznleqhk0wpnshfegez","coinDecimals":6},{"coinDenom":"btc","coinMinimalDenom":"cw20:orai10g6frpysmdgw5tdqke47als6f97aqmr8s3cljsvjce4n5enjftcqtamzsd","coinDecimals":6},{"coinDenom":"och","coinMinimalDenom":"cw20:orai1hn8w33cqvysun2aujk5sv33tku4pgcxhhnsxmvnkfvdxagcx0p8qa4l98q","coinDecimals":6},{"coinDenom":"ton","coinMinimalDenom":"factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/ton","coinDecimals":9},{"coinDenom":"pepe","coinMinimalDenom":"factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/extPEPE","coinDecimals":6},{"coinDenom":"hmstr","coinMinimalDenom":"factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/HMSTR","coinDecimals":9}],"rest":"http://lcd.orai.io","rpc":"https://rpc.orai.io","bech32Config":{"bech32PrefixAccAddr":"orai","bech32PrefixAccPub":"oraipub","bech32PrefixValAddr":"oraivaloper","bech32PrefixValPub":"oraivaloperpub","bech32PrefixConsAddr":"oraivalcons","bech32PrefixConsPub":"oraivalconspub"},"chainName":"oraichain","feeCurrencies":[{"coinDenom":"ORAI","coinMinimalDenom":"orai","coinDecimals":6,"gasPriceStep":{"low":0.003,"average":0.005,"high":0.007}}],"stakeCurrency":{"coinDenom":"ORAI","coinMinimalDenom":"orai","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"osmosis-1","currencies":[{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6},{"coinDenom":"ion","coinMinimalDenom":"uion","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5","coinDecimals":18},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F","coinDecimals":8},{"coinDenom":"usdt","coinMinimalDenom":"ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4","coinDecimals":6},{"coinDenom":"dai","coinMinimalDenom":"ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7","coinDecimals":18},{"coinDenom":"busd","coinMinimalDenom":"ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D","coinDecimals":18},{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6},{"coinDenom":"cro","coinMinimalDenom":"ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1","coinDecimals":8},{"coinDenom":"wbnb","coinMinimalDenom":"ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D","coinDecimals":18},{"coinDenom":"wmatic","coinMinimalDenom":"ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB","coinDecimals":18},{"coinDenom":"avax","coinMinimalDenom":"ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373","coinDecimals":18},{"coinDenom":"luna","coinMinimalDenom":"ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0","coinDecimals":6},{"coinDenom":"juno","coinMinimalDenom":"ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED","coinDecimals":6},{"coinDenom":"dot","coinMinimalDenom":"ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7","coinDecimals":10},{"coinDenom":"evmos","coinMinimalDenom":"ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A","coinDecimals":18},{"coinDenom":"kava","coinMinimalDenom":"ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205","coinDecimals":6},{"coinDenom":"scrt","coinMinimalDenom":"ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A","coinDecimals":6},{"coinDenom":"ust","coinMinimalDenom":"ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC","coinDecimals":6},{"coinDenom":"stars","coinMinimalDenom":"ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4","coinDecimals":6},{"coinDenom":"huahua","coinMinimalDenom":"ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228","coinDecimals":6},{"coinDenom":"xprt","coinMinimalDenom":"ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293","coinDecimals":6},{"coinDenom":"pstake","coinMinimalDenom":"ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961","coinDecimals":18},{"coinDenom":"akt","coinMinimalDenom":"ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4","coinDecimals":6},{"coinDenom":"regen","coinMinimalDenom":"ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076","coinDecimals":6},{"coinDenom":"dvpn","coinMinimalDenom":"ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84","coinDecimals":6},{"coinDenom":"iris","coinMinimalDenom":"ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0","coinDecimals":6},{"coinDenom":"iov","coinMinimalDenom":"ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC","coinDecimals":6},{"coinDenom":"ngm","coinMinimalDenom":"ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59","coinDecimals":6},{"coinDenom":"eur","coinMinimalDenom":"ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F","coinDecimals":6},{"coinDenom":"like","coinMinimalDenom":"ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525","coinDecimals":9},{"coinDenom":"ixo","coinMinimalDenom":"ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B","coinDecimals":6},{"coinDenom":"bcna","coinMinimalDenom":"ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5","coinDecimals":6},{"coinDenom":"btsg","coinMinimalDenom":"ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452","coinDecimals":6},{"coinDenom":"xki","coinMinimalDenom":"ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E","coinDecimals":6},{"coinDenom":"med","coinMinimalDenom":"ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB","coinDecimals":6},{"coinDenom":"ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4","coinMinimalDenom":"ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4","coinDecimals":0},{"coinDenom":"cmdx","coinMinimalDenom":"ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0","coinDecimals":6},{"coinDenom":"cheq","coinMinimalDenom":"ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA","coinDecimals":9},{"coinDenom":"lum","coinMinimalDenom":"ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2","coinDecimals":6},{"coinDenom":"vdl","coinMinimalDenom":"ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD","coinDecimals":6},{"coinDenom":"dsm","coinMinimalDenom":"ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C","coinDecimals":6},{"coinDenom":"dig","coinMinimalDenom":"ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D","coinDecimals":6},{"coinDenom":"somm","coinMinimalDenom":"ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E","coinDecimals":6},{"coinDenom":"band","coinMinimalDenom":"ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE","coinDecimals":6},{"coinDenom":"darc","coinMinimalDenom":"ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593","coinDecimals":6},{"coinDenom":"umee","coinMinimalDenom":"ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C","coinDecimals":6},{"coinDenom":"graviton","coinMinimalDenom":"ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44","coinDecimals":6},{"coinDenom":"dec","coinMinimalDenom":"ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84","coinDecimals":6},{"coinDenom":"marble","coinMinimalDenom":"ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6","coinDecimals":3},{"coinDenom":"dswth","coinMinimalDenom":"ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3","coinDecimals":8},{"coinDenom":"crbrus","coinMinimalDenom":"ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7","coinDecimals":6},{"coinDenom":"fet","coinMinimalDenom":"ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447","coinDecimals":18},{"coinDenom":"mntl","coinMinimalDenom":"ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC","coinDecimals":6},{"coinDenom":"neta","coinMinimalDenom":"ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A","coinDecimals":6},{"coinDenom":"INJ","coinMinimalDenom":"ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273","coinDecimals":18},{"coinDenom":"krt","coinMinimalDenom":"ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780","coinDecimals":6},{"coinDenom":"tick","coinMinimalDenom":"ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8","coinDecimals":6},{"coinDenom":"ROWAN","coinMinimalDenom":"ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB","coinDecimals":18},{"coinDenom":"ctk","coinMinimalDenom":"ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3","coinDecimals":6},{"coinDenom":"hope","coinMinimalDenom":"ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B","coinDecimals":6},{"coinDenom":"rac","coinMinimalDenom":"ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788","coinDecimals":6},{"coinDenom":"frax","coinMinimalDenom":"ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE","coinDecimals":18},{"coinDenom":"gwbtc","coinMinimalDenom":"ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796","coinDecimals":8},{"coinDenom":"gweth","coinMinimalDenom":"ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5","coinDecimals":18},{"coinDenom":"gusdc","coinMinimalDenom":"ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E","coinDecimals":6},{"coinDenom":"gdai","coinMinimalDenom":"ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5","coinDecimals":18},{"coinDenom":"gusdt","coinMinimalDenom":"ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805","coinDecimals":6},{"coinDenom":"block","coinMinimalDenom":"ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3","coinDecimals":6},{"coinDenom":"hash","coinMinimalDenom":"ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2","coinDecimals":9},{"coinDenom":"glx","coinMinimalDenom":"ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2","coinDecimals":6},{"coinDenom":"ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB","coinMinimalDenom":"ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB","coinDecimals":0},{"coinDenom":"raw","coinMinimalDenom":"ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC","coinDecimals":6},{"coinDenom":"meme","coinMinimalDenom":"ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA","coinDecimals":6},{"coinDenom":"asvt","coinMinimalDenom":"ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7","coinDecimals":6},{"coinDenom":"joe","coinMinimalDenom":"ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9","coinDecimals":6},{"coinDenom":"atolo","coinMinimalDenom":"ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219","coinDecimals":6},{"coinDenom":"HARD","coinMinimalDenom":"ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC","coinDecimals":6},{"coinDenom":"SWP","coinMinimalDenom":"ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5","coinDecimals":6},{"coinDenom":"link","coinMinimalDenom":"ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049","coinDecimals":18},{"coinDenom":"l1","coinMinimalDenom":"ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4","coinDecimals":18},{"coinDenom":"aave","coinMinimalDenom":"ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE","coinDecimals":18},{"coinDenom":"ape","coinMinimalDenom":"ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4","coinDecimals":18},{"coinDenom":"mkr","coinMinimalDenom":"ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3","coinDecimals":18},{"coinDenom":"rai","coinMinimalDenom":"ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E","coinDecimals":18},{"coinDenom":"shib","coinMinimalDenom":"ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2","coinDecimals":18},{"coinDenom":"kuji","coinMinimalDenom":"ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE","coinDecimals":6},{"coinDenom":"tgd","coinMinimalDenom":"ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C","coinDecimals":6},{"coinDenom":"echelon","coinMinimalDenom":"ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D","coinDecimals":18},{"coinDenom":"odin","coinMinimalDenom":"ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B","coinDecimals":6},{"coinDenom":"geo","coinMinimalDenom":"ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A","coinDecimals":6},{"coinDenom":"O9W","coinMinimalDenom":"ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D","coinDecimals":6},{"coinDenom":"lvn","coinMinimalDenom":"ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121","coinDecimals":6},{"coinDenom":"wglmr","coinMinimalDenom":"ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49","coinDecimals":18},{"coinDenom":"glto","coinMinimalDenom":"ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E","coinDecimals":6},{"coinDenom":"gkey","coinMinimalDenom":"ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8","coinDecimals":6},{"coinDenom":"cre","coinMinimalDenom":"ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580","coinDecimals":6},{"coinDenom":"lumen","coinMinimalDenom":"ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7","coinDecimals":6},{"coinDenom":"ORAI","coinMinimalDenom":"ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D","coinDecimals":6},{"coinDenom":"cudos","coinMinimalDenom":"ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B","coinDecimals":18},{"coinDenom":"USDX","coinMinimalDenom":"ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE","coinDecimals":6},{"coinDenom":"bld","coinMinimalDenom":"ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604","coinDecimals":6},{"coinDenom":"ist","coinMinimalDenom":"ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5","coinDecimals":6},{"coinDenom":"sejuno","coinMinimalDenom":"ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B","coinDecimals":6},{"coinDenom":"bjuno","coinMinimalDenom":"ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3","coinDecimals":6},{"coinDenom":"strd","coinMinimalDenom":"ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901","coinDecimals":6},{"coinDenom":"ststars","coinMinimalDenom":"ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A","coinDecimals":6},{"coinDenom":"solar","coinMinimalDenom":"ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C","coinDecimals":6},{"coinDenom":"seasy","coinMinimalDenom":"ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6","coinDecimals":6},{"coinDenom":"axl","coinMinimalDenom":"ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E","coinDecimals":6},{"coinDenom":"rebus","coinMinimalDenom":"ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9","coinDecimals":18},{"coinDenom":"tori","coinMinimalDenom":"ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC","coinDecimals":6},{"coinDenom":"stjuno","coinMinimalDenom":"ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC","coinDecimals":6},{"coinDenom":"muse","coinMinimalDenom":"ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F","coinDecimals":6},{"coinDenom":"lamb","coinMinimalDenom":"ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB","coinDecimals":18},{"coinDenom":"usk","coinMinimalDenom":"ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC","coinDecimals":6},{"coinDenom":"FUND","coinMinimalDenom":"ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC","coinDecimals":9},{"coinDenom":"jkl","coinMinimalDenom":"ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA","coinDecimals":6},{"coinDenom":"alter","coinMinimalDenom":"ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3","coinDecimals":6},{"coinDenom":"butt","coinMinimalDenom":"ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8","coinDecimals":6},{"coinDenom":"shd","coinMinimalDenom":"ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C","coinDecimals":8},{"coinDenom":"sienna","coinMinimalDenom":"ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213","coinDecimals":18},{"coinDenom":"stkd-scrt","coinMinimalDenom":"ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4","coinDecimals":6},{"coinDenom":"bze","coinMinimalDenom":"ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88","coinDecimals":6},{"coinDenom":"fury","coinMinimalDenom":"ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF","coinDecimals":6},{"coinDenom":"acre","coinMinimalDenom":"ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06","coinDecimals":18},{"coinDenom":"cmst","coinMinimalDenom":"ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E","coinDecimals":6},{"coinDenom":"imv","coinMinimalDenom":"ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4","coinDecimals":18},{"coinDenom":"medas","coinMinimalDenom":"ibc/FBBC35295AA037DC0A77796B08DC3003EC918E18E75D61D675A0EEAC0643F36C","coinDecimals":6},{"coinDenom":"phmn","coinMinimalDenom":"ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B","coinDecimals":6},{"coinDenom":"amber","coinMinimalDenom":"ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55","coinDecimals":6},{"coinDenom":"nom","coinMinimalDenom":"ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163","coinDecimals":18},{"coinDenom":"stkatom","coinMinimalDenom":"ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC","coinDecimals":6},{"coinDenom":"ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D","coinMinimalDenom":"ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D","coinDecimals":0},{"coinDenom":"hopers","coinMinimalDenom":"ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099","coinDecimals":6},{"coinDenom":"arusd","coinMinimalDenom":"ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F","coinDecimals":18},{"coinDenom":"planq","coinMinimalDenom":"ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF","coinDecimals":18},{"coinDenom":"ftm","coinMinimalDenom":"ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4","coinDecimals":18},{"coinDenom":"canto","coinMinimalDenom":"ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F","coinDecimals":18},{"coinDenom":"qstars","coinMinimalDenom":"ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83","coinDecimals":6},{"coinDenom":"wynd","coinMinimalDenom":"ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3","coinDecimals":6},{"coinDenom":"polygon-usdc","coinMinimalDenom":"ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A","coinDecimals":6},{"coinDenom":"avalanche-usdc","coinMinimalDenom":"ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C","coinDecimals":6},{"coinDenom":"MARS.old","coinMinimalDenom":"ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580","coinDecimals":6},{"coinDenom":"cnto","coinMinimalDenom":"ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5","coinDecimals":18},{"coinDenom":"stluna","coinMinimalDenom":"ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372","coinDecimals":6},{"coinDenom":"stevmos","coinMinimalDenom":"ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01","coinDecimals":18},{"coinDenom":"nride","coinMinimalDenom":"ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C","coinDecimals":6},{"coinDenom":"ebl","coinMinimalDenom":"ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F","coinDecimals":6},{"coinDenom":"qatom","coinMinimalDenom":"ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC","coinDecimals":6},{"coinDenom":"harbor","coinMinimalDenom":"ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A","coinDecimals":6},{"coinDenom":"qregen","coinMinimalDenom":"ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206","coinDecimals":6},{"coinDenom":"fox","coinMinimalDenom":"ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6","coinDecimals":6},{"coinDenom":"qck","coinMinimalDenom":"ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D","coinDecimals":6},{"coinDenom":"ARKH","coinMinimalDenom":"ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28","coinDecimals":6},{"coinDenom":"qosmo","coinMinimalDenom":"ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC","coinDecimals":6},{"coinDenom":"frienzies","coinMinimalDenom":"ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D","coinDecimals":6},{"coinDenom":"grdn","coinMinimalDenom":"ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA","coinDecimals":6},{"coinDenom":"mnpu","coinMinimalDenom":"ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E","coinDecimals":6},{"coinDenom":"shibac","coinMinimalDenom":"ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8","coinDecimals":6},{"coinDenom":"sikoba","coinMinimalDenom":"ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E","coinDecimals":6},{"coinDenom":"nct","coinMinimalDenom":"ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68","coinDecimals":6},{"coinDenom":"clst","coinMinimalDenom":"ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA","coinDecimals":6},{"coinDenom":"osdoge","coinMinimalDenom":"ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156","coinDecimals":6},{"coinDenom":"apemos","coinMinimalDenom":"ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D","coinDecimals":6},{"coinDenom":"invdrs","coinMinimalDenom":"ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54","coinDecimals":6},{"coinDenom":"doga","coinMinimalDenom":"ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250","coinDecimals":6},{"coinDenom":"catmos","coinMinimalDenom":"ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835","coinDecimals":6},{"coinDenom":"summit","coinMinimalDenom":"ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A","coinDecimals":6},{"coinDenom":"flix","coinMinimalDenom":"ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F","coinDecimals":6},{"coinDenom":"spacer","coinMinimalDenom":"ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C","coinDecimals":6},{"coinDenom":"light","coinMinimalDenom":"ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29","coinDecimals":9},{"coinDenom":"silk","coinMinimalDenom":"ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7","coinDecimals":6},{"coinDenom":"mile","coinMinimalDenom":"ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF","coinDecimals":6},{"coinDenom":"manna","coinMinimalDenom":"ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B","coinDecimals":6},{"coinDenom":"fil","coinMinimalDenom":"ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D","coinDecimals":18},{"coinDenom":"void","coinMinimalDenom":"ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960","coinDecimals":6},{"coinDenom":"shd","coinMinimalDenom":"ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A","coinDecimals":8},{"coinDenom":"bnt","coinMinimalDenom":"ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8","coinDecimals":6},{"coinDenom":"arb","coinMinimalDenom":"ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6","coinDecimals":18},{"coinDenom":"silica","coinMinimalDenom":"ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07","coinDecimals":6},{"coinDenom":"pepec","coinMinimalDenom":"ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93","coinDecimals":6},{"coinDenom":"pepe","coinMinimalDenom":"ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B","coinDecimals":18},{"coinDenom":"ibcx","coinMinimalDenom":"factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx","coinDecimals":6},{"coinDenom":"cbeth","coinMinimalDenom":"ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A","coinDecimals":18},{"coinDenom":"reth","coinMinimalDenom":"ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222","coinDecimals":18},{"coinDenom":"sfrxeth","coinMinimalDenom":"ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46","coinDecimals":18},{"coinDenom":"wsteth","coinMinimalDenom":"ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C","coinDecimals":18},{"coinDenom":"LORE","coinMinimalDenom":"ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3","coinDecimals":6},{"coinDenom":"roar","coinMinimalDenom":"ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0","coinDecimals":6},{"coinDenom":"stumee","coinMinimalDenom":"ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F","coinDecimals":6},{"coinDenom":"stibcx","coinMinimalDenom":"factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx","coinDecimals":6},{"coinDenom":"nls","coinMinimalDenom":"ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782","coinDecimals":6},{"coinDenom":"cub","coinMinimalDenom":"ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3","coinDecimals":6},{"coinDenom":"blue","coinMinimalDenom":"ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E","coinDecimals":6},{"coinDenom":"ntrn","coinMinimalDenom":"ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682","coinDecimals":6},{"coinDenom":"casa","coinMinimalDenom":"ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE","coinDecimals":6},{"coinDenom":"pica","coinMinimalDenom":"ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516","coinDecimals":12},{"coinDenom":"ksm","coinMinimalDenom":"ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C","coinDecimals":12},{"coinDenom":"dot","coinMinimalDenom":"ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244","coinDecimals":10},{"coinDenom":"qsr","coinMinimalDenom":"ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477","coinDecimals":6},{"coinDenom":"arch","coinMinimalDenom":"ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85","coinDecimals":18},{"coinDenom":"mpwr","coinMinimalDenom":"ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38","coinDecimals":6},{"coinDenom":"watr","coinMinimalDenom":"ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E","coinDecimals":6},{"coinDenom":"kyve","coinMinimalDenom":"ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB","coinDecimals":6},{"coinDenom":"ampOSMO","coinMinimalDenom":"factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO","coinDecimals":6},{"coinDenom":"sei","coinMinimalDenom":"ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D","coinDecimals":6},{"coinDenom":"qsomm","coinMinimalDenom":"ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208","coinDecimals":6},{"coinDenom":"pasg","coinMinimalDenom":"ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED","coinDecimals":6},{"coinDenom":"stsomm","coinMinimalDenom":"ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B","coinDecimals":6},{"coinDenom":"wormhole/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA/8","coinMinimalDenom":"ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA","coinDecimals":8},{"coinDenom":"wormhole/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR/5","coinMinimalDenom":"ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E","coinDecimals":5},{"coinDenom":"wormhole/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi/6","coinMinimalDenom":"ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C","coinDecimals":6},{"coinDenom":"wormhole/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh/8","coinMinimalDenom":"ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5","coinDecimals":8},{"coinDenom":"wormhole/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r/8","coinMinimalDenom":"ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE","coinDecimals":8},{"coinDenom":"mnta","coinMinimalDenom":"ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B","coinDecimals":6},{"coinDenom":"dgl","coinMinimalDenom":"ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9","coinDecimals":6},{"coinDenom":"wormhole/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt/6","coinMinimalDenom":"ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695","coinDecimals":6},{"coinDenom":"wormhole/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp/8","coinMinimalDenom":"ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC","coinDecimals":8},{"coinDenom":"usdc","coinMinimalDenom":"ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4","coinDecimals":6},{"coinDenom":"YieldETH","coinMinimalDenom":"ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668","coinDecimals":18},{"coinDenom":"xpla","coinMinimalDenom":"ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8","coinDecimals":18},{"coinDenom":"oin","coinMinimalDenom":"ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6","coinDecimals":6},{"coinDenom":"neok","coinMinimalDenom":"ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71","coinDecimals":18},{"coinDenom":"rio","coinMinimalDenom":"ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF","coinDecimals":18},{"coinDenom":"cdt","coinMinimalDenom":"factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt","coinDecimals":6},{"coinDenom":"mbrn","coinMinimalDenom":"factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn","coinDecimals":6},{"coinDenom":"sge","coinMinimalDenom":"ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA","coinDecimals":6},{"coinDenom":"fis","coinMinimalDenom":"ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862","coinDecimals":6},{"coinDenom":"ratom","coinMinimalDenom":"ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7","coinDecimals":6},{"coinDenom":"strdst","coinMinimalDenom":"ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B","coinDecimals":6},{"coinDenom":"DORA","coinMinimalDenom":"ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A","coinDecimals":18},{"coinDenom":"core","coinMinimalDenom":"ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C","coinDecimals":18},{"coinDenom":"WFX","coinMinimalDenom":"ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9","coinDecimals":18},{"coinDenom":"nbtc","coinMinimalDenom":"ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F","coinDecimals":14},{"coinDenom":"nois","coinMinimalDenom":"ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90","coinDecimals":6},{"coinDenom":"sqosmo","coinMinimalDenom":"factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo","coinDecimals":6},{"coinDenom":"nstk","coinMinimalDenom":"ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C","coinDecimals":6},{"coinDenom":"BRNCH","coinMinimalDenom":"ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02","coinDecimals":6},{"coinDenom":"wstETH","coinMinimalDenom":"ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5","coinDecimals":18},{"coinDenom":"sqatom","coinMinimalDenom":"factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom","coinDecimals":6},{"coinDenom":"sqbtc","coinMinimalDenom":"factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc","coinDecimals":6},{"coinDenom":"qwoyn","coinMinimalDenom":"ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D","coinDecimals":6},{"coinDenom":"ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20","coinMinimalDenom":"ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20","coinDecimals":0},{"coinDenom":"ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761","coinMinimalDenom":"ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761","coinDecimals":0},{"coinDenom":"volt","coinMinimalDenom":"ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA","coinDecimals":3},{"coinDenom":"ampere","coinMinimalDenom":"ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424","coinDecimals":3},{"coinDenom":"source","coinMinimalDenom":"ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7","coinDecimals":6},{"coinDenom":"wormhole/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy/6","coinMinimalDenom":"ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5","coinDecimals":6},{"coinDenom":"stkosmo","coinMinimalDenom":"ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E","coinDecimals":6},{"coinDenom":"lvn","coinMinimalDenom":"factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn","coinDecimals":6},{"coinDenom":"puppy","coinMinimalDenom":"ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963","coinDecimals":6},{"coinDenom":"newt","coinMinimalDenom":"ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD","coinDecimals":6},{"coinDenom":"milkTIA","coinMinimalDenom":"factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA","coinDecimals":6},{"coinDenom":"ASH","coinMinimalDenom":"ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC","coinDecimals":6},{"coinDenom":"RAC","coinMinimalDenom":"ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493","coinDecimals":6},{"coinDenom":"GUPPY","coinMinimalDenom":"ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D","coinDecimals":6},{"coinDenom":"ISLM","coinMinimalDenom":"ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA","coinDecimals":18},{"coinDenom":"autism","coinMinimalDenom":"ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D","coinDecimals":6},{"coinDenom":"page","coinMinimalDenom":"ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99","coinDecimals":8},{"coinDenom":"PURSE","coinMinimalDenom":"ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519","coinDecimals":18},{"coinDenom":"NINJA","coinMinimalDenom":"ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3","coinDecimals":6},{"coinDenom":"kleo","coinMinimalDenom":"ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF","coinDecimals":6},{"coinDenom":"nyx","coinMinimalDenom":"ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317","coinDecimals":6},{"coinDenom":"nym","coinMinimalDenom":"ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539","coinDecimals":6},{"coinDenom":"achihuahuawifhat","coinMinimalDenom":"ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7","coinDecimals":6},{"coinDenom":"circus","coinMinimalDenom":"ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C","coinDecimals":6},{"coinDenom":"jape","coinMinimalDenom":"ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE","coinDecimals":6},{"coinDenom":"WOOF","coinMinimalDenom":"ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53","coinDecimals":6},{"coinDenom":"sneaky","coinMinimalDenom":"ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F","coinDecimals":6},{"coinDenom":"wbtc","coinMinimalDenom":"factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc","coinDecimals":8},{"coinDenom":"bad","coinMinimalDenom":"ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23","coinDecimals":6},{"coinDenom":"sgnl","coinMinimalDenom":"ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO","coinDecimals":6},{"coinDenom":"sqtia","coinMinimalDenom":"factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia","coinDecimals":6},{"coinDenom":"apollo","coinMinimalDenom":"ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1","coinDecimals":6},{"coinDenom":"stDYDX","coinMinimalDenom":"ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C","coinDecimals":18},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9","coinDecimals":6},{"coinDenom":"stSAGA","coinMinimalDenom":"ibc/2CD9F8161C3FC332E78EF0C25F6E684D09379FB2F56EF9267E7EC139642EC57B","coinDecimals":6},{"coinDenom":"stINJ","coinMinimalDenom":"ibc/C04DFC9BCD893E57F2BEFE40F63EFD18D2768514DBD5F63ABD2FF7F48FC01D36","coinDecimals":18},{"coinDenom":"glto","coinMinimalDenom":"ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7","coinDecimals":6},{"coinDenom":"dym","coinMinimalDenom":"ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110","coinDecimals":18},{"coinDenom":"RAPTR","coinMinimalDenom":"factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR","coinDecimals":6},{"coinDenom":"astro.cw20","coinMinimalDenom":"ibc/C25A2303FE24B922DAFFDCE377AC5A42E5EF746806D32E2ED4B610DE85C203F7","coinDecimals":6},{"coinDenom":"BADKID","coinMinimalDenom":"factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID","coinDecimals":6},{"coinDenom":"wormhole/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3/6","coinMinimalDenom":"ibc/F08DE332018E8070CC4C68FE06E04E254F527556A614F5F8F9A68AF38D367E45","coinDecimals":6},{"coinDenom":"heart","coinMinimalDenom":"ibc/35CECC330D11DD00FACB555D07687631E0BC7D226260CC5F015F6D7980819533","coinDecimals":18},{"coinDenom":"berlin","coinMinimalDenom":"ibc/2BF9656CAB0384A31167DB9B0254F0FB1CB4346A229BD7E5CBDCBB911C3740F7","coinDecimals":18},{"coinDenom":"scr","coinMinimalDenom":"ibc/178248C262DE2E141EE6287EE7AB0854F05F25B0A3F40C4B912FA1C7E51F466E","coinDecimals":9},{"coinDenom":"c4e","coinMinimalDenom":"ibc/62118FB4D5FEDD5D2B18DC93648A745CD5E5B01D420E9B7A5FED5381CB13A7E8","coinDecimals":6},{"coinDenom":"bitmos","coinMinimalDenom":"ibc/7D389F0ABF1E4D45BE6D7BBE36A2C50EA0559C01E076B02F8E381E685EC1F942","coinDecimals":6},{"coinDenom":"srcx","coinMinimalDenom":"ibc/C97473CD237EBA2F94FDFA6ABA5EC0E22FA140655D73D2A2754F03A347BBA40B","coinDecimals":9},{"coinDenom":"rock","coinMinimalDenom":"ibc/0835781EF3F3ADD053874323AB660C75B50B18B16733CAB783CA6BBD78244EDF","coinDecimals":6},{"coinDenom":"wormhole/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst/5","coinMinimalDenom":"ibc/CDD1E59BD5034C1B2597DD199782204EB397DB93200AA2E99C0AF3A66B2915FA","coinDecimals":5},{"coinDenom":"aioz","coinMinimalDenom":"ibc/BB0AFE2AFBD6E883690DAE4B9168EAC2B306BCC9C9292DACBB4152BBB08DB25F","coinDecimals":18},{"coinDenom":"stDYM","coinMinimalDenom":"ibc/D53E785DC9C5C2CA50CADB1EFE4DE5D0C30418BE0E9C6F2AF9F092A247E8BC22","coinDecimals":18},{"coinDenom":"doki","coinMinimalDenom":"ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B","coinDecimals":6},{"coinDenom":"sail","coinMinimalDenom":"factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail","coinDecimals":6},{"coinDenom":"SHARK","coinMinimalDenom":"ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834","coinDecimals":6},{"coinDenom":"xrp","coinMinimalDenom":"ibc/63A7CA0B6838AD8CAD6B5103998FF9B9B6A6F06FBB9638BFF51E63E0142339F3","coinDecimals":6},{"coinDenom":"allXRP","coinMinimalDenom":"factory/osmo1qnglc04tmhg32uc4kxlxh55a5cmhj88cpa3rmtly484xqu82t79sfv94w0/alloyed/allXRP","coinDecimals":6},{"coinDenom":"SEIYAN","coinMinimalDenom":"ibc/86074B8DF625A75C25D52FA6112E3FD5446BA41FE418880C168CA99D10E22F05","coinDecimals":6},{"coinDenom":"nibi","coinMinimalDenom":"ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF","coinDecimals":6},{"coinDenom":"beast","coinMinimalDenom":"ibc/B84F8CC583A54DA8173711C0B66B22FDC1954FEB1CA8DBC66C89919DAFE02000","coinDecimals":6},{"coinDenom":"cvnt","coinMinimalDenom":"ibc/044B7B28AFE93CEC769CF529ADC626DA09EA0EFA3E0E3284D540E9E00E01E24A","coinDecimals":18},{"coinDenom":"toro","coinMinimalDenom":"factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro","coinDecimals":6},{"coinDenom":"sayve","coinMinimalDenom":"ibc/06EF575844982382F4D1BC3830D294557A30EDB3CD223153AFC8DFEF06349C56","coinDecimals":6},{"coinDenom":"LAB","coinMinimalDenom":"factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB","coinDecimals":6},{"coinDenom":"bOSMO","coinMinimalDenom":"factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/boneOsmo","coinDecimals":6},{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/46D8D1A6E2A80ECCB7CA6663086A2E749C508B68DA56A077CD26E6F4F9691EEE","coinDecimals":18},{"coinDenom":"tnkr","coinMinimalDenom":"ibc/3A0A392E610A8D477851ABFEA74F3D828F36C015AB8E93B0FBB7566A6D13C4D6","coinDecimals":12},{"coinDenom":"w","coinMinimalDenom":"ibc/AC6EE43E608B5A7EEE460C960480BC1C3708010E32B2071C429DA259836E10C3","coinDecimals":6},{"coinDenom":"dhp","coinMinimalDenom":"ibc/FD506CCA1FC574F2A8175FB574C981E9F6351E194AA48AC219BD67FF934E2F33","coinDecimals":6},{"coinDenom":"fury","coinMinimalDenom":"ibc/E4C60B9F95BF54CC085A5E39F6057ABD4DF92793D330EB884A36530F7E6804DE","coinDecimals":6},{"coinDenom":"saga","coinMinimalDenom":"ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2","coinDecimals":6},{"coinDenom":"ATOM1KLFG","coinMinimalDenom":"ibc/0E77E090EC04C476DE2BC0A7056580AC47660DAEB7B0D4701C085E3A046AC7B7","coinDecimals":6},{"coinDenom":"SHIDO","coinMinimalDenom":"ibc/62B50BB1DAEAD2A92D6C6ACAC118F4ED8CBE54265DCF5688E8D0A0A978AA46E7","coinDecimals":18},{"coinDenom":"cif","coinMinimalDenom":"ibc/EFC1776BEFB7842F2DC7BABD9A3050E188145C99007ECC5F3526FED45A68D5F5","coinDecimals":6},{"coinDenom":"hava","coinMinimalDenom":"ibc/884EBC228DFCE8F1304D917A712AA9611427A6C1ECC3179B2E91D7468FB091A2","coinDecimals":6},{"coinDenom":"IBC","coinMinimalDenom":"factory/osmo1kqdw6pvn0xww6tyfv2sqvkkencdz0qw406x54r/IBC","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/5EC896BED3EBCB2CB6F1C167582E4EFA3F6FA3385F28BA5EA92D4A489DA010C5","coinDecimals":18},{"coinDenom":"astro","coinMinimalDenom":"ibc/B8C608CEE08C4F30A15A7955306F2EDAF4A02BB191CABC4185C1A57FD978DA1B","coinDecimals":6},{"coinDenom":"xASTRO","coinMinimalDenom":"ibc/2ED09B03AA396BC2F35B741F4CA4A82D33A24A1007BFC1973299842DD626F564","coinDecimals":6},{"coinDenom":"gpaxg","coinMinimalDenom":"ibc/A5CCD24BA902843B1003A7EEE5F937C632808B9CF4925601241B15C5A0A51A53","coinDecimals":18},{"coinDenom":"rstk","coinMinimalDenom":"ibc/04FAC73DFF7F1DD59395948F2F043B0BBF978AD4533EE37E811340F501A08FFB","coinDecimals":6},{"coinDenom":"BERNESE","coinMinimalDenom":"factory/osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss/BERNESE","coinDecimals":6},{"coinDenom":"eth","coinMinimalDenom":"ibc/A23E590BA7E0D808706FB5085A449B3B9D6864AE4DDE7DAF936243CEBB2A3D43","coinDecimals":18},{"coinDenom":"dai","coinMinimalDenom":"ibc/37DFAFDA529FF7D513B0DB23E9728DF9BF73122D38D46824C78BB7F91E6A736B","coinDecimals":18},{"coinDenom":"fxs","coinMinimalDenom":"ibc/5435437A8C9416B650DDA49C338B63CCFC6465123B715F6BAA9B1B2071E27913","coinDecimals":18},{"coinDenom":"frax","coinMinimalDenom":"ibc/9A8CBC029002DC5170E715F93FBF35011FFC9796371F59B1F3C3094AE1B453A9","coinDecimals":18},{"coinDenom":"usdt","coinMinimalDenom":"ibc/078AD6F581E8115CDFBD8FFA29D8C71AFE250CE952AFF80040CBC64868D44AD3","coinDecimals":6},{"coinDenom":"sfrax","coinMinimalDenom":"ibc/0EFA07F312E05258A56AE1DD600E39B9151CF7A91C8A94EEBCF4F03ECFE5DD98","coinDecimals":18},{"coinDenom":"frxeth","coinMinimalDenom":"ibc/688E70EF567E5D4BA1CF4C54BAD758C288BC1A6C8B0B12979F911A2AE95E27EC","coinDecimals":18},{"coinDenom":"sfrxeth","coinMinimalDenom":"ibc/F17CCB4F07948CC2D8B72952C2D0A84F2B763962F698774BB121B872AE4611B5","coinDecimals":18},{"coinDenom":"clay","coinMinimalDenom":"ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B","coinDecimals":6},{"coinDenom":"404dr","coinMinimalDenom":"ibc/B797E4F42CD33C50511B341E50C5CC0E8EF0D93B1E1247ABAA071583B8619202","coinDecimals":6},{"coinDenom":"wLIBRA","coinMinimalDenom":"factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA","coinDecimals":6},{"coinDenom":"nim","coinMinimalDenom":"ibc/279D69A6EF8E37456C8D2DC7A7C1C50F7A566EC4758F6DE17472A9FDE36C4426","coinDecimals":18},{"coinDenom":"seda","coinMinimalDenom":"ibc/956AEF1DA92F70584266E87978C3F30A43B91EE6ABC62F03D097E79F6B99C4D8","coinDecimals":18},{"coinDenom":"CAC","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/cac","coinDecimals":6},{"coinDenom":"WEIRD","coinMinimalDenom":"ibc/38ADC6FFDDDB7D70B72AD0322CEA8844CB18FAA0A23400DBA8A99D43E18B3748","coinDecimals":6},{"coinDenom":"PBB","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/pbb","coinDecimals":6},{"coinDenom":"bwh","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bwh","coinDecimals":6},{"coinDenom":"ibc/0D62E47FDEBBC199D4E1853C0708F0F9337AC62D95B719585C9700E466060995","coinMinimalDenom":"ibc/0D62E47FDEBBC199D4E1853C0708F0F9337AC62D95B719585C9700E466060995","coinDecimals":0},{"coinDenom":"SHITMOS","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos","coinDecimals":6},{"coinDenom":"qjuno","coinMinimalDenom":"ibc/B4E18E61E1505C2F371B621E49B09E983F6A138F251A7B5286A6BDF739FD0D54","coinDecimals":6},{"coinDenom":"qsaga","coinMinimalDenom":"ibc/F2D400F2728E9DA06EAE2AFAB289931A69EDDA5A661578C66A3177EDFE3C0D13","coinDecimals":6},{"coinDenom":"qdydx","coinMinimalDenom":"ibc/273C593E51ACE56F1F2BDB3E03A5CB81BB208B894BCAA642676A32C3454E8C27","coinDecimals":18},{"coinDenom":"qbld","coinMinimalDenom":"ibc/C1C106D915C8E8C59E5DC69BF30FEF64729A6F788060B184C86A315DBB762EF7","coinDecimals":6},{"coinDenom":"pepe","coinMinimalDenom":"ibc/5B5BFCC8A9F0D554A4245117F7798E85BE25B6C73DBFA2D6F369BD9DD6CACC6D","coinDecimals":18},{"coinDenom":"crv","coinMinimalDenom":"ibc/080CE38C1E49595F2199E88BE7281F93FAEEF3FE354EECED0640625E8311C9CF","coinDecimals":18},{"coinDenom":"ezeth","coinMinimalDenom":"ibc/39AAE0F5F918B731BEF1E02E9BAED33C242805F668B0A941AC509FB569FE51CB","coinDecimals":18},{"coinDenom":"usde","coinMinimalDenom":"ibc/BFFE212A23384C4EB055CF6F95A1F5EC1BE0F9BD286FAA66C3748F0444E67D63","coinDecimals":18},{"coinDenom":"ena","coinMinimalDenom":"ibc/257FF64F160106F6EE43CEE7C761DA64C1346221895373CC810FFA1BFAC5A7CD","coinDecimals":18},{"coinDenom":"eeth","coinMinimalDenom":"ibc/8D0FFEA4EDB04E3C1738C9599B66AE49683E0540FC4C1214AC84534C200D818B","coinDecimals":18},{"coinDenom":"pxeth","coinMinimalDenom":"ibc/D09BB89B2187EF13EF006B44510749B0F02FD0B34F8BB55C70D812A1FF6148C7","coinDecimals":18},{"coinDenom":"crvusd","coinMinimalDenom":"ibc/63551E7BB24008F0AFC1CB051A423A5104F781F035F8B1A191264B7086A0A0F6","coinDecimals":18},{"coinDenom":"WIHA","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/wiha","coinDecimals":6},{"coinDenom":"CRAZYHORSE","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/crazyhorse","coinDecimals":6},{"coinDenom":"COCA","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/coca","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/0233A3F2541FD43DBCA569B27AF886E97F5C03FC0305E4A8A3FAC6AC26249C7A","coinDecimals":6},{"coinDenom":"edgesol","coinMinimalDenom":"ibc/B83F9E20B4A07FA8846880000BD9D8985D89567A090F5E9390C64E81C39B4607","coinDecimals":9},{"coinDenom":"lst","coinMinimalDenom":"ibc/F618D130A2B8203D169811658BD0361F18DC2453085965FA0E5AEB8018DD54EE","coinDecimals":9},{"coinDenom":"jitosol","coinMinimalDenom":"ibc/9A83BDF4C8C5FFDDE735533BC8CD4363714A6474AED1C2C492FB003BB77C7982","coinDecimals":9},{"coinDenom":"wsol","coinMinimalDenom":"ibc/0F9E9277B61A78CB31014D541ACA5BF6AB06DFC4524C4C836490B131DAAECD78","coinDecimals":9},{"coinDenom":"allUSDT","coinMinimalDenom":"factory/osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek/alloyed/allUSDT","coinDecimals":6},{"coinDenom":"whine","coinMinimalDenom":"ibc/A8C568580D613F16F7E9075EA9FAD69FEBE0CC1F4AF46C60255FEC4459C166F1","coinDecimals":6},{"coinDenom":"BAG","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bag","coinDecimals":6},{"coinDenom":"allBTC","coinMinimalDenom":"factory/osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3/alloyed/allBTC","coinDecimals":8},{"coinDenom":"n43","coinMinimalDenom":"ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58","coinDecimals":6},{"coinDenom":"rakoff","coinMinimalDenom":"ibc/46579C587A0B8CF8B0A1FF6B0EFA2082F11876578E47FC81A9CAAD31F424AF98","coinDecimals":6},{"coinDenom":"arbitrum-weth","coinMinimalDenom":"ibc/64E62451C9A5682FF3047429C6E4714A02CDC0C35DE35CAB01E18D1188004CEB","coinDecimals":18},{"coinDenom":"base-weth","coinMinimalDenom":"ibc/D7D6DEF2A4F7ED0A6F5F0E266C1B2C9726E82F67EBBE49BBB47B3DEC289F8D7B","coinDecimals":18},{"coinDenom":"polygon-weth","coinMinimalDenom":"ibc/F9EB60AC212DBF05F4C5ED0FDE03BB9F08309B0EE9899A406AD4B904CF84968E","coinDecimals":18},{"coinDenom":"stISLM","coinMinimalDenom":"ibc/245C3CA604AAB4BB9EEA5E86F23F52D59253D8722C8FC9C4E3E69F77C5CD3D2F","coinDecimals":18},{"coinDenom":"mand","coinMinimalDenom":"ibc/739D70CB432FE1C6D94AF306B68C14F4CFB0B9EDD1238D3A8718B1B0E84E8547","coinDecimals":18},{"coinDenom":"neutaro","coinMinimalDenom":"ibc/DAED51CBD967A3BE0C467687970AFD97B202AFE4A1718B36936F49178AFE0133","coinDecimals":6},{"coinDenom":"wormhole/AbYYFgqSQEhe7NyXfo6w75GT7fCanVd9wNg4E9Df2puP/6","coinMinimalDenom":"ibc/E0D6A7FFAE26FA90C8F1AA3461A5A21E74DB154F183EAE56C96769F48F81FCA2","coinDecimals":6},{"coinDenom":"usdy","coinMinimalDenom":"ibc/23104D411A6EB6031FA92FB75F227422B84989969E91DCAD56A535DD7FF0A373","coinDecimals":18},{"coinDenom":"TURD","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/turd","coinDecimals":6},{"coinDenom":"fct","coinMinimalDenom":"ibc/E43ABCC7E80E99E4E6E1226AE5695DDE0F83CB5C257CD04D47C36B8B90C1C839","coinDecimals":6},{"coinDenom":"allETH","coinMinimalDenom":"factory/osmo1k6c8jln7ejuqwtqmay3yvzrg3kueaczl96pk067ldg8u835w0yhsw27twm/alloyed/allETH","coinDecimals":18},{"coinDenom":"allSOL","coinMinimalDenom":"factory/osmo1n3n75av8awcnw4jl62n3l48e6e4sxqmaf97w5ua6ddu4s475q5qq9udvx4/alloyed/allSOL","coinDecimals":9},{"coinDenom":"lava","coinMinimalDenom":"ibc/1AEF145C549D4F9847C79E49710B198C294C7F4A107F4610DEE8E725FFC4B378","coinDecimals":6},{"coinDenom":"penumbra","coinMinimalDenom":"ibc/0FA9232B262B89E77D1335D54FB1E1F506A92A7E4B51524B400DC69C68D28372","coinDecimals":6},{"coinDenom":"trx","coinMinimalDenom":"factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/TRX.rt","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/USDT.rt","coinDecimals":6},{"coinDenom":"COSMO","coinMinimalDenom":"ibc/4925733868E7999F5822C961ADE9470A7FC5FA4A560BAE1DE102783C3F64C201","coinDecimals":6},{"coinDenom":"stBAND","coinMinimalDenom":"ibc/603140E681973C7A3A33B06B1D377AAD0F6AC376119735CECC04C9184A1AB080","coinDecimals":6},{"coinDenom":"COOK","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/COOK","coinDecimals":6},{"coinDenom":"trx","coinMinimalDenom":"factory/osmo14mafhhp337yjj2aujplawz0tks6jd2lel4hkwz4agyzhvvztzaqsqzjq8x/alloyed/allTRX","coinDecimals":6},{"coinDenom":"ROUTE","coinMinimalDenom":"ibc/3F8F00094F0F79D17750FF69C5F09B078084018570AAF4F1C92C86D3F73E6488","coinDecimals":18},{"coinDenom":"op","coinMinimalDenom":"factory/osmo1nufyzqlm8qhu2w7lm0l4rrax0ec8rsk69mga4tel8eare7c7ljaqpk2lyg/alloyed/allOP","coinDecimals":12},{"coinDenom":"op","coinMinimalDenom":"ibc/14A291DD362798D6805B7ABCB8D09AEEE02176108F89FA09AA43EA2EE096A2A9","coinDecimals":18},{"coinDenom":"shib","coinMinimalDenom":"factory/osmo1f588gk9dazpsueevdl2w6wfkmfmhg5gdvg2uerdlzl0atkasqhsq59qc6a/alloyed/allSHIB","coinDecimals":12},{"coinDenom":"arb","coinMinimalDenom":"factory/osmo1p7x454ex08s4f9ztmm7wfv7lvtgdkfztj2u7v7fezfcauy85q35qmqrdpk/alloyed/allARB","coinDecimals":12},{"coinDenom":"link","coinMinimalDenom":"factory/osmo18zdw5yvs6gfp95rp74qqwug9yduw2fyr8kplk2xgs726s9axc5usa2vpgw/alloyed/allLINK","coinDecimals":12},{"coinDenom":"pepe","coinMinimalDenom":"factory/osmo1nnlxegt0scm9qkzys9c874t0ntapv4epfjy2w49c0xdrp3dr0v4ssmelzx/alloyed/allPEPE","coinDecimals":12},{"coinDenom":"dot","coinMinimalDenom":"factory/osmo1r53fx9fvcdzncrs7zkn4gw5vfelx5gk8k5wc6wqha2jpkh992rusr5tk02/alloyed/allDOT","coinDecimals":10},{"coinDenom":"unicorn","coinMinimalDenom":"ibc/C91210281CEB708DC6E41A47FC9EC298F45712273DD58C682BEBAD00DCB59DC2","coinDecimals":6},{"coinDenom":"DEEN","coinMinimalDenom":"ibc/108604FDBE97DAEF128FD4ECFEB2A8AFC2D04A7162C97EAA2FD5BCB0869D0BBC","coinDecimals":6},{"coinDenom":"CosmoUSD","coinMinimalDenom":"factory/osmo104jtrwcljnxfljhml8mxrw7qetcsdmqvy3sprw/ucosmousd","coinDecimals":6},{"coinDenom":"XTRUMP","coinMinimalDenom":"factory/osmo1hg0zf0c9can4tvtulh5gmmxe4jpflre3yewxjl/XTRUMP","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/2AD3C64D19ADFBB522CD738B58F421102143F827C1CAFF574A8BF0B81017D53D","coinDecimals":6},{"coinDenom":"fBAD","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBAD","coinDecimals":9},{"coinDenom":"fMAD","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fMAD","coinDecimals":9},{"coinDenom":"fSLOTH","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fSLOTH","coinDecimals":9},{"coinDenom":"fNUT","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fNUT","coinDecimals":9},{"coinDenom":"MARS","coinMinimalDenom":"ibc/B67DF59507B3755EEDE0866C449445BD54B4DA82CCEBA89D775E53DC35664255","coinDecimals":6},{"coinDenom":"ton","coinMinimalDenom":"ibc/905889A7F0B94F1CE1506D9BADF13AE9141E4CBDBCD565E1DFC7AE418B3E3E98","coinDecimals":9},{"coinDenom":"ton","coinMinimalDenom":"factory/osmo12lnwf54yd30p6amzaged2atln8k0l32n7ncxf04ctg7u7ymnsy7qkqgsw4/alloyed/allTON","coinDecimals":9},{"coinDenom":"display_stBTC","coinMinimalDenom":"ibc/453B5B25834A5D4B8FE1E894E69D73F46424F28E8ED3D8E8CA654AEFF1EC5D3B","coinDecimals":18},{"coinDenom":"BVT0","coinMinimalDenom":"factory/osmo1xu0gk9aggv79597xwazyfzaggv2pze9z7cq3p9p72tkkux9a7xaqufa792/BVT","coinDecimals":18},{"coinDenom":"BVT1","coinMinimalDenom":"factory/osmo16nxtnrnl7lctvnhhpcxqmmpv63n93zgg0ukaveyc0jl4dtad79cs53c3an/BVT","coinDecimals":18},{"coinDenom":"AVAIL","coinMinimalDenom":"factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/AVAIL.rt","coinDecimals":18},{"coinDenom":"eure","coinMinimalDenom":"ibc/92AE2F53284505223A1BB80D132F859A00E190C6A738772F0B3EF65E20BA484F","coinDecimals":6},{"coinDenom":"andr","coinMinimalDenom":"ibc/631DB9935E8523BDCF76B55129F5238A14C809CCB3B43AECC157DC19702F3F9E","coinDecimals":6},{"coinDenom":"ckBTC","coinMinimalDenom":"factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-icrc-ckBTC","coinDecimals":8},{"coinDenom":"fWIZ","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWIZ","coinDecimals":9},{"coinDenom":"fWITCH","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWITCH","coinDecimals":9},{"coinDenom":"fCRYPTONIUM","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fCRYPTONIUM","coinDecimals":9},{"coinDenom":"fATLAS","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fATLAS","coinDecimals":9},{"coinDenom":"fGECK","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fGECK","coinDecimals":9},{"coinDenom":"fBULLS","coinMinimalDenom":"factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBULLS","coinDecimals":9},{"coinDenom":"SIN","coinMinimalDenom":"ibc/2BF7FB3908B469FA9672767DC74AF8A18E2F47F8B623B0685DE290B828FCBD23","coinDecimals":6},{"coinDenom":"KIMA","coinMinimalDenom":"ibc/629B5691DE993DCD07AA1B0587AD52A7FA4E8F28B77DE15BCBDF936CA6F76E6C","coinDecimals":6},{"coinDenom":"stos","coinMinimalDenom":"ibc/ABD49F44559CB3E557CC458459CB6A67CEBD66E23C7674A0B2B445230BDA1F6C","coinDecimals":18},{"coinDenom":"uni","coinMinimalDenom":"ibc/AE2719773D6FCDD05AC17B1ED63F672F5F9D84144A61965F348C86C2A83AD161","coinDecimals":18},{"coinDenom":"allUNI","coinMinimalDenom":"factory/osmo1eqjda4pc6e09jtxzxggf6jl3jye2yn453ja58we5gxwzmf5ah28qvlnaz8/alloyed/allUNI","coinDecimals":12},{"coinDenom":"lp:8:osmo","coinMinimalDenom":"ibc/54B2D9DC9602A1CE2A0329D51C6A1C7C4ADE71477186AEAAA549318C4513A453","coinDecimals":6},{"coinDenom":"int3","coinMinimalDenom":"ibc/7D29C888219883C47C623578ACACFC89CC29AA70FBF09C895A1EED911BF90F32","coinDecimals":6},{"coinDenom":"doge","coinMinimalDenom":"ibc/B3DFDC2958A2BE482532DA3B6B5729B469BE7475598F7487D98B1B3E085245DE","coinDecimals":8},{"coinDenom":"btc","coinMinimalDenom":"ibc/2F4258D6E1E01B203D6CA83F2C7E4959615053A21EC2C2FC196F7911CAC832EF","coinDecimals":8},{"coinDenom":"bch","coinMinimalDenom":"ibc/869E01805EBBDDCAEA588666CD5149728B7DC7D69F30D92F77AD67F77CEB3FDA","coinDecimals":8},{"coinDenom":"ltc","coinMinimalDenom":"ibc/905326586AE1C86AC8B1CDB20BE957DE5FB23963EDD2C9ADD3E835CC22115A46","coinDecimals":8},{"coinDenom":"ton","coinMinimalDenom":"ibc/DDE1238DCBC338C0FD0700A72CBD64C017B7A646C4A46789ADFB5D47F1E52E38","coinDecimals":9},{"coinDenom":"usdt","coinMinimalDenom":"ibc/57B63A0795B6BC0AC4EFD0D4DEE9FE71FCC1D0FFA87F6280C9CDEF4F6727A173","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/EEA21E12A250B7FBBCBBBD1F7AA78984F5C12D684B32EBEEFC585FF596A7BCDA","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/2F6003A92088B989A159C593C551DF7B04FA0A0419CA3ED087E45E0006ECFF6E","coinDecimals":6},{"coinDenom":"cbbtc","coinMinimalDenom":"ibc/616C2EA69BC328F245CE449785CB0B526B462C48F19DCF9B3D30699579B4308A","coinDecimals":8},{"coinDenom":"fbtc","coinMinimalDenom":"ibc/22C342A34DD0189AC2B2697EE76C360A9FBA53748ABA76E12C3A9E9F5F1E130F","coinDecimals":8},{"coinDenom":"lbtc","coinMinimalDenom":"ibc/4AC81C97BBB5482536F6401328E0E10BCCD98F0F471DCF64319A811E25E53CAB","coinDecimals":8},{"coinDenom":"rbtc","coinMinimalDenom":"factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/BTC.rt","coinDecimals":18},{"coinDenom":"allDOGE","coinMinimalDenom":"factory/osmo10pk4crey8fpdyqd62rsau0y02e3rk055w5u005ah6ly7k849k5tsf72x40/alloyed/allDOGE","coinDecimals":8},{"coinDenom":"allLTC","coinMinimalDenom":"factory/osmo1csp8fk353hnq2tmulklecxpex43qmjvrkxjcsh4c3eqcw2vjcslq5jls9v/alloyed/allLTC","coinDecimals":8},{"coinDenom":"allBCH","coinMinimalDenom":"factory/osmo1cranx3twqxfrgeqvgsu262gy54vafpc9xap6scye99v244zl970s7kw2sz/alloyed/allBCH","coinDecimals":8},{"coinDenom":"om","coinMinimalDenom":"ibc/164807F6226F91990F358C6467EEE8B162E437BDCD3DADEC3F0CE20693720795","coinDecimals":6},{"coinDenom":"atone","coinMinimalDenom":"ibc/715283E4A955EB803AB1DD30B488587A4D63BF0B51BADA537053DEE479BA10D6","coinDecimals":6},{"coinDenom":"Spice","coinMinimalDenom":"factory/osmo1n6asrjy9754q8y9jsxqf557zmsv3s3xa5m9eg5/uspice","coinDecimals":6},{"coinDenom":"yum","coinMinimalDenom":"ibc/21D8071EF5B02A86D945430D859A594CBF28287D38104A264BB9FD3B22BBF5DE","coinDecimals":18},{"coinDenom":"ygata","coinMinimalDenom":"ibc/50F886EFA15E1FF3D9226B177083A1EFF944176181C70B6131D74FE5AFB1F2C0","coinDecimals":6},{"coinDenom":"DGN","coinMinimalDenom":"ibc/3B95D63B520C283BCA86F8CD426D57584039463FD684A5CBA31D2780B86A1995","coinDecimals":6},{"coinDenom":"SYNT","coinMinimalDenom":"ibc/1B454982D3746951510D3845145B83628D4ED380D95722C8077776C4689F973A","coinDecimals":6},{"coinDenom":"BOMU","coinMinimalDenom":"factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bomu","coinDecimals":6},{"coinDenom":"dATOM","coinMinimalDenom":"ibc/C1B4D4804EB8F95FFB75E6395A301F0AD6D7DDE5C3A45571B70E46A368DD353E","coinDecimals":6},{"coinDenom":"KIMA","coinMinimalDenom":"ibc/A6712952E566B8A9F29D0A533F043C3CE3CF9870B01A2180E390133119C14A71","coinDecimals":6},{"coinDenom":"fury","coinMinimalDenom":"ibc/42D0FBF9DDC72D7359D309A93A6DF9F6FDEE3987EA1C5B3CDE95C06FCE183F12","coinDecimals":6},{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/2EB516F83C9FF44AB6826F269CA98A5622608C6C955E12112E58F23A324FEE07","coinDecimals":18},{"coinDenom":"dhp","coinMinimalDenom":"ibc/320F8D6EC17E14436D19C6D844BB9A5AE9B9A209F6D18364A2191FF08E8732A9","coinDecimals":6},{"coinDenom":"avalanche-usdc","coinMinimalDenom":"ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43","coinDecimals":6},{"coinDenom":"nom","coinMinimalDenom":"ibc/F49DFB3BC8105C57EE7F17EC2402438825B31212CFDD81681EB87911E934F32C","coinDecimals":6},{"coinDenom":"ymos","coinMinimalDenom":"factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos","coinDecimals":6},{"coinDenom":"factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz","coinMinimalDenom":"factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz","coinDecimals":0},{"coinDenom":"ashLAB","coinMinimalDenom":"factory/osmo1svj5kd8kzj7xxtrd6ftjk0856ffpyj4egz7f9pd9dge5wr4kwansmefq07/lab.ash","coinDecimals":6},{"coinDenom":"grac","coinMinimalDenom":"ibc/58E4261D2E21FE3A459C290A9F97F3DCD257B28F48AAE828298B38E048804829","coinDecimals":6},{"coinDenom":"earnUSDC","coinMinimalDenom":"factory/osmo1vf6e300hv2qe7r5rln8deft45ewgyytjnwfrdfcv5rgzrfy0s6cswjqf9r/mars-usdc-looped","coinDecimals":6},{"coinDenom":"earnCDT","coinMinimalDenom":"factory/osmo1jw6r68y0uhfmqagc7uhtdddctc7wq95pncvrqnvtd47w4hx46p7se9nju5/earn-cdt","coinDecimals":6},{"coinDenom":"Sherpa","coinMinimalDenom":"factory/osmo1n6asrjy9754q8y9jsxqf557zmsv3s3xa5m9eg5/usherpa","coinDecimals":6},{"coinDenom":"allFIL","coinMinimalDenom":"factory/osmo1ss0n3ghv5rr4z4y54fnkprc69tegmdm3ejlkgr2z4utnyg7eljgs9pztvs/alloyed/allFIL","coinDecimals":12},{"coinDenom":"icp","coinMinimalDenom":"factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-native-ICP","coinDecimals":8},{"coinDenom":"AARON","coinMinimalDenom":"ibc/BE2B0A9FC3A122C92883D3258098D7C6BB02F8F887E8A0BDE58609E7CA2649B2","coinDecimals":6}],"rest":"https://lcd.osmosis.zone/","rpc":"https://rpc.osmosis.zone/","bech32Config":{"bech32PrefixAccAddr":"osmo","bech32PrefixAccPub":"osmopub","bech32PrefixValAddr":"osmovaloper","bech32PrefixValPub":"osmovaloperpub","bech32PrefixConsAddr":"osmovalcons","bech32PrefixConsPub":"osmovalconspub"},"chainName":"osmosis","feeCurrencies":[{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"panacea-3","currencies":[{"coinDenom":"med","coinMinimalDenom":"umed","coinDecimals":6}],"rest":"https://api.gopanacea.org","rpc":"https://rpc.gopanacea.org","bech32Config":{"bech32PrefixAccAddr":"panacea","bech32PrefixAccPub":"panaceapub","bech32PrefixValAddr":"panaceavaloper","bech32PrefixValPub":"panaceavaloperpub","bech32PrefixConsAddr":"panaceavalcons","bech32PrefixConsPub":"panaceavalconspub"},"chainName":"panacea","feeCurrencies":[{"coinDenom":"med","coinMinimalDenom":"umed","coinDecimals":6,"gasPriceStep":{"low":5,"average":7,"high":9}}],"stakeCurrency":{"coinDenom":"med","coinMinimalDenom":"umed","coinDecimals":6},"bip44":{"coinType":371}},{"chainId":"passage-2","currencies":[{"coinDenom":"pasg","coinMinimalDenom":"upasg","coinDecimals":6}],"rest":"https://api.passage.vitwit.com","rpc":"https://rpc.passage.vitwit.com","bech32Config":{"bech32PrefixAccAddr":"pasg","bech32PrefixAccPub":"pasgpub","bech32PrefixValAddr":"pasgvaloper","bech32PrefixValPub":"pasgvaloperpub","bech32PrefixConsAddr":"pasgvalcons","bech32PrefixConsPub":"pasgvalconspub"},"chainName":"passage","feeCurrencies":[{"coinDenom":"pasg","coinMinimalDenom":"upasg","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.0025,"high":0.01}}],"stakeCurrency":{"coinDenom":"pasg","coinMinimalDenom":"upasg","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"core-1","currencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},{"coinDenom":"stkatom","coinMinimalDenom":"stk/uatom","coinDecimals":6},{"coinDenom":"pstake","coinMinimalDenom":"ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444","coinDecimals":18},{"coinDenom":"atom","coinMinimalDenom":"ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E","coinDecimals":18},{"coinDenom":"stkosmo","coinMinimalDenom":"stk/uosmo","coinDecimals":6},{"coinDenom":"stkdydx","coinMinimalDenom":"stk/adydx","coinDecimals":18},{"coinDenom":"stkstars","coinMinimalDenom":"stk/ustars","coinDecimals":6},{"coinDenom":"stars","coinMinimalDenom":"ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B","coinDecimals":6},{"coinDenom":"shd","coinMinimalDenom":"ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B","coinDecimals":8},{"coinDenom":"stkhuahua","coinMinimalDenom":"stk/uhuahua","coinDecimals":6},{"coinDenom":"huahua","coinMinimalDenom":"ibc/B597D779FCDD9021263C98A48F1AFA9D2BCCCE980F397CDE5681CCEDE7DEE1A4","coinDecimals":6},{"coinDenom":"stkxprt","coinMinimalDenom":"stk/uxprt","coinDecimals":6},{"coinDenom":"wbtc","coinMinimalDenom":"ibc/CCA9F9B22D39884C09975D45E1869B73A12B87080EE53CB44905CE2C422CA228","coinDecimals":8}],"rest":"https://rest.core.persistence.one","rpc":"https://rpc.core.persistence.one","bech32Config":{"bech32PrefixAccAddr":"persistence","bech32PrefixAccPub":"persistencepub","bech32PrefixValAddr":"persistencevaloper","bech32PrefixValPub":"persistencevaloperpub","bech32PrefixConsAddr":"persistencevalcons","bech32PrefixConsPub":"persistencevalconspub"},"chainName":"persistence","feeCurrencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6}],"stakeCurrency":{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"planq_7070-2","currencies":[{"coinDenom":"planq","coinMinimalDenom":"aplanq","coinDecimals":18},{"coinDenom":"srcx","coinMinimalDenom":"erc20/0x091F9A57A3F58d758b6572E9d41675918EAC7F09","coinDecimals":9},{"coinDenom":"meme","coinMinimalDenom":"ibc/747FF58D3F211497581252CEBE11D7E785FC1E53AC5C29497A361E3830F1AF4A","coinDecimals":6}],"rest":"https://rest.planq.network","rpc":"https://rpc.planq.network","bech32Config":{"bech32PrefixAccAddr":"plq","bech32PrefixAccPub":"plqpub","bech32PrefixValAddr":"plqvaloper","bech32PrefixValPub":"plqvaloperpub","bech32PrefixConsAddr":"plqvalcons","bech32PrefixConsPub":"plqvalconspub"},"chainName":"planq","feeCurrencies":[{"coinDenom":"planq","coinMinimalDenom":"aplanq","coinDecimals":18,"gasPriceStep":{"low":30000000000,"average":35000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"planq","coinMinimalDenom":"aplanq","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"point_10687-1","currencies":[{"coinDenom":"point","coinMinimalDenom":"apoint","coinDecimals":18}],"rest":"https://rpc-mainnet-1.point.space:1317","rpc":"https://rpc-mainnet-1.point.space:26657","bech32Config":{"bech32PrefixAccAddr":"point","bech32PrefixAccPub":"pointpub","bech32PrefixValAddr":"pointvaloper","bech32PrefixValPub":"pointvaloperpub","bech32PrefixConsAddr":"pointvalcons","bech32PrefixConsPub":"pointvalconspub"},"chainName":"point","feeCurrencies":[{"coinDenom":"point","coinMinimalDenom":"apoint","coinDecimals":18,"gasPriceStep":{"low":5000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"point","coinMinimalDenom":"apoint","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"pio-mainnet-1","currencies":[{"coinDenom":"hash","coinMinimalDenom":"nhash","coinDecimals":9}],"rest":"https://api-provenance.takeshi.team","rpc":"https://rpc-provenance.takeshi.team/","bech32Config":{"bech32PrefixAccAddr":"pb","bech32PrefixAccPub":"pbpub","bech32PrefixValAddr":"pbvaloper","bech32PrefixValPub":"pbvaloperpub","bech32PrefixConsAddr":"pbvalcons","bech32PrefixConsPub":"pbvalconspub"},"chainName":"provenance","feeCurrencies":[{"coinDenom":"hash","coinMinimalDenom":"nhash","coinDecimals":9,"gasPriceStep":{"low":1905,"average":2100,"high":2500}}],"stakeCurrency":{"coinDenom":"hash","coinMinimalDenom":"nhash","coinDecimals":9},"bip44":{"coinType":505}},{"chainId":"pryzm-1","currencies":[{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6},{"coinDenom":"auuu","coinMinimalDenom":"factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6},{"coinDenom":"INJ","coinMinimalDenom":"ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255","coinDecimals":18},{"coinDenom":"osmo","coinMinimalDenom":"ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B","coinDecimals":6},{"coinDenom":"tia","coinMinimalDenom":"ibc/BF28D9C17E0306B194D50F51C3B2590BEAD15E04E03ADD34C3A26E62D85C9676","coinDecimals":6},{"coinDenom":"luna","coinMinimalDenom":"ibc/B8AF5D92165F35AB31F3FC7C7B444B9D240760FA5D406C49D24862BD0284E395","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/B9E4FD154C92D3A23BEA029906C4C5FF2FE74CB7E3A058290B77197A263CF88B","coinDecimals":6},{"coinDenom":"dydx","coinMinimalDenom":"ibc/F8CA5236869F819BC006EEF088E67889A26E4140339757878F0F4E229CDDA858","coinDecimals":18},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/FA78980867B7E87F382CDA00275C55DDC248CABC7DEE27AC6868CCF97DD5E02F","coinDecimals":6},{"coinDenom":"stDYDX","coinMinimalDenom":"ibc/120DC39B61CC121E91525C1D51624E41BBE74C537D7B0BE50BBFF9A00E37B6EE","coinDecimals":18},{"coinDenom":"dATOM","coinMinimalDenom":"ibc/EA6E1E8BA2EB9F681C4BD12C8C81A46530A62934F2BD561B120A00F46946CE87","coinDecimals":6},{"coinDenom":"catom","coinMinimalDenom":"c:uatom","coinDecimals":6},{"coinDenom":"cINJ","coinMinimalDenom":"c:inj","coinDecimals":18},{"coinDenom":"cosmo","coinMinimalDenom":"c:uosmo","coinDecimals":6},{"coinDenom":"cluna","coinMinimalDenom":"c:uluna","coinDecimals":6},{"coinDenom":"cauuu","coinMinimalDenom":"factory/pryzm1qg5ega6dykkxc307y25pecuufrjkxkaggkkxh7nad0vhyhtuhw3sk0s70x/cuauuu","coinDecimals":6},{"coinDenom":"ctia","coinMinimalDenom":"c:utia","coinDecimals":6},{"coinDenom":"pATOM30Sep2024","coinMinimalDenom":"p:uatom:30Sep2024","coinDecimals":6},{"coinDenom":"pATOM31Dec2024","coinMinimalDenom":"p:uatom:31Dec2024","coinDecimals":6},{"coinDenom":"pATOM31Mar2025","coinMinimalDenom":"p:uatom:31Mar2025","coinDecimals":6},{"coinDenom":"pATOM31Dec2025","coinMinimalDenom":"p:uatom:31Dec2025","coinDecimals":6},{"coinDenom":"pATOM31Dec2026","coinMinimalDenom":"p:uatom:31Dec2026","coinDecimals":6},{"coinDenom":"pOSMO30Sep2024","coinMinimalDenom":"p:uosmo:30Sep2024","coinDecimals":6},{"coinDenom":"pOSMO31Dec2024","coinMinimalDenom":"p:uosmo:31Dec2024","coinDecimals":6},{"coinDenom":"pOSMO31Mar2025","coinMinimalDenom":"p:uosmo:31Mar2025","coinDecimals":6},{"coinDenom":"pOSMO31Dec2025","coinMinimalDenom":"p:uosmo:31Dec2025","coinDecimals":6},{"coinDenom":"pOSMO31Dec2026","coinMinimalDenom":"p:uosmo:31Dec2026","coinDecimals":6},{"coinDenom":"pINJ30Sep2024","coinMinimalDenom":"p:inj:30Sep2024","coinDecimals":18},{"coinDenom":"pINJ31Dec2024","coinMinimalDenom":"p:inj:31Dec2024","coinDecimals":18},{"coinDenom":"pINJ31Mar2025","coinMinimalDenom":"p:inj:31Mar2025","coinDecimals":18},{"coinDenom":"pINJ31Dec2025","coinMinimalDenom":"p:inj:31Dec2025","coinDecimals":18},{"coinDenom":"pINJ31Dec2026","coinMinimalDenom":"p:inj:31Dec2026","coinDecimals":18},{"coinDenom":"pLUNA30Sep2024","coinMinimalDenom":"p:uluna:30Sep2024","coinDecimals":6},{"coinDenom":"pLUNA31Dec2024","coinMinimalDenom":"p:uluna:31Dec2024","coinDecimals":6},{"coinDenom":"pLUNA31Mar2025","coinMinimalDenom":"p:uluna:31Mar2025","coinDecimals":6},{"coinDenom":"pLUNA31Dec2025","coinMinimalDenom":"p:uluna:31Dec2025","coinDecimals":6},{"coinDenom":"pLUNA31Dec2026","coinMinimalDenom":"p:uluna:31Dec2026","coinDecimals":6},{"coinDenom":"pAUUU30Sep2024","coinMinimalDenom":"p:uauuu:30Sep2024","coinDecimals":6},{"coinDenom":"pAUUU31Dec2024","coinMinimalDenom":"p:uauuu:31Dec2024","coinDecimals":6},{"coinDenom":"pAUUU31Dec2025","coinMinimalDenom":"p:uauuu:31Dec2025","coinDecimals":6},{"coinDenom":"pAUUU31Dec2026","coinMinimalDenom":"p:uauuu:31Dec2026","coinDecimals":6},{"coinDenom":"pstTIA30Sep2024","coinMinimalDenom":"p:stutia:30Sep2024","coinDecimals":6},{"coinDenom":"pstTIA31Dec2024","coinMinimalDenom":"p:stutia:31Dec2024","coinDecimals":6},{"coinDenom":"pstTIA31Mar2025","coinMinimalDenom":"p:stutia:31Mar2025","coinDecimals":6},{"coinDenom":"pstTIA31Dec2025","coinMinimalDenom":"p:stutia:31Dec2025","coinDecimals":6},{"coinDenom":"pstTIA31Dec2026","coinMinimalDenom":"p:stutia:31Dec2026","coinDecimals":6},{"coinDenom":"pstDYDX30Sep2024","coinMinimalDenom":"p:stadydx:30Sep2024","coinDecimals":18},{"coinDenom":"pstDYDX31Dec2024","coinMinimalDenom":"p:stadydx:31Dec2024","coinDecimals":18},{"coinDenom":"pstDYDX31Mar2025","coinMinimalDenom":"p:stadydx:31Mar2025","coinDecimals":18},{"coinDenom":"pstDYDX31Dec2025","coinMinimalDenom":"p:stadydx:31Dec2025","coinDecimals":18},{"coinDenom":"pstDYDX31Dec2026","coinMinimalDenom":"p:stadydx:31Dec2026","coinDecimals":18},{"coinDenom":"pdATOM31Dec2024","coinMinimalDenom":"p:udatom:31Dec2024","coinDecimals":6},{"coinDenom":"pdATOM31Mar2025","coinMinimalDenom":"p:udatom:31Mar2025","coinDecimals":6},{"coinDenom":"pdATOM30Jun2025","coinMinimalDenom":"p:udatom:30Jun2025","coinDecimals":6},{"coinDenom":"pdATOM31Dec2025","coinMinimalDenom":"p:udatom:31Dec2025","coinDecimals":6},{"coinDenom":"pdATOM31Dec2026","coinMinimalDenom":"p:udatom:31Dec2026","coinDecimals":6},{"coinDenom":"pTIA31Dec2024","coinMinimalDenom":"p:utia:31Dec2024","coinDecimals":6},{"coinDenom":"pTIA31Mar2025","coinMinimalDenom":"p:utia:31Mar2025","coinDecimals":6},{"coinDenom":"pTIA31Dec2025","coinMinimalDenom":"p:utia:31Dec2025","coinDecimals":6},{"coinDenom":"pTIA31Dec2026","coinMinimalDenom":"p:utia:31Dec2026","coinDecimals":6},{"coinDenom":"yATOM30Sep2024","coinMinimalDenom":"y:uatom:30Sep2024","coinDecimals":6},{"coinDenom":"yATOM31Dec2024","coinMinimalDenom":"y:uatom:31Dec2024","coinDecimals":6},{"coinDenom":"yATOM31Mar2025","coinMinimalDenom":"y:uatom:31Mar2025","coinDecimals":6},{"coinDenom":"yATOM31Dec2025","coinMinimalDenom":"y:uatom:31Dec2025","coinDecimals":6},{"coinDenom":"yATOM31Dec2026","coinMinimalDenom":"y:uatom:31Dec2026","coinDecimals":6},{"coinDenom":"yOSMO30Sep2024","coinMinimalDenom":"y:uosmo:30Sep2024","coinDecimals":6},{"coinDenom":"yOSMO31Dec2024","coinMinimalDenom":"y:uosmo:31Dec2024","coinDecimals":6},{"coinDenom":"yOSMO31Mar2025","coinMinimalDenom":"y:uosmo:31Mar2025","coinDecimals":6},{"coinDenom":"yOSMO31Dec2025","coinMinimalDenom":"y:uosmo:31Dec2025","coinDecimals":6},{"coinDenom":"yOSMO31Dec2026","coinMinimalDenom":"y:uosmo:31Dec2026","coinDecimals":6},{"coinDenom":"yINJ30Sep2024","coinMinimalDenom":"y:inj:30Sep2024","coinDecimals":18},{"coinDenom":"yINJ31Dec2024","coinMinimalDenom":"y:inj:31Dec2024","coinDecimals":18},{"coinDenom":"yINJ31Mar2025","coinMinimalDenom":"y:inj:31Mar2025","coinDecimals":18},{"coinDenom":"yINJ31Dec2025","coinMinimalDenom":"y:inj:31Dec2025","coinDecimals":18},{"coinDenom":"yINJ31Dec2026","coinMinimalDenom":"y:inj:31Dec2026","coinDecimals":18},{"coinDenom":"yLUNA30Sep2024","coinMinimalDenom":"y:uluna:30Sep2024","coinDecimals":6},{"coinDenom":"yLUNA31Dec2024","coinMinimalDenom":"y:uluna:31Dec2024","coinDecimals":6},{"coinDenom":"yLUNA31Mar2025","coinMinimalDenom":"y:uluna:31Mar2025","coinDecimals":6},{"coinDenom":"yLUNA31Dec2025","coinMinimalDenom":"y:uluna:31Dec2025","coinDecimals":6},{"coinDenom":"yLUNA31Dec2026","coinMinimalDenom":"y:uluna:31Dec2026","coinDecimals":6},{"coinDenom":"yAUUU30Sep2024","coinMinimalDenom":"y:uauuu:30Sep2024","coinDecimals":6},{"coinDenom":"yAUUU31Dec2024","coinMinimalDenom":"y:uauuu:31Dec2024","coinDecimals":6},{"coinDenom":"yAUUU31Dec2025","coinMinimalDenom":"y:uauuu:31Dec2025","coinDecimals":6},{"coinDenom":"yAUUU31Dec2026","coinMinimalDenom":"y:uauuu:31Dec2026","coinDecimals":6},{"coinDenom":"ystTIA30Sep2024","coinMinimalDenom":"y:stutia:30Sep2024","coinDecimals":6},{"coinDenom":"ystTIA31Dec2024","coinMinimalDenom":"y:stutia:31Dec2024","coinDecimals":6},{"coinDenom":"ystTIA31Mar2025","coinMinimalDenom":"y:stutia:31Mar2025","coinDecimals":6},{"coinDenom":"ystTIA31Dec2025","coinMinimalDenom":"y:stutia:31Dec2025","coinDecimals":6},{"coinDenom":"ystTIA31Dec2026","coinMinimalDenom":"y:stutia:31Dec2026","coinDecimals":6},{"coinDenom":"ystDYDX30Sep2024","coinMinimalDenom":"y:stadydx:30Sep2024","coinDecimals":18},{"coinDenom":"ystDYDX31Dec2024","coinMinimalDenom":"y:stadydx:31Dec2024","coinDecimals":18},{"coinDenom":"ystDYDX31Mar2025","coinMinimalDenom":"y:stadydx:31Mar2025","coinDecimals":6},{"coinDenom":"ystDYDX31Dec2025","coinMinimalDenom":"y:stadydx:31Dec2025","coinDecimals":18},{"coinDenom":"ystDYDX31Dec2026","coinMinimalDenom":"y:stadydx:31Dec2026","coinDecimals":18},{"coinDenom":"ydATOM31Dec2024","coinMinimalDenom":"y:udatom:31Dec2024","coinDecimals":6},{"coinDenom":"ydATOM31Mar2025","coinMinimalDenom":"y:udatom:31Mar2025","coinDecimals":6},{"coinDenom":"ydATOM30Jun2025","coinMinimalDenom":"y:udatom:30Jun2025","coinDecimals":6},{"coinDenom":"ydATOM31Dec2025","coinMinimalDenom":"y:udatom:31Dec2025","coinDecimals":6},{"coinDenom":"ydATOM31Dec2026","coinMinimalDenom":"y:udatom:31Dec2026","coinDecimals":6},{"coinDenom":"yTIA31Dec2024","coinMinimalDenom":"y:utia:31Dec2024","coinDecimals":6},{"coinDenom":"yTIA31Mar2025","coinMinimalDenom":"y:utia:31Mar2025","coinDecimals":6},{"coinDenom":"yTIA31Dec2025","coinMinimalDenom":"y:utia:31Dec2025","coinDecimals":6},{"coinDenom":"yTIA31Dec2026","coinMinimalDenom":"y:utia:31Dec2026","coinDecimals":6},{"coinDenom":"lp:6:usdc.axl-usdc","coinMinimalDenom":"lp:6:uusdc.axl-uusdc","coinDecimals":6},{"coinDenom":"lp:0:atom","coinMinimalDenom":"lp:0:uatom","coinDecimals":6},{"coinDenom":"lp:2:atomypt-atom","coinMinimalDenom":"lp:2:uatomypt-uatom","coinDecimals":6},{"coinDenom":"lp:3:atom-usdc","coinMinimalDenom":"lp:3:uatom-uusdc","coinDecimals":6},{"coinDenom":"lp:1:INJ","coinMinimalDenom":"lp:1:inj","coinDecimals":18},{"coinDenom":"lp:4:INJypt-INJ","coinMinimalDenom":"lp:4:injypt-inj","coinDecimals":18},{"coinDenom":"lp:5:INJ-usdc","coinMinimalDenom":"lp:5:inj-uusdc","coinDecimals":18},{"coinDenom":"lp:8:osmo","coinMinimalDenom":"lp:8:uosmo","coinDecimals":6},{"coinDenom":"lp:10:osmoypt-osmo","coinMinimalDenom":"lp:10:uosmoypt-uosmo","coinDecimals":6},{"coinDenom":"lp:11:osmo-usdc","coinMinimalDenom":"lp:11:uosmo-uusdc","coinDecimals":6},{"coinDenom":"lp:9:luna","coinMinimalDenom":"lp:9:uluna","coinDecimals":6},{"coinDenom":"lp:12:lunaypt-luna","coinMinimalDenom":"lp:12:ulunaypt-uluna","coinDecimals":6},{"coinDenom":"lp:13:luna-usdc","coinMinimalDenom":"lp:13:uluna-uusdc","coinDecimals":6},{"coinDenom":"lp:14:auuu","coinMinimalDenom":"lp:14:uauuu","coinDecimals":6},{"coinDenom":"lp:17:auuuypt-auuu","coinMinimalDenom":"lp:17:uauuuypt-uauuu","coinDecimals":6},{"coinDenom":"lp:7:auuu-usdc","coinMinimalDenom":"lp:7:uauuu-uusdc","coinDecimals":6},{"coinDenom":"lp:15:stdydx","coinMinimalDenom":"lp:15:stadydx","coinDecimals":18},{"coinDenom":"lp:18:stdydxypt-dydx","coinMinimalDenom":"lp:18:stadydxypt-adydx","coinDecimals":18},{"coinDenom":"lp:19:dydx-usdc","coinMinimalDenom":"lp:19:adydx-uusdc","coinDecimals":18},{"coinDenom":"lp:16:sttia","coinMinimalDenom":"lp:16:stutia","coinDecimals":6},{"coinDenom":"lp:20:sttiaypt-tia","coinMinimalDenom":"lp:20:stutiaypt-utia","coinDecimals":6},{"coinDenom":"lp:24:tia","coinMinimalDenom":"lp:24:utia","coinDecimals":6},{"coinDenom":"lp:25:tiaypt-tia","coinMinimalDenom":"lp:25:utiaypt-utia","coinDecimals":6},{"coinDenom":"lp:21:tia-usdc","coinMinimalDenom":"lp:21:utia-uusdc","coinDecimals":6},{"coinDenom":"lp:22:datom","coinMinimalDenom":"lp:22:udatom","coinDecimals":6},{"coinDenom":"lp:23:datomypt-atom","coinMinimalDenom":"lp:23:udatomypt-uatom","coinDecimals":6}],"rest":"https://api.pryzm.zone","rpc":"https://rpc.pryzm.zone","bech32Config":{"bech32PrefixAccAddr":"pryzm","bech32PrefixAccPub":"pryzmpub","bech32PrefixValAddr":"pryzmvaloper","bech32PrefixValPub":"pryzmvaloperpub","bech32PrefixConsAddr":"pryzmvalcons","bech32PrefixConsPub":"pryzmvalconspub"},"chainName":"pryzm","feeCurrencies":[{"coinDenom":"atom","coinMinimalDenom":"ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.003,"high":0.004}},{"coinDenom":"INJ","coinMinimalDenom":"ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255","coinDecimals":18,"gasPriceStep":{"low":500000000,"average":600000000,"high":700000000}},{"coinDenom":"osmo","coinMinimalDenom":"ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.04}},{"coinDenom":"tia","coinMinimalDenom":"ibc/BF28D9C17E0306B194D50F51C3B2590BEAD15E04E03ADD34C3A26E62D85C9676","coinDecimals":6,"gasPriceStep":{"low":0.002,"average":0.003,"high":0.004}},{"coinDenom":"luna","coinMinimalDenom":"ibc/B8AF5D92165F35AB31F3FC7C7B444B9D240760FA5D406C49D24862BD0284E395","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.02,"high":0.03}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.03,"high":0.04}},{"coinDenom":"auuu","coinMinimalDenom":"factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.015,"high":0.02}},{"coinDenom":"dydx","coinMinimalDenom":"ibc/F8CA5236869F819BC006EEF088E67889A26E4140339757878F0F4E229CDDA858","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":12000000000,"high":14000000000}},{"coinDenom":"stTIA","coinMinimalDenom":"ibc/FA78980867B7E87F382CDA00275C55DDC248CABC7DEE27AC6868CCF97DD5E02F","coinDecimals":6,"gasPriceStep":{"low":0.002,"average":0.003,"high":0.004}},{"coinDenom":"stDYDX","coinMinimalDenom":"ibc/120DC39B61CC121E91525C1D51624E41BBE74C537D7B0BE50BBFF9A00E37B6EE","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":12000000000,"high":14000000000}},{"coinDenom":"dATOM","coinMinimalDenom":"ibc/EA6E1E8BA2EB9F681C4BD12C8C81A46530A62934F2BD561B120A00F46946CE87","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.003,"high":0.004}}],"stakeCurrency":{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"PUNDIX","currencies":[{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78","coinDecimals":18},{"coinDenom":"PURSE","coinMinimalDenom":"bsc0x29a63F4B209C29B4DC47f06FFA896F32667DAD2C","coinDecimals":18}],"rest":"https://px-rest.pundix.com","rpc":"https://px-json.pundix.com","bech32Config":{"bech32PrefixAccAddr":"px","bech32PrefixAccPub":"pxpub","bech32PrefixValAddr":"pxvaloper","bech32PrefixValPub":"pxvaloperpub","bech32PrefixConsAddr":"pxvalcons","bech32PrefixConsPub":"pxvalconspub"},"chainName":"pundix","feeCurrencies":[{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78","coinDecimals":18,"gasPriceStep":{"low":2000000000000,"average":2500000000000,"high":3000000000000}}],"stakeCurrency":{"coinDenom":"PUNDIX","coinMinimalDenom":"ibc/55367B7B6572631B78A93C66EF9FDFCE87CDE372CC4ED7848DA78C1EB1DCDD78","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"pylons-mainnet-1","currencies":[{"coinDenom":"rock","coinMinimalDenom":"ubedrock","coinDecimals":6}],"rest":"https://rest.nodejumper.io/pylons","rpc":"https://rpc.nodejumper.io:443/pylons","bech32Config":{"bech32PrefixAccAddr":"pylo","bech32PrefixAccPub":"pylopub","bech32PrefixValAddr":"pylovaloper","bech32PrefixValPub":"pylovaloperpub","bech32PrefixConsAddr":"pylovalcons","bech32PrefixConsPub":"pylovalconspub"},"chainName":"pylons","feeCurrencies":[{"coinDenom":"rock","coinMinimalDenom":"ubedrock","coinDecimals":6}],"stakeCurrency":{"coinDenom":"rock","coinMinimalDenom":"ubedrock","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"qfs-1","currencies":[{"coinDenom":"qfs","coinMinimalDenom":"qfs","coinDecimals":0}],"rest":"https://lcd.qfsone.com","rpc":"https://rcp.qfsone.com","bech32Config":{"bech32PrefixAccAddr":"qfs","bech32PrefixAccPub":"qfspub","bech32PrefixValAddr":"qfsvaloper","bech32PrefixValPub":"qfsvaloperpub","bech32PrefixConsAddr":"qfsvalcons","bech32PrefixConsPub":"qfsvalconspub"},"chainName":"qfs","feeCurrencies":[{"coinDenom":"qfs","coinMinimalDenom":"qfs","coinDecimals":0,"gasPriceStep":{"low":0.000001,"average":0.000005,"high":0.0001}}],"stakeCurrency":{"coinDenom":"qfs","coinMinimalDenom":"qfs","coinDecimals":0},"bip44":{"coinType":1179993431}},{"chainId":"quasar-1","currencies":[{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A","coinDecimals":6}],"rest":"https://rest.lavenderfive.com:443/quasar","rpc":"https://rpc.lavenderfive.com:443/quasar","bech32Config":{"bech32PrefixAccAddr":"quasar","bech32PrefixAccPub":"quasarpub","bech32PrefixValAddr":"quasarvaloper","bech32PrefixValPub":"quasarvaloperpub","bech32PrefixConsAddr":"quasarvalcons","bech32PrefixConsPub":"quasarvalconspub"},"chainName":"quasar","feeCurrencies":[{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.3}},{"coinDenom":"osmo","coinMinimalDenom":"ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"atom","coinMinimalDenom":"ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"quicksilver-2","currencies":[{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6},{"coinDenom":"qstars","coinMinimalDenom":"uqstars","coinDecimals":6},{"coinDenom":"qatom","coinMinimalDenom":"uqatom","coinDecimals":6},{"coinDenom":"qregen","coinMinimalDenom":"uqregen","coinDecimals":6},{"coinDenom":"qosmo","coinMinimalDenom":"uqosmo","coinDecimals":6},{"coinDenom":"qsomm","coinMinimalDenom":"uqsomm","coinDecimals":6},{"coinDenom":"qjuno","coinMinimalDenom":"uqjuno","coinDecimals":6},{"coinDenom":"qdydx","coinMinimalDenom":"aqdydx","coinDecimals":18},{"coinDenom":"qsaga","coinMinimalDenom":"uqsaga","coinDecimals":6},{"coinDenom":"qbld","coinMinimalDenom":"uqbld","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/5666A86DCC869C75F69A7938AD6DCFECAC4A09C73522599E7A85B10143E5FBD2","coinDecimals":6}],"rest":"https://api-quicksilver.takeshi.team:443","rpc":"https://rpc-quicksilver.takeshi.team:443","bech32Config":{"bech32PrefixAccAddr":"quick","bech32PrefixAccPub":"quickpub","bech32PrefixValAddr":"quickvaloper","bech32PrefixValPub":"quickvaloperpub","bech32PrefixConsAddr":"quickvalcons","bech32PrefixConsPub":"quickvalconspub"},"chainName":"quicksilver","feeCurrencies":[{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.00025}}],"stakeCurrency":{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"qwoyn-1","currencies":[{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6}],"rest":"https://rest-qwoyn.theamsolutions.info:443","rpc":"https://rpc.qwoyn.studio:443","bech32Config":{"bech32PrefixAccAddr":"qwoyn","bech32PrefixAccPub":"qwoynpub","bech32PrefixValAddr":"qwoynvaloper","bech32PrefixValPub":"qwoynvaloperpub","bech32PrefixConsAddr":"qwoynvalcons","bech32PrefixConsPub":"qwoynvalconspub"},"chainName":"qwoyn","feeCurrencies":[{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.05,"high":0.075}}],"stakeCurrency":{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"realionetwork_3301-1","currencies":[{"coinDenom":"rio","coinMinimalDenom":"ario","coinDecimals":18},{"coinDenom":"rst","coinMinimalDenom":"arst","coinDecimals":18}],"rest":"https://realio-api.genznodes.dev","rpc":"https://realio-rpc.genznodes.dev","bech32Config":{"bech32PrefixAccAddr":"realio","bech32PrefixAccPub":"realiopub","bech32PrefixValAddr":"realiovaloper","bech32PrefixValPub":"realiovaloperpub","bech32PrefixConsAddr":"realiovalcons","bech32PrefixConsPub":"realiovalconspub"},"chainName":"realio","feeCurrencies":[{"coinDenom":"rio","coinMinimalDenom":"ario","coinDecimals":18,"gasPriceStep":{"low":4000000000,"average":5000000000,"high":8000000000}}],"stakeCurrency":{"coinDenom":"rio","coinMinimalDenom":"ario","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"reb_1111-1","currencies":[{"coinDenom":"rebus","coinMinimalDenom":"arebus","coinDecimals":18}],"rest":"https://api.rebuschain.com:1317/","rpc":"https://api.rebuschain.com:26657/","bech32Config":{"bech32PrefixAccAddr":"rebus","bech32PrefixAccPub":"rebuspub","bech32PrefixValAddr":"rebusvaloper","bech32PrefixValPub":"rebusvaloperpub","bech32PrefixConsAddr":"rebusvalcons","bech32PrefixConsPub":"rebusvalconspub"},"chainName":"rebus","feeCurrencies":[{"coinDenom":"rebus","coinMinimalDenom":"arebus","coinDecimals":18,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"rebus","coinMinimalDenom":"arebus","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"regen-1","currencies":[{"coinDenom":"regen","coinMinimalDenom":"uregen","coinDecimals":6},{"coinDenom":"nct","coinMinimalDenom":"eco.uC.NCT","coinDecimals":6}],"rest":"http://public-rpc.regen.vitwit.com:1317","rpc":"https://rpc-regen.ecostake.com","bech32Config":{"bech32PrefixAccAddr":"regen","bech32PrefixAccPub":"regenpub","bech32PrefixValAddr":"regenvaloper","bech32PrefixValPub":"regenvaloperpub","bech32PrefixConsAddr":"regenvalcons","bech32PrefixConsPub":"regenvalconspub"},"chainName":"regen","feeCurrencies":[{"coinDenom":"regen","coinMinimalDenom":"uregen","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"regen","coinMinimalDenom":"uregen","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"titan-1","currencies":[{"coinDenom":"atolo","coinMinimalDenom":"uatolo","coinDecimals":6}],"rest":"https://restapi.rizon.world/","rpc":"https://rpcapi.rizon.world/","bech32Config":{"bech32PrefixAccAddr":"rizon","bech32PrefixAccPub":"rizonpub","bech32PrefixValAddr":"rizonvaloper","bech32PrefixValPub":"rizonvaloperpub","bech32PrefixConsAddr":"rizonvalcons","bech32PrefixConsPub":"rizonvalconspub"},"chainName":"rizon","feeCurrencies":[{"coinDenom":"atolo","coinMinimalDenom":"uatolo","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.035}}],"stakeCurrency":{"coinDenom":"atolo","coinMinimalDenom":"uatolo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"router_9600-1","currencies":[{"coinDenom":"ROUTE","coinMinimalDenom":"route","coinDecimals":18}],"rest":"https://sentry.lcd.routerprotocol.com/","rpc":"https://sentry.tm.rpc.routerprotocol.com/","bech32Config":{"bech32PrefixAccAddr":"router","bech32PrefixAccPub":"routerpub","bech32PrefixValAddr":"routervaloper","bech32PrefixValPub":"routervaloperpub","bech32PrefixConsAddr":"routervalcons","bech32PrefixConsPub":"routervalconspub"},"chainName":"routerchain","feeCurrencies":[{"coinDenom":"ROUTE","coinMinimalDenom":"route","coinDecimals":18,"gasPriceStep":{"low":7,"average":7,"high":10}}],"stakeCurrency":{"coinDenom":"ROUTE","coinMinimalDenom":"route","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"ssc-1","currencies":[{"coinDenom":"saga","coinMinimalDenom":"usaga","coinDecimals":6}],"rest":"https://saga-mainnet-lcd.autostake.com:443","rpc":"https://rpc-saga.keplr.app","bech32Config":{"bech32PrefixAccAddr":"saga","bech32PrefixAccPub":"sagapub","bech32PrefixValAddr":"sagavaloper","bech32PrefixValPub":"sagavaloperpub","bech32PrefixConsAddr":"sagavalcons","bech32PrefixConsPub":"sagavalconspub"},"chainName":"saga","feeCurrencies":[{"coinDenom":"saga","coinMinimalDenom":"usaga","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"saga","coinMinimalDenom":"usaga","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"scorum-1","currencies":[{"coinDenom":"scr","coinMinimalDenom":"nscr","coinDecimals":9},{"coinDenom":"gas","coinMinimalDenom":"gas","coinDecimals":0}],"rest":"https://scorum-blockchain-mainnet-api.scorum.com","rpc":"https://scorum-blockchain-mainnet-rpc.scorum.com","bech32Config":{"bech32PrefixAccAddr":"scorum","bech32PrefixAccPub":"scorumpub","bech32PrefixValAddr":"scorumvaloper","bech32PrefixValPub":"scorumvaloperpub","bech32PrefixConsAddr":"scorumvalcons","bech32PrefixConsPub":"scorumvalconspub"},"chainName":"scorum","feeCurrencies":[{"coinDenom":"gas","coinMinimalDenom":"gas","coinDecimals":0,"gasPriceStep":{"low":1,"average":1,"high":1}}],"stakeCurrency":{"coinDenom":"scr","coinMinimalDenom":"nscr","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"secret-4","currencies":[{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6},{"coinDenom":"sienna","coinMinimalDenom":"cw20:secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4","coinDecimals":18},{"coinDenom":"shd","coinMinimalDenom":"cw20:secret1qfql357amn448duf5gvp9gr48sxx9tsnhupu3d","coinDecimals":8},{"coinDenom":"shd","coinMinimalDenom":"cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm","coinDecimals":8},{"coinDenom":"silk","coinMinimalDenom":"cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd","coinDecimals":6},{"coinDenom":"stkd-scrt","coinMinimalDenom":"cw20:secret1k6u0cy4feepm6pehnz804zmwakuwdapm69tuc4","coinDecimals":6},{"coinDenom":"butt","coinMinimalDenom":"cw20:secret1yxcexylwyxlq58umhgsjgstgcg2a0ytfy4d9lt","coinDecimals":6},{"coinDenom":"alter","coinMinimalDenom":"cw20:secret12rcvz0umvk875kd6a803txhtlu7y0pnd73kcej","coinDecimals":6},{"coinDenom":"amber","coinMinimalDenom":"cw20:secret1s09x2xvfd2lp2skgzm29w2xtena7s8fq98v852","coinDecimals":6},{"coinDenom":"shill","coinMinimalDenom":"cw20:secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse","coinDecimals":6}],"rest":"https://rest.lavenderfive.com:443/secretnetwork","rpc":"https://scrt.public-rpc.com","bech32Config":{"bech32PrefixAccAddr":"secret","bech32PrefixAccPub":"secretpub","bech32PrefixValAddr":"secretvaloper","bech32PrefixValPub":"secretvaloperpub","bech32PrefixConsAddr":"secretvalcons","bech32PrefixConsPub":"secretvalconspub"},"chainName":"secretnetwork","feeCurrencies":[{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.1,"high":0.25}}],"stakeCurrency":{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6},"bip44":{"coinType":529}},{"chainId":"seda-1","currencies":[{"coinDenom":"seda","coinMinimalDenom":"aseda","coinDecimals":18}],"rest":"https://lcd.mainnet.seda.xyz/","rpc":"https://rpc.mainnet.seda.xyz/","bech32Config":{"bech32PrefixAccAddr":"seda","bech32PrefixAccPub":"sedapub","bech32PrefixValAddr":"sedavaloper","bech32PrefixValPub":"sedavaloperpub","bech32PrefixConsAddr":"sedavalcons","bech32PrefixConsPub":"sedavalconspub"},"chainName":"seda","feeCurrencies":[{"coinDenom":"seda","coinMinimalDenom":"aseda","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":10000000000,"high":14000000000}}],"stakeCurrency":{"coinDenom":"seda","coinMinimalDenom":"aseda","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"pacific-1","currencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6},{"coinDenom":"oin","coinMinimalDenom":"factory/sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w/OIN","coinDecimals":6},{"coinDenom":"ampSEI","coinMinimalDenom":"factory/sei1x2fgaaqecvk8kwuqkjqcj27clw5p5g99uawdzy9sc4rku8avumcq3cky4k/ampSEI","coinDecimals":6},{"coinDenom":"popeye","coinMinimalDenom":"factory/sei1fl8pg59wfsgw2wp4aruk38zqccfnc2g8ptrm24/popeye","coinDecimals":6},{"coinDenom":"sensei","coinMinimalDenom":"factory/sei1ta5rkr6y2qlkj7px8w2cvear7m2822q4f4ea0m/sensei","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/B023C57727A38A9CF87238F9008477C3761AD4774D528BFA458DD707D90B553A","coinDecimals":6},{"coinDenom":"oozaru","coinMinimalDenom":"sei1wlf9j5uv50rcg0u5j6xk00px5tflptzprj39keck27eg8g7qd7hqq6kvda","coinDecimals":6},{"coinDenom":"SEIYAN","coinMinimalDenom":"cw20:sei1hrndqntlvtmx2kepr0zsfgr7nzjptcc72cr4ppk4yav58vvy7v3s4er8ed","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"ibc/063F4461F7317CFF10F50AB044E44932D22AAD84FA7107082744946E6DB7B7A8","coinDecimals":6}],"rest":"https://rest.sei-apis.com","rpc":"https://rpc.sei-apis.com","bech32Config":{"bech32PrefixAccAddr":"sei","bech32PrefixAccPub":"seipub","bech32PrefixValAddr":"seivaloper","bech32PrefixValPub":"seivaloperpub","bech32PrefixConsAddr":"seivalcons","bech32PrefixConsPub":"seivalconspub"},"chainName":"sei","feeCurrencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.02,"high":0.04}}],"stakeCurrency":{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"self-1","currencies":[{"coinDenom":"slf","coinMinimalDenom":"uslf","coinDecimals":6}],"rest":"https://api.selfchain.io","rpc":"https://rpc.selfchain.io:26657","bech32Config":{"bech32PrefixAccAddr":"self","bech32PrefixAccPub":"selfpub","bech32PrefixValAddr":"selfvaloper","bech32PrefixValPub":"selfvaloperpub","bech32PrefixConsAddr":"selfvalcons","bech32PrefixConsPub":"selfvalconspub"},"chainName":"self","feeCurrencies":[{"coinDenom":"slf","coinMinimalDenom":"uslf","coinDecimals":6,"gasPriceStep":{"low":0.005,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"slf","coinMinimalDenom":"uslf","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sentinelhub-2","currencies":[{"coinDenom":"dvpn","coinMinimalDenom":"udvpn","coinDecimals":6}],"rest":"https://api-sentinel.busurnode.com","rpc":"https://rpc-sentinel.busurnode.com","bech32Config":{"bech32PrefixAccAddr":"sent","bech32PrefixAccPub":"sentpub","bech32PrefixValAddr":"sentvaloper","bech32PrefixValPub":"sentvaloperpub","bech32PrefixConsAddr":"sentvalcons","bech32PrefixConsPub":"sentvalconspub"},"chainName":"sentinel","feeCurrencies":[{"coinDenom":"dvpn","coinMinimalDenom":"udvpn","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.4}}],"stakeCurrency":{"coinDenom":"dvpn","coinMinimalDenom":"udvpn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sgenet-1","currencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"rest":"https://rest.lavenderfive.com:443/sge","rpc":"https://rpc.lavenderfive.com:443/sge","bech32Config":{"bech32PrefixAccAddr":"sge","bech32PrefixAccPub":"sgepub","bech32PrefixValAddr":"sgevaloper","bech32PrefixValPub":"sgevaloperpub","bech32PrefixConsAddr":"sgevalcons","bech32PrefixConsPub":"sgevalconspub"},"chainName":"sge","feeCurrencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.25,"high":0.5}}],"stakeCurrency":{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"ShareRing-VoyagerNet","currencies":[{"coinDenom":"shr","coinMinimalDenom":"nshr","coinDecimals":9}],"rest":"https://lcd.explorer.shareri.ng/","rpc":"https://rpc.explorer.shareri.ng","bech32Config":{"bech32PrefixAccAddr":"shareledger","bech32PrefixAccPub":"shareledgerpub","bech32PrefixValAddr":"shareledgervaloper","bech32PrefixValPub":"shareledgervaloperpub","bech32PrefixConsAddr":"shareledgervalcons","bech32PrefixConsPub":"shareledgervalconspub"},"chainName":"shareledger","feeCurrencies":[{"coinDenom":"shr","coinMinimalDenom":"nshr","coinDecimals":9,"gasPriceStep":{"low":2000,"average":3000,"high":4000}}],"stakeCurrency":{"coinDenom":"shr","coinMinimalDenom":"nshr","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"shentu-2.2","currencies":[{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6}],"rest":"https://rest.shentu.org/","rpc":"https://rpc.shentu.org:443","bech32Config":{"bech32PrefixAccAddr":"shentu","bech32PrefixAccPub":"shentupub","bech32PrefixValAddr":"shentuvaloper","bech32PrefixValPub":"shentuvaloperpub","bech32PrefixConsAddr":"shentuvalcons","bech32PrefixConsPub":"shentuvalconspub"},"chainName":"shentu","feeCurrencies":[{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"shido_9008-1","currencies":[{"coinDenom":"SHIDO","coinMinimalDenom":"shido","coinDecimals":18}],"rest":"https://swagger.shidoscan.com","rpc":"https://tendermint.shidoscan.com","bech32Config":{"bech32PrefixAccAddr":"shido","bech32PrefixAccPub":"shidopub","bech32PrefixValAddr":"shidovaloper","bech32PrefixValPub":"shidovaloperpub","bech32PrefixConsAddr":"shidovalcons","bech32PrefixConsPub":"shidovalconspub"},"chainName":"shido","feeCurrencies":[{"coinDenom":"SHIDO","coinMinimalDenom":"shido","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"SHIDO","coinMinimalDenom":"shido","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"sifchain-1","currencies":[{"coinDenom":"ROWAN","coinMinimalDenom":"rowan","coinDecimals":18}],"rest":"https://api-sifchain-ia.cosmosia.notional.ventures/","rpc":"https://sifchain-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"sif","bech32PrefixAccPub":"sifpub","bech32PrefixValAddr":"sifvaloper","bech32PrefixValPub":"sifvaloperpub","bech32PrefixConsAddr":"sifvalcons","bech32PrefixConsPub":"sifvalconspub"},"chainName":"sifchain","feeCurrencies":[{"coinDenom":"ROWAN","coinMinimalDenom":"rowan","coinDecimals":18,"gasPriceStep":{"low":1000000000000,"average":1500000000000,"high":2000000000000}}],"stakeCurrency":{"coinDenom":"ROWAN","coinMinimalDenom":"rowan","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"sixnet","currencies":[{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6}],"rest":"https://sixnet-api.sixprotocol.net:443","rpc":"https://sixnet-rpc.sixprotocol.net:443","bech32Config":{"bech32PrefixAccAddr":"6x","bech32PrefixAccPub":"6xpub","bech32PrefixValAddr":"6xvaloper","bech32PrefixValPub":"6xvaloperpub","bech32PrefixConsAddr":"6xvalcons","bech32PrefixConsPub":"6xvalconspub"},"chainName":"six","feeCurrencies":[{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6,"gasPriceStep":{"low":1.25,"average":1.5,"high":1.75}}],"stakeCurrency":{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sommelier-3","currencies":[{"coinDenom":"somm","coinMinimalDenom":"usomm","coinDecimals":6}],"rest":"https://api-sommelier.pupmos.network","rpc":"https://sommelier-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"somm","bech32PrefixAccPub":"sommpub","bech32PrefixValAddr":"sommvaloper","bech32PrefixValPub":"sommvaloperpub","bech32PrefixConsAddr":"sommvalcons","bech32PrefixConsPub":"sommvalconspub"},"chainName":"sommelier","feeCurrencies":[{"coinDenom":"somm","coinMinimalDenom":"usomm","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"somm","coinMinimalDenom":"usomm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"source-1","currencies":[{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6},{"coinDenom":"srcx","coinMinimalDenom":"ibc/FC5A7360EEED0713AE3E83E9D55A69AF873056A172AC495890ACE4582FF9685A","coinDecimals":9}],"rest":"https://api.source.nodestake.org","rpc":"https://rpc.source.nodestake.org","bech32Config":{"bech32PrefixAccAddr":"source","bech32PrefixAccPub":"sourcepub","bech32PrefixValAddr":"sourcevaloper","bech32PrefixValPub":"sourcevaloperpub","bech32PrefixConsAddr":"sourcevalcons","bech32PrefixConsPub":"sourcevalconspub"},"chainName":"source","feeCurrencies":[{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.075,"high":0.1}}],"stakeCurrency":{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"stafihub-1","currencies":[{"coinDenom":"fis","coinMinimalDenom":"ufis","coinDecimals":6},{"coinDenom":"ratom","coinMinimalDenom":"uratom","coinDecimals":6},{"coinDenom":"riris","coinMinimalDenom":"uriris","coinDecimals":6},{"coinDenom":"rhuahua","coinMinimalDenom":"urhuahua","coinDecimals":6},{"coinDenom":"rswth","coinMinimalDenom":"urswth","coinDecimals":8}],"rest":"https://public-rest-rpc1.stafihub.io","rpc":"https://public-rpc1.stafihub.io:443","bech32Config":{"bech32PrefixAccAddr":"stafi","bech32PrefixAccPub":"stafipub","bech32PrefixValAddr":"stafivaloper","bech32PrefixValPub":"stafivaloperpub","bech32PrefixConsAddr":"stafivalcons","bech32PrefixConsPub":"stafivalconspub"},"chainName":"stafihub","feeCurrencies":[{"coinDenom":"fis","coinMinimalDenom":"ufis","coinDecimals":6}],"stakeCurrency":{"coinDenom":"fis","coinMinimalDenom":"ufis","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"stargaze-1","currencies":[{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6},{"coinDenom":"strdst","coinMinimalDenom":"factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust","coinDecimals":6},{"coinDenom":"GAZE","coinMinimalDenom":"factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/mGAZE","coinDecimals":6},{"coinDenom":"BRNCH","coinMinimalDenom":"factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uBRNCH","coinDecimals":6},{"coinDenom":"OHH","coinMinimalDenom":"factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uOHH","coinDecimals":6},{"coinDenom":"sneaky","coinMinimalDenom":"factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky","coinDecimals":6},{"coinDenom":"LAB","coinMinimalDenom":"ibc/93B1AE0AD5E88242745B245064A2A51DDA1319C18176A966D5F8F9E02ED5373E","coinDecimals":6},{"coinDenom":"CDT","coinMinimalDenom":"ibc/B0263C28B6F44651F4596413B41FDB749EA010BD1220816DAC0ABF9947C1E806","coinDecimals":6},{"coinDenom":"MBRN","coinMinimalDenom":"ibc/E94BB144B818CB8061F43E202BEA1E9273B87D6326C8C6F4E6AE71C62FD37854","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"ibc/C9C8D88917374F27F03CBCEAF4F1B85F45A62F9F2316CBAADAAC5FDB3675DD3F","coinDecimals":6},{"coinDenom":"PLEB","coinMinimalDenom":"factory/stars1k7qsxdxh8calmt4txk75e6hdntefslegwddqnlwjjqgjkmcfqy0qa97sn8/pleb","coinDecimals":6},{"coinDenom":"KINGSHIT","coinMinimalDenom":"factory/stars133a6mnkp9d3pkt48y699hy0tvq5xngpz7cwak0qr4suq0cj9zpfslvt0em/kingshit","coinDecimals":6},{"coinDenom":"BOTZ","coinMinimalDenom":"factory/stars132jrwxjps93usq3ejy7cq6qqc7j3gtx3mu8jhaj5nnk3p0ste2ssqsndvj/botz","coinDecimals":6},{"coinDenom":"COCKS","coinMinimalDenom":"factory/stars14mfk0sd6rlajkvgpgrvfk9lfhjwmkrzvednekvcn32jzy3drjy5sfem9p7/cocks","coinDecimals":6},{"coinDenom":"XTRUMP","coinMinimalDenom":"ibc/4982C47384F003FCCB02490F92CE2F23DBEC9A7A0C1F440BDB12D24357E6703D","coinDecimals":6},{"coinDenom":"WOLFSHIT","coinMinimalDenom":"factory/stars167y92c2fe690l0lrqyk9tahpqvu97au0cmpayh3j9455r2f6f06s78emw4/wolfshit","coinDecimals":6},{"coinDenom":"VLT","coinMinimalDenom":"factory/stars1t6fyr84hn6lyjdvk3e3c697cptfn5cwat2jxqyzuvuesaypznslshy6x9v/vlt","coinDecimals":6},{"coinDenom":"OLDbglSTARS","coinMinimalDenom":"factory/stars1ur79p98rmpn456esgzjernaxy7v25mlwqsv8uhymzxahfw77427syk2h9j/bglSTARS","coinDecimals":6},{"coinDenom":"OLDbglUSDC","coinMinimalDenom":"factory/stars1ur79p98rmpn456esgzjernaxy7v25mlwqsv8uhymzxahfw77427syk2h9j/bglUSDC","coinDecimals":6},{"coinDenom":"SHITMOS","coinMinimalDenom":"ibc/8577E98BDDD2758FD5647A53563DAAC89921326F964EBF899B945ED05A66CA5F","coinDecimals":6},{"coinDenom":"ygata","coinMinimalDenom":"ibc/2A56F95E2B74AB769816403D384E2199C7BC510BFD2F8352FAC6DF0294B83EBA","coinDecimals":6},{"coinDenom":"crowdp","coinMinimalDenom":"ibc/D29FF5FFE7B9A5C6CE595FF963F7C93F2B8603586645C39B13E1D336847863C3","coinDecimals":18}],"rest":"https://rest.stargaze-apis.com/","rpc":"https://rpc.stargaze-apis.com/","bech32Config":{"bech32PrefixAccAddr":"stars","bech32PrefixAccPub":"starspub","bech32PrefixValAddr":"starsvaloper","bech32PrefixValPub":"starsvaloperpub","bech32PrefixConsAddr":"starsvalcons","bech32PrefixConsPub":"starsvalconspub"},"chainName":"stargaze","feeCurrencies":[{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6,"gasPriceStep":{"low":1,"average":1.1,"high":1.2}}],"stakeCurrency":{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"iov-mainnet-ibc","currencies":[{"coinDenom":"iov","coinMinimalDenom":"uiov","coinDecimals":6}],"rest":"https://api-starname-ia.cosmosia.notional.ventures/","rpc":"https://rpc-starname-ia.cosmosia.notional.ventures/","bech32Config":{"bech32PrefixAccAddr":"star","bech32PrefixAccPub":"starpub","bech32PrefixValAddr":"starvaloper","bech32PrefixValPub":"starvaloperpub","bech32PrefixConsAddr":"starvalcons","bech32PrefixConsPub":"starvalconspub"},"chainName":"starname","feeCurrencies":[{"coinDenom":"iov","coinMinimalDenom":"uiov","coinDecimals":6,"gasPriceStep":{"low":1,"average":2,"high":3}}],"stakeCurrency":{"coinDenom":"iov","coinMinimalDenom":"uiov","coinDecimals":6},"bip44":{"coinType":234}},{"chainId":"stratos-1","currencies":[{"coinDenom":"stos","coinMinimalDenom":"wei","coinDecimals":18}],"rest":"https://rest.thestratos.org","rpc":"https://rpc.thestratos.org","bech32Config":{"bech32PrefixAccAddr":"st","bech32PrefixAccPub":"stpub","bech32PrefixValAddr":"stvaloper","bech32PrefixValPub":"stvaloperpub","bech32PrefixConsAddr":"stvalcons","bech32PrefixConsPub":"stvalconspub"},"chainName":"stratos","feeCurrencies":[{"coinDenom":"stos","coinMinimalDenom":"wei","coinDecimals":18,"gasPriceStep":{"low":1000000000,"average":1200000000,"high":1600000000}}],"stakeCurrency":{"coinDenom":"stos","coinMinimalDenom":"wei","coinDecimals":18},"bip44":{"coinType":606}},{"chainId":"stride-1","currencies":[{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6},{"coinDenom":"statom","coinMinimalDenom":"stuatom","coinDecimals":6},{"coinDenom":"ststars","coinMinimalDenom":"stustars","coinDecimals":6},{"coinDenom":"stosmo","coinMinimalDenom":"stuosmo","coinDecimals":6},{"coinDenom":"stjuno","coinMinimalDenom":"stujuno","coinDecimals":6},{"coinDenom":"stluna","coinMinimalDenom":"stuluna","coinDecimals":6},{"coinDenom":"stINJ","coinMinimalDenom":"stinj","coinDecimals":18},{"coinDenom":"stevmos","coinMinimalDenom":"staevmos","coinDecimals":18},{"coinDenom":"stDYDX","coinMinimalDenom":"stadydx","coinDecimals":18},{"coinDenom":"stTIA","coinMinimalDenom":"stutia","coinDecimals":6},{"coinDenom":"stDYM","coinMinimalDenom":"stadym","coinDecimals":18},{"coinDenom":"stumee","coinMinimalDenom":"stuumee","coinDecimals":6},{"coinDenom":"stcmdx","coinMinimalDenom":"stucmdx","coinDecimals":6},{"coinDenom":"stsomm","coinMinimalDenom":"stusomm","coinDecimals":6},{"coinDenom":"stSAGA","coinMinimalDenom":"stusaga","coinDecimals":6},{"coinDenom":"TIA","coinMinimalDenom":"ibc/BF3B4F53F3694B66E13C23107C84B6485BD2B96296BB7EC680EA77BBA75B4801","coinDecimals":6},{"coinDenom":"stISLM","coinMinimalDenom":"staISLM","coinDecimals":18},{"coinDenom":"stBAND","coinMinimalDenom":"stuband","coinDecimals":6}],"rest":"https://stride-api.polkachu.com/","rpc":"https://stride-rpc.polkachu.com/","bech32Config":{"bech32PrefixAccAddr":"stride","bech32PrefixAccPub":"stridepub","bech32PrefixValAddr":"stridevaloper","bech32PrefixValPub":"stridevaloperpub","bech32PrefixConsAddr":"stridevalcons","bech32PrefixConsPub":"stridevalconspub"},"chainName":"stride","feeCurrencies":[{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6,"gasPriceStep":{"low":0.005,"average":0.005,"high":0.05}},{"coinDenom":"statom","coinMinimalDenom":"stuatom","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0002,"high":0.0005}},{"coinDenom":"stosmo","coinMinimalDenom":"stuosmo","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.004}},{"coinDenom":"ststars","coinMinimalDenom":"stustars","coinDecimals":6,"gasPriceStep":{"low":1,"average":1.1,"high":1.2}},{"coinDenom":"stjuno","coinMinimalDenom":"stujuno","coinDecimals":6,"gasPriceStep":{"low":0.075,"average":0.1,"high":0.125}},{"coinDenom":"stluna","coinMinimalDenom":"stuluna","coinDecimals":6,"gasPriceStep":{"low":0.0125,"average":0.015,"high":0.04}},{"coinDenom":"stevmos","coinMinimalDenom":"staevmos","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}},{"coinDenom":"stINJ","coinMinimalDenom":"stinj","coinDecimals":18,"gasPriceStep":{"low":500000000,"average":700000000,"high":900000000}},{"coinDenom":"stcmdx","coinMinimalDenom":"stucmdx","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.025,"high":0.04}},{"coinDenom":"stumee","coinMinimalDenom":"stuumee","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.12,"high":0.2}},{"coinDenom":"stTIA","coinMinimalDenom":"stutia","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}},{"coinDenom":"stDYDX","coinMinimalDenom":"stadydx","coinDecimals":18,"gasPriceStep":{"low":15000000000,"average":15000000000,"high":20000000000}},{"coinDenom":"stDYM","coinMinimalDenom":"stadym","coinDecimals":18,"gasPriceStep":{"low":15000000000,"average":15000000000,"high":20000000000}},{"coinDenom":"stSAGA","coinMinimalDenom":"stusaga","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.015,"high":0.03}},{"coinDenom":"TIA","coinMinimalDenom":"ibc/BF3B4F53F3694B66E13C23107C84B6485BD2B96296BB7EC680EA77BBA75B4801","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}}],"stakeCurrency":{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"synternet-1","currencies":[{"coinDenom":"SYNT","coinMinimalDenom":"usynt","coinDecimals":6}],"rest":"https://api.synternet.com/","rpc":"https://rpc.synternet.com/","bech32Config":{"bech32PrefixAccAddr":"synt","bech32PrefixAccPub":"syntpub","bech32PrefixValAddr":"syntvaloper","bech32PrefixValPub":"syntvaloperpub","bech32PrefixConsAddr":"syntvalcons","bech32PrefixConsPub":"syntvalconspub"},"chainName":"synternet","feeCurrencies":[{"coinDenom":"SYNT","coinMinimalDenom":"usynt","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"SYNT","coinMinimalDenom":"usynt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"taketitan-12","currencies":[{"coinDenom":"ttnc","coinMinimalDenom":"ttnc","coinDecimals":0}],"rest":"https://lcdttnc.taketitan.com","rpc":"https://rcpttnc.taketitan.com","bech32Config":{"bech32PrefixAccAddr":"taketitan","bech32PrefixAccPub":"taketitanpub","bech32PrefixValAddr":"taketitanvaloper","bech32PrefixValPub":"taketitanvaloperpub","bech32PrefixConsAddr":"taketitanvalcons","bech32PrefixConsPub":"taketitanvalconspub"},"chainName":"taketitan","feeCurrencies":[{"coinDenom":"ttnc","coinMinimalDenom":"ttnc","coinDecimals":0,"gasPriceStep":{"low":0.000001,"average":0.000005,"high":0.0001}}],"stakeCurrency":{"coinDenom":"ttnc","coinMinimalDenom":"ttnc","coinDecimals":0},"bip44":{"coinType":1179993421}},{"chainId":"tenet_1559-1","currencies":[{"coinDenom":"tenet","coinMinimalDenom":"atenet","coinDecimals":18}],"rest":"https://app.rpc.tenet.org","rpc":"https://tendermint-1.rpc.tenet.org","bech32Config":{"bech32PrefixAccAddr":"tenet","bech32PrefixAccPub":"tenetpub","bech32PrefixValAddr":"tenetvaloper","bech32PrefixValPub":"tenetvaloperpub","bech32PrefixConsAddr":"tenetvalcons","bech32PrefixConsPub":"tenetvalconspub"},"chainName":"tenet","feeCurrencies":[{"coinDenom":"tenet","coinMinimalDenom":"atenet","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"tenet","coinMinimalDenom":"atenet","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"teritori-1","currencies":[{"coinDenom":"tori","coinMinimalDenom":"utori","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/A670D9568B3E399316EEDE40C1181B7AA4BD0695F0B37513CE9B95B977DFC12E","coinDecimals":6},{"coinDenom":"kuji","coinMinimalDenom":"ibc/1FECA3491D88F4AD24DE0948ED96718CA6D93F6730CEE7708E621B953594BB5E","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9","coinDecimals":6},{"coinDenom":"scrt","coinMinimalDenom":"ibc/F3F6BDEE1A79664B169D742651107BF4E03FA67E931452E27380B75F5917B7E9","coinDecimals":6}],"rest":"https://teritori-api.polkachu.com","rpc":"https://teritori-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"tori","bech32PrefixAccPub":"toripub","bech32PrefixValAddr":"torivaloper","bech32PrefixValPub":"torivaloperpub","bech32PrefixConsAddr":"torivalcons","bech32PrefixConsPub":"torivalconspub"},"chainName":"teritori","feeCurrencies":[{"coinDenom":"tori","coinMinimalDenom":"utori","coinDecimals":6}],"stakeCurrency":{"coinDenom":"tori","coinMinimalDenom":"utori","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"morocco-1","currencies":[{"coinDenom":"terp","coinMinimalDenom":"uterp","coinDecimals":6},{"coinDenom":"thiol","coinMinimalDenom":"uthiol","coinDecimals":6}],"rest":"https://api-terp.zenchainlabs.io:443","rpc":"https://rpc-terp.zenchainlabs.io/","bech32Config":{"bech32PrefixAccAddr":"terp","bech32PrefixAccPub":"terppub","bech32PrefixValAddr":"terpvaloper","bech32PrefixValPub":"terpvaloperpub","bech32PrefixConsAddr":"terpvalcons","bech32PrefixConsPub":"terpvalconspub"},"chainName":"terpnetwork","feeCurrencies":[{"coinDenom":"thiol","coinMinimalDenom":"uthiol","coinDecimals":6}],"stakeCurrency":{"coinDenom":"terp","coinMinimalDenom":"uterp","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"columbus-5","currencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},{"coinDenom":"ust","coinMinimalDenom":"uusd","coinDecimals":6},{"coinDenom":"krt","coinMinimalDenom":"ukrw","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"cw20:terra1php5m8a6qd68z02t3zpw4jv2pj4vgw4wz0t8mz","coinDecimals":6},{"coinDenom":"bluna","coinMinimalDenom":"cw20:terra1kc87mu460fwkqte29rquh4hc20m54fxwtsx7gp","coinDecimals":6},{"coinDenom":"beth","coinMinimalDenom":"cw20:terra1dzhzukyezv0etz22ud940z7adyv7xgcjkahuun","coinDecimals":6},{"coinDenom":"aust","coinMinimalDenom":"cw20:terra1hzh9vpxhsk8253se0vv5jj6etdvxu3nv8z07zu","coinDecimals":6},{"coinDenom":"anc","coinMinimalDenom":"cw20:terra14z56l0fp2lsf86zy3hty2z47ezkhnthtr9yq76","coinDecimals":6},{"coinDenom":"mir","coinMinimalDenom":"cw20:terra15gwkyepfc6xgca5t5zefzwy42uts8l2m4g40k6","coinDecimals":6},{"coinDenom":"maapl","coinMinimalDenom":"cw20:terra1vxtwu4ehgzz77mnfwrntyrmgl64qjs75mpwqaz","coinDecimals":6},{"coinDenom":"mabnb","coinMinimalDenom":"cw20:terra1g4x2pzmkc9z3mseewxf758rllg08z3797xly0n","coinDecimals":6},{"coinDenom":"mamc","coinMinimalDenom":"cw20:terra1qelfthdanju7wavc5tq0k5r0rhsyzyyrsn09qy","coinDecimals":6},{"coinDenom":"mamd","coinMinimalDenom":"cw20:terra18ej5nsuu867fkx4tuy2aglpvqjrkcrjjslap3z","coinDecimals":6},{"coinDenom":"mamzn","coinMinimalDenom":"cw20:terra165nd2qmrtszehcfrntlplzern7zl4ahtlhd5t2","coinDecimals":6},{"coinDenom":"markk","coinMinimalDenom":"cw20:terra1qqfx5jph0rsmkur2zgzyqnfucra45rtjae5vh6","coinDecimals":6},{"coinDenom":"mbaba","coinMinimalDenom":"cw20:terra1w7zgkcyt7y4zpct9dw8mw362ywvdlydnum2awa","coinDecimals":6},{"coinDenom":"mbtc","coinMinimalDenom":"cw20:terra1rhhvx8nzfrx5fufkuft06q5marfkucdqwq5sjw","coinDecimals":6},{"coinDenom":"mcoin","coinMinimalDenom":"cw20:terra18wayjpyq28gd970qzgjfmsjj7dmgdk039duhph","coinDecimals":6},{"coinDenom":"mdis","coinMinimalDenom":"cw20:terra149755r3y0rve30e209awkhn5cxgkn5c8ju9pm5","coinDecimals":6},{"coinDenom":"mdot","coinMinimalDenom":"cw20:terra19ya4jpvjvvtggepvmmj6ftmwly3p7way0tt08r","coinDecimals":6},{"coinDenom":"meth","coinMinimalDenom":"cw20:terra1dk3g53js3034x4v5c3vavhj2738une880yu6kx","coinDecimals":6},{"coinDenom":"mfb","coinMinimalDenom":"cw20:terra1mqsjugsugfprn3cvgxsrr8akkvdxv2pzc74us7","coinDecimals":6},{"coinDenom":"mglxy","coinMinimalDenom":"cw20:terra1l5lrxtwd98ylfy09fn866au6dp76gu8ywnudls","coinDecimals":6},{"coinDenom":"mgme","coinMinimalDenom":"cw20:terra1m6j6j9gw728n82k78s0j9kq8l5p6ne0xcc820p","coinDecimals":6},{"coinDenom":"mgoogl","coinMinimalDenom":"cw20:terra1h8arz2k547uvmpxctuwush3jzc8fun4s96qgwt","coinDecimals":6},{"coinDenom":"mgs","coinMinimalDenom":"cw20:terra137drsu8gce5thf6jr5mxlfghw36rpljt3zj73v","coinDecimals":6},{"coinDenom":"mhood","coinMinimalDenom":"cw20:terra18yqdfzfhnguerz9du5mnvxsh5kxlknqhcxzjfr","coinDecimals":6},{"coinDenom":"miau","coinMinimalDenom":"cw20:terra10h7ry7apm55h4ez502dqdv9gr53juu85nkd4aq","coinDecimals":6},{"coinDenom":"miau","coinMinimalDenom":"cw20:terra15hp9pr8y4qsvqvxf3m4xeptlk7l8h60634gqec","coinDecimals":6},{"coinDenom":"mjnj","coinMinimalDenom":"cw20:terra1ptdxmj3xmmljzx02nr4auwfuelmj0cnkh8egs2","coinDecimals":6},{"coinDenom":"mko","coinMinimalDenom":"cw20:terra1qsnj5gvq8rgs7yws8x5u02gwd5wvtu4tks0hjm","coinDecimals":6},{"coinDenom":"mmsft","coinMinimalDenom":"cw20:terra1227ppwxxj3jxz8cfgq00jgnxqcny7ryenvkwj6","coinDecimals":6},{"coinDenom":"mnflx","coinMinimalDenom":"cw20:terra1jsxngqasf2zynj5kyh0tgq9mj3zksa5gk35j4k","coinDecimals":6},{"coinDenom":"mnio","coinMinimalDenom":"cw20:terra1dj2cj02zak0nvwy3uj9r9dhhxhdwxnw6psse6p","coinDecimals":6},{"coinDenom":"mnke","coinMinimalDenom":"cw20:terra17ana8hvzea0q7w367dm0dw48sxwql39qekpt7g","coinDecimals":6},{"coinDenom":"mnvda","coinMinimalDenom":"cw20:terra1drsjzvzej4h4qlehcfwclxg4w5l3h5tuvd3jd8","coinDecimals":6},{"coinDenom":"mpypl","coinMinimalDenom":"cw20:terra1rh2907984nudl7vh56qjdtvv7947z4dujj92sx","coinDecimals":6},{"coinDenom":"mqqq","coinMinimalDenom":"cw20:terra1csk6tc7pdmpr782w527hwhez6gfv632tyf72cp","coinDecimals":6},{"coinDenom":"msbux","coinMinimalDenom":"cw20:terra1246zy658dfgtausf0c4a6ly8sc2e285q4kxqga","coinDecimals":6},{"coinDenom":"mslv","coinMinimalDenom":"cw20:terra1kscs6uhrqwy6rx5kuw5lwpuqvm3t6j2d6uf2lp","coinDecimals":6},{"coinDenom":"mspy","coinMinimalDenom":"cw20:terra1aa00lpfexyycedfg5k2p60l9djcmw0ue5l8fhc","coinDecimals":6},{"coinDenom":"msq","coinMinimalDenom":"cw20:terra1u43zu5amjlsgty5j64445fr9yglhm53m576ugh","coinDecimals":6},{"coinDenom":"mtsla","coinMinimalDenom":"cw20:terra14y5affaarufk3uscy2vr6pe6w6zqf2wpjzn5sh","coinDecimals":6},{"coinDenom":"mtwtr","coinMinimalDenom":"cw20:terra1cc3enj9qgchlrj34cnzhwuclc4vl2z3jl7tkqg","coinDecimals":6},{"coinDenom":"muso","coinMinimalDenom":"cw20:terra1lvmx8fsagy70tv0fhmfzdw9h6s3sy4prz38ugf","coinDecimals":6},{"coinDenom":"mvixy","coinMinimalDenom":"cw20:terra19cmt6vzvhnnnfsmccaaxzy2uaj06zjktu6yzjx","coinDecimals":6},{"coinDenom":"mvixy","coinMinimalDenom":"cw20:terra1zp3a6q6q4953cz376906g5qfmxnlg77hx3te45","coinDecimals":6},{"coinDenom":"lota","coinMinimalDenom":"cw20:terra1ez46kxtulsdv07538fh5ra5xj8l68mu8eg24vr","coinDecimals":6},{"coinDenom":"dph","coinMinimalDenom":"cw20:terra17jnhankdfl8vyzj6vejt7ag8uz0cjc9crkl2h7","coinDecimals":6},{"coinDenom":"mine","coinMinimalDenom":"cw20:terra1kcthelkax4j9x8d3ny6sdag0qmxxynl3qtcrpy","coinDecimals":6},{"coinDenom":"bpsidp-24m","coinMinimalDenom":"cw20:terra1zsaswh926ey8qa5x4vj93kzzlfnef0pstuca0y","coinDecimals":6},{"coinDenom":"spec","coinMinimalDenom":"cw20:terra1s5eczhe0h0jutf46re52x5z4r03c8hupacxmdr","coinDecimals":6},{"coinDenom":"loop","coinMinimalDenom":"cw20:terra1nef5jf6c7js9x6gkntlehgywvjlpytm7pcgkn4","coinDecimals":6},{"coinDenom":"loopr","coinMinimalDenom":"cw20:terra1jx4lmmke2srcvpjeereetc9hgegp4g5j0p9r2q","coinDecimals":6},{"coinDenom":"stt","coinMinimalDenom":"cw20:terra13xujxcrc9dqft4p9a8ls0w3j0xnzm6y2uvve8n","coinDecimals":6},{"coinDenom":"twd","coinMinimalDenom":"cw20:terra19djkaepjjswucys4npd5ltaxgsntl7jf0xz7w6","coinDecimals":6},{"coinDenom":"xtra","coinMinimalDenom":"cw20:terra1kvjscdgwuvwc6uzm4rqfjl6nlmuhj28tequlnc","coinDecimals":6},{"coinDenom":"miaw","coinMinimalDenom":"cw20:terra1vtr50tw0pgqpes34zqu60n554p9x4950wk8f63","coinDecimals":6},{"coinDenom":"psi","coinMinimalDenom":"cw20:terra12897djskt9rge8dtmm86w654g7kzckkd698608","coinDecimals":6},{"coinDenom":"nluna","coinMinimalDenom":"cw20:terra10f2mt82kjnkxqj2gepgwl637u2w4ue2z5nhz5j","coinDecimals":6},{"coinDenom":"neth","coinMinimalDenom":"cw20:terra178v546c407pdnx5rer3hu8s2c0fc924k74ymnn","coinDecimals":6},{"coinDenom":"cnluna","coinMinimalDenom":"cw20:terra1u553zk43jd4rwzc53qrdrq4jc2p8rextyq09dj","coinDecimals":6},{"coinDenom":"cneth","coinMinimalDenom":"cw20:terra1nagqpmyw55yjphea4rhntlfv87ugmeaj8ym756","coinDecimals":6},{"coinDenom":"navax","coinMinimalDenom":"cw20:terra13k62n0285wj8ug0ngcgpf7dgnkzqeu279tz636","coinDecimals":6},{"coinDenom":"natom","coinMinimalDenom":"cw20:terra1jtdc6zpf95tvh9peuaxwp3v0yqszcnwl8j5ade","coinDecimals":6},{"coinDenom":"vkr","coinMinimalDenom":"cw20:terra1dy9kmlm4anr92e42mrkjwzyvfqwz66un00rwr5","coinDecimals":6},{"coinDenom":"orion","coinMinimalDenom":"cw20:terra1mddcdx0ujx89f38gu7zspk2r2ffdl5enyz2u03","coinDecimals":8},{"coinDenom":"tland","coinMinimalDenom":"cw20:terra1r5506ckw5tfr3z52jwlek8vg9sn3yflrqrzfsc","coinDecimals":6},{"coinDenom":"vust","coinMinimalDenom":"cw20:terra1w0p5zre38ecdy3ez8efd5h9fvgum5s206xknrg","coinDecimals":6},{"coinDenom":"eth","coinMinimalDenom":"cw20:terra14tl83xcwqjy0ken9peu4pjjuu755lrry2uy25r","coinDecimals":8},{"coinDenom":"wbtc","coinMinimalDenom":"cw20:terra1aa7upykmmqqc63l924l5qfap8mrmx5rfdm0v55","coinDecimals":8},{"coinDenom":"sol","coinMinimalDenom":"cw20:terra190tqwgqx7s8qrknz6kckct7v607cu068gfujpk","coinDecimals":8},{"coinDenom":"maticet","coinMinimalDenom":"cw20:terra1dfasranqm4uyaz72r960umxy0w8t6zewqlnkuq","coinDecimals":8},{"coinDenom":"bnb","coinMinimalDenom":"cw20:terra1cetg5wruw2wsdjp7j46rj44xdel00z006e9yg8","coinDecimals":8},{"coinDenom":"cake","coinMinimalDenom":"cw20:terra1xvqlpjl2dxyel9qrp6qvtrg04xe3jh9cyxc6av","coinDecimals":8},{"coinDenom":"link","coinMinimalDenom":"cw20:terra12dfv3f0e6m22z6cnhfn3nxk2en3z3zeqy6ctym","coinDecimals":8},{"coinDenom":"sushi","coinMinimalDenom":"cw20:terra1csvuzlf92nyemu6tv25h0l79etpe8hz3h5vn4a","coinDecimals":8},{"coinDenom":"uni","coinMinimalDenom":"cw20:terra1wyxkuy5jq545fn7xfn3enpvs5zg9f9dghf6gxf","coinDecimals":8},{"coinDenom":"usdtet","coinMinimalDenom":"cw20:terra1ce06wkrdm4vl6t0hvc0g86rsy27pu8yadg3dva","coinDecimals":6},{"coinDenom":"usdcet","coinMinimalDenom":"cw20:terra1pepwcav40nvj3kh60qqgrk8k07ydmc00xyat06","coinDecimals":6},{"coinDenom":"kuji","coinMinimalDenom":"cw20:terra1xfsdgcemqwxp4hhnyk4rle6wr22sseq7j07dnn","coinDecimals":6},{"coinDenom":"skuji","coinMinimalDenom":"cw20:terra188w26t95tf4dz77raftme8p75rggatxjxfeknw","coinDecimals":6},{"coinDenom":"wsteth","coinMinimalDenom":"cw20:terra133chr09wu8sakfte5v7vd8qzq9vghtkv4tn0ur","coinDecimals":8},{"coinDenom":"wstsol","coinMinimalDenom":"cw20:terra1t9ul45l7m6jw6sxgvnp8e5hj8xzkjsg82g84ap","coinDecimals":8},{"coinDenom":"wsbsol","coinMinimalDenom":"cw20:terra1c3xd5s2j3ejx2d94tvcjfkrdeu6rmz48ghzznj","coinDecimals":8},{"coinDenom":"ldo","coinMinimalDenom":"cw20:terra1jxypgnfa07j6w92wazzyskhreq2ey2a5crgt6z","coinDecimals":8},{"coinDenom":"webeth","coinMinimalDenom":"cw20:terra1u5szg038ur9kzuular3cae8hq6q5rk5u27tuvz","coinDecimals":8},{"coinDenom":"stluna","coinMinimalDenom":"cw20:terra1yg3j2s986nyp5z7r2lvt0hx3r0lnd7kwvwwtsc","coinDecimals":6},{"coinDenom":"xdefi","coinMinimalDenom":"cw20:terra169edevav3pdrtjcx35j6pvzuv54aevewar4nlh","coinDecimals":8},{"coinDenom":"btl","coinMinimalDenom":"cw20:terra193c42lfwmlkasvcw22l9qqzc5q2dx208tkd7wl","coinDecimals":6},{"coinDenom":"lunax","coinMinimalDenom":"cw20:terra17y9qkl8dfkeg4py7n0g5407emqnemc3yqk5rup","coinDecimals":6},{"coinDenom":"luni","coinMinimalDenom":"cw20:terra1m3tdguf59xq3pa2twk5fjte5g6szj5y9x5npy7","coinDecimals":6},{"coinDenom":"ply","coinMinimalDenom":"cw20:terra13awdgcx40tz5uygkgm79dytez3x87rpg4uhnvu","coinDecimals":6},{"coinDenom":"tfloki","coinMinimalDenom":"cw20:terra1u2k0nkenw0p25ljsr4ksh7rxm65y466vkdewwj","coinDecimals":6},{"coinDenom":"tftic","coinMinimalDenom":"cw20:terra1a8k3jyv3wf6k3zngza5h6srrxcckdf7zv90p6u","coinDecimals":6},{"coinDenom":"tfticii","coinMinimalDenom":"cw20:terra1xt9fgu7965kgvunnjts9zkprd8986kcc444q86","coinDecimals":6},{"coinDenom":"tfticiii","coinMinimalDenom":"cw20:terra1vte2xv7dr8sfnrnwdf9arcyprqgr0hty5ads28","coinDecimals":6},{"coinDenom":"moon","coinMinimalDenom":"cw20:terra1hmxxq0y8h79f3228vs0czc4uz5jdgjt0appp26","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"cw20:terra1xj49zyqrwpv5k928jwfpfy2ha668nwdgkwlrg3","coinDecimals":6},{"coinDenom":"xastro.cw20","coinMinimalDenom":"cw20:terra14lpnyzc9z4g3ugr4lhm8s4nle0tq8vcltkhzh7","coinDecimals":6},{"coinDenom":"halo","coinMinimalDenom":"cw20:terra1w8kvd6cqpsthupsk4l0clwnmek4l3zr7c84kwq","coinDecimals":6},{"coinDenom":"pug","coinMinimalDenom":"cw20:terra1kdfsdm3c4reun9j3m4mk3nmyw4a4ns7mj24q3j","coinDecimals":6},{"coinDenom":"orne","coinMinimalDenom":"cw20:terra1hnezwjqlhzawcrfysczcxs6xqxu2jawn729kkf","coinDecimals":6},{"coinDenom":"tns","coinMinimalDenom":"cw20:terra14vz4v8adanzph278xyeggll4tfww7teh0xtw2y","coinDecimals":6},{"coinDenom":"xrune","coinMinimalDenom":"cw20:terra1td743l5k5cmfy7tqq202g7vkmdvq35q48u2jfm","coinDecimals":6},{"coinDenom":"alot","coinMinimalDenom":"cw20:terra1366wmr8t8rrkh6mag8fagqxntmf2qe4kyte784","coinDecimals":6},{"coinDenom":"sity","coinMinimalDenom":"cw20:terra1z09gnzufuflz6ckd9k0u456l9dnpgsynu0yyhe","coinDecimals":6},{"coinDenom":"glow","coinMinimalDenom":"cw20:terra13zx49nk8wjavedjzu8xkk95r3t0ta43c9ptul7","coinDecimals":6},{"coinDenom":"apollo","coinMinimalDenom":"cw20:terra100yeqvww74h4yaejj6h733thgcafdaukjtw397","coinDecimals":6},{"coinDenom":"abr","coinMinimalDenom":"cw20:terra1a7ye2splpfzyenu0yrdu8t83uzgusx2malkc7u","coinDecimals":6},{"coinDenom":"whgtps","coinMinimalDenom":"cw20:terra1y3d5qexmyac0fg53pfglh2pjk0664ymfvcq9mc","coinDecimals":8},{"coinDenom":"prism","coinMinimalDenom":"cw20:terra1dh9478k2qvqhqeajhn75a2a7dsnf74y5ukregw","coinDecimals":6},{"coinDenom":"sdollar","coinMinimalDenom":"cw20:terra1l0y8yg0s86x299nqw0p6fhh7ngex3r4phtjeuq","coinDecimals":2},{"coinDenom":"whsail","coinMinimalDenom":"cw20:terra1ku5e0dhutxhuxudsmsn5647wwcz6ndr3rsh90k","coinDecimals":6},{"coinDenom":"whgsail","coinMinimalDenom":"cw20:terra1rl0cpwgtwl4utnaynugevdje37fnmsea7rv4uu","coinDecimals":8},{"coinDenom":"xprism","coinMinimalDenom":"cw20:terra1042wzrwg2uk6jqxjm34ysqquyr9esdgm5qyswz","coinDecimals":6},{"coinDenom":"cde","coinMinimalDenom":"cw20:terra13fs83g5atgjwuh7c5ydzh6n7gecel6xyhhy2t5","coinDecimals":9},{"coinDenom":"ctx","coinMinimalDenom":"cw20:terra1rl20t79ffsrqfa29rke48tj05gj9jxumm92vg8","coinDecimals":6},{"coinDenom":"cluna","coinMinimalDenom":"cw20:terra13zaagrrrxj47qjwczsczujlvnnntde7fdt0mau","coinDecimals":6},{"coinDenom":"pluna","coinMinimalDenom":"cw20:terra1tlgelulz9pdkhls6uglfn5lmxarx7f2gxtdzh2","coinDecimals":6},{"coinDenom":"yluna","coinMinimalDenom":"cw20:terra17wkadg0tah554r35x6wvff0y5s7ve8npcjfuhz","coinDecimals":6},{"coinDenom":"atlo","coinMinimalDenom":"cw20:terra1cl7whtrqmz5ldr553q69qahck8xvk80fm33qjx","coinDecimals":6},{"coinDenom":"local","coinMinimalDenom":"cw20:terra1vchw83qt25j89zqwdpmdzj722sqxthnckqzxxp","coinDecimals":6},{"coinDenom":"luv","coinMinimalDenom":"cw20:terra15k5r9r8dl8r7xlr29pry8a9w7sghehcnv5mgp6","coinDecimals":6},{"coinDenom":"robo","coinMinimalDenom":"cw20:terra1f62tqesptvmhtzr8sudru00gsdtdz24srgm7wp","coinDecimals":6},{"coinDenom":"luart","coinMinimalDenom":"cw20:terra1vwz7t30q76s7xx6qgtxdqnu6vpr3ak3vw62ygk","coinDecimals":6},{"coinDenom":"mars","coinMinimalDenom":"cw20:terra12hgwnpupflfpuual532wgrxu2gjp0tcagzgx4n","coinDecimals":6},{"coinDenom":"xmars","coinMinimalDenom":"cw20:terra1a04v570f9cxp49mk06vjsm8axsswndpwwt67k4","coinDecimals":6},{"coinDenom":"dfiat","coinMinimalDenom":"cw20:terra1vpws4hmpmpsqwnz3gljn8zj42rv7rkpc5atgt4","coinDecimals":8},{"coinDenom":"ceres","coinMinimalDenom":"cw20:terra1hppnw4jppmrzzga4yvd8s87y3dwkhe27xwwl5d","coinDecimals":6},{"coinDenom":"wasavax","coinMinimalDenom":"cw20:terra1z3e2e4jpk4n0xzzwlkgcfvc95pc5ldq0xcny58","coinDecimals":8},{"coinDenom":"mint","coinMinimalDenom":"cw20:terra1zd6let0zg0xjn2sestagxv4ax24a4ml6j40qdr","coinDecimals":6},{"coinDenom":"sd","coinMinimalDenom":"cw20:terra1ustvnmngueq0p4jd7gfnutgvdc6ujpsjhsjd02","coinDecimals":8},{"coinDenom":"xsd","coinMinimalDenom":"cw20:terra1ln2z938phz0nc2wepxpzfkwp6ezn9yrz9zv9ep","coinDecimals":8},{"coinDenom":"paxg","coinMinimalDenom":"cw20:terra1uux6gwd6pzr0gfzrru5kne55cxex9d0700c72r","coinDecimals":8},{"coinDenom":"whdao","coinMinimalDenom":"cw20:terra1efjugpjc50d8sha7lr8s48cr7wmsthz94eevcl","coinDecimals":8},{"coinDenom":"link","coinMinimalDenom":"cw20:terra1su6g4t4vwx7y0uh3ksancyaurj4l6w9pfs40qt","coinDecimals":18},{"coinDenom":"sayve","coinMinimalDenom":"cw20:terra14v9wrjs55qsn9lkvylsqela3w2ytwxzkycqzcr","coinDecimals":6},{"coinDenom":"guides","coinMinimalDenom":"cw20:terra1z55rhw0ut70jxdmpvge98mvj0rkwcz74q77z0u","coinDecimals":6},{"coinDenom":"bro","coinMinimalDenom":"cw20:terra1mt2ytlrxhvd5c4d4fshxxs3zcus3fkdmuv4mk2","coinDecimals":6},{"coinDenom":"bbro","coinMinimalDenom":"cw20:terra1qryq5wreecx2wd3cdtzz94syr4z0a92l60asds","coinDecimals":6},{"coinDenom":"gtps","coinMinimalDenom":"cw20:terra15zvyhmv6gwddht7kt4q6w5nasn4tcpgzcdfmgr","coinDecimals":18},{"coinDenom":"gfi","coinMinimalDenom":"cw20:terra15pkdjxv2ewjzn9x665y26pfz2h6ymak4d4e8se","coinDecimals":18},{"coinDenom":"ulc","coinMinimalDenom":"cw20:terra1fyjsxx73jrufw8ufgtuswa773dvdkny92k70wa","coinDecimals":18},{"coinDenom":"sst","coinMinimalDenom":"cw20:terra1689ys6p6gfu0q6xrjqkzfn80sdyhurjqn0jfdl","coinDecimals":6},{"coinDenom":"atlas","coinMinimalDenom":"cw20:terra1rg8f993m9834afwazersesgx7jjxv4p87q9wvc","coinDecimals":8},{"coinDenom":"audio","coinMinimalDenom":"cw20:terra1nc6flp57m5hsr6y5y8aexzszy43ksr0drdr8rp","coinDecimals":8},{"coinDenom":"avax","coinMinimalDenom":"cw20:terra1hj8de24c3yqvcsv9r8chr03fzwsak3hgd8gv3m","coinDecimals":8},{"coinDenom":"bat","coinMinimalDenom":"cw20:terra1apxgj5agkkfdm2tprwvykug0qtahxvfmugnhx2","coinDecimals":8},{"coinDenom":"busdbs","coinMinimalDenom":"cw20:terra1skjr69exm6v8zellgjpaa2emhwutrk5a6dz7dd","coinDecimals":8},{"coinDenom":"dai","coinMinimalDenom":"cw20:terra1zmclyfepfmqvfqflu8r3lv6f75trmg05z7xq95","coinDecimals":8},{"coinDenom":"maticpo","coinMinimalDenom":"cw20:terra1dtqlfecglk47yplfrtwjzyagkgcqqngd5lgjp8","coinDecimals":8},{"coinDenom":"mimet","coinMinimalDenom":"cw20:terra15a9dr3a2a2lj5fclrw35xxg9yuxg0d908wpf2y","coinDecimals":8},{"coinDenom":"ray","coinMinimalDenom":"cw20:terra1ht5sepn28z999jx33sdduuxm9acthad507jg9q","coinDecimals":6},{"coinDenom":"sbr","coinMinimalDenom":"cw20:terra17h82zsq6q8x5tsgm5ugcx4gytw3axguvzt4pkc","coinDecimals":6},{"coinDenom":"shib","coinMinimalDenom":"cw20:terra1huku2lecfjhq9d00k5a8dh73gw7dwe6vvuf2dd","coinDecimals":8},{"coinDenom":"srmso","coinMinimalDenom":"cw20:terra1dkam9wd5yvaswv4yq3n2aqd4wm5j8n82qc0c7c","coinDecimals":6},{"coinDenom":"usdcav","coinMinimalDenom":"cw20:terra1pvel56a2hs93yd429pzv9zp5aptcjg5ulhkz7w","coinDecimals":6},{"coinDenom":"usdcbs","coinMinimalDenom":"cw20:terra1yljlrxvkar0c6ujpvf8g57m5rpcwl7r032zyvu","coinDecimals":8},{"coinDenom":"usdcpo","coinMinimalDenom":"cw20:terra1kkyyh7vganlpkj0gkc2rfmhy858ma4rtwywe3x","coinDecimals":6},{"coinDenom":"usdcso","coinMinimalDenom":"cw20:terra1e6mq63y64zcxz8xyu5van4tgkhemj3r86yvgu4","coinDecimals":6},{"coinDenom":"usdtav","coinMinimalDenom":"cw20:terra1eqvq3thjhye7anv6f6mhxpjhyvww8zjvqcdgjx","coinDecimals":6},{"coinDenom":"usdtbs","coinMinimalDenom":"cw20:terra1vlqeghv5mt5udh96kt5zxlh2wkh8q4kewkr0dd","coinDecimals":8},{"coinDenom":"usdtso","coinMinimalDenom":"cw20:terra1hd9n65snaluvf7en0p4hqzse9eqecejz2k8rl5","coinDecimals":6},{"coinDenom":"gohm","coinMinimalDenom":"cw20:terra1fpfn2kkr8mv390wx4dtpfk3vkjx9ch3thvykl3","coinDecimals":8},{"coinDenom":"msol","coinMinimalDenom":"cw20:terra1qvlpf2v0zmru3gtex40sqq02wxp39x3cjh359y","coinDecimals":8},{"coinDenom":"steth","coinMinimalDenom":"cw20:terra1w7ywr6waxtjuvn5svk5wqydqpjj0q9ps7qct4d","coinDecimals":8},{"coinDenom":"lct","coinMinimalDenom":"cw20:terra1srp2u95kxps35nvan88gn96nfqhukqya2d0ffc","coinDecimals":6},{"coinDenom":"batom","coinMinimalDenom":"cw20:terra18zqcnl83z98tf6lly37gghm7238k7lh79u4z9a","coinDecimals":6},{"coinDenom":"webatom","coinMinimalDenom":"cw20:terra128pe5jpempxu0nws5lw28se9zknhsr78626cpn","coinDecimals":6},{"coinDenom":"wcoin","coinMinimalDenom":"cw20:terra1laczhlpxlgmrwr9un9ds74qxd2fj4754nf82dn","coinDecimals":6},{"coinDenom":"lctfancard","coinMinimalDenom":"cw20:terra1thhm2u93m2stytzynhsxh5h3jrtg540x4punqy","coinDecimals":6},{"coinDenom":"kntc","coinMinimalDenom":"cw20:terra1yeyr6taynkwdl85ppaggr3zr8txhf66cny2ang","coinDecimals":6},{"coinDenom":"kust","coinMinimalDenom":"cw20:terra1g53pyke8jtmt4lwvk4yl0xaqc4u0qlsl8dz3ex","coinDecimals":6},{"coinDenom":"steak","coinMinimalDenom":"cw20:terra1rl4zyexjphwgx6v3ytyljkkc4mrje2pyznaclv","coinDecimals":6},{"coinDenom":"cst","coinMinimalDenom":"cw20:terra1jkkt5638cd5pur0u5jnr2juw0v6hz5d6z8xu8m","coinDecimals":6},{"coinDenom":"cstfancard","coinMinimalDenom":"cw20:terra1kz7qszu7p4dg9lts7m9m7lpuarsnan47jh3fam","coinDecimals":6},{"coinDenom":"nwld","coinMinimalDenom":"cw20:terra1amz5c45l34n7w8m5a3z7rd7u0k037x4nnsemwj","coinDecimals":9},{"coinDenom":"fury","coinMinimalDenom":"cw20:terra1cdc6nlsx0l6jmt3nnx7gxjggf902wge3n2z76k","coinDecimals":6},{"coinDenom":"rct","coinMinimalDenom":"cw20:terra17n223dxpkypc5c48la7aqjvverczg82ga3cr93","coinDecimals":6},{"coinDenom":"vitc","coinMinimalDenom":"cw20:terra14vw4sfqwe7jw8ppcc7u44vq7hy9qa2nlstnxmu","coinDecimals":6},{"coinDenom":"sb","coinMinimalDenom":"cw20:terra1948uvsah8aw40dhsa9mhl3htq8lraj0smlh77g","coinDecimals":6},{"coinDenom":"toad","coinMinimalDenom":"cw20:terra1rz964297kvt86rteajhtp4hsffhcum0ye8eljh","coinDecimals":6},{"coinDenom":"orionastro","coinMinimalDenom":"cw20:terra1yhlhrea3rgyx2xdnsswsfakn28qa8z7yp5gmhd","coinDecimals":6},{"coinDenom":"retro","coinMinimalDenom":"cw20:terra1j4hwavavmtsafa6zr0npalfz3tk9gf3p4787mp","coinDecimals":6},{"coinDenom":"tnd","coinMinimalDenom":"cw20:terra16wggm67a34msdxasg2vergm2pt289y7930wv7d","coinDecimals":6},{"coinDenom":"stnd","coinMinimalDenom":"cw20:terra1n9k2he20h5vpyn4mgv7pg4pzvw2n3wc4a86v3g","coinDecimals":6},{"coinDenom":"nwt","coinMinimalDenom":"cw20:terra1ezz5xply2v3xdyv32gy5tcd7zq4k235q4xtzwe","coinDecimals":9},{"coinDenom":"aut","coinMinimalDenom":"uaud","coinDecimals":6},{"coinDenom":"cat","coinMinimalDenom":"ucad","coinDecimals":6},{"coinDenom":"cht","coinMinimalDenom":"uchf","coinDecimals":6},{"coinDenom":"cnt","coinMinimalDenom":"ucny","coinDecimals":6},{"coinDenom":"dkt","coinMinimalDenom":"udkk","coinDecimals":6},{"coinDenom":"eut","coinMinimalDenom":"ueur","coinDecimals":6},{"coinDenom":"gbt","coinMinimalDenom":"ugbp","coinDecimals":6},{"coinDenom":"hkt","coinMinimalDenom":"uhkd","coinDecimals":6},{"coinDenom":"idt","coinMinimalDenom":"uidr","coinDecimals":6},{"coinDenom":"int","coinMinimalDenom":"uinr","coinDecimals":6},{"coinDenom":"jpt","coinMinimalDenom":"ujpy","coinDecimals":6},{"coinDenom":"mnt","coinMinimalDenom":"umnt","coinDecimals":6},{"coinDenom":"myt","coinMinimalDenom":"umyr","coinDecimals":6},{"coinDenom":"not","coinMinimalDenom":"unok","coinDecimals":6},{"coinDenom":"pht","coinMinimalDenom":"uphp","coinDecimals":6},{"coinDenom":"sdt","coinMinimalDenom":"usdr","coinDecimals":6},{"coinDenom":"set","coinMinimalDenom":"usek","coinDecimals":6},{"coinDenom":"sgt","coinMinimalDenom":"usgd","coinDecimals":6},{"coinDenom":"tht","coinMinimalDenom":"uthb","coinDecimals":6},{"coinDenom":"twt","coinMinimalDenom":"utwd","coinDecimals":6},{"coinDenom":"neb","coinMinimalDenom":"cw20:terra1mpq5zkkm39nmjrjg9raknpfrfmcfwv0nh0whvn","coinDecimals":6},{"coinDenom":"trit","coinMinimalDenom":"cw20:terra1g6fm3yu79gv0rc8067n2nnfpf0vks6n0wpzaf4u7w48tdrmj98zsy7uu00","coinDecimals":6},{"coinDenom":"juris","coinMinimalDenom":"cw20:terra1vhgq25vwuhdhn9xjll0rhl2s67jzw78a4g2t78y5kz89q9lsdskq2pxcj2","coinDecimals":6},{"coinDenom":"tadf","coinMinimalDenom":"cw20:terra19gzvkw5hft3ulp8n6ws3p9yradhc802axqal59lzxau6rqxktj9q0dwf9c","coinDecimals":6},{"coinDenom":"frog","coinMinimalDenom":"cw20:terra1wez9puj43v4s25vrex7cv3ut3w75w4h6j5e537sujyuxj0r5ne2qp9uwl9","coinDecimals":6}],"rest":"https://terra-classic-lcd.publicnode.com","rpc":"https://terra-classic-rpc.publicnode.com:443","bech32Config":{"bech32PrefixAccAddr":"terra","bech32PrefixAccPub":"terrapub","bech32PrefixValAddr":"terravaloper","bech32PrefixValPub":"terravaloperpub","bech32PrefixConsAddr":"terravalcons","bech32PrefixConsPub":"terravalconspub"},"chainName":"terra","feeCurrencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6,"gasPriceStep":{"low":28.325,"average":28.325,"high":50}},{"coinDenom":"sdt","coinMinimalDenom":"usdr","coinDecimals":6,"gasPriceStep":{"low":0.52469,"average":0.52469,"high":0.52469}},{"coinDenom":"ust","coinMinimalDenom":"uusd","coinDecimals":6,"gasPriceStep":{"low":0.75,"average":0.75,"high":0.75}},{"coinDenom":"krt","coinMinimalDenom":"ukrw","coinDecimals":6,"gasPriceStep":{"low":850,"average":850,"high":850}},{"coinDenom":"mnt","coinMinimalDenom":"umnt","coinDecimals":6,"gasPriceStep":{"low":2142.855,"average":2142.855,"high":2142.855}},{"coinDenom":"eut","coinMinimalDenom":"ueur","coinDecimals":6,"gasPriceStep":{"low":0.625,"average":0.625,"high":0.625}},{"coinDenom":"cnt","coinMinimalDenom":"ucny","coinDecimals":6,"gasPriceStep":{"low":4.9,"average":4.9,"high":4.9}},{"coinDenom":"jpt","coinMinimalDenom":"ujpy","coinDecimals":6,"gasPriceStep":{"low":81.85,"average":81.85,"high":81.85}},{"coinDenom":"gbt","coinMinimalDenom":"ugbp","coinDecimals":6,"gasPriceStep":{"low":0.55,"average":0.55,"high":0.55}},{"coinDenom":"int","coinMinimalDenom":"uinr","coinDecimals":6,"gasPriceStep":{"low":54.4,"average":54.4,"high":54.4}},{"coinDenom":"cat","coinMinimalDenom":"ucad","coinDecimals":6,"gasPriceStep":{"low":0.95,"average":0.95,"high":0.95}},{"coinDenom":"cht","coinMinimalDenom":"uchf","coinDecimals":6,"gasPriceStep":{"low":0.7,"average":0.7,"high":0.7}},{"coinDenom":"aut","coinMinimalDenom":"uaud","coinDecimals":6,"gasPriceStep":{"low":0.95,"average":0.95,"high":0.95}},{"coinDenom":"sgt","coinMinimalDenom":"usgd","coinDecimals":6,"gasPriceStep":{"low":1,"average":1,"high":1}},{"coinDenom":"tht","coinMinimalDenom":"uthb","coinDecimals":6,"gasPriceStep":{"low":23.1,"average":23.1,"high":23.1}},{"coinDenom":"set","coinMinimalDenom":"usek","coinDecimals":6,"gasPriceStep":{"low":6.25,"average":6.25,"high":6.25}},{"coinDenom":"not","coinMinimalDenom":"unok","coinDecimals":6,"gasPriceStep":{"low":6.25,"average":6.25,"high":6.25}},{"coinDenom":"dkt","coinMinimalDenom":"udkk","coinDecimals":6,"gasPriceStep":{"low":4.5,"average":4.5,"high":4.5}},{"coinDenom":"idt","coinMinimalDenom":"uidr","coinDecimals":6,"gasPriceStep":{"low":10900,"average":10900,"high":10900}},{"coinDenom":"pht","coinMinimalDenom":"uphp","coinDecimals":6,"gasPriceStep":{"low":38,"average":38,"high":38}},{"coinDenom":"hkt","coinMinimalDenom":"uhkd","coinDecimals":6,"gasPriceStep":{"low":5.85,"average":5.85,"high":5.85}},{"coinDenom":"myt","coinMinimalDenom":"umyr","coinDecimals":6,"gasPriceStep":{"low":3,"average":3,"high":3}},{"coinDenom":"twt","coinMinimalDenom":"utwd","coinDecimals":6,"gasPriceStep":{"low":20,"average":20,"high":20}}],"stakeCurrency":{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},"bip44":{"coinType":330}},{"chainId":"phoenix-1","currencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},{"coinDenom":"astro.cw20","coinMinimalDenom":"cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26","coinDecimals":6},{"coinDenom":"astro","coinMinimalDenom":"ibc/8D8A7F7253615E5F76CB6252A1E1BD921D5EDB7BBAAF8913FB1C77FF125D9995","coinDecimals":6},{"coinDenom":"cw20:terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k","coinMinimalDenom":"cw20:terra1spkm49wd9dqkranhrks4cupecl3rtgeqqljq3qrvrrts2ev2gw6sy5vz3k","coinDecimals":0},{"coinDenom":"Reis","coinMinimalDenom":"cw20:terra1sdglum2dt4f3fmq7jrt2phf2tegmnudc7qqqqujkpqcm9ujuxxkqakv5u8","coinDecimals":6},{"coinDenom":"Escudos","coinMinimalDenom":"cw20:terra1qj5hs3e86qn4vm9dvtgtlkdp550r0rayk9wpay44mfw3gn3tr8nq5jw3dg","coinDecimals":6},{"coinDenom":"Alem","coinMinimalDenom":"cw20:terra1cmf8ytutcwrjrv08zskj9phuh46a3w3nkjax7en4hxezsrdr58lqvzy05q","coinDecimals":6},{"coinDenom":"AMG","coinMinimalDenom":"cw20:terra1en42e2vsvtdsvrcqg5s5e5e4djejjaed6fxmvtpweg3tu33h6k5qkg9c40","coinDecimals":6},{"coinDenom":"ARK","coinMinimalDenom":"cw20:terra1ysd87nayjuelxj4wvp4wnp9as0mwszzkje6a9z6f3xx2903ghnsq4hm50y","coinDecimals":6},{"coinDenom":"DANU","coinMinimalDenom":"cw20:terra1vj68f2ntauaj5dfvy5z4tq4we3hsyg363k63js5sae2t7th9aacqan89sr","coinDecimals":6},{"coinDenom":"TRS","coinMinimalDenom":"cw20:terra1swzpenwh39f8aa7qht34r05f8ew6k2vehvqt2aw4fjy0fgghhheqs9l6h7","coinDecimals":6},{"coinDenom":"PLASMA","coinMinimalDenom":"cw20:terra1mqs6mdx0ak7qvjzs6efhg65g4j5pzwpdkcgdsv5tpekln3qhggrq3qzvdp","coinDecimals":6},{"coinDenom":"DMT","coinMinimalDenom":"cw20:terra1xfkkgwxychgrnq0vcp82u32mecrzj8s64s03cxtmf46k6j2n2wssc7rzjf","coinDecimals":6},{"coinDenom":"ampluna","coinMinimalDenom":"cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct","coinDecimals":6},{"coinDenom":"roar","coinMinimalDenom":"cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv","coinDecimals":6},{"coinDenom":"gem","coinMinimalDenom":"cw20:terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv","coinDecimals":6},{"coinDenom":"cub","coinMinimalDenom":"cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t","coinDecimals":6},{"coinDenom":"blue","coinMinimalDenom":"cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584","coinDecimals":6},{"coinDenom":"xxx","coinMinimalDenom":"cw20:terra10se906awphtccf4vd83m0ulpmpt9v4msuakmpy0pwvmtxmup3kdq25rayn","coinDecimals":10},{"coinDenom":"GUGU","coinMinimalDenom":"cw20:terra19nu4q2y0xe3vza6ve5ymup33uzm049pnrqq5ddeuulmrg279t57qstcces","coinDecimals":6},{"coinDenom":"bLUNA","coinMinimalDenom":"cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml","coinDecimals":6},{"coinDenom":"sayve","coinMinimalDenom":"cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3","coinDecimals":6},{"coinDenom":"ampWHALEt","coinMinimalDenom":"factory/terra1j35ta0llaxcf55auv2cjqau5a7aee6g8fz7md7my7005cvh23jfsaw83dy/ampWHALEt","coinDecimals":6},{"coinDenom":"boneWHALEt","coinMinimalDenom":"factory/terra10j3zrymfrkta2pxe0gklc79gu06tqyuy8c3kh6tqdsrrprsjqkrqzfl4df/boneWHALEt","coinDecimals":6},{"coinDenom":"ampROAR","coinMinimalDenom":"factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR","coinDecimals":6},{"coinDenom":"nico","coinMinimalDenom":"cw20:terra1e0efrrrj8d55pflme3dmtyuj7klzcef5cfmz6r2jyqz77kk2jz3qa6drg3","coinDecimals":18},{"coinDenom":"seas","coinMinimalDenom":"cw20:terra1rc6ssp5rym7a0hg29xpj4cc9e67tl56kg5jyzgl9qrhfxxc2ugvsnrkala","coinDecimals":6},{"coinDenom":"bitz","coinMinimalDenom":"cw20:terra18vp5s0r7keezm35hdxsgw8zgfnyn8wejdkk893ag2kqncgpqxhjqwjpc0v","coinDecimals":6},{"coinDenom":"factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH","coinMinimalDenom":"ibc/A356EC90DC3AE43D485514DA7260EDC7ABB5CFAA0654CE2524C739392975AD3C","coinDecimals":18},{"coinDenom":"seul","coinMinimalDenom":"cw20:terra13s5pxw5j2p4ssvzwvxd8l7h30vke8vjgtng75vqgv6p9vddfk3hskfka0l","coinDecimals":6},{"coinDenom":"xseul","coinMinimalDenom":"cw20:terra1q328gl40az3cf9x67cgudn8e8w2az9vsmhtkwsgdu7a43rhy5caqc82yr5","coinDecimals":6},{"coinDenom":"ito","coinMinimalDenom":"cw20:terra1c77xqv746m7ghxayrge79dxr4kcezev8g6cnrfled4f3n4ufj0vs5gz28s","coinDecimals":6},{"coinDenom":"ARMANI","coinMinimalDenom":"cw20:terra1aa7stl3fytvave9xtcexgv0kne4k7ks068dcljkrfj37hy8q270sjadav8","coinDecimals":6},{"coinDenom":"DROGO","coinMinimalDenom":"cw20:terra1cl273523kmr2uwjhhznq54je69mted2u3ljffm8kp2ap4z3drdksftwqun","coinDecimals":6},{"coinDenom":"ADO","coinMinimalDenom":"cw20:terra1w8xk6rtu40st6lvl3yv7ynw5urm2n686u9cchvrzltmnktzwdesqcwy0nu","coinDecimals":6},{"coinDenom":"WOSMO","coinMinimalDenom":"ibc/E18C0D303957867A164DE2863D1C3F83135936E6F17CADF4D241FBC12B0F23B2","coinDecimals":6},{"coinDenom":"DNA","coinMinimalDenom":"cw20:terra1epka8wevu90rxlvt6g5x9veevd800a760vtuftc5kqdfmrh47qds9f0m8h","coinDecimals":6},{"coinDenom":"bitmos","coinMinimalDenom":"cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq","coinDecimals":6},{"coinDenom":"lads","coinMinimalDenom":"cw20:terra1eh8eq60cjy997w5dc3a6exfzanlaurupav8klx7m9u9ddfgh25mqjwl5vj","coinDecimals":6},{"coinDenom":"rstk","coinMinimalDenom":"ibc/F709DF4969CD26174C1A53AA95F3D98BE643C1A52C9981487766F96A1811F6A4","coinDecimals":6},{"coinDenom":"CLON","coinMinimalDenom":"cw20:terra164ssz60yvsxey0ku9mtcaegdeyxwzuwwqyrp238nvflwqve0pvxsra7fa2","coinDecimals":6},{"coinDenom":"MOAR","coinMinimalDenom":"factory/terra1dndhtdr2v7ca8rrn67chlqw3cl3xhm3m2uxls62vghcg3fsh5tpss5xmcu/MOAR","coinDecimals":6},{"coinDenom":"usdt","coinMinimalDenom":"ibc/9B19062D46CAB50361CE9B0A3E6D0A7A53AC9E7CB361F32A73CC733144A9A9E5","coinDecimals":6},{"coinDenom":"atom-luna-lp","coinMinimalDenom":"factory/terra1djk2zl83dspt696ex5crhfacu8vm6934576t4zdd2592fzyahr2qma6guq/ULUN-IBC/-LP","coinDecimals":6},{"coinDenom":"luna-usdc-lp","coinMinimalDenom":"factory/terra12jxfw2vg4cu6mxlgf39dp5ccxtuwm468w8eh9cnh2qsxc9t0sffs7ekhft/ULUN-IBC/-LP","coinDecimals":6},{"coinDenom":"luna-usdt-lp","coinMinimalDenom":"factory/terra1w9spejtuac5dt0gympq576uhwde39exhh7hdxwl99rjvaphfukkq6y4cv7/ULUN-IBC/-LP","coinDecimals":6},{"coinDenom":"ashLUNA","coinMinimalDenom":"factory/terra1f5cfm48gcezl3cx25l64ngc4yktnmx7rcpj3kggu6v273742sqqs5yn5ks/luna.ash","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/2C962DAB9F57FE0921435426AE75196009FAA1981BF86991203C8411F8980FDB","coinDecimals":6},{"coinDenom":"COSMO","coinMinimalDenom":"ibc/4925733868E7999F5822C961ADE9470A7FC5FA4A560BAE1DE102783C3F64C201","coinDecimals":6},{"coinDenom":"DGN","coinMinimalDenom":"ibc/B2AA4C3CD19954859C3B537EC0705640AFC01075F52993D9AC5E73F07F0386CC","coinDecimals":6},{"coinDenom":"whale","coinMinimalDenom":"ibc/36A02FFC4E74DF4F64305130C3DFA1B06BEAC775648927AA44467C76A77AB8DB","coinDecimals":6}],"rest":"https://lcd-terra.wildsage.io","rpc":"https://rpc.lavenderfive.com:443/terra2","bech32Config":{"bech32PrefixAccAddr":"terra","bech32PrefixAccPub":"terrapub","bech32PrefixValAddr":"terravaloper","bech32PrefixValPub":"terravaloperpub","bech32PrefixConsAddr":"terravalcons","bech32PrefixConsPub":"terravalconspub"},"chainName":"terra2","feeCurrencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.015,"high":0.04}}],"stakeCurrency":{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},"bip44":{"coinType":330}},{"chainId":"tgrade-mainnet-1","currencies":[{"coinDenom":"tgd","coinMinimalDenom":"utgd","coinDecimals":6}],"rest":"https://api.mainnet-1.tgrade.confio.run","rpc":"https://rpc.mainnet-1.tgrade.confio.run","bech32Config":{"bech32PrefixAccAddr":"tgrade","bech32PrefixAccPub":"tgradepub","bech32PrefixValAddr":"tgradevaloper","bech32PrefixValPub":"tgradevaloperpub","bech32PrefixConsAddr":"tgradevalcons","bech32PrefixConsPub":"tgradevalconspub"},"chainName":"tgrade","feeCurrencies":[{"coinDenom":"tgd","coinMinimalDenom":"utgd","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.075,"high":0.1}}],"stakeCurrency":{"coinDenom":"tgd","coinMinimalDenom":"utgd","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"titan_18888-1","currencies":[{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5","coinDecimals":6}],"rest":"https://titan-lcd.titanlab.io:443","rpc":"https://titan-rpc.titanlab.io:443","bech32Config":{"bech32PrefixAccAddr":"titan","bech32PrefixAccPub":"titanpub","bech32PrefixValAddr":"titanvaloper","bech32PrefixValPub":"titanvaloperpub","bech32PrefixConsAddr":"titanvalcons","bech32PrefixConsPub":"titanvalconspub"},"chainName":"titan","feeCurrencies":[{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18,"gasPriceStep":{"low":100000000000,"average":110000000000,"high":200000000000}}],"stakeCurrency":{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"umee-1","currencies":[{"coinDenom":"umee","coinMinimalDenom":"uumee","coinDecimals":6}],"rest":"https://api-umee-ia.cosmosia.notional.ventures/","rpc":"https://umee-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"umee","bech32PrefixAccPub":"umeepub","bech32PrefixValAddr":"umeevaloper","bech32PrefixValPub":"umeevaloperpub","bech32PrefixConsAddr":"umeevalcons","bech32PrefixConsPub":"umeevalconspub"},"chainName":"umee","feeCurrencies":[{"coinDenom":"umee","coinMinimalDenom":"uumee","coinDecimals":6,"gasPriceStep":{"low":0.1,"average":0.12,"high":0.2}}],"stakeCurrency":{"coinDenom":"umee","coinMinimalDenom":"uumee","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"FUND-MainNet-2","currencies":[{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9}],"rest":"https://rest.unification.io","rpc":"https://rpc.unification.io:443","bech32Config":{"bech32PrefixAccAddr":"und","bech32PrefixAccPub":"undpub","bech32PrefixValAddr":"undvaloper","bech32PrefixValPub":"undvaloperpub","bech32PrefixConsAddr":"undvalcons","bech32PrefixConsPub":"undvalconspub"},"chainName":"unification","feeCurrencies":[{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9,"gasPriceStep":{"low":100,"average":200,"high":300}}],"stakeCurrency":{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9},"bip44":{"coinType":5555}},{"chainId":"ununifi-beta-v1","currencies":[{"coinDenom":"guu","coinMinimalDenom":"uguu","coinDecimals":6}],"rest":"https://a.lcd.ununifi.cauchye.net:1318","rpc":"http://a.lcd.ununifi.cauchye.net:26657","bech32Config":{"bech32PrefixAccAddr":"ununifi","bech32PrefixAccPub":"ununifipub","bech32PrefixValAddr":"ununifivaloper","bech32PrefixValPub":"ununifivaloperpub","bech32PrefixConsAddr":"ununifivalcons","bech32PrefixConsPub":"ununifivalconspub"},"chainName":"ununifi","feeCurrencies":[{"coinDenom":"guu","coinMinimalDenom":"uguu","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"guu","coinMinimalDenom":"uguu","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"uptick_117-1","currencies":[{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18}],"rest":"https://uptick-rest.brocha.in:443","rpc":"https://uptick-rpc.brocha.in:443","bech32Config":{"bech32PrefixAccAddr":"uptick","bech32PrefixAccPub":"uptickpub","bech32PrefixValAddr":"uptickvaloper","bech32PrefixValPub":"uptickvaloperpub","bech32PrefixConsAddr":"uptickvalcons","bech32PrefixConsPub":"uptickvalconspub"},"chainName":"uptick","feeCurrencies":[{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18,"gasPriceStep":{"low":13000000000,"average":16000000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"xion-mainnet-1","currencies":[{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6}],"rest":"https://api.xion-mainnet-1.burnt.com","rpc":"https://rpc.xion-mainnet-1.burnt.com","bech32Config":{"bech32PrefixAccAddr":"xion","bech32PrefixAccPub":"xionpub","bech32PrefixValAddr":"xionvaloper","bech32PrefixValPub":"xionvaloperpub","bech32PrefixConsAddr":"xionvalcons","bech32PrefixConsPub":"xionvalconspub"},"chainName":"xion","feeCurrencies":[{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.001,"high":0.01}}],"stakeCurrency":{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"dimension_37-1","currencies":[{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18}],"rest":"https://dimension-lcd.xpla.io","rpc":"https://dimension-rpc.xpla.dev","bech32Config":{"bech32PrefixAccAddr":"xpla","bech32PrefixAccPub":"xplapub","bech32PrefixValAddr":"xplavaloper","bech32PrefixValPub":"xplavaloperpub","bech32PrefixConsAddr":"xplavalcons","bech32PrefixConsPub":"xplavalconspub"},"chainName":"xpla","feeCurrencies":[{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18,"gasPriceStep":{"low":850000000000,"average":1147500000000,"high":1487500000000}}],"stakeCurrency":{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"diamond-1","currencies":[{"coinDenom":"rock","coinMinimalDenom":"urock","coinDecimals":6}],"rest":"https://api.diamond.zenrocklabs.io/","rpc":"https://rpc.diamond.zenrocklabs.io/","bech32Config":{"bech32PrefixAccAddr":"zen","bech32PrefixAccPub":"zenpub","bech32PrefixValAddr":"zenvaloper","bech32PrefixValPub":"zenvaloperpub","bech32PrefixConsAddr":"zenvalcons","bech32PrefixConsPub":"zenvalconspub"},"chainName":"zenrock","feeCurrencies":[{"coinDenom":"rock","coinMinimalDenom":"urock","coinDecimals":6,"gasPriceStep":{"low":0.5,"average":0.55,"high":0.6}}],"stakeCurrency":{"coinDenom":"rock","coinMinimalDenom":"urock","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"zetachain_7000-1","currencies":[{"coinDenom":"zeta","coinMinimalDenom":"azeta","coinDecimals":18}],"rest":"https://zetachain.blockpi.network/lcd/v1/public","rpc":"https://zetachain.blockpi.network/rpc/v1/public","bech32Config":{"bech32PrefixAccAddr":"zeta","bech32PrefixAccPub":"zetapub","bech32PrefixValAddr":"zetavaloper","bech32PrefixValPub":"zetavaloperpub","bech32PrefixConsAddr":"zetavalcons","bech32PrefixConsPub":"zetavalconspub"},"chainName":"zetachain","feeCurrencies":[{"coinDenom":"zeta","coinMinimalDenom":"azeta","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"zeta","coinMinimalDenom":"azeta","coinDecimals":18},"bip44":{"coinType":60}}] \ No newline at end of file diff --git a/packages/widget/src/constants/cosmosChains/testnet.json b/packages/widget/src/constants/cosmosChains/testnet.json index ae216d520..5cf588314 100644 --- a/packages/widget/src/constants/cosmosChains/testnet.json +++ b/packages/widget/src/constants/cosmosChains/testnet.json @@ -1 +1 @@ -[{"chainId":"junction","currencies":[{"coinDenom":"AMF","coinMinimalDenom":"amf","coinDecimals":6}],"rest":"https://rest.nodejumper.io/airchainstestnet","rpc":"https://junction-rpc.validatorvn.com/","bech32Config":{"bech32PrefixAccAddr":"air","bech32PrefixAccPub":"airpub","bech32PrefixValAddr":"airvaloper","bech32PrefixValPub":"airvaloperpub","bech32PrefixConsAddr":"airvalcons","bech32PrefixConsPub":"airvalconspub"},"chainName":"airchainstestnet","feeCurrencies":[{"coinDenom":"AMF","coinMinimalDenom":"amf","coinDecimals":6,"gasPriceStep":{"low":0.00025,"average":0.005,"high":0.01}}],"stakeCurrency":{"coinDenom":"AMF","coinMinimalDenom":"amf","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sandbox-01","currencies":[{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6}],"rest":"https://api.sandbox-01.aksh.pw:443","rpc":"https://rpc.sandbox-01.aksh.pw:443","bech32Config":{"bech32PrefixAccAddr":"akash","bech32PrefixAccPub":"akashpub","bech32PrefixValAddr":"akashvaloper","bech32PrefixValPub":"akashvaloperpub","bech32PrefixConsAddr":"akashvalcons","bech32PrefixConsPub":"akashvalconspub"},"chainName":"akashtestnet","feeCurrencies":[{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"constantine-3","currencies":[{"coinDenom":"const","coinMinimalDenom":"aconst","coinDecimals":18},{"coinDenom":"wARCH","coinMinimalDenom":"cw20:archway1dz6h2smr432gvzruklk3lps7ak2ca7cngdge4vym93wehkkypwpqgwr2q2","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/34F8D3402273FFA5278AE5757D81CE151ACFD4B19C494C0EE372A7229714824F","coinDecimals":6},{"coinDenom":"wUSDC","coinMinimalDenom":"cw20:archway172vetupqnkgdc7dp3gwqpvk5ljmgzyj2gs4ag2fdmp0s2rucxxsqh0nqeu","coinDecimals":6}],"rest":"https://api.constantine.archway.io","rpc":"https://rpc.constantine.archway.io","bech32Config":{"bech32PrefixAccAddr":"archway","bech32PrefixAccPub":"archwaypub","bech32PrefixValAddr":"archwayvaloper","bech32PrefixValPub":"archwayvaloperpub","bech32PrefixConsAddr":"archwayvalcons","bech32PrefixConsPub":"archwayvalconspub"},"chainName":"archwaytestnet","feeCurrencies":[{"coinDenom":"const","coinMinimalDenom":"aconst","coinDecimals":18,"gasPriceStep":{"low":1000000000000,"average":1500000000000,"high":2000000000000}}],"stakeCurrency":{"coinDenom":"const","coinMinimalDenom":"aconst","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"arkeo","currencies":[{"coinDenom":"arkeo","coinMinimalDenom":"uarkeo","coinDecimals":6}],"rest":"https://arkeonetwork-testnet.nodejumper.io:1317","rpc":"https://arkeonetwork-testnet.nodejumper.io:26657","bech32Config":{"bech32PrefixAccAddr":"tarkeo","bech32PrefixAccPub":"tarkeopub","bech32PrefixValAddr":"tarkeovaloper","bech32PrefixValPub":"tarkeovaloperpub","bech32PrefixConsAddr":"tarkeovalcons","bech32PrefixConsPub":"tarkeovalconspub"},"chainName":"arkeonetworktestnet","feeCurrencies":[{"coinDenom":"arkeo","coinMinimalDenom":"uarkeo","coinDecimals":6}],"stakeCurrency":{"coinDenom":"arkeo","coinMinimalDenom":"uarkeo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"artela_11820-1","currencies":[{"coinDenom":"art","coinMinimalDenom":"uart","coinDecimals":18}],"rest":"https://testnet-rpc1.artela.network","rpc":"https://testnet-rpc1.artela.network","bech32Config":{"bech32PrefixAccAddr":"art","bech32PrefixAccPub":"artpub","bech32PrefixValAddr":"artvaloper","bech32PrefixValPub":"artvaloperpub","bech32PrefixConsAddr":"artvalcons","bech32PrefixConsPub":"artvalconspub"},"chainName":"artelatestnet","feeCurrencies":[{"coinDenom":"art","coinMinimalDenom":"uart","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"art","coinMinimalDenom":"uart","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"aura_6321-3","currencies":[{"coinDenom":"eaura","coinMinimalDenom":"ueaura","coinDecimals":6}],"rest":"https://lcd.euphoria.aura.network/","rpc":"https://rpc.euphoria.aura.network/","bech32Config":{"bech32PrefixAccAddr":"aura","bech32PrefixAccPub":"aurapub","bech32PrefixValAddr":"auravaloper","bech32PrefixValPub":"auravaloperpub","bech32PrefixConsAddr":"auravalcons","bech32PrefixConsPub":"auravalconspub"},"chainName":"auratestnet","feeCurrencies":[{"coinDenom":"eaura","coinMinimalDenom":"ueaura","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.0025}}],"stakeCurrency":{"coinDenom":"eaura","coinMinimalDenom":"ueaura","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"axelar-testnet-lisbon-3","currencies":[{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6},{"coinDenom":"ausdc","coinMinimalDenom":"uausdc","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"eth-wei","coinDecimals":18},{"coinDenom":"wglmr","coinMinimalDenom":"wglmr-wei","coinDecimals":18},{"coinDenom":"wmatic","coinMinimalDenom":"wmatic-wei","coinDecimals":18},{"coinDenom":"wbnb","coinMinimalDenom":"wbnb-wei","coinDecimals":18},{"coinDenom":"avax","coinMinimalDenom":"wavax-wei","coinDecimals":18},{"coinDenom":"ftm","coinMinimalDenom":"wftm-wei","coinDecimals":18}],"rest":"https://lcd-axelar-testnet.imperator.co:443","rpc":"https://rpc-axelar-testnet.imperator.co:443","bech32Config":{"bech32PrefixAccAddr":"axelar","bech32PrefixAccPub":"axelarpub","bech32PrefixValAddr":"axelarvaloper","bech32PrefixValPub":"axelarvaloperpub","bech32PrefixConsAddr":"axelarvalcons","bech32PrefixConsPub":"axelarvalconspub"},"chainName":"axelartestnet","feeCurrencies":[{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6,"gasPriceStep":{"low":0.007,"average":0.007,"high":0.01}}],"stakeCurrency":{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"bbn-test3","currencies":[{"coinDenom":"bbn","coinMinimalDenom":"ubbn","coinDecimals":6}],"rest":"lcd.testnet3.babylonchain.io:443","rpc":"rpc.testnet3.babylonchain.io:443","bech32Config":{"bech32PrefixAccAddr":"bbn","bech32PrefixAccPub":"bbnpub","bech32PrefixValAddr":"bbnvaloper","bech32PrefixValPub":"bbnvaloperpub","bech32PrefixConsAddr":"bbnvalcons","bech32PrefixConsPub":"bbnvalconspub"},"chainName":"babylontestnet","feeCurrencies":[{"coinDenom":"bbn","coinMinimalDenom":"ubbn","coinDecimals":6}],"stakeCurrency":{"coinDenom":"bbn","coinMinimalDenom":"ubbn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"bitcanna-dev-1","currencies":[{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6}],"rest":"https://lcd-testnet.bitcanna.io","rpc":"https://rpc-testnet.bitcanna.io","bech32Config":{"bech32PrefixAccAddr":"bcna","bech32PrefixAccPub":"bcnapub","bech32PrefixValAddr":"bcnavaloper","bech32PrefixValPub":"bcnavaloperpub","bech32PrefixConsAddr":"bcnavalcons","bech32PrefixConsPub":"bcnavalconspub"},"chainName":"bitcannadevnet","feeCurrencies":[{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6}],"stakeCurrency":{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cascadia_6102-1","currencies":[{"coinDenom":"tCC","coinMinimalDenom":"aCC","coinDecimals":18}],"rest":"https://lcd.cascadia.foundation","rpc":"https://rpc.cascadia.foundation:443","bech32Config":{"bech32PrefixAccAddr":"cascadia","bech32PrefixAccPub":"cascadiapub","bech32PrefixValAddr":"cascadiavaloper","bech32PrefixValPub":"cascadiavaloperpub","bech32PrefixConsAddr":"cascadiavalcons","bech32PrefixConsPub":"cascadiavalconspub"},"chainName":"cascadiatestnet","feeCurrencies":[{"coinDenom":"tCC","coinMinimalDenom":"aCC","coinDecimals":18,"gasPriceStep":{"low":7,"average":10,"high":15}}],"stakeCurrency":{"coinDenom":"tCC","coinMinimalDenom":"aCC","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"mocha-4","currencies":[{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6}],"rest":"https://api-mocha.pops.one","rpc":"https://rpc-mocha.pops.one","bech32Config":{"bech32PrefixAccAddr":"celestia","bech32PrefixAccPub":"celestiapub","bech32PrefixValAddr":"celestiavaloper","bech32PrefixValPub":"celestiavaloperpub","bech32PrefixConsAddr":"celestiavalcons","bech32PrefixConsPub":"celestiavalconspub"},"chainName":"celestiatestnet3","feeCurrencies":[{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}}],"stakeCurrency":{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"babajaga-1","currencies":[{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6}],"rest":"https://c4e.api.t.stavr.tech","rpc":"https://rpc-testnet.c4e.io","bech32Config":{"bech32PrefixAccAddr":"c4e","bech32PrefixAccPub":"c4epub","bech32PrefixValAddr":"c4evaloper","bech32PrefixValPub":"c4evaloperpub","bech32PrefixConsAddr":"c4evalcons","bech32PrefixConsPub":"c4evalconspub"},"chainName":"chain4energytestnet","feeCurrencies":[{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.03,"high":0.06}}],"stakeCurrency":{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cheqd-testnet-6","currencies":[{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9}],"rest":"https://api.cheqd.network","rpc":"https://rpc.cheqd.network","bech32Config":{"bech32PrefixAccAddr":"cheqd","bech32PrefixAccPub":"cheqdpub","bech32PrefixValAddr":"cheqdvaloper","bech32PrefixValPub":"cheqdvaloperpub","bech32PrefixConsAddr":"cheqdvalcons","bech32PrefixConsPub":"cheqdvalconspub"},"chainName":"cheqdtestnet","feeCurrencies":[{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9,"gasPriceStep":{"low":50,"average":75,"high":100}}],"stakeCurrency":{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"chimba-testnet","currencies":[{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6}],"rest":"https://testnet.chimba.ooo","rpc":"https://rpc.testnet.chimba.ooo","bech32Config":{"bech32PrefixAccAddr":"chimba","bech32PrefixAccPub":"chimbapub","bech32PrefixValAddr":"chimbavaloper","bech32PrefixValPub":"chimbavaloperpub","bech32PrefixConsAddr":"chimbavalcons","bech32PrefixConsPub":"chimbavalconspub"},"chainName":"chimbatestnet","feeCurrencies":[{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6,"gasPriceStep":{"low":1,"average":5,"high":10}}],"stakeCurrency":{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"banksy-testnet-3","currencies":[{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12}],"rest":"https://api.composable-t.indonode.net","rpc":"https://rpc.composable-t.indonode.net:443","bech32Config":{"bech32PrefixAccAddr":"centauri","bech32PrefixAccPub":"centauripub","bech32PrefixValAddr":"centaurivaloper","bech32PrefixValPub":"centaurivaloperpub","bech32PrefixConsAddr":"centaurivalcons","bech32PrefixConsPub":"centaurivalconspub"},"chainName":"composabletestnet","feeCurrencies":[{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12}],"stakeCurrency":{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12},"bip44":{"coinType":118}},{"chainId":"kitten-04","currencies":[{"coinDenom":"ccat","coinMinimalDenom":"uccat","coinDecimals":6}],"rest":"https://lcd.coolcat.space","rpc":"https://rpc.coolcat.space","bech32Config":{"bech32PrefixAccAddr":"ccat","bech32PrefixAccPub":"ccatpub","bech32PrefixValAddr":"ccatvaloper","bech32PrefixValPub":"ccatvaloperpub","bech32PrefixConsAddr":"ccatvalcons","bech32PrefixConsPub":"ccatvalconspub"},"chainName":"coolcattestnet","feeCurrencies":[{"coinDenom":"ccat","coinMinimalDenom":"uccat","coinDecimals":6}],"stakeCurrency":{"coinDenom":"ccat","coinMinimalDenom":"uccat","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"coreum-testnet-1","currencies":[{"coinDenom":"testcore","coinMinimalDenom":"utestcore","coinDecimals":6}],"rest":"https://full-node.testnet-1.coreum.dev:1317","rpc":"https://full-node.testnet-1.coreum.dev:26657","bech32Config":{"bech32PrefixAccAddr":"testcore","bech32PrefixAccPub":"testcorepub","bech32PrefixValAddr":"testcorevaloper","bech32PrefixValPub":"testcorevaloperpub","bech32PrefixConsAddr":"testcorevalcons","bech32PrefixConsPub":"testcorevalconspub"},"chainName":"coreumtestnet","feeCurrencies":[{"coinDenom":"testcore","coinMinimalDenom":"utestcore","coinDecimals":6,"gasPriceStep":{"low":0.0625,"average":0.0625,"high":62.5}}],"stakeCurrency":{"coinDenom":"testcore","coinMinimalDenom":"utestcore","coinDecimals":6},"bip44":{"coinType":990}},{"chainId":"theta-testnet-001","currencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6}],"rest":"https://cosmoshubt.lava.build","rpc":"https://cosmoshubt.tendermintrpc.lava.build:443","bech32Config":{"bech32PrefixAccAddr":"cosmos","bech32PrefixAccPub":"cosmospub","bech32PrefixValAddr":"cosmosvaloper","bech32PrefixValPub":"cosmosvaloperpub","bech32PrefixConsAddr":"cosmosvalcons","bech32PrefixConsPub":"cosmosvalconspub"},"chainName":"cosmoshubtestnet","feeCurrencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"provider","currencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6}],"rest":"https://rest.provider-sentry-01.ics-testnet.polypore.xyz","rpc":"https://rpc.provider-sentry-01.ics-testnet.polypore.xyz","bech32Config":{"bech32PrefixAccAddr":"cosmos","bech32PrefixAccPub":"cosmospub","bech32PrefixValAddr":"cosmosvaloper","bech32PrefixValPub":"cosmosvaloperpub","bech32PrefixConsAddr":"cosmosvalcons","bech32PrefixConsPub":"cosmosvalconspub"},"chainName":"cosmosicsprovidertestnet","feeCurrencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"malaga-420","currencies":[{"coinDenom":"MLG","coinMinimalDenom":"umlg","coinDecimals":6},{"coinDenom":"AND","coinMinimalDenom":"uand","coinDecimals":6}],"rest":"https://api.malaga-420.cosmwasm.com","rpc":"https://rpc.malaga-420.cosmwasm.com:443","bech32Config":{"bech32PrefixAccAddr":"wasm","bech32PrefixAccPub":"wasmpub","bech32PrefixValAddr":"wasmvaloper","bech32PrefixValPub":"wasmvaloperpub","bech32PrefixConsAddr":"wasmvalcons","bech32PrefixConsPub":"wasmvalconspub"},"chainName":"cosmwasmtestnet","feeCurrencies":[{"coinDenom":"MLG","coinMinimalDenom":"umlg","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.04,"high":0.05}}],"stakeCurrency":{"coinDenom":"MLG","coinMinimalDenom":"umlg","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"coss-testnet-1","currencies":[{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6}],"rest":"https://coss-testnet-rest.coss.ink","rpc":"https://coss-testnet-rpc.coss.ink","bech32Config":{"bech32PrefixAccAddr":"coss","bech32PrefixAccPub":"cosspub","bech32PrefixValAddr":"cossvaloper","bech32PrefixValPub":"cossvaloperpub","bech32PrefixConsAddr":"cossvalcons","bech32PrefixConsPub":"cossvalconspub"},"chainName":"cosstestnet","feeCurrencies":[{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6}],"stakeCurrency":{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"deardoge-testnet","currencies":[{"coinDenom":"dear","coinMinimalDenom":"udear","coinDecimals":6}],"rest":"https://testnet-rest.deardoge.org","rpc":"https://testnet-rpc.deardoge.org","bech32Config":{"bech32PrefixAccAddr":"deardoge","bech32PrefixAccPub":"deardogepub","bech32PrefixValAddr":"deardogevaloper","bech32PrefixValPub":"deardogevaloperpub","bech32PrefixConsAddr":"deardogevalcons","bech32PrefixConsPub":"deardogevalconspub"},"chainName":"deardogetestnet","feeCurrencies":[{"coinDenom":"dear","coinMinimalDenom":"udear","coinDecimals":6}],"stakeCurrency":{"coinDenom":"dear","coinMinimalDenom":"udear","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"morpheus-apollo-3","currencies":[{"coinDenom":"daric","coinMinimalDenom":"udaric","coinDecimals":6}],"rest":"https://lcd.morpheus.desmos.network","rpc":"https://rpc.morpheus.desmos.network","bech32Config":{"bech32PrefixAccAddr":"desmos","bech32PrefixAccPub":"desmospub","bech32PrefixValAddr":"desmosvaloper","bech32PrefixValPub":"desmosvaloperpub","bech32PrefixConsAddr":"desmosvalcons","bech32PrefixConsPub":"desmosvalconspub"},"chainName":"desmostestnet","feeCurrencies":[{"coinDenom":"daric","coinMinimalDenom":"udaric","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.03,"high":0.05}}],"stakeCurrency":{"coinDenom":"daric","coinMinimalDenom":"udaric","coinDecimals":6},"bip44":{"coinType":852}},{"chainId":"dhealth-testnet-2","currencies":[{"coinDenom":"tdhp","coinMinimalDenom":"utdhp","coinDecimals":6}],"rest":"https://lcd-testnet.dhealth.dev","rpc":"https://rpc-testnet.dhealth.dev","bech32Config":{"bech32PrefixAccAddr":"tdh02","bech32PrefixAccPub":"tdh02pub","bech32PrefixValAddr":"tdh02valoper","bech32PrefixValPub":"tdh02valoperpub","bech32PrefixConsAddr":"tdh02valcons","bech32PrefixConsPub":"tdh02valconspub"},"chainName":"dhealthtestnet","feeCurrencies":[{"coinDenom":"tdhp","coinMinimalDenom":"utdhp","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}}],"stakeCurrency":{"coinDenom":"tdhp","coinMinimalDenom":"utdhp","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"vota-testnet","currencies":[{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18}],"rest":"https://vota-testnet-rest.dorafactory.org","rpc":"https://vota-testnet-rpc.dorafactory.org/","bech32Config":{"bech32PrefixAccAddr":"dora","bech32PrefixAccPub":"dorapub","bech32PrefixValAddr":"doravaloper","bech32PrefixValPub":"doravaloperpub","bech32PrefixConsAddr":"doravalcons","bech32PrefixConsPub":"doravalconspub"},"chainName":"doravotatestnet","feeCurrencies":[{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18}],"stakeCurrency":{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"dydx-testnet-4","currencies":[{"coinDenom":"dv4tnt","coinMinimalDenom":"adv4tnt","coinDecimals":18}],"rest":"https://dydx-lcd-testnet.enigma-validator.com","rpc":"https://dydx-rpc-testnet.enigma-validator.com","bech32Config":{"bech32PrefixAccAddr":"dydx","bech32PrefixAccPub":"dydxpub","bech32PrefixValAddr":"dydxvaloper","bech32PrefixValPub":"dydxvaloperpub","bech32PrefixConsAddr":"dydxvalcons","bech32PrefixConsPub":"dydxvalconspub"},"chainName":"dydxtestnet","feeCurrencies":[{"coinDenom":"dv4tnt","coinMinimalDenom":"adv4tnt","coinDecimals":18,"gasPriceStep":{"low":12500000000,"average":12500000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"dv4tnt","coinMinimalDenom":"adv4tnt","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"dymension_1405-1","currencies":[{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18},{"coinDenom":"nim","coinMinimalDenom":"ibc/FB53D1684F155CBB86D9CE917807E42B59209EBE3AD3A92E15EF66586C073942","coinDecimals":18},{"coinDenom":"mand","coinMinimalDenom":"ibc/5A26C8DC8DA66F4DD94326E67F94510188F5F7AFE2DB3933A0C823670E56EABF","coinDecimals":18}],"rest":"https://api-dym-migration-test-2.mzonder.com","rpc":"https://rpc-dym-migration-test-2.mzonder.com","bech32Config":{"bech32PrefixAccAddr":"dym","bech32PrefixAccPub":"dympub","bech32PrefixValAddr":"dymvaloper","bech32PrefixValPub":"dymvaloperpub","bech32PrefixConsAddr":"dymvalcons","bech32PrefixConsPub":"dymvalconspub"},"chainName":"dymensionplaygroundtestnet","feeCurrencies":[{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18,"gasPriceStep":{"low":5000000000,"average":5500000000,"high":6000000000}}],"stakeCurrency":{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"elysicstestnet-1","currencies":[{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6},{"coinDenom":"eden","coinMinimalDenom":"ueden","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6}],"rest":"https://api.testnet.elys.network","rpc":"https://rpc.testnet.elys.network","bech32Config":{"bech32PrefixAccAddr":"elys","bech32PrefixAccPub":"elyspub","bech32PrefixValAddr":"elysvaloper","bech32PrefixValPub":"elysvaloperpub","bech32PrefixConsAddr":"elysvalcons","bech32PrefixConsPub":"elysvalconspub"},"chainName":"elystestnet","feeCurrencies":[{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"empe-testnet-2","currencies":[{"coinDenom":"empe","coinMinimalDenom":"uempe","coinDecimals":6}],"rest":"https://lcd-testnet.empe.io/","rpc":"https://rpc-testnet.empe.io/","bech32Config":{"bech32PrefixAccAddr":"empe","bech32PrefixAccPub":"empepub","bech32PrefixValAddr":"empevaloper","bech32PrefixValPub":"empevaloperpub","bech32PrefixConsAddr":"empevalcons","bech32PrefixConsPub":"empevalconspub"},"chainName":"empetestnet","feeCurrencies":[{"coinDenom":"empe","coinMinimalDenom":"uempe","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"empe","coinMinimalDenom":"uempe","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"circulus-1","currencies":[{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6}],"rest":"https://empower-testnet-api.polkachu.com:443","rpc":"https://empower-testnet-rpc.polkachu.com:443","bech32Config":{"bech32PrefixAccAddr":"empower","bech32PrefixAccPub":"empowerpub","bech32PrefixValAddr":"empowervaloper","bech32PrefixValPub":"empowervaloperpub","bech32PrefixConsAddr":"empowervalcons","bech32PrefixConsPub":"empowervalconspub"},"chainName":"empowertestnet","feeCurrencies":[{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6}],"stakeCurrency":{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"epix_4243-1","currencies":[{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18}],"rest":"https://api.testnet.epix.zone","rpc":"https://rpc.testnet.epix.zone","bech32Config":{"bech32PrefixAccAddr":"epix","bech32PrefixAccPub":"epixpub","bech32PrefixValAddr":"epixvaloper","bech32PrefixValPub":"epixvaloperpub","bech32PrefixConsAddr":"epixvalcons","bech32PrefixConsPub":"epixvalconspub"},"chainName":"epixtestnet","feeCurrencies":[{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"evmos_9000-4","currencies":[{"coinDenom":"tevmos","coinMinimalDenom":"atevmos","coinDecimals":18}],"rest":"https://evmos.test.api.coldyvalidator.net","rpc":"https://evmos.test.rpc.coldyvalidator.net","bech32Config":{"bech32PrefixAccAddr":"evmos","bech32PrefixAccPub":"evmospub","bech32PrefixValAddr":"evmosvaloper","bech32PrefixValPub":"evmosvaloperpub","bech32PrefixConsAddr":"evmosvalcons","bech32PrefixConsPub":"evmosvalconspub"},"chainName":"evmostestnet","feeCurrencies":[{"coinDenom":"tevmos","coinMinimalDenom":"atevmos","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"tevmos","coinMinimalDenom":"atevmos","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"dorado-1","currencies":[{"coinDenom":"testfet","coinMinimalDenom":"atestfet","coinDecimals":18}],"rest":"https://rest-dorado.fetch.ai","rpc":"https://rpc-dorado.fetch.ai:443","bech32Config":{"bech32PrefixAccAddr":"fetch","bech32PrefixAccPub":"fetchpub","bech32PrefixValAddr":"fetchvaloper","bech32PrefixValPub":"fetchvaloperpub","bech32PrefixConsAddr":"fetchvalcons","bech32PrefixConsPub":"fetchvalconspub"},"chainName":"fetchhubtestnet","feeCurrencies":[{"coinDenom":"testfet","coinMinimalDenom":"atestfet","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.035}}],"stakeCurrency":{"coinDenom":"testfet","coinMinimalDenom":"atestfet","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"fiamma-testnet-1","currencies":[{"coinDenom":"fia","coinMinimalDenom":"ufia","coinDecimals":6}],"rest":"https://testnet-api.fiammachain.io","rpc":"https://testnet-rpc.fiammachain.io","bech32Config":{"bech32PrefixAccAddr":"fiamma","bech32PrefixAccPub":"fiammapub","bech32PrefixValAddr":"fiammavaloper","bech32PrefixValPub":"fiammavaloperpub","bech32PrefixConsAddr":"fiammavalcons","bech32PrefixConsPub":"fiammavalconspub"},"chainName":"fiammatestnet","feeCurrencies":[{"coinDenom":"fia","coinMinimalDenom":"ufia","coinDecimals":6}],"stakeCurrency":{"coinDenom":"fia","coinMinimalDenom":"ufia","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"ebony-2","currencies":[{"coinDenom":"tfnsa","coinMinimalDenom":"tcony","coinDecimals":6}],"rest":"https://ebony-api.finschia.io","rpc":"https://ebony-rpc.finschia.io","bech32Config":{"bech32PrefixAccAddr":"tlink","bech32PrefixAccPub":"tlinkpub","bech32PrefixValAddr":"tlinkvaloper","bech32PrefixValPub":"tlinkvaloperpub","bech32PrefixConsAddr":"tlinkvalcons","bech32PrefixConsPub":"tlinkvalconspub"},"chainName":"finschiatestnet","feeCurrencies":[{"coinDenom":"tfnsa","coinMinimalDenom":"tcony","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.015,"high":0.015}}],"stakeCurrency":{"coinDenom":"tfnsa","coinMinimalDenom":"tcony","coinDecimals":6},"bip44":{"coinType":438}},{"chainId":"galactica_9302-1","currencies":[{"coinDenom":"gnet","coinMinimalDenom":"agnet","coinDecimals":18}],"rest":"https://api.galactica.test.pfc.zone/","rpc":"https://rpc.galactica.test.pfc.zone/","bech32Config":{"bech32PrefixAccAddr":"gala","bech32PrefixAccPub":"galapub","bech32PrefixValAddr":"galavaloper","bech32PrefixValPub":"galavaloperpub","bech32PrefixConsAddr":"galavalcons","bech32PrefixConsPub":"galavalconspub"},"chainName":"galacticatestnet","feeCurrencies":[{"coinDenom":"gnet","coinMinimalDenom":"agnet","coinDecimals":18,"gasPriceStep":{"low":10,"average":10,"high":20}}],"stakeCurrency":{"coinDenom":"gnet","coinMinimalDenom":"agnet","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"gitopia-janus-testnet-2","currencies":[{"coinDenom":"tlore","coinMinimalDenom":"utlore","coinDecimals":6}],"rest":"https://gitopia-testnet.nodejumper.io:1317","rpc":"https://gitopia-testnet.nodejumper.io","bech32Config":{"bech32PrefixAccAddr":"gitopia","bech32PrefixAccPub":"gitopiapub","bech32PrefixValAddr":"gitopiavaloper","bech32PrefixValPub":"gitopiavaloperpub","bech32PrefixConsAddr":"gitopiavalcons","bech32PrefixConsPub":"gitopiavalconspub"},"chainName":"gitopiatestnet","feeCurrencies":[{"coinDenom":"tlore","coinMinimalDenom":"utlore","coinDecimals":6}],"stakeCurrency":{"coinDenom":"tlore","coinMinimalDenom":"utlore","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"berberis-1","currencies":[{"coinDenom":"hedge","coinMinimalDenom":"uhedge","coinDecimals":6}],"rest":"https://lcd-berberis.hedgeblock.io","rpc":"https://rpc-berberis.hedgeblock.io","bech32Config":{"bech32PrefixAccAddr":"hedge","bech32PrefixAccPub":"hedgepub","bech32PrefixValAddr":"hedgevaloper","bech32PrefixValPub":"hedgevaloperpub","bech32PrefixConsAddr":"hedgevalcons","bech32PrefixConsPub":"hedgevalconspub"},"chainName":"hedgetestnet","feeCurrencies":[{"coinDenom":"hedge","coinMinimalDenom":"uhedge","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"hedge","coinMinimalDenom":"uhedge","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"testnet-1","currencies":[{"coinDenom":"heart","coinMinimalDenom":"uheart","coinDecimals":6}],"rest":"https://humans-testnet.nodejumper.io:1317","rpc":"https://humans-testnet.nodejumper.io","bech32Config":{"bech32PrefixAccAddr":"humans","bech32PrefixAccPub":"humanspub","bech32PrefixValAddr":"humansvaloper","bech32PrefixValPub":"humansvaloperpub","bech32PrefixConsAddr":"humansvalcons","bech32PrefixConsPub":"humansvalconspub"},"chainName":"humanstestnet","feeCurrencies":[{"coinDenom":"heart","coinMinimalDenom":"uheart","coinDecimals":6}],"stakeCurrency":{"coinDenom":"heart","coinMinimalDenom":"uheart","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"prajna-1","currencies":[{"coinDenom":"hid","coinMinimalDenom":"uhid","coinDecimals":6}],"rest":"https://api.prajna.hypersign.id","rpc":"https://rpc.prajna.hypersign.id","bech32Config":{"bech32PrefixAccAddr":"hid","bech32PrefixAccPub":"hidpub","bech32PrefixValAddr":"hidvaloper","bech32PrefixValPub":"hidvaloperpub","bech32PrefixConsAddr":"hidvalcons","bech32PrefixConsPub":"hidvalconspub"},"chainName":"hypersigntestnet","feeCurrencies":[{"coinDenom":"hid","coinMinimalDenom":"uhid","coinDecimals":6}],"stakeCurrency":{"coinDenom":"hid","coinMinimalDenom":"uhid","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pandora-8","currencies":[{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6}],"rest":"https://testnet.ixo.earth/rest/","rpc":"https://rpc.testnet.ixo.earth/","bech32Config":{"bech32PrefixAccAddr":"ixo","bech32PrefixAccPub":"ixopub","bech32PrefixValAddr":"ixovaloper","bech32PrefixValPub":"ixovaloperpub","bech32PrefixConsAddr":"ixovalcons","bech32PrefixConsPub":"ixovalconspub"},"chainName":"impacthubtestnet","feeCurrencies":[{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"imversed-test-1","currencies":[{"coinDenom":"imv","coinMinimalDenom":"nimv","coinDecimals":6}],"rest":"https://query-endpoint-test.imversed.com/","rpc":"https://tx-endpoint-test.imversed.com/","bech32Config":{"bech32PrefixAccAddr":"imv","bech32PrefixAccPub":"imvpub","bech32PrefixValAddr":"imvvaloper","bech32PrefixValPub":"imvvaloperpub","bech32PrefixConsAddr":"imvvalcons","bech32PrefixConsPub":"imvvalconspub"},"chainName":"imversedtestnet","feeCurrencies":[{"coinDenom":"imv","coinMinimalDenom":"nimv","coinDecimals":6}],"stakeCurrency":{"coinDenom":"imv","coinMinimalDenom":"nimv","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"injective-888","currencies":[{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18}],"rest":"https://injective-testnet-api.polkachu.com","rpc":"https://injective-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"inj","bech32PrefixAccPub":"injpub","bech32PrefixValAddr":"injvaloper","bech32PrefixValPub":"injvaloperpub","bech32PrefixConsAddr":"injvalcons","bech32PrefixConsPub":"injvalconspub"},"chainName":"injectivetestnet","feeCurrencies":[{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18,"gasPriceStep":{"low":500000000,"average":700000000,"high":900000000}}],"stakeCurrency":{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"canine-1","currencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"rest":"https://jkl.api.t.stavr.tech","rpc":"http://jkl.rpc.t.stavr.tech:19127","bech32Config":{"bech32PrefixAccAddr":"jkl","bech32PrefixAccPub":"jklpub","bech32PrefixValAddr":"jklvaloper","bech32PrefixValPub":"jklvaloperpub","bech32PrefixConsAddr":"jklvalcons","bech32PrefixConsPub":"jklvalconspub"},"chainName":"jackaltestnet","feeCurrencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"stakeCurrency":{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mesomelas-1","currencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"rest":"https://jackal-testnet-v4-rest.brocha.in","rpc":"https://jackal-testnet-v4-rpc.brocha.in","bech32Config":{"bech32PrefixAccAddr":"jkl","bech32PrefixAccPub":"jklpub","bech32PrefixValAddr":"jklvaloper","bech32PrefixValPub":"jklvaloperpub","bech32PrefixConsAddr":"jklvalcons","bech32PrefixConsPub":"jklvalconspub"},"chainName":"jackaltestnet2","feeCurrencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"stakeCurrency":{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"uni-6","currencies":[{"coinDenom":"junox","coinMinimalDenom":"ujunox","coinDecimals":6},{"coinDenom":"nexx","coinMinimalDenom":"factory/juno12klaltyqvg2j6v034jwdxrk5n4242ttse4sdpt/NEXX","coinDecimals":6},{"coinDenom":"arena","coinMinimalDenom":"factory/juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k/ARENA","coinDecimals":6}],"rest":"https://juno-testnet-api.polkachu.com","rpc":"https://juno-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"juno","bech32PrefixAccPub":"junopub","bech32PrefixValAddr":"junovaloper","bech32PrefixValPub":"junovaloperpub","bech32PrefixConsAddr":"junovalcons","bech32PrefixConsPub":"junovalconspub"},"chainName":"junotestnet","feeCurrencies":[{"coinDenom":"junox","coinMinimalDenom":"ujunox","coinDecimals":6,"gasPriceStep":{"low":0.003,"average":0.0045,"high":0.006}}],"stakeCurrency":{"coinDenom":"junox","coinMinimalDenom":"ujunox","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kichain-t-4","currencies":[{"coinDenom":"tki","coinMinimalDenom":"utki","coinDecimals":6}],"rest":"https://api-challenge.blockchain.ki/","rpc":"https://rpc-challenge.blockchain.ki/","bech32Config":{"bech32PrefixAccAddr":"tki","bech32PrefixAccPub":"tkipub","bech32PrefixValAddr":"tkivaloper","bech32PrefixValPub":"tkivaloperpub","bech32PrefixConsAddr":"tkivalcons","bech32PrefixConsPub":"tkivalconspub"},"chainName":"kichaintestnet","feeCurrencies":[{"coinDenom":"tki","coinMinimalDenom":"utki","coinDecimals":6}],"stakeCurrency":{"coinDenom":"tki","coinMinimalDenom":"utki","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kima_testnet","currencies":[{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6}],"rest":"https://api-testnet.kima.finance","rpc":"https://rpc-testnet.kima.finance/","bech32Config":{"bech32PrefixAccAddr":"kima","bech32PrefixAccPub":"kimapub","bech32PrefixValAddr":"kimavaloper","bech32PrefixValPub":"kimavaloperpub","bech32PrefixConsAddr":"kimavalcons","bech32PrefixConsPub":"kimavalconspub"},"chainName":"kimanetworktestnet","feeCurrencies":[{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"harpoon-4","currencies":[{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6},{"coinDenom":"fuzn","coinMinimalDenom":"factory/kujira16qpvzhmawvsm8mcj4hdvtz25dadatdhhgw79xa/FUZN","coinDecimals":6}],"rest":"https://kujira-testnet-api.polkachu.com/","rpc":"https://kujira-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"kujira","bech32PrefixAccPub":"kujirapub","bech32PrefixValAddr":"kujiravaloper","bech32PrefixValPub":"kujiravaloperpub","bech32PrefixConsAddr":"kujiravalcons","bech32PrefixConsPub":"kujiravalconspub"},"chainName":"kujiratestnet","feeCurrencies":[{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6}],"stakeCurrency":{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kaon-1","currencies":[{"coinDenom":"kyve","coinMinimalDenom":"tkyve","coinDecimals":6}],"rest":"https://api.kaon.kyve.network","rpc":"https://rpc.kaon.kyve.network","bech32Config":{"bech32PrefixAccAddr":"kyve","bech32PrefixAccPub":"kyvepub","bech32PrefixValAddr":"kyvevaloper","bech32PrefixValPub":"kyvevaloperpub","bech32PrefixConsAddr":"kyvevalcons","bech32PrefixConsPub":"kyvevalconspub"},"chainName":"kyvetestnet","feeCurrencies":[{"coinDenom":"kyve","coinMinimalDenom":"tkyve","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.03,"high":0.06}}],"stakeCurrency":{"coinDenom":"kyve","coinMinimalDenom":"tkyve","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"lava-testnet-2","currencies":[{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6}],"rest":"https://lav1.lava.build/","rpc":"https://lav1.tendermintrpc.lava.build:443","bech32Config":{"bech32PrefixAccAddr":"lava@","bech32PrefixAccPub":"lava@pub","bech32PrefixValAddr":"lava@valoper","bech32PrefixValPub":"lava@valoperpub","bech32PrefixConsAddr":"lava@valcons","bech32PrefixConsPub":"lava@valconspub"},"chainName":"lavatestnet","feeCurrencies":[{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6,"gasPriceStep":{"low":0.000001,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"likecoin-public-testnet-5","currencies":[{"coinDenom":"ekil","coinMinimalDenom":"nanoekil","coinDecimals":9}],"rest":"https://node.testnet.like.co/","rpc":"https://node.testnet.like.co/rpc/","bech32Config":{"bech32PrefixAccAddr":"like","bech32PrefixAccPub":"likepub","bech32PrefixValAddr":"likevaloper","bech32PrefixValPub":"likevaloperpub","bech32PrefixConsAddr":"likevalcons","bech32PrefixConsPub":"likevalconspub"},"chainName":"likecointestnet","feeCurrencies":[{"coinDenom":"ekil","coinMinimalDenom":"nanoekil","coinDecimals":9,"gasPriceStep":{"low":1000,"average":10000,"high":1000000}}],"stakeCurrency":{"coinDenom":"ekil","coinMinimalDenom":"nanoekil","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"lumenx-test","currencies":[{"coinDenom":"lumen","coinMinimalDenom":"ulumen","coinDecimals":6}],"rest":"https://testnet-api.lumenx.chaintools.tech/","rpc":"https://testnet-rpc.lumenx.chaintools.tech/","bech32Config":{"bech32PrefixAccAddr":"lumen","bech32PrefixAccPub":"lumenpub","bech32PrefixValAddr":"lumenvaloper","bech32PrefixValPub":"lumenvaloperpub","bech32PrefixConsAddr":"lumenvalcons","bech32PrefixConsPub":"lumenvalconspub"},"chainName":"lumenxtestnet","feeCurrencies":[{"coinDenom":"lumen","coinMinimalDenom":"ulumen","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"lumen","coinMinimalDenom":"ulumen","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"manifest-ledger-beta","currencies":[{"coinDenom":"mfx","coinMinimalDenom":"umfx","coinDecimals":6},{"coinDenom":"poa","coinMinimalDenom":"upoa","coinDecimals":6}],"rest":"https://nodes.chandrastation.com/api/manifest/","rpc":"https://nodes.chandrastation.com/rpc/manifest/","bech32Config":{"bech32PrefixAccAddr":"manifest","bech32PrefixAccPub":"manifestpub","bech32PrefixValAddr":"manifestvaloper","bech32PrefixValPub":"manifestvaloperpub","bech32PrefixConsAddr":"manifestvalcons","bech32PrefixConsPub":"manifestvalconspub"},"chainName":"manifesttestnet","feeCurrencies":[{"coinDenom":"mfx","coinMinimalDenom":"umfx","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.007,"high":0.1}}],"stakeCurrency":{"coinDenom":"mfx","coinMinimalDenom":"umfx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mantra-hongbai-1","currencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6}],"rest":"https://api.hongbai.mantrachain.io","rpc":"https://rpc.hongbai.mantrachain.io","bech32Config":{"bech32PrefixAccAddr":"mantra","bech32PrefixAccPub":"mantrapub","bech32PrefixValAddr":"mantravaloper","bech32PrefixValPub":"mantravaloperpub","bech32PrefixConsAddr":"mantravalcons","bech32PrefixConsPub":"mantravalconspub"},"chainName":"mantrachaintestnet","feeCurrencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.003}}],"stakeCurrency":{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mantra-dukong-1","currencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6}],"rest":"https://api.dukong.mantrachain.io","rpc":"https://rpc.dukong.mantrachain.io","bech32Config":{"bech32PrefixAccAddr":"mantra","bech32PrefixAccPub":"mantrapub","bech32PrefixValAddr":"mantravaloper","bech32PrefixValPub":"mantravaloperpub","bech32PrefixConsAddr":"mantravalcons","bech32PrefixConsPub":"mantravalconspub"},"chainName":"mantrachaintestnet2","feeCurrencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.03}}],"stakeCurrency":{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"ares-1","currencies":[{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6}],"rest":"https://testnet-rest.marsprotocol.io/","rpc":"https://testnet-rpc.marsprotocol.io/","bech32Config":{"bech32PrefixAccAddr":"mars","bech32PrefixAccPub":"marspub","bech32PrefixValAddr":"marsvaloper","bech32PrefixValPub":"marsvaloperpub","bech32PrefixConsAddr":"marsvalcons","bech32PrefixConsPub":"marsvalconspub"},"chainName":"marstestnet","feeCurrencies":[{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6}],"stakeCurrency":{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"narwhal-2","currencies":[{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6}],"rest":"https://migaloo-testnet-api.polkachu.com","rpc":"https://migaloo-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"migaloo","bech32PrefixAccPub":"migaloopub","bech32PrefixValAddr":"migaloovaloper","bech32PrefixValPub":"migaloovaloperpub","bech32PrefixConsAddr":"migaloovalcons","bech32PrefixConsPub":"migaloovalconspub"},"chainName":"migalootestnet","feeCurrencies":[{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6,"gasPriceStep":{"low":0.25,"average":0.5,"high":0.75}}],"stakeCurrency":{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pion-1","currencies":[{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6},{"coinDenom":"amATOM","coinMinimalDenom":"factory/neutron15lku24mqhvy4v4gryrqs4662n9v9q4ux9tayn89cmdzldjcgawushxvm76/amatom","coinDecimals":6},{"coinDenom":"arena","coinMinimalDenom":"factory/neutron1r3slyjlf7g76mz3na6gh7c8ek62rhssrzf60uh0emyw3x94rppyqfcs0pk/uarena","coinDecimals":6}],"rest":"https://rest-falcron.pion-1.ntrn.tech","rpc":"https://rpc-falcron.pion-1.ntrn.tech","bech32Config":{"bech32PrefixAccAddr":"neutron","bech32PrefixAccPub":"neutronpub","bech32PrefixValAddr":"neutronvaloper","bech32PrefixValPub":"neutronvaloperpub","bech32PrefixConsAddr":"neutronvalcons","bech32PrefixConsPub":"neutronvalconspub"},"chainName":"neutrontestnet","feeCurrencies":[{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6,"gasPriceStep":{"low":0.0053,"average":0.0053,"high":0.0053}}],"stakeCurrency":{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nibiru-testnet-1","currencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18}],"rest":"https://lcd.testnet-1.nibiru.fi","rpc":"https://rpc.testnet-1.nibiru.fi","bech32Config":{"bech32PrefixAccAddr":"nibi","bech32PrefixAccPub":"nibipub","bech32PrefixValAddr":"nibivaloper","bech32PrefixValPub":"nibivaloperpub","bech32PrefixConsAddr":"nibivalcons","bech32PrefixConsPub":"nibivalconspub"},"chainName":"nibirutestnet","feeCurrencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"nibiru-testnet-2","currencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18}],"rest":"https://lcd.testnet-2.nibiru.fi","rpc":"https://rpc.testnet-2.nibiru.fi","bech32Config":{"bech32PrefixAccAddr":"nibi","bech32PrefixAccPub":"nibipub","bech32PrefixValAddr":"nibivaloper","bech32PrefixValPub":"nibivaloperpub","bech32PrefixConsAddr":"nibivalcons","bech32PrefixConsPub":"nibivalconspub"},"chainName":"nibirutestnet2","feeCurrencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"nibiru-testnet-3","currencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18}],"rest":"https://lcd.testnet-3.nibiru.fi","rpc":"https://rpc.testnet-3.nibiru.fi","bech32Config":{"bech32PrefixAccAddr":"nibi","bech32PrefixAccPub":"nibipub","bech32PrefixValAddr":"nibivaloper","bech32PrefixValPub":"nibivaloperpub","bech32PrefixConsAddr":"nibivalcons","bech32PrefixConsPub":"nibivalconspub"},"chainName":"nibirutestnet3","feeCurrencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"nillion-chain-testnet-1","currencies":[{"coinDenom":"nil","coinMinimalDenom":"unil","coinDecimals":6}],"rest":"https://nillion-testnet-api.polkachu.com/","rpc":"https://nillion-testnet-rpc.polkachu.com/","bech32Config":{"bech32PrefixAccAddr":"nillion","bech32PrefixAccPub":"nillionpub","bech32PrefixValAddr":"nillionvaloper","bech32PrefixValPub":"nillionvaloperpub","bech32PrefixConsAddr":"nillionvalcons","bech32PrefixConsPub":"nillionvalconspub"},"chainName":"nilliontestnet","feeCurrencies":[{"coinDenom":"nil","coinMinimalDenom":"unil","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.00025}}],"stakeCurrency":{"coinDenom":"nil","coinMinimalDenom":"unil","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"grand-1","currencies":[{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":6},{"coinDenom":"love","coinMinimalDenom":"ulove","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6},{"coinDenom":"usdy","coinMinimalDenom":"ausdy","coinDecimals":18}],"rest":"https://noble-testnet-api.polkachu.com","rpc":"https://noble-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"noble","bech32PrefixAccPub":"noblepub","bech32PrefixValAddr":"noblevaloper","bech32PrefixValPub":"noblevaloperpub","bech32PrefixConsAddr":"noblevalcons","bech32PrefixConsPub":"noblevalconspub"},"chainName":"nobletestnet","feeCurrencies":[{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nois-testnet-005","currencies":[{"coinDenom":"nois","coinMinimalDenom":"unois","coinDecimals":6}],"rest":"https://api.nois.mcbnode.online","rpc":"https://nois-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"nois","bech32PrefixAccPub":"noispub","bech32PrefixValAddr":"noisvaloper","bech32PrefixValPub":"noisvaloperpub","bech32PrefixConsAddr":"noisvalcons","bech32PrefixConsPub":"noisvalconspub"},"chainName":"noistestnet","feeCurrencies":[{"coinDenom":"nois","coinMinimalDenom":"unois","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"nois","coinMinimalDenom":"unois","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"rila-1","currencies":[{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6}],"rest":"https://rila-cl.nolus.network:1317","rpc":"https://rila-cl.nolus.network:26657","bech32Config":{"bech32PrefixAccAddr":"nolus","bech32PrefixAccPub":"noluspub","bech32PrefixValAddr":"nolusvaloper","bech32PrefixValPub":"nolusvaloperpub","bech32PrefixConsAddr":"nolusvalcons","bech32PrefixConsPub":"nolusvalconspub"},"chainName":"nolustestnet","feeCurrencies":[{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.05}}],"stakeCurrency":{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nomic-testnet-6","currencies":[{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},{"coinDenom":"nbtc","coinMinimalDenom":"usat","coinDecimals":14}],"rest":"https://testnet-api.nomic.io:8443","rpc":"https://testnet-rpc.nomic.io:2096","bech32Config":{"bech32PrefixAccAddr":"nomic","bech32PrefixAccPub":"nomicpub","bech32PrefixValAddr":"nomicvaloper","bech32PrefixValPub":"nomicvaloperpub","bech32PrefixConsAddr":"nomicvalcons","bech32PrefixConsPub":"nomicvalconspub"},"chainName":"nomictestnet","feeCurrencies":[{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},{"coinDenom":"nbtc","coinMinimalDenom":"usat","coinDecimals":14}],"stakeCurrency":{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sandbox","currencies":[{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6},{"coinDenom":"nym","coinMinimalDenom":"unym","coinDecimals":6}],"rest":"https://api.sandbox.nymtech.net","rpc":"https://rpc.sandbox.nymtech.net","bech32Config":{"bech32PrefixAccAddr":"n","bech32PrefixAccPub":"npub","bech32PrefixValAddr":"nvaloper","bech32PrefixValPub":"nvaloperpub","bech32PrefixConsAddr":"nvalcons","bech32PrefixConsPub":"nvalconspub"},"chainName":"nyxtestnet","feeCurrencies":[{"coinDenom":"nym","coinMinimalDenom":"unym","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}},{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"okp4-nemeton-1","currencies":[{"coinDenom":"know","coinMinimalDenom":"uknow","coinDecimals":6}],"rest":"https://okptest-lcd.quickapi.com","rpc":"https://api.testnet.okp4.network/rpc","bech32Config":{"bech32PrefixAccAddr":"okp4","bech32PrefixAccPub":"okp4pub","bech32PrefixValAddr":"okp4valoper","bech32PrefixValPub":"okp4valoperpub","bech32PrefixConsAddr":"okp4valcons","bech32PrefixConsPub":"okp4valconspub"},"chainName":"okp4testnet","feeCurrencies":[{"coinDenom":"know","coinMinimalDenom":"uknow","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"know","coinMinimalDenom":"uknow","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"osmo-test-5","currencies":[{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6},{"coinDenom":"ion","coinMinimalDenom":"uion","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/9FF2B7A5F55038A7EE61F4FD6749D9A648B48E89830F2682B67B5DC158E2753C","coinDecimals":6},{"coinDenom":"ausdc","coinMinimalDenom":"ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"ibc/1F42AC9631DBE03009219ECCFE151786F53A038DE9F7A07C709158514F1D5942","coinDecimals":18},{"coinDenom":"junox","coinMinimalDenom":"ibc/31D220286E6C224C0F72D890D0EB75A228D388089EF5C4D77212344F9EAF0183","coinDecimals":6},{"coinDenom":"mars","coinMinimalDenom":"ibc/66A7ADA623D33D0B66C6890FE3E1AF3D638D56CE2B56F8BDA210B2AA62016216","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/DE6792CF9E521F6AD6E9A4BDF6225C9571A3B74ACC0A529F92BC5122A39D2E58","coinDecimals":6},{"coinDenom":"akt","coinMinimalDenom":"ibc/AD59D59CFB0E628E73C798415F823AB5B6257C2FE4BF67DBB5D6A677B2686E82","coinDecimals":6},{"coinDenom":"kyve","coinMinimalDenom":"ibc/AB8AF05799E299FB5C5C80781DA35887F53E029745D20E5641233DB4E6B28515","coinDecimals":6},{"coinDenom":"qck","coinMinimalDenom":"ibc/F37CF69589DE12342758382F8770C0852CD8D2E4519F55166EBDAF472AD667C9","coinDecimals":6},{"coinDenom":"c4e","coinMinimalDenom":"ibc/E3D323CB6F427C49E56F913C853A416F6B71BAA9B0164625AD0203266F92B3ED","coinDecimals":6},{"coinDenom":"xprt","coinMinimalDenom":"ibc/754C8533F8A418B03AD5F2C6AA19D4703CF78BBAB9E2E4DDD6212AAC2E502CA6","coinDecimals":6},{"coinDenom":"XION","coinMinimalDenom":"ibc/3642669AD14386D3E38F43F30CFCA859B3E8A05BF6BD6A23DEBD2115AD1325E9","coinDecimals":6},{"coinDenom":"tsaga","coinMinimalDenom":"ibc/48384130079A5987378F5776775F8C29A02505273E777BBB99361F2BB5B577C9","coinDecimals":6},{"coinDenom":"ixo","coinMinimalDenom":"ibc/88C815D69587CF0F05E96E5E2731EA56194D73C9A02A500095294D3A5DE68F16","coinDecimals":6},{"coinDenom":"willyz","coinMinimalDenom":"factory/osmo1zlkzu72774ynac53necz46u4ycqtp36wedrar0/willyz","coinDecimals":6},{"coinDenom":"amATOM","coinMinimalDenom":"ibc/C86B92F7FCFC1993DAC4AB0D78D9BC080300354B823A57F12CD6E2FBB667214E","coinDecimals":6},{"coinDenom":"tkx","coinMinimalDenom":"ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6","coinDecimals":18}],"rest":"https://lcd.osmotest5.osmosis.zone/","rpc":"https://rpc.osmotest5.osmosis.zone/","bech32Config":{"bech32PrefixAccAddr":"osmo","bech32PrefixAccPub":"osmopub","bech32PrefixValAddr":"osmovaloper","bech32PrefixValPub":"osmovaloperpub","bech32PrefixConsAddr":"osmovalcons","bech32PrefixConsPub":"osmovalconspub"},"chainName":"osmosistestnet","feeCurrencies":[{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"INVALID-ID-permtestnet-testnet-1","currencies":[{"coinDenom":"perm","coinMinimalDenom":"uperm","coinDecimals":6}],"rest":"https://rest.3.finance/","rpc":"https://rpc.3.finance/","bech32Config":{"bech32PrefixAccAddr":"perm","bech32PrefixAccPub":"permpub","bech32PrefixValAddr":"permvaloper","bech32PrefixValPub":"permvaloperpub","bech32PrefixConsAddr":"permvalcons","bech32PrefixConsPub":"permvalconspub"},"chainName":"permtestnet","feeCurrencies":[{"coinDenom":"perm","coinMinimalDenom":"uperm","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.0025,"high":0.0024}}],"stakeCurrency":{"coinDenom":"perm","coinMinimalDenom":"uperm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"test-core-1","currencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},{"coinDenom":"stkatom","coinMinimalDenom":"stk/uatom","coinDecimals":6}],"rest":"https://rest-testnet-persistence.architectnodes.com/","rpc":"https://rpc-testnet-persistence.architectnodes.com/","bech32Config":{"bech32PrefixAccAddr":"persistence","bech32PrefixAccPub":"persistencepub","bech32PrefixValAddr":"persistencevaloper","bech32PrefixValPub":"persistencevaloperpub","bech32PrefixConsAddr":"persistencevalcons","bech32PrefixConsPub":"persistencevalconspub"},"chainName":"persistencetestnet","feeCurrencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.125,"high":0.2}}],"stakeCurrency":{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"test-core-2","currencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},{"coinDenom":"stkatom","coinMinimalDenom":"stk/uatom","coinDecimals":6},{"coinDenom":"stkosmo","coinMinimalDenom":"stk/uosmo","coinDecimals":6},{"coinDenom":"stkdv4tnt","coinMinimalDenom":"stk/adv4tnt","coinDecimals":18}],"rest":"https://api-persistence-testnet-01.stakeflow.io/","rpc":"https://rpc-persistence-testnet-01.stakeflow.io/","bech32Config":{"bech32PrefixAccAddr":"persistence","bech32PrefixAccPub":"persistencepub","bech32PrefixValAddr":"persistencevaloper","bech32PrefixValPub":"persistencevaloperpub","bech32PrefixConsAddr":"persistencevalcons","bech32PrefixConsPub":"persistencevalconspub"},"chainName":"persistencetestnet2","feeCurrencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.125,"high":0.2}}],"stakeCurrency":{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"planq_7077-1","currencies":[{"coinDenom":"tplanq","coinMinimalDenom":"atplanq","coinDecimals":18}],"rest":"https://rest-atlas.planq.network","rpc":"https://rpc-atlas.planq.network","bech32Config":{"bech32PrefixAccAddr":"plq","bech32PrefixAccPub":"plqpub","bech32PrefixValAddr":"plqvaloper","bech32PrefixValPub":"plqvaloperpub","bech32PrefixConsAddr":"plqvalcons","bech32PrefixConsPub":"plqvalconspub"},"chainName":"planqtestnet","feeCurrencies":[{"coinDenom":"tplanq","coinMinimalDenom":"atplanq","coinDecimals":18,"gasPriceStep":{"low":30000000000,"average":35000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"tplanq","coinMinimalDenom":"atplanq","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"pocket-beta","currencies":[{"coinDenom":"pokt","coinMinimalDenom":"upokt","coinDecimals":6}],"rest":"https://shannon-testnet-grove-api.beta.poktroll.com","rpc":"https://shannon-testnet-grove-rpc.beta.poktroll.com","bech32Config":{"bech32PrefixAccAddr":"pokt@","bech32PrefixAccPub":"pokt@pub","bech32PrefixValAddr":"pokt@valoper","bech32PrefixValPub":"pokt@valoperpub","bech32PrefixConsAddr":"pokt@valcons","bech32PrefixConsPub":"pokt@valconspub"},"chainName":"pockettestnet","feeCurrencies":[{"coinDenom":"pokt","coinMinimalDenom":"upokt","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.0025}}],"stakeCurrency":{"coinDenom":"pokt","coinMinimalDenom":"upokt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"indigo-1","currencies":[{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6}],"rest":"https://testnet-api.pryzm.zone","rpc":"https://testnet-rpc.pryzm.zone","bech32Config":{"bech32PrefixAccAddr":"pryzm","bech32PrefixAccPub":"pryzmpub","bech32PrefixValAddr":"pryzmvaloper","bech32PrefixValPub":"pryzmvaloperpub","bech32PrefixConsAddr":"pryzmvalcons","bech32PrefixConsPub":"pryzmvalconspub"},"chainName":"pryzmtestnet","feeCurrencies":[{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"quasar-test-1","currencies":[{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6},{"coinDenom":"ayy","coinMinimalDenom":"uayy","coinDecimals":6},{"coinDenom":"oro","coinMinimalDenom":"uoro","coinDecimals":6}],"rest":"https://quasar-testnet-api.polkachu.com/","rpc":"https://quasar-testnet-rpc.polkachu.com/","bech32Config":{"bech32PrefixAccAddr":"quasar","bech32PrefixAccPub":"quasarpub","bech32PrefixValAddr":"quasarvaloper","bech32PrefixValPub":"quasarvaloperpub","bech32PrefixConsAddr":"quasarvalcons","bech32PrefixConsPub":"quasarvalconspub"},"chainName":"quasartestnet","feeCurrencies":[{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"rhye-2","currencies":[{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6}],"rest":"https://quick.api.t.stavr.tech","rpc":"http://quick.rpc.t.stavr.tech:20027","bech32Config":{"bech32PrefixAccAddr":"quick","bech32PrefixAccPub":"quickpub","bech32PrefixValAddr":"quickvaloper","bech32PrefixValPub":"quickvaloperpub","bech32PrefixConsAddr":"quickvalcons","bech32PrefixConsPub":"quickvalconspub"},"chainName":"quicksilvertestnet","feeCurrencies":[{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.00025}}],"stakeCurrency":{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"earendel-1","currencies":[{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6}],"rest":"https://testnet-api.qwoyn.studio","rpc":"https://testnet-rpc.qwoyn.studio","bech32Config":{"bech32PrefixAccAddr":"qwoyn","bech32PrefixAccPub":"qwoynpub","bech32PrefixValAddr":"qwoynvaloper","bech32PrefixValPub":"qwoynvaloperpub","bech32PrefixConsAddr":"qwoynvalcons","bech32PrefixConsPub":"qwoynvalconspub"},"chainName":"qwoyntestnet","feeCurrencies":[{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6}],"stakeCurrency":{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"ssc-testnet-2","currencies":[{"coinDenom":"tsaga","coinMinimalDenom":"utsaga","coinDecimals":6}],"rest":"https://testnet-ssc-lcd.sagarpc.io/","rpc":"https://testnet-ssc.sagarpc.io/","bech32Config":{"bech32PrefixAccAddr":"saga","bech32PrefixAccPub":"sagapub","bech32PrefixValAddr":"sagavaloper","bech32PrefixValPub":"sagavaloperpub","bech32PrefixConsAddr":"sagavalcons","bech32PrefixConsPub":"sagavalconspub"},"chainName":"sagatestnet","feeCurrencies":[{"coinDenom":"tsaga","coinMinimalDenom":"utsaga","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"tsaga","coinMinimalDenom":"utsaga","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pulsar-3","currencies":[{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6}],"rest":"https://lcd.testnet.secretsaturn.net","rpc":"https://rpc.testnet.secretsaturn.net","bech32Config":{"bech32PrefixAccAddr":"secret","bech32PrefixAccPub":"secretpub","bech32PrefixValAddr":"secretvaloper","bech32PrefixValPub":"secretvaloperpub","bech32PrefixConsAddr":"secretvalcons","bech32PrefixConsPub":"secretvalconspub"},"chainName":"secretnetworktestnet","feeCurrencies":[{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6}],"stakeCurrency":{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6},"bip44":{"coinType":529}},{"chainId":"atlantic-1","currencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6}],"rest":"https://sei-testnet-rest.brocha.in","rpc":"https://sei-testnet-rpc.brocha.in","bech32Config":{"bech32PrefixAccAddr":"sei","bech32PrefixAccPub":"seipub","bech32PrefixValAddr":"seivaloper","bech32PrefixValPub":"seivaloperpub","bech32PrefixConsAddr":"seivalcons","bech32PrefixConsPub":"seivalconspub"},"chainName":"seitestnet","feeCurrencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6}],"stakeCurrency":{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"atlantic-2","currencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6}],"rest":"https://sei-testnet-2-rest.brocha.in","rpc":"https://sei-testnet-2-rpc.brocha.in","bech32Config":{"bech32PrefixAccAddr":"sei","bech32PrefixAccPub":"seipub","bech32PrefixValAddr":"seivaloper","bech32PrefixValPub":"seivaloperpub","bech32PrefixConsAddr":"seivalcons","bech32PrefixConsPub":"seivalconspub"},"chainName":"seitestnet2","feeCurrencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6}],"stakeCurrency":{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"self-dev-1","currencies":[{"coinDenom":"self","coinMinimalDenom":"uself","coinDecimals":6}],"rest":"https://api-devnet.selfchain.xyz/","rpc":"https://rpc-devnet.selfchain.xyz","bech32Config":{"bech32PrefixAccAddr":"self","bech32PrefixAccPub":"selfpub","bech32PrefixValAddr":"selfvaloper","bech32PrefixValPub":"selfvaloperpub","bech32PrefixConsAddr":"selfvalcons","bech32PrefixConsPub":"selfvalconspub"},"chainName":"selfchaindevnet","feeCurrencies":[{"coinDenom":"self","coinMinimalDenom":"uself","coinDecimals":6}],"stakeCurrency":{"coinDenom":"self","coinMinimalDenom":"uself","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sge-network-3","currencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"rest":"https://api.testnet.sgenetwork.io","rpc":"https://rpc.testnet.sgenetwork.io","bech32Config":{"bech32PrefixAccAddr":"sge","bech32PrefixAccPub":"sgepub","bech32PrefixValAddr":"sgevaloper","bech32PrefixValPub":"sgevaloperpub","bech32PrefixConsAddr":"sgevalcons","bech32PrefixConsPub":"sgevalconspub"},"chainName":"sgetestnet","feeCurrencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"stakeCurrency":{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sge-network-4","currencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"rest":"https://api.testnet.sgenetwork.io","rpc":"https://rpc.testnet.sgenetwork.io","bech32Config":{"bech32PrefixAccAddr":"sge","bech32PrefixAccPub":"sgepub","bech32PrefixValAddr":"sgevaloper","bech32PrefixValPub":"sgevaloperpub","bech32PrefixConsAddr":"sgevalcons","bech32PrefixConsPub":"sgevalconspub"},"chainName":"sgetestnet4","feeCurrencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"stakeCurrency":{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"yulei-2.1","currencies":[{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6}],"rest":"https://yulei-rest.shentu.org/","rpc":"https://yulei-rpc.shentu.org:443","bech32Config":{"bech32PrefixAccAddr":"shentu","bech32PrefixAccPub":"shentupub","bech32PrefixValAddr":"shentuvaloper","bech32PrefixValPub":"shentuvaloperpub","bech32PrefixConsAddr":"shentuvalcons","bech32PrefixConsPub":"shentuvalconspub"},"chainName":"shentutestnet","feeCurrencies":[{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"fivenet","currencies":[{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6}],"rest":"https://api1.fivenet.sixprotocol.net:443","rpc":"https://rpc1.fivenet.sixprotocol.net:443","bech32Config":{"bech32PrefixAccAddr":"6x","bech32PrefixAccPub":"6xpub","bech32PrefixValAddr":"6xvaloper","bech32PrefixValPub":"6xvaloperpub","bech32PrefixConsAddr":"6xvalcons","bech32PrefixConsPub":"6xvalconspub"},"chainName":"sixtestnet","feeCurrencies":[{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6,"gasPriceStep":{"low":1.25,"average":1.5,"high":1.75}}],"stakeCurrency":{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"soarchaintestnet","currencies":[{"coinDenom":"tsoar","coinMinimalDenom":"utsoar","coinDecimals":6}],"rest":"https://api.testnet.soarchain.com/","rpc":"https://rpc1.testnet.soarchain.com","bech32Config":{"bech32PrefixAccAddr":"soar","bech32PrefixAccPub":"soarpub","bech32PrefixValAddr":"soarvaloper","bech32PrefixValPub":"soarvaloperpub","bech32PrefixConsAddr":"soarvalcons","bech32PrefixConsPub":"soarvalconspub"},"chainName":"soarchaintestnet","feeCurrencies":[{"coinDenom":"tsoar","coinMinimalDenom":"utsoar","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}}],"stakeCurrency":{"coinDenom":"tsoar","coinMinimalDenom":"utsoar","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sourcetest-1","currencies":[{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6}],"rest":"https://source-testnet-api.itrocket.net/","rpc":"https://source-testnet-rpc.itrocket.net/","bech32Config":{"bech32PrefixAccAddr":"source","bech32PrefixAccPub":"sourcepub","bech32PrefixValAddr":"sourcevaloper","bech32PrefixValPub":"sourcevaloperpub","bech32PrefixConsAddr":"sourcevalcons","bech32PrefixConsPub":"sourcevalconspub"},"chainName":"sourcetestnet","feeCurrencies":[{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.075,"high":0.1}}],"stakeCurrency":{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"elgafar-1","currencies":[{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6}],"rest":"https://rest.elgafar-1.stargaze-apis.com","rpc":"https://rpc.elgafar-1.stargaze-apis.com","bech32Config":{"bech32PrefixAccAddr":"stars","bech32PrefixAccPub":"starspub","bech32PrefixValAddr":"starsvaloper","bech32PrefixValPub":"starsvaloperpub","bech32PrefixConsAddr":"starsvalcons","bech32PrefixConsPub":"starsvalconspub"},"chainName":"stargazetestnet","feeCurrencies":[{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.04,"high":0.05}}],"stakeCurrency":{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"stateset-1-testnet","currencies":[{"coinDenom":"state","coinMinimalDenom":"ustate","coinDecimals":6}],"rest":"https://rest-api.stateset.zone","rpc":"https://rpc.stateset.zone/","bech32Config":{"bech32PrefixAccAddr":"stateset","bech32PrefixAccPub":"statesetpub","bech32PrefixValAddr":"statesetvaloper","bech32PrefixValPub":"statesetvaloperpub","bech32PrefixConsAddr":"statesetvalcons","bech32PrefixConsPub":"statesetvalconspub"},"chainName":"statesettestnet","feeCurrencies":[{"coinDenom":"state","coinMinimalDenom":"ustate","coinDecimals":6}],"stakeCurrency":{"coinDenom":"state","coinMinimalDenom":"ustate","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"stride-internal-1","currencies":[{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6},{"coinDenom":"stTIA","coinMinimalDenom":"stutia","coinDecimals":6},{"coinDenom":"stDV4TNT","coinMinimalDenom":"stadv4tnt","coinDecimals":18},{"coinDenom":"TIA","coinMinimalDenom":"ibc/1A7653323C1A9E267FF7BEBF40B3EEA8065E8F069F47F2493ABC3E0B621BF793","coinDecimals":6},{"coinDenom":"DV4TNT","coinMinimalDenom":"ibc/DFA22C0A6DD15E64B6BD164A1C748EDA8E976F3BDAC9BA7B40AD887BBEC5D2BB","coinDecimals":6}],"rest":"https://stride.testnet-1.stridenet.co/api","rpc":"https://stride.testnet-1.stridenet.co","bech32Config":{"bech32PrefixAccAddr":"stride","bech32PrefixAccPub":"stridepub","bech32PrefixValAddr":"stridevaloper","bech32PrefixValPub":"stridevaloperpub","bech32PrefixConsAddr":"stridevalcons","bech32PrefixConsPub":"stridevalconspub"},"chainName":"stridetestnet","feeCurrencies":[{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6}],"stakeCurrency":{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sunrise-test-0.1","currencies":[{"coinDenom":"vrise","coinMinimalDenom":"uvrise","coinDecimals":6},{"coinDenom":"rise","coinMinimalDenom":"urise","coinDecimals":6}],"rest":"https://a-node.sunrise-test-1.cauchye.net:1318","rpc":"https://a-node.sunrise-test-1.cauchye.net/","bech32Config":{"bech32PrefixAccAddr":"sunrise","bech32PrefixAccPub":"sunrisepub","bech32PrefixValAddr":"sunrisevaloper","bech32PrefixValPub":"sunrisevaloperpub","bech32PrefixConsAddr":"sunrisevalcons","bech32PrefixConsPub":"sunrisevalconspub"},"chainName":"sunrisetestnet","feeCurrencies":[{"coinDenom":"rise","coinMinimalDenom":"urise","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"vrise","coinMinimalDenom":"uvrise","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"swisstronik_1291-1","currencies":[{"coinDenom":"swtr","coinMinimalDenom":"aswtr","coinDecimals":18}],"rest":"https://api.testnet.swisstronik.com","rpc":"https://rpc.testnet.swisstronik.com","bech32Config":{"bech32PrefixAccAddr":"swtr","bech32PrefixAccPub":"swtrpub","bech32PrefixValAddr":"swtrvaloper","bech32PrefixValPub":"swtrvaloperpub","bech32PrefixConsAddr":"swtrvalcons","bech32PrefixConsPub":"swtrvalconspub"},"chainName":"swisstroniktestnet","feeCurrencies":[{"coinDenom":"swtr","coinMinimalDenom":"aswtr","coinDecimals":18}],"stakeCurrency":{"coinDenom":"swtr","coinMinimalDenom":"aswtr","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"symphony-testnet-3","currencies":[{"coinDenom":"mld","coinMinimalDenom":"note","coinDecimals":6},{"coinDenom":"husd","coinMinimalDenom":"uusd","coinDecimals":6},{"coinDenom":"hkhd","coinMinimalDenom":"ukhd","coinDecimals":6},{"coinDenom":"hvnd","coinMinimalDenom":"uvnd","coinDecimals":6}],"rest":"https://symphony.test.api.nodeshub.online/","rpc":"https://symphony.test.rpc.nodeshub.online/","bech32Config":{"bech32PrefixAccAddr":"symphony","bech32PrefixAccPub":"symphonypub","bech32PrefixValAddr":"symphonyvaloper","bech32PrefixValPub":"symphonyvaloperpub","bech32PrefixConsAddr":"symphonyvalcons","bech32PrefixConsPub":"symphonyvalconspub"},"chainName":"symphonytestnet","feeCurrencies":[{"coinDenom":"mld","coinMinimalDenom":"note","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"mld","coinMinimalDenom":"note","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"amber-2","currencies":[{"coinDenom":"AMBER","coinMinimalDenom":"uamber","coinDecimals":6}],"rest":"https://api-testnet.synternet.com/","rpc":"https://rpc-testnet.synternet.com/","bech32Config":{"bech32PrefixAccAddr":"amber","bech32PrefixAccPub":"amberpub","bech32PrefixValAddr":"ambervaloper","bech32PrefixValPub":"ambervaloperpub","bech32PrefixConsAddr":"ambervalcons","bech32PrefixConsPub":"ambervalconspub"},"chainName":"synternettestnet","feeCurrencies":[{"coinDenom":"AMBER","coinMinimalDenom":"uamber","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"AMBER","coinMinimalDenom":"uamber","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"90u-4","currencies":[{"coinDenom":"terpx","coinMinimalDenom":"uterpx","coinDecimals":6},{"coinDenom":"thiolx","coinMinimalDenom":"uthiolx","coinDecimals":6}],"rest":"https://testnet-api.terp.network:443/","rpc":"https://testnet-rpc.terp.network:443/","bech32Config":{"bech32PrefixAccAddr":"terp","bech32PrefixAccPub":"terppub","bech32PrefixValAddr":"terpvaloper","bech32PrefixValPub":"terpvaloperpub","bech32PrefixConsAddr":"terpvalcons","bech32PrefixConsPub":"terpvalconspub"},"chainName":"terpnettestnet","feeCurrencies":[{"coinDenom":"thiolx","coinMinimalDenom":"uthiolx","coinDecimals":6,"gasPriceStep":{"low":0.75,"average":1,"high":1.25}}],"stakeCurrency":{"coinDenom":"terpx","coinMinimalDenom":"uterpx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"90u-2","currencies":[{"coinDenom":"terpx","coinMinimalDenom":"uterpx","coinDecimals":6},{"coinDenom":"thiolx","coinMinimalDenom":"uthiolx","coinDecimals":6}],"rest":"https://terp-testnet-api.itrocket.net:443/","rpc":"https://terp-testnet-rpc.itrocket.net:443/","bech32Config":{"bech32PrefixAccAddr":"terp","bech32PrefixAccPub":"terppub","bech32PrefixValAddr":"terpvaloper","bech32PrefixValPub":"terpvaloperpub","bech32PrefixConsAddr":"terpvalcons","bech32PrefixConsPub":"terpvalconspub"},"chainName":"terpnettestnet2","feeCurrencies":[{"coinDenom":"thiolx","coinMinimalDenom":"uthiolx","coinDecimals":6,"gasPriceStep":{"low":0.75,"average":1,"high":1.25}}],"stakeCurrency":{"coinDenom":"terpx","coinMinimalDenom":"uterpx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pisco-1","currencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6}],"rest":"https://pisco-lcd.terra.dev:443","rpc":"https://pisco-rpc.terra.dev:443","bech32Config":{"bech32PrefixAccAddr":"terra","bech32PrefixAccPub":"terrapub","bech32PrefixValAddr":"terravaloper","bech32PrefixValPub":"terravaloperpub","bech32PrefixConsAddr":"terravalcons","bech32PrefixConsPub":"terravalconspub"},"chainName":"terra2testnet","feeCurrencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6,"gasPriceStep":{"low":0.0125,"average":0.015,"high":0.04}}],"stakeCurrency":{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},"bip44":{"coinType":330}},{"chainId":"titan_18889-1","currencies":[{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/7C0807A56073C4A27B0DE1C21BA3EB75DF75FD763F4AD37BC159917FC01145F0","coinDecimals":6}],"rest":"https://titan-testnet-lcd.titanlab.io:443","rpc":"https://titan-testnet-rpc.titanlab.io:443","bech32Config":{"bech32PrefixAccAddr":"titan","bech32PrefixAccPub":"titanpub","bech32PrefixValAddr":"titanvaloper","bech32PrefixValPub":"titanvaloperpub","bech32PrefixConsAddr":"titanvalcons","bech32PrefixConsPub":"titanvalconspub"},"chainName":"titantestnet","feeCurrencies":[{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18,"gasPriceStep":{"low":100000000000,"average":110000000000,"high":200000000000}}],"stakeCurrency":{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"tucana_712-1","currencies":[{"coinDenom":"tuc","coinMinimalDenom":"atuc","coinDecimals":18}],"rest":"https://lcd.birdee-2.tucana.zone/","rpc":"https://rpc.birdee-2.tucana.zone/","bech32Config":{"bech32PrefixAccAddr":"tuc","bech32PrefixAccPub":"tucpub","bech32PrefixValAddr":"tucvaloper","bech32PrefixValPub":"tucvaloperpub","bech32PrefixConsAddr":"tucvalcons","bech32PrefixConsPub":"tucvalconspub"},"chainName":"tucanatestnet","feeCurrencies":[{"coinDenom":"tuc","coinMinimalDenom":"atuc","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":25000000000,"high":30000000000}}],"stakeCurrency":{"coinDenom":"tuc","coinMinimalDenom":"atuc","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"FUND-TestNet-2","currencies":[{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9}],"rest":"https://rest-testnet.unification.io","rpc":"https://rpc-testnet.unification.io:443","bech32Config":{"bech32PrefixAccAddr":"und","bech32PrefixAccPub":"undpub","bech32PrefixValAddr":"undvaloper","bech32PrefixValPub":"undvaloperpub","bech32PrefixConsAddr":"undvalcons","bech32PrefixConsPub":"undvalconspub"},"chainName":"unificationtestnet","feeCurrencies":[{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9,"gasPriceStep":{"low":100,"average":200,"high":300}}],"stakeCurrency":{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9},"bip44":{"coinType":5555}},{"chainId":"union-testnet-8","currencies":[{"coinDenom":"uno","coinMinimalDenom":"muno","coinDecimals":6}],"rest":"https://rest.testnet-8.union.build","rpc":"https://rpc.testnet-8.union.build","bech32Config":{"bech32PrefixAccAddr":"union","bech32PrefixAccPub":"unionpub","bech32PrefixValAddr":"unionvaloper","bech32PrefixValPub":"unionvaloperpub","bech32PrefixConsAddr":"unionvalcons","bech32PrefixConsPub":"unionvalconspub"},"chainName":"uniontestnet","feeCurrencies":[{"coinDenom":"uno","coinMinimalDenom":"muno","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"uno","coinMinimalDenom":"muno","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"uptick_7000-2","currencies":[{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18}],"rest":"https://uptick-7000-2-rest.staketab.org","rpc":"https://uptick-7000-2-rpc.staketab.org:443","bech32Config":{"bech32PrefixAccAddr":"uptick","bech32PrefixAccPub":"uptickpub","bech32PrefixValAddr":"uptickvaloper","bech32PrefixValPub":"uptickvaloperpub","bech32PrefixConsAddr":"uptickvalcons","bech32PrefixConsPub":"uptickvalconspub"},"chainName":"upticktestnet","feeCurrencies":[{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18}],"stakeCurrency":{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"buenavista-1","currencies":[{"coinDenom":"ward","coinMinimalDenom":"uward","coinDecimals":6}],"rest":"https://api.buenavista.wardenprotocol.org/","rpc":"https://rpc.buenavista.wardenprotocol.org/","bech32Config":{"bech32PrefixAccAddr":"warden","bech32PrefixAccPub":"wardenpub","bech32PrefixValAddr":"wardenvaloper","bech32PrefixValPub":"wardenvaloperpub","bech32PrefixConsAddr":"wardenvalcons","bech32PrefixConsPub":"wardenvalconspub"},"chainName":"wardenprotocoltestnet","feeCurrencies":[{"coinDenom":"ward","coinMinimalDenom":"uward","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"ward","coinMinimalDenom":"uward","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"INVALID-ID-wavehashtestnet-testnet-1","currencies":[{"coinDenom":"wahax","coinMinimalDenom":"uwahax","coinDecimals":6}],"rest":"https://lcd.wavehash.online/","rpc":"https://rpc.wavehash.online/","bech32Config":{"bech32PrefixAccAddr":"wavehash","bech32PrefixAccPub":"wavehashpub","bech32PrefixValAddr":"wavehashvaloper","bech32PrefixValPub":"wavehashvaloperpub","bech32PrefixConsAddr":"wavehashvalcons","bech32PrefixConsPub":"wavehashvalconspub"},"chainName":"wavehashtestnet","feeCurrencies":[{"coinDenom":"wahax","coinMinimalDenom":"uwahax","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.0025,"high":0.0024}}],"stakeCurrency":{"coinDenom":"wahax","coinMinimalDenom":"uwahax","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"xion-testnet-1","currencies":[{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6},{"coinDenom":"axl","coinMinimalDenom":"ibc/33517D439F5E545A1AAB148FAE43AAE17CF68FFB9BC97AE0048A3E3B64518C58","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/484532EB74866F3FB8A71F909F7B1B470FE2E66313DA0A1F9EE5B7C5C046D195","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/57097251ED81A232CE3C9D899E7C8096D6D87EF84BA203E12E424AA4C9B57A64","coinDecimals":6},{"coinDenom":"INJ","coinMinimalDenom":"ibc/05314A48723E06A1B1B666066B6BEC89F3708E8854DF2E5E9193387AA9653036","coinDecimals":18}],"rest":"https://api.xion-testnet-1.burnt.com","rpc":"https://rpc.xion-testnet-1.burnt.com","bech32Config":{"bech32PrefixAccAddr":"xion","bech32PrefixAccPub":"xionpub","bech32PrefixValAddr":"xionvaloper","bech32PrefixValPub":"xionvaloperpub","bech32PrefixConsAddr":"xionvalcons","bech32PrefixConsPub":"xionvalconspub"},"chainName":"xiontestnet","feeCurrencies":[{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.001,"high":0.01}}],"stakeCurrency":{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cube_47-5","currencies":[{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18}],"rest":"https://cube-lcd.xpla.dev","rpc":"https://cube-rpc.xpla.dev","bech32Config":{"bech32PrefixAccAddr":"xpla","bech32PrefixAccPub":"xplapub","bech32PrefixValAddr":"xplavaloper","bech32PrefixValPub":"xplavaloperpub","bech32PrefixConsAddr":"xplavalcons","bech32PrefixConsPub":"xplavalconspub"},"chainName":"xplatestnet","feeCurrencies":[{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18,"gasPriceStep":{"low":850000000000,"average":1147500000000,"high":1487500000000}}],"stakeCurrency":{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"gardia-2","currencies":[{"coinDenom":"rock","coinMinimalDenom":"urock","coinDecimals":6}],"rest":"https://api.gardia.zenrocklabs.io/","rpc":"https://rpc.gardia.zenrocklabs.io/","bech32Config":{"bech32PrefixAccAddr":"rock","bech32PrefixAccPub":"rockpub","bech32PrefixValAddr":"rockvaloper","bech32PrefixValPub":"rockvaloperpub","bech32PrefixConsAddr":"rockvalcons","bech32PrefixConsPub":"rockvalconspub"},"chainName":"zenrocktestnet","feeCurrencies":[{"coinDenom":"rock","coinMinimalDenom":"urock","coinDecimals":6,"gasPriceStep":{"low":0.5,"average":0.55,"high":0.6}}],"stakeCurrency":{"coinDenom":"rock","coinMinimalDenom":"urock","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"athens_7001-1","currencies":[{"coinDenom":"tzeta","coinMinimalDenom":"azeta","coinDecimals":18}],"rest":"https://zetachain-athens.blockpi.network/lcd/v1/public","rpc":"https://zetachain-athens.blockpi.network/rpc/v1/public","bech32Config":{"bech32PrefixAccAddr":"zeta","bech32PrefixAccPub":"zetapub","bech32PrefixValAddr":"zetavaloper","bech32PrefixValPub":"zetavaloperpub","bech32PrefixConsAddr":"zetavalcons","bech32PrefixConsPub":"zetavalconspub"},"chainName":"zetachaintestnet","feeCurrencies":[{"coinDenom":"tzeta","coinMinimalDenom":"azeta","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"tzeta","coinMinimalDenom":"azeta","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"landlord-2","currencies":[{"coinDenom":"INIT","coinMinimalDenom":"l2/1666ede2bf1985307a86de36a6b78411cbf1edeffc2ac569e6a7b2f8753db4bb","coinDecimals":6}],"rest":"https://maze-rest-sequencer-53ecf1d6-4fa1-4103-827f-a9430df97cef.ane1-prod-nocsm.newmetric.xyz","rpc":"https://maze-rpc-sequencer-53ecf1d6-4fa1-4103-827f-a9430df97cef.ane1-prod-nocsm.newmetric.xyz","bech32Config":{"bech32PrefixAccAddr":"init","bech32PrefixAccPub":"initpub","bech32PrefixValAddr":"initvaloper","bech32PrefixValPub":"initvaloperpub","bech32PrefixConsAddr":"initvalcons","bech32PrefixConsPub":"initvalconspub"},"chainName":"civitia","feeCurrencies":[{"coinDenom":"INIT","coinMinimalDenom":"l2/1666ede2bf1985307a86de36a6b78411cbf1edeffc2ac569e6a7b2f8753db4bb","coinDecimals":6,"gasPriceStep":{"low":0.2,"average":0.3,"high":0.4}}],"stakeCurrency":{"coinDenom":"INIT","coinMinimalDenom":"l2/1666ede2bf1985307a86de36a6b78411cbf1edeffc2ac569e6a7b2f8753db4bb","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"initiation-2","currencies":[{"coinDenom":"INIT","coinMinimalDenom":"uinit","coinDecimals":6},{"coinDenom":"ETH","coinMinimalDenom":"ueth","coinDecimals":6},{"coinDenom":"USDC","coinMinimalDenom":"uusdc","coinDecimals":6},{"coinDenom":"TIA","coinMinimalDenom":"utia","coinDecimals":6},{"coinDenom":"USDC-INIT LP","coinMinimalDenom":"move/dbf06c48af3984ec6d9ae8a9aa7dbb0bb1e784aa9b8c4a5681af660cf8558d7d","coinDecimals":6},{"coinDenom":"ETH-INIT LP","coinMinimalDenom":"move/a2b0d3c8e53e379ede31f3a361ff02716d50ec53c6b65b8c48a81d5b06548200","coinDecimals":6},{"coinDenom":"TIA-INIT LP","coinMinimalDenom":"move/b134ae6786f10ef74294e627d2519b63b7c742a6735f98682929fea9a84744d2","coinDecimals":6},{"coinDenom":"oINIT","coinMinimalDenom":"uoinit","coinDecimals":6},{"coinDenom":"minimoveINIT","coinMinimalDenom":"ibc/9DD7B5DF63F03D505BE785C9B32095A33CBB9472503077D375E0A557BE5A2B87","coinDecimals":6},{"coinDenom":"minimoveINIT-INIT LP","coinMinimalDenom":"move/d460381fad32fa8a165f7b13ca4343f99ebd83580b1dc121049b8e695fb6c5b5","coinDecimals":6},{"coinDenom":"TEST LZ","coinMinimalDenom":"move/7dfcccb8d69af29d585165531eae5c558061d3e3bded2a121be3ef5e189e6b01","coinDecimals":8}],"rest":"https://lcd.testnet.initia.xyz","rpc":"https://rpc.testnet.initia.xyz/","bech32Config":{"bech32PrefixAccAddr":"init","bech32PrefixAccPub":"initpub","bech32PrefixValAddr":"initvaloper","bech32PrefixValPub":"initvaloperpub","bech32PrefixConsAddr":"initvalcons","bech32PrefixConsPub":"initvalconspub"},"chainName":"initia","feeCurrencies":[{"coinDenom":"INIT","coinMinimalDenom":"uinit","coinDecimals":6,"gasPriceStep":{"low":0.15,"average":0.15,"high":0.4}}],"stakeCurrency":{"coinDenom":"INIT","coinMinimalDenom":"uinit","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"glados-2.1","currencies":[{"coinDenom":"MILK","coinMinimalDenom":"umilk","coinDecimals":6},{"coinDenom":"milkINIT","coinMinimalDenom":"milkuinit","coinDecimals":6},{"coinDenom":"INIT","coinMinimalDenom":"ibc/37A3FB4FED4CA04ED6D9E5DA36C6D27248645F0E22F585576A1488B8A89C5A50","coinDecimals":6},{"coinDenom":"TEST LZ","coinMinimalDenom":"ibc/665CCAFA2768242D74D8CB2E9F5167261B6B75646E2EF2546E0707C0BFC7CDAF","coinDecimals":8}],"rest":"https://lcd.testnet.milkyway.zone","rpc":"https://rpc.testnet.milkyway.zone","bech32Config":{"bech32PrefixAccAddr":"init","bech32PrefixAccPub":"initpub","bech32PrefixValAddr":"initvaloper","bech32PrefixValPub":"initvaloperpub","bech32PrefixConsAddr":"initvalcons","bech32PrefixConsPub":"initvalconspub"},"chainName":"milkyway","feeCurrencies":[{"coinDenom":"MILK","coinMinimalDenom":"umilk","coinDecimals":6,"gasPriceStep":{"low":0.2,"average":0.3,"high":0.4}},{"coinDenom":"INIT","coinMinimalDenom":"ibc/37A3FB4FED4CA04ED6D9E5DA36C6D27248645F0E22F585576A1488B8A89C5A50","coinDecimals":6,"gasPriceStep":{"low":0.2,"average":0.3,"high":0.4}}],"stakeCurrency":{"coinDenom":"MILK","coinMinimalDenom":"umilk","coinDecimals":6},"bip44":{"coinType":118}}] \ No newline at end of file +[{"chainId":"junction","currencies":[{"coinDenom":"AMF","coinMinimalDenom":"amf","coinDecimals":6}],"rest":"https://rest.nodejumper.io/airchainstestnet","rpc":"https://junction-rpc.validatorvn.com/","bech32Config":{"bech32PrefixAccAddr":"air","bech32PrefixAccPub":"airpub","bech32PrefixValAddr":"airvaloper","bech32PrefixValPub":"airvaloperpub","bech32PrefixConsAddr":"airvalcons","bech32PrefixConsPub":"airvalconspub"},"chainName":"airchainstestnet","feeCurrencies":[{"coinDenom":"AMF","coinMinimalDenom":"amf","coinDecimals":6,"gasPriceStep":{"low":0.00025,"average":0.005,"high":0.01}}],"stakeCurrency":{"coinDenom":"AMF","coinMinimalDenom":"amf","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sandbox-01","currencies":[{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6}],"rest":"https://api.sandbox-01.aksh.pw:443","rpc":"https://rpc.sandbox-01.aksh.pw:443","bech32Config":{"bech32PrefixAccAddr":"akash","bech32PrefixAccPub":"akashpub","bech32PrefixValAddr":"akashvaloper","bech32PrefixValPub":"akashvaloperpub","bech32PrefixConsAddr":"akashvalcons","bech32PrefixConsPub":"akashvalconspub"},"chainName":"akashtestnet","feeCurrencies":[{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"akt","coinMinimalDenom":"uakt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"constantine-3","currencies":[{"coinDenom":"const","coinMinimalDenom":"aconst","coinDecimals":18},{"coinDenom":"wARCH","coinMinimalDenom":"cw20:archway1dz6h2smr432gvzruklk3lps7ak2ca7cngdge4vym93wehkkypwpqgwr2q2","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/34F8D3402273FFA5278AE5757D81CE151ACFD4B19C494C0EE372A7229714824F","coinDecimals":6},{"coinDenom":"wUSDC","coinMinimalDenom":"cw20:archway172vetupqnkgdc7dp3gwqpvk5ljmgzyj2gs4ag2fdmp0s2rucxxsqh0nqeu","coinDecimals":6}],"rest":"https://api.constantine.archway.io","rpc":"https://rpc.constantine.archway.io","bech32Config":{"bech32PrefixAccAddr":"archway","bech32PrefixAccPub":"archwaypub","bech32PrefixValAddr":"archwayvaloper","bech32PrefixValPub":"archwayvaloperpub","bech32PrefixConsAddr":"archwayvalcons","bech32PrefixConsPub":"archwayvalconspub"},"chainName":"archwaytestnet","feeCurrencies":[{"coinDenom":"const","coinMinimalDenom":"aconst","coinDecimals":18,"gasPriceStep":{"low":1000000000000,"average":1500000000000,"high":2000000000000}}],"stakeCurrency":{"coinDenom":"const","coinMinimalDenom":"aconst","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"arkeo","currencies":[{"coinDenom":"arkeo","coinMinimalDenom":"uarkeo","coinDecimals":6}],"rest":"https://arkeonetwork-testnet.nodejumper.io:1317","rpc":"https://arkeonetwork-testnet.nodejumper.io:26657","bech32Config":{"bech32PrefixAccAddr":"tarkeo","bech32PrefixAccPub":"tarkeopub","bech32PrefixValAddr":"tarkeovaloper","bech32PrefixValPub":"tarkeovaloperpub","bech32PrefixConsAddr":"tarkeovalcons","bech32PrefixConsPub":"tarkeovalconspub"},"chainName":"arkeonetworktestnet","feeCurrencies":[{"coinDenom":"arkeo","coinMinimalDenom":"uarkeo","coinDecimals":6}],"stakeCurrency":{"coinDenom":"arkeo","coinMinimalDenom":"uarkeo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"artela_11820-1","currencies":[{"coinDenom":"art","coinMinimalDenom":"uart","coinDecimals":18}],"rest":"https://testnet-rpc1.artela.network","rpc":"https://testnet-rpc1.artela.network","bech32Config":{"bech32PrefixAccAddr":"art","bech32PrefixAccPub":"artpub","bech32PrefixValAddr":"artvaloper","bech32PrefixValPub":"artvaloperpub","bech32PrefixConsAddr":"artvalcons","bech32PrefixConsPub":"artvalconspub"},"chainName":"artelatestnet","feeCurrencies":[{"coinDenom":"art","coinMinimalDenom":"uart","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"art","coinMinimalDenom":"uart","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"aura_6321-3","currencies":[{"coinDenom":"eaura","coinMinimalDenom":"ueaura","coinDecimals":6}],"rest":"https://lcd.euphoria.aura.network/","rpc":"https://rpc.euphoria.aura.network/","bech32Config":{"bech32PrefixAccAddr":"aura","bech32PrefixAccPub":"aurapub","bech32PrefixValAddr":"auravaloper","bech32PrefixValPub":"auravaloperpub","bech32PrefixConsAddr":"auravalcons","bech32PrefixConsPub":"auravalconspub"},"chainName":"auratestnet","feeCurrencies":[{"coinDenom":"eaura","coinMinimalDenom":"ueaura","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.0025}}],"stakeCurrency":{"coinDenom":"eaura","coinMinimalDenom":"ueaura","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"axelar-testnet-lisbon-3","currencies":[{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6},{"coinDenom":"ausdc","coinMinimalDenom":"uausdc","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"eth-wei","coinDecimals":18},{"coinDenom":"wglmr","coinMinimalDenom":"wglmr-wei","coinDecimals":18},{"coinDenom":"wmatic","coinMinimalDenom":"wmatic-wei","coinDecimals":18},{"coinDenom":"wbnb","coinMinimalDenom":"wbnb-wei","coinDecimals":18},{"coinDenom":"avax","coinMinimalDenom":"wavax-wei","coinDecimals":18},{"coinDenom":"ftm","coinMinimalDenom":"wftm-wei","coinDecimals":18}],"rest":"https://lcd-axelar-testnet.imperator.co:443","rpc":"https://rpc-axelar-testnet.imperator.co:443","bech32Config":{"bech32PrefixAccAddr":"axelar","bech32PrefixAccPub":"axelarpub","bech32PrefixValAddr":"axelarvaloper","bech32PrefixValPub":"axelarvaloperpub","bech32PrefixConsAddr":"axelarvalcons","bech32PrefixConsPub":"axelarvalconspub"},"chainName":"axelartestnet","feeCurrencies":[{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6,"gasPriceStep":{"low":0.007,"average":0.007,"high":0.01}}],"stakeCurrency":{"coinDenom":"axl","coinMinimalDenom":"uaxl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"bbn-test3","currencies":[{"coinDenom":"bbn","coinMinimalDenom":"ubbn","coinDecimals":6}],"rest":"lcd.testnet3.babylonchain.io:443","rpc":"rpc.testnet3.babylonchain.io:443","bech32Config":{"bech32PrefixAccAddr":"bbn","bech32PrefixAccPub":"bbnpub","bech32PrefixValAddr":"bbnvaloper","bech32PrefixValPub":"bbnvaloperpub","bech32PrefixConsAddr":"bbnvalcons","bech32PrefixConsPub":"bbnvalconspub"},"chainName":"babylontestnet","feeCurrencies":[{"coinDenom":"bbn","coinMinimalDenom":"ubbn","coinDecimals":6}],"stakeCurrency":{"coinDenom":"bbn","coinMinimalDenom":"ubbn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"bitcanna-dev-1","currencies":[{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6}],"rest":"https://lcd-testnet.bitcanna.io","rpc":"https://rpc-testnet.bitcanna.io","bech32Config":{"bech32PrefixAccAddr":"bcna","bech32PrefixAccPub":"bcnapub","bech32PrefixValAddr":"bcnavaloper","bech32PrefixValPub":"bcnavaloperpub","bech32PrefixConsAddr":"bcnavalcons","bech32PrefixConsPub":"bcnavalconspub"},"chainName":"bitcannadevnet","feeCurrencies":[{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6}],"stakeCurrency":{"coinDenom":"bcna","coinMinimalDenom":"ubcna","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cascadia_6102-1","currencies":[{"coinDenom":"tCC","coinMinimalDenom":"aCC","coinDecimals":18}],"rest":"https://lcd.cascadia.foundation","rpc":"https://rpc.cascadia.foundation:443","bech32Config":{"bech32PrefixAccAddr":"cascadia","bech32PrefixAccPub":"cascadiapub","bech32PrefixValAddr":"cascadiavaloper","bech32PrefixValPub":"cascadiavaloperpub","bech32PrefixConsAddr":"cascadiavalcons","bech32PrefixConsPub":"cascadiavalconspub"},"chainName":"cascadiatestnet","feeCurrencies":[{"coinDenom":"tCC","coinMinimalDenom":"aCC","coinDecimals":18,"gasPriceStep":{"low":7,"average":10,"high":15}}],"stakeCurrency":{"coinDenom":"tCC","coinMinimalDenom":"aCC","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"mocha-4","currencies":[{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6}],"rest":"https://api-mocha.pops.one","rpc":"https://rpc-mocha.pops.one","bech32Config":{"bech32PrefixAccAddr":"celestia","bech32PrefixAccPub":"celestiapub","bech32PrefixValAddr":"celestiavaloper","bech32PrefixValPub":"celestiavaloperpub","bech32PrefixConsAddr":"celestiavalcons","bech32PrefixConsPub":"celestiavalconspub"},"chainName":"celestiatestnet3","feeCurrencies":[{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}}],"stakeCurrency":{"coinDenom":"tia","coinMinimalDenom":"utia","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"babajaga-1","currencies":[{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6}],"rest":"https://c4e.api.t.stavr.tech","rpc":"https://rpc-testnet.c4e.io","bech32Config":{"bech32PrefixAccAddr":"c4e","bech32PrefixAccPub":"c4epub","bech32PrefixValAddr":"c4evaloper","bech32PrefixValPub":"c4evaloperpub","bech32PrefixConsAddr":"c4evalcons","bech32PrefixConsPub":"c4evalconspub"},"chainName":"chain4energytestnet","feeCurrencies":[{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.03,"high":0.06}}],"stakeCurrency":{"coinDenom":"c4e","coinMinimalDenom":"uc4e","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cheqd-testnet-6","currencies":[{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9}],"rest":"https://api.cheqd.network","rpc":"https://rpc.cheqd.network","bech32Config":{"bech32PrefixAccAddr":"cheqd","bech32PrefixAccPub":"cheqdpub","bech32PrefixValAddr":"cheqdvaloper","bech32PrefixValPub":"cheqdvaloperpub","bech32PrefixConsAddr":"cheqdvalcons","bech32PrefixConsPub":"cheqdvalconspub"},"chainName":"cheqdtestnet","feeCurrencies":[{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9,"gasPriceStep":{"low":50,"average":75,"high":100}}],"stakeCurrency":{"coinDenom":"cheq","coinMinimalDenom":"ncheq","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"chimba-testnet","currencies":[{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6}],"rest":"https://testnet.chimba.ooo","rpc":"https://rpc.testnet.chimba.ooo","bech32Config":{"bech32PrefixAccAddr":"chimba","bech32PrefixAccPub":"chimbapub","bech32PrefixValAddr":"chimbavaloper","bech32PrefixValPub":"chimbavaloperpub","bech32PrefixConsAddr":"chimbavalcons","bech32PrefixConsPub":"chimbavalconspub"},"chainName":"chimbatestnet","feeCurrencies":[{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6,"gasPriceStep":{"low":1,"average":5,"high":10}}],"stakeCurrency":{"coinDenom":"chimba","coinMinimalDenom":"ucmba","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"banksy-testnet-3","currencies":[{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12}],"rest":"https://api.composable-t.indonode.net","rpc":"https://rpc.composable-t.indonode.net:443","bech32Config":{"bech32PrefixAccAddr":"centauri","bech32PrefixAccPub":"centauripub","bech32PrefixValAddr":"centaurivaloper","bech32PrefixValPub":"centaurivaloperpub","bech32PrefixConsAddr":"centaurivalcons","bech32PrefixConsPub":"centaurivalconspub"},"chainName":"composabletestnet","feeCurrencies":[{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12}],"stakeCurrency":{"coinDenom":"pica","coinMinimalDenom":"ppica","coinDecimals":12},"bip44":{"coinType":118}},{"chainId":"kitten-04","currencies":[{"coinDenom":"ccat","coinMinimalDenom":"uccat","coinDecimals":6}],"rest":"https://lcd.coolcat.space","rpc":"https://rpc.coolcat.space","bech32Config":{"bech32PrefixAccAddr":"ccat","bech32PrefixAccPub":"ccatpub","bech32PrefixValAddr":"ccatvaloper","bech32PrefixValPub":"ccatvaloperpub","bech32PrefixConsAddr":"ccatvalcons","bech32PrefixConsPub":"ccatvalconspub"},"chainName":"coolcattestnet","feeCurrencies":[{"coinDenom":"ccat","coinMinimalDenom":"uccat","coinDecimals":6}],"stakeCurrency":{"coinDenom":"ccat","coinMinimalDenom":"uccat","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"coreum-testnet-1","currencies":[{"coinDenom":"testcore","coinMinimalDenom":"utestcore","coinDecimals":6}],"rest":"https://full-node.testnet-1.coreum.dev:1317","rpc":"https://full-node.testnet-1.coreum.dev:26657","bech32Config":{"bech32PrefixAccAddr":"testcore","bech32PrefixAccPub":"testcorepub","bech32PrefixValAddr":"testcorevaloper","bech32PrefixValPub":"testcorevaloperpub","bech32PrefixConsAddr":"testcorevalcons","bech32PrefixConsPub":"testcorevalconspub"},"chainName":"coreumtestnet","feeCurrencies":[{"coinDenom":"testcore","coinMinimalDenom":"utestcore","coinDecimals":6,"gasPriceStep":{"low":0.0625,"average":0.0625,"high":62.5}}],"stakeCurrency":{"coinDenom":"testcore","coinMinimalDenom":"utestcore","coinDecimals":6},"bip44":{"coinType":990}},{"chainId":"theta-testnet-001","currencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6}],"rest":"https://cosmoshubt.lava.build","rpc":"https://cosmoshubt.tendermintrpc.lava.build:443","bech32Config":{"bech32PrefixAccAddr":"cosmos","bech32PrefixAccPub":"cosmospub","bech32PrefixValAddr":"cosmosvaloper","bech32PrefixValPub":"cosmosvaloperpub","bech32PrefixConsAddr":"cosmosvalcons","bech32PrefixConsPub":"cosmosvalconspub"},"chainName":"cosmoshubtestnet","feeCurrencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"provider","currencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6}],"rest":"https://rest.provider-sentry-01.ics-testnet.polypore.xyz","rpc":"https://rpc.provider-sentry-01.ics-testnet.polypore.xyz","bech32Config":{"bech32PrefixAccAddr":"cosmos","bech32PrefixAccPub":"cosmospub","bech32PrefixValAddr":"cosmosvaloper","bech32PrefixValPub":"cosmosvaloperpub","bech32PrefixConsAddr":"cosmosvalcons","bech32PrefixConsPub":"cosmosvalconspub"},"chainName":"cosmosicsprovidertestnet","feeCurrencies":[{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"atom","coinMinimalDenom":"uatom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"malaga-420","currencies":[{"coinDenom":"MLG","coinMinimalDenom":"umlg","coinDecimals":6},{"coinDenom":"AND","coinMinimalDenom":"uand","coinDecimals":6}],"rest":"https://api.malaga-420.cosmwasm.com","rpc":"https://rpc.malaga-420.cosmwasm.com:443","bech32Config":{"bech32PrefixAccAddr":"wasm","bech32PrefixAccPub":"wasmpub","bech32PrefixValAddr":"wasmvaloper","bech32PrefixValPub":"wasmvaloperpub","bech32PrefixConsAddr":"wasmvalcons","bech32PrefixConsPub":"wasmvalconspub"},"chainName":"cosmwasmtestnet","feeCurrencies":[{"coinDenom":"MLG","coinMinimalDenom":"umlg","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.04,"high":0.05}}],"stakeCurrency":{"coinDenom":"MLG","coinMinimalDenom":"umlg","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"coss-testnet-1","currencies":[{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6}],"rest":"https://coss-testnet-rest.coss.ink","rpc":"https://coss-testnet-rpc.coss.ink","bech32Config":{"bech32PrefixAccAddr":"coss","bech32PrefixAccPub":"cosspub","bech32PrefixValAddr":"cossvaloper","bech32PrefixValPub":"cossvaloperpub","bech32PrefixConsAddr":"cossvalcons","bech32PrefixConsPub":"cossvalconspub"},"chainName":"cosstestnet","feeCurrencies":[{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6}],"stakeCurrency":{"coinDenom":"cgas","coinMinimalDenom":"ucgas","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"deardoge-testnet","currencies":[{"coinDenom":"dear","coinMinimalDenom":"udear","coinDecimals":6}],"rest":"https://testnet-rest.deardoge.org","rpc":"https://testnet-rpc.deardoge.org","bech32Config":{"bech32PrefixAccAddr":"deardoge","bech32PrefixAccPub":"deardogepub","bech32PrefixValAddr":"deardogevaloper","bech32PrefixValPub":"deardogevaloperpub","bech32PrefixConsAddr":"deardogevalcons","bech32PrefixConsPub":"deardogevalconspub"},"chainName":"deardogetestnet","feeCurrencies":[{"coinDenom":"dear","coinMinimalDenom":"udear","coinDecimals":6}],"stakeCurrency":{"coinDenom":"dear","coinMinimalDenom":"udear","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"morpheus-apollo-3","currencies":[{"coinDenom":"daric","coinMinimalDenom":"udaric","coinDecimals":6}],"rest":"https://lcd.morpheus.desmos.network","rpc":"https://rpc.morpheus.desmos.network","bech32Config":{"bech32PrefixAccAddr":"desmos","bech32PrefixAccPub":"desmospub","bech32PrefixValAddr":"desmosvaloper","bech32PrefixValPub":"desmosvaloperpub","bech32PrefixConsAddr":"desmosvalcons","bech32PrefixConsPub":"desmosvalconspub"},"chainName":"desmostestnet","feeCurrencies":[{"coinDenom":"daric","coinMinimalDenom":"udaric","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.03,"high":0.05}}],"stakeCurrency":{"coinDenom":"daric","coinMinimalDenom":"udaric","coinDecimals":6},"bip44":{"coinType":852}},{"chainId":"dhealth-testnet-2","currencies":[{"coinDenom":"tdhp","coinMinimalDenom":"utdhp","coinDecimals":6}],"rest":"https://lcd-testnet.dhealth.dev","rpc":"https://rpc-testnet.dhealth.dev","bech32Config":{"bech32PrefixAccAddr":"tdh02","bech32PrefixAccPub":"tdh02pub","bech32PrefixValAddr":"tdh02valoper","bech32PrefixValPub":"tdh02valoperpub","bech32PrefixConsAddr":"tdh02valcons","bech32PrefixConsPub":"tdh02valconspub"},"chainName":"dhealthtestnet","feeCurrencies":[{"coinDenom":"tdhp","coinMinimalDenom":"utdhp","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.03,"high":0.035}}],"stakeCurrency":{"coinDenom":"tdhp","coinMinimalDenom":"utdhp","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"vota-testnet","currencies":[{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18}],"rest":"https://vota-testnet-rest.dorafactory.org","rpc":"https://vota-testnet-rpc.dorafactory.org/","bech32Config":{"bech32PrefixAccAddr":"dora","bech32PrefixAccPub":"dorapub","bech32PrefixValAddr":"doravaloper","bech32PrefixValPub":"doravaloperpub","bech32PrefixConsAddr":"doravalcons","bech32PrefixConsPub":"doravalconspub"},"chainName":"doravotatestnet","feeCurrencies":[{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18}],"stakeCurrency":{"coinDenom":"DORA","coinMinimalDenom":"peaka","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"dydx-testnet-4","currencies":[{"coinDenom":"dv4tnt","coinMinimalDenom":"adv4tnt","coinDecimals":18}],"rest":"https://dydx-lcd-testnet.enigma-validator.com","rpc":"https://dydx-rpc-testnet.enigma-validator.com","bech32Config":{"bech32PrefixAccAddr":"dydx","bech32PrefixAccPub":"dydxpub","bech32PrefixValAddr":"dydxvaloper","bech32PrefixValPub":"dydxvaloperpub","bech32PrefixConsAddr":"dydxvalcons","bech32PrefixConsPub":"dydxvalconspub"},"chainName":"dydxtestnet","feeCurrencies":[{"coinDenom":"dv4tnt","coinMinimalDenom":"adv4tnt","coinDecimals":18,"gasPriceStep":{"low":12500000000,"average":12500000000,"high":20000000000}}],"stakeCurrency":{"coinDenom":"dv4tnt","coinMinimalDenom":"adv4tnt","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"dymension_1405-1","currencies":[{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/E1E753928DE8EF6034F987F9E9C5F71ACF6AE7F5E221933D477BF745995B338B","coinDecimals":6}],"rest":"https://api-dym-migration-test-2.mzonder.com","rpc":"https://rpc-dym-migration-test-2.mzonder.com","bech32Config":{"bech32PrefixAccAddr":"dym","bech32PrefixAccPub":"dympub","bech32PrefixValAddr":"dymvaloper","bech32PrefixValPub":"dymvaloperpub","bech32PrefixConsAddr":"dymvalcons","bech32PrefixConsPub":"dymvalconspub"},"chainName":"dymensiontestnet1","feeCurrencies":[{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18,"gasPriceStep":{"low":5000000000,"average":5500000000,"high":6000000000}}],"stakeCurrency":{"coinDenom":"dym","coinMinimalDenom":"adym","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"elysicstestnet-1","currencies":[{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6},{"coinDenom":"eden","coinMinimalDenom":"ueden","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6}],"rest":"https://api.testnet.elys.network","rpc":"https://rpc.testnet.elys.network","bech32Config":{"bech32PrefixAccAddr":"elys","bech32PrefixAccPub":"elyspub","bech32PrefixValAddr":"elysvaloper","bech32PrefixValPub":"elysvaloperpub","bech32PrefixConsAddr":"elysvalcons","bech32PrefixConsPub":"elysvalconspub"},"chainName":"elystestnet","feeCurrencies":[{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"usdc","coinMinimalDenom":"ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}},{"coinDenom":"atom","coinMinimalDenom":"ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"elys","coinMinimalDenom":"uelys","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"empe-testnet-2","currencies":[{"coinDenom":"empe","coinMinimalDenom":"uempe","coinDecimals":6}],"rest":"https://lcd-testnet.empe.io/","rpc":"https://rpc-testnet.empe.io/","bech32Config":{"bech32PrefixAccAddr":"empe","bech32PrefixAccPub":"empepub","bech32PrefixValAddr":"empevaloper","bech32PrefixValPub":"empevaloperpub","bech32PrefixConsAddr":"empevalcons","bech32PrefixConsPub":"empevalconspub"},"chainName":"empetestnet","feeCurrencies":[{"coinDenom":"empe","coinMinimalDenom":"uempe","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"empe","coinMinimalDenom":"uempe","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"circulus-1","currencies":[{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6}],"rest":"https://empower-testnet-api.polkachu.com:443","rpc":"https://empower-testnet-rpc.polkachu.com:443","bech32Config":{"bech32PrefixAccAddr":"empower","bech32PrefixAccPub":"empowerpub","bech32PrefixValAddr":"empowervaloper","bech32PrefixValPub":"empowervaloperpub","bech32PrefixConsAddr":"empowervalcons","bech32PrefixConsPub":"empowervalconspub"},"chainName":"empowertestnet","feeCurrencies":[{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6}],"stakeCurrency":{"coinDenom":"mpwr","coinMinimalDenom":"umpwr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"epix_4243-1","currencies":[{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18}],"rest":"https://api.testnet.epix.zone","rpc":"https://rpc.testnet.epix.zone","bech32Config":{"bech32PrefixAccAddr":"epix","bech32PrefixAccPub":"epixpub","bech32PrefixValAddr":"epixvaloper","bech32PrefixValPub":"epixvaloperpub","bech32PrefixConsAddr":"epixvalcons","bech32PrefixConsPub":"epixvalconspub"},"chainName":"epixtestnet","feeCurrencies":[{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"epix","coinMinimalDenom":"aepix","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"evmos_9000-4","currencies":[{"coinDenom":"tevmos","coinMinimalDenom":"atevmos","coinDecimals":18}],"rest":"https://evmos.test.api.coldyvalidator.net","rpc":"https://evmos.test.rpc.coldyvalidator.net","bech32Config":{"bech32PrefixAccAddr":"evmos","bech32PrefixAccPub":"evmospub","bech32PrefixValAddr":"evmosvaloper","bech32PrefixValPub":"evmosvaloperpub","bech32PrefixConsAddr":"evmosvalcons","bech32PrefixConsPub":"evmosvalconspub"},"chainName":"evmostestnet","feeCurrencies":[{"coinDenom":"tevmos","coinMinimalDenom":"atevmos","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"tevmos","coinMinimalDenom":"atevmos","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"dorado-1","currencies":[{"coinDenom":"testfet","coinMinimalDenom":"atestfet","coinDecimals":18}],"rest":"https://rest-dorado.fetch.ai","rpc":"https://rpc-dorado.fetch.ai:443","bech32Config":{"bech32PrefixAccAddr":"fetch","bech32PrefixAccPub":"fetchpub","bech32PrefixValAddr":"fetchvaloper","bech32PrefixValPub":"fetchvaloperpub","bech32PrefixConsAddr":"fetchvalcons","bech32PrefixConsPub":"fetchvalconspub"},"chainName":"fetchhubtestnet","feeCurrencies":[{"coinDenom":"testfet","coinMinimalDenom":"atestfet","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.035}}],"stakeCurrency":{"coinDenom":"testfet","coinMinimalDenom":"atestfet","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"fiamma-testnet-1","currencies":[{"coinDenom":"fia","coinMinimalDenom":"ufia","coinDecimals":6}],"rest":"https://testnet-api.fiammachain.io","rpc":"https://testnet-rpc.fiammachain.io","bech32Config":{"bech32PrefixAccAddr":"fiamma","bech32PrefixAccPub":"fiammapub","bech32PrefixValAddr":"fiammavaloper","bech32PrefixValPub":"fiammavaloperpub","bech32PrefixConsAddr":"fiammavalcons","bech32PrefixConsPub":"fiammavalconspub"},"chainName":"fiammatestnet","feeCurrencies":[{"coinDenom":"fia","coinMinimalDenom":"ufia","coinDecimals":6}],"stakeCurrency":{"coinDenom":"fia","coinMinimalDenom":"ufia","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"ebony-2","currencies":[{"coinDenom":"tfnsa","coinMinimalDenom":"tcony","coinDecimals":6}],"rest":"https://ebony-api.finschia.io","rpc":"https://ebony-rpc.finschia.io","bech32Config":{"bech32PrefixAccAddr":"tlink","bech32PrefixAccPub":"tlinkpub","bech32PrefixValAddr":"tlinkvaloper","bech32PrefixValPub":"tlinkvaloperpub","bech32PrefixConsAddr":"tlinkvalcons","bech32PrefixConsPub":"tlinkvalconspub"},"chainName":"finschiatestnet","feeCurrencies":[{"coinDenom":"tfnsa","coinMinimalDenom":"tcony","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.015,"high":0.015}}],"stakeCurrency":{"coinDenom":"tfnsa","coinMinimalDenom":"tcony","coinDecimals":6},"bip44":{"coinType":438}},{"chainId":"galactica_9302-1","currencies":[{"coinDenom":"gnet","coinMinimalDenom":"agnet","coinDecimals":18}],"rest":"https://api.galactica.test.pfc.zone/","rpc":"https://rpc.galactica.test.pfc.zone/","bech32Config":{"bech32PrefixAccAddr":"gala","bech32PrefixAccPub":"galapub","bech32PrefixValAddr":"galavaloper","bech32PrefixValPub":"galavaloperpub","bech32PrefixConsAddr":"galavalcons","bech32PrefixConsPub":"galavalconspub"},"chainName":"galacticatestnet","feeCurrencies":[{"coinDenom":"gnet","coinMinimalDenom":"agnet","coinDecimals":18,"gasPriceStep":{"low":10,"average":10,"high":20}}],"stakeCurrency":{"coinDenom":"gnet","coinMinimalDenom":"agnet","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"gitopia-janus-testnet-2","currencies":[{"coinDenom":"tlore","coinMinimalDenom":"utlore","coinDecimals":6}],"rest":"https://gitopia-testnet.nodejumper.io:1317","rpc":"https://gitopia-testnet.nodejumper.io","bech32Config":{"bech32PrefixAccAddr":"gitopia","bech32PrefixAccPub":"gitopiapub","bech32PrefixValAddr":"gitopiavaloper","bech32PrefixValPub":"gitopiavaloperpub","bech32PrefixConsAddr":"gitopiavalcons","bech32PrefixConsPub":"gitopiavalconspub"},"chainName":"gitopiatestnet","feeCurrencies":[{"coinDenom":"tlore","coinMinimalDenom":"utlore","coinDecimals":6}],"stakeCurrency":{"coinDenom":"tlore","coinMinimalDenom":"utlore","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"berberis-1","currencies":[{"coinDenom":"hedge","coinMinimalDenom":"uhedge","coinDecimals":6}],"rest":"https://lcd-berberis.hedgeblock.io","rpc":"https://rpc-berberis.hedgeblock.io","bech32Config":{"bech32PrefixAccAddr":"hedge","bech32PrefixAccPub":"hedgepub","bech32PrefixValAddr":"hedgevaloper","bech32PrefixValPub":"hedgevaloperpub","bech32PrefixConsAddr":"hedgevalcons","bech32PrefixConsPub":"hedgevalconspub"},"chainName":"hedgetestnet","feeCurrencies":[{"coinDenom":"hedge","coinMinimalDenom":"uhedge","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"hedge","coinMinimalDenom":"uhedge","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"testnet-1","currencies":[{"coinDenom":"heart","coinMinimalDenom":"uheart","coinDecimals":6}],"rest":"https://humans-testnet.nodejumper.io:1317","rpc":"https://humans-testnet.nodejumper.io","bech32Config":{"bech32PrefixAccAddr":"humans","bech32PrefixAccPub":"humanspub","bech32PrefixValAddr":"humansvaloper","bech32PrefixValPub":"humansvaloperpub","bech32PrefixConsAddr":"humansvalcons","bech32PrefixConsPub":"humansvalconspub"},"chainName":"humanstestnet","feeCurrencies":[{"coinDenom":"heart","coinMinimalDenom":"uheart","coinDecimals":6}],"stakeCurrency":{"coinDenom":"heart","coinMinimalDenom":"uheart","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"prajna-1","currencies":[{"coinDenom":"hid","coinMinimalDenom":"uhid","coinDecimals":6}],"rest":"https://api.prajna.hypersign.id","rpc":"https://rpc.prajna.hypersign.id","bech32Config":{"bech32PrefixAccAddr":"hid","bech32PrefixAccPub":"hidpub","bech32PrefixValAddr":"hidvaloper","bech32PrefixValPub":"hidvaloperpub","bech32PrefixConsAddr":"hidvalcons","bech32PrefixConsPub":"hidvalconspub"},"chainName":"hypersigntestnet","feeCurrencies":[{"coinDenom":"hid","coinMinimalDenom":"uhid","coinDecimals":6}],"stakeCurrency":{"coinDenom":"hid","coinMinimalDenom":"uhid","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pandora-8","currencies":[{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6}],"rest":"https://testnet.ixo.earth/rest/","rpc":"https://rpc.testnet.ixo.earth/","bech32Config":{"bech32PrefixAccAddr":"ixo","bech32PrefixAccPub":"ixopub","bech32PrefixValAddr":"ixovaloper","bech32PrefixValPub":"ixovaloperpub","bech32PrefixConsAddr":"ixovalcons","bech32PrefixConsPub":"ixovalconspub"},"chainName":"impacthubtestnet","feeCurrencies":[{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"ixo","coinMinimalDenom":"uixo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"imversed-test-1","currencies":[{"coinDenom":"imv","coinMinimalDenom":"nimv","coinDecimals":6}],"rest":"https://query-endpoint-test.imversed.com/","rpc":"https://tx-endpoint-test.imversed.com/","bech32Config":{"bech32PrefixAccAddr":"imv","bech32PrefixAccPub":"imvpub","bech32PrefixValAddr":"imvvaloper","bech32PrefixValPub":"imvvaloperpub","bech32PrefixConsAddr":"imvvalcons","bech32PrefixConsPub":"imvvalconspub"},"chainName":"imversedtestnet","feeCurrencies":[{"coinDenom":"imv","coinMinimalDenom":"nimv","coinDecimals":6}],"stakeCurrency":{"coinDenom":"imv","coinMinimalDenom":"nimv","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"injective-888","currencies":[{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18}],"rest":"https://injective-testnet-api.polkachu.com","rpc":"https://injective-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"inj","bech32PrefixAccPub":"injpub","bech32PrefixValAddr":"injvaloper","bech32PrefixValPub":"injvaloperpub","bech32PrefixConsAddr":"injvalcons","bech32PrefixConsPub":"injvalconspub"},"chainName":"injectivetestnet","feeCurrencies":[{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18,"gasPriceStep":{"low":500000000,"average":700000000,"high":900000000}}],"stakeCurrency":{"coinDenom":"INJ","coinMinimalDenom":"inj","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"canine-1","currencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"rest":"https://jkl.api.t.stavr.tech","rpc":"http://jkl.rpc.t.stavr.tech:19127","bech32Config":{"bech32PrefixAccAddr":"jkl","bech32PrefixAccPub":"jklpub","bech32PrefixValAddr":"jklvaloper","bech32PrefixValPub":"jklvaloperpub","bech32PrefixConsAddr":"jklvalcons","bech32PrefixConsPub":"jklvalconspub"},"chainName":"jackaltestnet","feeCurrencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"stakeCurrency":{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mesomelas-1","currencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"rest":"https://jackal-testnet-v4-rest.brocha.in","rpc":"https://jackal-testnet-v4-rpc.brocha.in","bech32Config":{"bech32PrefixAccAddr":"jkl","bech32PrefixAccPub":"jklpub","bech32PrefixValAddr":"jklvaloper","bech32PrefixValPub":"jklvaloperpub","bech32PrefixConsAddr":"jklvalcons","bech32PrefixConsPub":"jklvalconspub"},"chainName":"jackaltestnet2","feeCurrencies":[{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6}],"stakeCurrency":{"coinDenom":"jkl","coinMinimalDenom":"ujkl","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"uni-6","currencies":[{"coinDenom":"junox","coinMinimalDenom":"ujunox","coinDecimals":6},{"coinDenom":"nexx","coinMinimalDenom":"factory/juno12klaltyqvg2j6v034jwdxrk5n4242ttse4sdpt/NEXX","coinDecimals":6},{"coinDenom":"arena","coinMinimalDenom":"factory/juno12dgadj3wwv5jn0ec7tw5cgvq526nn4gnt2tujlmd57p2ra6k87esl36r9k/ARENA","coinDecimals":6}],"rest":"https://juno-testnet-api.polkachu.com","rpc":"https://juno-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"juno","bech32PrefixAccPub":"junopub","bech32PrefixValAddr":"junovaloper","bech32PrefixValPub":"junovaloperpub","bech32PrefixConsAddr":"junovalcons","bech32PrefixConsPub":"junovalconspub"},"chainName":"junotestnet","feeCurrencies":[{"coinDenom":"junox","coinMinimalDenom":"ujunox","coinDecimals":6,"gasPriceStep":{"low":0.003,"average":0.0045,"high":0.006}}],"stakeCurrency":{"coinDenom":"junox","coinMinimalDenom":"ujunox","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kichain-t-4","currencies":[{"coinDenom":"tki","coinMinimalDenom":"utki","coinDecimals":6}],"rest":"https://api-challenge.blockchain.ki/","rpc":"https://rpc-challenge.blockchain.ki/","bech32Config":{"bech32PrefixAccAddr":"tki","bech32PrefixAccPub":"tkipub","bech32PrefixValAddr":"tkivaloper","bech32PrefixValPub":"tkivaloperpub","bech32PrefixConsAddr":"tkivalcons","bech32PrefixConsPub":"tkivalconspub"},"chainName":"kichaintestnet","feeCurrencies":[{"coinDenom":"tki","coinMinimalDenom":"utki","coinDecimals":6}],"stakeCurrency":{"coinDenom":"tki","coinMinimalDenom":"utki","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kima_testnet","currencies":[{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6}],"rest":"https://api-testnet.kima.finance","rpc":"https://rpc-testnet.kima.finance/","bech32Config":{"bech32PrefixAccAddr":"kima","bech32PrefixAccPub":"kimapub","bech32PrefixValAddr":"kimavaloper","bech32PrefixValPub":"kimavaloperpub","bech32PrefixConsAddr":"kimavalcons","bech32PrefixConsPub":"kimavalconspub"},"chainName":"kimanetworktestnet","feeCurrencies":[{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"KIMA","coinMinimalDenom":"uKIMA","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"harpoon-4","currencies":[{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6},{"coinDenom":"fuzn","coinMinimalDenom":"factory/kujira16qpvzhmawvsm8mcj4hdvtz25dadatdhhgw79xa/FUZN","coinDecimals":6}],"rest":"https://kujira-testnet-api.polkachu.com/","rpc":"https://kujira-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"kujira","bech32PrefixAccPub":"kujirapub","bech32PrefixValAddr":"kujiravaloper","bech32PrefixValPub":"kujiravaloperpub","bech32PrefixConsAddr":"kujiravalcons","bech32PrefixConsPub":"kujiravalconspub"},"chainName":"kujiratestnet","feeCurrencies":[{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6}],"stakeCurrency":{"coinDenom":"kuji","coinMinimalDenom":"ukuji","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"kaon-1","currencies":[{"coinDenom":"kyve","coinMinimalDenom":"tkyve","coinDecimals":6}],"rest":"https://api.kaon.kyve.network","rpc":"https://rpc.kaon.kyve.network","bech32Config":{"bech32PrefixAccAddr":"kyve","bech32PrefixAccPub":"kyvepub","bech32PrefixValAddr":"kyvevaloper","bech32PrefixValPub":"kyvevaloperpub","bech32PrefixConsAddr":"kyvevalcons","bech32PrefixConsPub":"kyvevalconspub"},"chainName":"kyvetestnet","feeCurrencies":[{"coinDenom":"kyve","coinMinimalDenom":"tkyve","coinDecimals":6,"gasPriceStep":{"low":0.02,"average":0.03,"high":0.06}}],"stakeCurrency":{"coinDenom":"kyve","coinMinimalDenom":"tkyve","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"lava-testnet-2","currencies":[{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6}],"rest":"https://lav1.lava.build/","rpc":"https://lav1.tendermintrpc.lava.build:443","bech32Config":{"bech32PrefixAccAddr":"lava@","bech32PrefixAccPub":"lava@pub","bech32PrefixValAddr":"lava@valoper","bech32PrefixValPub":"lava@valoperpub","bech32PrefixConsAddr":"lava@valcons","bech32PrefixConsPub":"lava@valconspub"},"chainName":"lavatestnet","feeCurrencies":[{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6,"gasPriceStep":{"low":0.000001,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"lava","coinMinimalDenom":"ulava","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"likecoin-public-testnet-5","currencies":[{"coinDenom":"ekil","coinMinimalDenom":"nanoekil","coinDecimals":9}],"rest":"https://node.testnet.like.co/","rpc":"https://node.testnet.like.co/rpc/","bech32Config":{"bech32PrefixAccAddr":"like","bech32PrefixAccPub":"likepub","bech32PrefixValAddr":"likevaloper","bech32PrefixValPub":"likevaloperpub","bech32PrefixConsAddr":"likevalcons","bech32PrefixConsPub":"likevalconspub"},"chainName":"likecointestnet","feeCurrencies":[{"coinDenom":"ekil","coinMinimalDenom":"nanoekil","coinDecimals":9,"gasPriceStep":{"low":1000,"average":10000,"high":1000000}}],"stakeCurrency":{"coinDenom":"ekil","coinMinimalDenom":"nanoekil","coinDecimals":9},"bip44":{"coinType":118}},{"chainId":"lumenx-test","currencies":[{"coinDenom":"lumen","coinMinimalDenom":"ulumen","coinDecimals":6}],"rest":"https://testnet-api.lumenx.chaintools.tech/","rpc":"https://testnet-rpc.lumenx.chaintools.tech/","bech32Config":{"bech32PrefixAccAddr":"lumen","bech32PrefixAccPub":"lumenpub","bech32PrefixValAddr":"lumenvaloper","bech32PrefixValPub":"lumenvaloperpub","bech32PrefixConsAddr":"lumenvalcons","bech32PrefixConsPub":"lumenvalconspub"},"chainName":"lumenxtestnet","feeCurrencies":[{"coinDenom":"lumen","coinMinimalDenom":"ulumen","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"lumen","coinMinimalDenom":"ulumen","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"manifest-ledger-testnet","currencies":[{"coinDenom":"mfx","coinMinimalDenom":"umfx","coinDecimals":6},{"coinDenom":"poa","coinMinimalDenom":"upoa","coinDecimals":6}],"rest":"https://nodes.liftedinit.tech/manifest/testnet/api","rpc":"https://nodes.liftedinit.tech/manifest/testnet/rpc","bech32Config":{"bech32PrefixAccAddr":"manifest","bech32PrefixAccPub":"manifestpub","bech32PrefixValAddr":"manifestvaloper","bech32PrefixValPub":"manifestvaloperpub","bech32PrefixConsAddr":"manifestvalcons","bech32PrefixConsPub":"manifestvalconspub"},"chainName":"manifesttestnet","feeCurrencies":[{"coinDenom":"mfx","coinMinimalDenom":"umfx","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.007,"high":0.1}}],"stakeCurrency":{"coinDenom":"mfx","coinMinimalDenom":"umfx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mantra-hongbai-1","currencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6}],"rest":"https://api.hongbai.mantrachain.io","rpc":"https://rpc.hongbai.mantrachain.io","bech32Config":{"bech32PrefixAccAddr":"mantra","bech32PrefixAccPub":"mantrapub","bech32PrefixValAddr":"mantravaloper","bech32PrefixValPub":"mantravaloperpub","bech32PrefixConsAddr":"mantravalcons","bech32PrefixConsPub":"mantravalconspub"},"chainName":"mantrachaintestnet","feeCurrencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.003}}],"stakeCurrency":{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"mantra-dukong-1","currencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6}],"rest":"https://api.dukong.mantrachain.io","rpc":"https://rpc.dukong.mantrachain.io","bech32Config":{"bech32PrefixAccAddr":"mantra","bech32PrefixAccPub":"mantrapub","bech32PrefixValAddr":"mantravaloper","bech32PrefixValPub":"mantravaloperpub","bech32PrefixConsAddr":"mantravalcons","bech32PrefixConsPub":"mantravalconspub"},"chainName":"mantrachaintestnet2","feeCurrencies":[{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.03}}],"stakeCurrency":{"coinDenom":"om","coinMinimalDenom":"uom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"ares-1","currencies":[{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6}],"rest":"https://testnet-rest.marsprotocol.io/","rpc":"https://testnet-rpc.marsprotocol.io/","bech32Config":{"bech32PrefixAccAddr":"mars","bech32PrefixAccPub":"marspub","bech32PrefixValAddr":"marsvaloper","bech32PrefixValPub":"marsvaloperpub","bech32PrefixConsAddr":"marsvalcons","bech32PrefixConsPub":"marsvalconspub"},"chainName":"marstestnet","feeCurrencies":[{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6}],"stakeCurrency":{"coinDenom":"mars","coinMinimalDenom":"umars","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"narwhal-2","currencies":[{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6}],"rest":"https://migaloo-testnet-api.polkachu.com","rpc":"https://migaloo-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"migaloo","bech32PrefixAccPub":"migaloopub","bech32PrefixValAddr":"migaloovaloper","bech32PrefixValPub":"migaloovaloperpub","bech32PrefixConsAddr":"migaloovalcons","bech32PrefixConsPub":"migaloovalconspub"},"chainName":"migalootestnet","feeCurrencies":[{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6,"gasPriceStep":{"low":0.25,"average":0.5,"high":0.75}}],"stakeCurrency":{"coinDenom":"whale","coinMinimalDenom":"uwhale","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pion-1","currencies":[{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6},{"coinDenom":"amATOM","coinMinimalDenom":"factory/neutron15lku24mqhvy4v4gryrqs4662n9v9q4ux9tayn89cmdzldjcgawushxvm76/amatom","coinDecimals":6},{"coinDenom":"arena","coinMinimalDenom":"factory/neutron1r3slyjlf7g76mz3na6gh7c8ek62rhssrzf60uh0emyw3x94rppyqfcs0pk/uarena","coinDecimals":6}],"rest":"https://rest-falcron.pion-1.ntrn.tech","rpc":"https://rpc-falcron.pion-1.ntrn.tech","bech32Config":{"bech32PrefixAccAddr":"neutron","bech32PrefixAccPub":"neutronpub","bech32PrefixValAddr":"neutronvaloper","bech32PrefixValPub":"neutronvaloperpub","bech32PrefixConsAddr":"neutronvalcons","bech32PrefixConsPub":"neutronvalconspub"},"chainName":"neutrontestnet","feeCurrencies":[{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6,"gasPriceStep":{"low":0.0053,"average":0.0053,"high":0.0053}}],"stakeCurrency":{"coinDenom":"ntrn","coinMinimalDenom":"untrn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nibiru-testnet-1","currencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18}],"rest":"https://lcd.testnet-1.nibiru.fi","rpc":"https://rpc.testnet-1.nibiru.fi","bech32Config":{"bech32PrefixAccAddr":"nibi","bech32PrefixAccPub":"nibipub","bech32PrefixValAddr":"nibivaloper","bech32PrefixValPub":"nibivaloperpub","bech32PrefixConsAddr":"nibivalcons","bech32PrefixConsPub":"nibivalconspub"},"chainName":"nibirutestnet","feeCurrencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"nibiru-testnet-2","currencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18}],"rest":"https://lcd.testnet-2.nibiru.fi","rpc":"https://rpc.testnet-2.nibiru.fi","bech32Config":{"bech32PrefixAccAddr":"nibi","bech32PrefixAccPub":"nibipub","bech32PrefixValAddr":"nibivaloper","bech32PrefixValPub":"nibivaloperpub","bech32PrefixConsAddr":"nibivalcons","bech32PrefixConsPub":"nibivalconspub"},"chainName":"nibirutestnet2","feeCurrencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"nibiru-testnet-3","currencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18}],"rest":"https://lcd.testnet-3.nibiru.fi","rpc":"https://rpc.testnet-3.nibiru.fi","bech32Config":{"bech32PrefixAccAddr":"nibi","bech32PrefixAccPub":"nibipub","bech32PrefixValAddr":"nibivaloper","bech32PrefixValPub":"nibivaloperpub","bech32PrefixConsAddr":"nibivalcons","bech32PrefixConsPub":"nibivalconspub"},"chainName":"nibirutestnet3","feeCurrencies":[{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18,"gasPriceStep":{"low":0.025,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"attonibi","coinMinimalDenom":"unibi","coinDecimals":18},"bip44":{"coinType":118}},{"chainId":"nillion-chain-testnet-1","currencies":[{"coinDenom":"nil","coinMinimalDenom":"unil","coinDecimals":6}],"rest":"https://nillion-testnet-api.polkachu.com/","rpc":"https://nillion-testnet-rpc.polkachu.com/","bech32Config":{"bech32PrefixAccAddr":"nillion","bech32PrefixAccPub":"nillionpub","bech32PrefixValAddr":"nillionvaloper","bech32PrefixValPub":"nillionvaloperpub","bech32PrefixConsAddr":"nillionvalcons","bech32PrefixConsPub":"nillionvalconspub"},"chainName":"nilliontestnet","feeCurrencies":[{"coinDenom":"nil","coinMinimalDenom":"unil","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.00025}}],"stakeCurrency":{"coinDenom":"nil","coinMinimalDenom":"unil","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"grand-1","currencies":[{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":6},{"coinDenom":"love","coinMinimalDenom":"ulove","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6},{"coinDenom":"usdy","coinMinimalDenom":"ausdy","coinDecimals":18}],"rest":"https://noble-testnet-api.polkachu.com","rpc":"https://noble-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"noble","bech32PrefixAccPub":"noblepub","bech32PrefixValAddr":"noblevaloper","bech32PrefixValPub":"noblevaloperpub","bech32PrefixConsAddr":"noblevalcons","bech32PrefixConsPub":"noblevalconspub"},"chainName":"nobletestnet","feeCurrencies":[{"coinDenom":"usdc","coinMinimalDenom":"uusdc","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"stake","coinMinimalDenom":"ustake","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nois-testnet-005","currencies":[{"coinDenom":"nois","coinMinimalDenom":"unois","coinDecimals":6}],"rest":"https://api.nois.mcbnode.online","rpc":"https://nois-testnet-rpc.polkachu.com","bech32Config":{"bech32PrefixAccAddr":"nois","bech32PrefixAccPub":"noispub","bech32PrefixValAddr":"noisvaloper","bech32PrefixValPub":"noisvaloperpub","bech32PrefixConsAddr":"noisvalcons","bech32PrefixConsPub":"noisvalconspub"},"chainName":"noistestnet","feeCurrencies":[{"coinDenom":"nois","coinMinimalDenom":"unois","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.05,"high":0.1}}],"stakeCurrency":{"coinDenom":"nois","coinMinimalDenom":"unois","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"rila-1","currencies":[{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6}],"rest":"https://rila-cl.nolus.network:1317","rpc":"https://rila-cl.nolus.network:26657","bech32Config":{"bech32PrefixAccAddr":"nolus","bech32PrefixAccPub":"noluspub","bech32PrefixValAddr":"nolusvaloper","bech32PrefixValPub":"nolusvaloperpub","bech32PrefixConsAddr":"nolusvalcons","bech32PrefixConsPub":"nolusvalconspub"},"chainName":"nolustestnet","feeCurrencies":[{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.05}}],"stakeCurrency":{"coinDenom":"nls","coinMinimalDenom":"unls","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"nomic-testnet-6","currencies":[{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},{"coinDenom":"nbtc","coinMinimalDenom":"usat","coinDecimals":14}],"rest":"https://testnet-api.nomic.io:8443","rpc":"https://testnet-rpc.nomic.io:2096","bech32Config":{"bech32PrefixAccAddr":"nomic","bech32PrefixAccPub":"nomicpub","bech32PrefixValAddr":"nomicvaloper","bech32PrefixValPub":"nomicvaloperpub","bech32PrefixConsAddr":"nomicvalcons","bech32PrefixConsPub":"nomicvalconspub"},"chainName":"nomictestnet","feeCurrencies":[{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},{"coinDenom":"nbtc","coinMinimalDenom":"usat","coinDecimals":14}],"stakeCurrency":{"coinDenom":"nom","coinMinimalDenom":"unom","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sandbox","currencies":[{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6},{"coinDenom":"nym","coinMinimalDenom":"unym","coinDecimals":6}],"rest":"https://api.sandbox.nymtech.net","rpc":"https://rpc.sandbox.nymtech.net","bech32Config":{"bech32PrefixAccAddr":"n","bech32PrefixAccPub":"npub","bech32PrefixValAddr":"nvaloper","bech32PrefixValPub":"nvaloperpub","bech32PrefixConsAddr":"nvalcons","bech32PrefixConsPub":"nvalconspub"},"chainName":"nyxtestnet","feeCurrencies":[{"coinDenom":"nym","coinMinimalDenom":"unym","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}},{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6,"gasPriceStep":{"low":0.025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"nyx","coinMinimalDenom":"unyx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"okp4-nemeton-1","currencies":[{"coinDenom":"know","coinMinimalDenom":"uknow","coinDecimals":6}],"rest":"https://okptest-lcd.quickapi.com","rpc":"https://api.testnet.okp4.network/rpc","bech32Config":{"bech32PrefixAccAddr":"okp4","bech32PrefixAccPub":"okp4pub","bech32PrefixValAddr":"okp4valoper","bech32PrefixValPub":"okp4valoperpub","bech32PrefixConsAddr":"okp4valcons","bech32PrefixConsPub":"okp4valconspub"},"chainName":"okp4testnet","feeCurrencies":[{"coinDenom":"know","coinMinimalDenom":"uknow","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"know","coinMinimalDenom":"uknow","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"osmo-test-5","currencies":[{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6},{"coinDenom":"ion","coinMinimalDenom":"uion","coinDecimals":6},{"coinDenom":"atom","coinMinimalDenom":"ibc/9FF2B7A5F55038A7EE61F4FD6749D9A648B48E89830F2682B67B5DC158E2753C","coinDecimals":6},{"coinDenom":"ausdc","coinMinimalDenom":"ibc/2164BDB48DE5501430E71286448D87C6D2240EC0E078CF113CAB85E21A352BB0","coinDecimals":6},{"coinDenom":"weth","coinMinimalDenom":"ibc/1F42AC9631DBE03009219ECCFE151786F53A038DE9F7A07C709158514F1D5942","coinDecimals":18},{"coinDenom":"junox","coinMinimalDenom":"ibc/31D220286E6C224C0F72D890D0EB75A228D388089EF5C4D77212344F9EAF0183","coinDecimals":6},{"coinDenom":"mars","coinMinimalDenom":"ibc/66A7ADA623D33D0B66C6890FE3E1AF3D638D56CE2B56F8BDA210B2AA62016216","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/DE6792CF9E521F6AD6E9A4BDF6225C9571A3B74ACC0A529F92BC5122A39D2E58","coinDecimals":6},{"coinDenom":"akt","coinMinimalDenom":"ibc/AD59D59CFB0E628E73C798415F823AB5B6257C2FE4BF67DBB5D6A677B2686E82","coinDecimals":6},{"coinDenom":"kyve","coinMinimalDenom":"ibc/AB8AF05799E299FB5C5C80781DA35887F53E029745D20E5641233DB4E6B28515","coinDecimals":6},{"coinDenom":"qck","coinMinimalDenom":"ibc/F37CF69589DE12342758382F8770C0852CD8D2E4519F55166EBDAF472AD667C9","coinDecimals":6},{"coinDenom":"c4e","coinMinimalDenom":"ibc/E3D323CB6F427C49E56F913C853A416F6B71BAA9B0164625AD0203266F92B3ED","coinDecimals":6},{"coinDenom":"xprt","coinMinimalDenom":"ibc/754C8533F8A418B03AD5F2C6AA19D4703CF78BBAB9E2E4DDD6212AAC2E502CA6","coinDecimals":6},{"coinDenom":"XION","coinMinimalDenom":"ibc/3642669AD14386D3E38F43F30CFCA859B3E8A05BF6BD6A23DEBD2115AD1325E9","coinDecimals":6},{"coinDenom":"tsaga","coinMinimalDenom":"ibc/48384130079A5987378F5776775F8C29A02505273E777BBB99361F2BB5B577C9","coinDecimals":6},{"coinDenom":"ixo","coinMinimalDenom":"ibc/88C815D69587CF0F05E96E5E2731EA56194D73C9A02A500095294D3A5DE68F16","coinDecimals":6},{"coinDenom":"willyz","coinMinimalDenom":"factory/osmo1zlkzu72774ynac53necz46u4ycqtp36wedrar0/willyz","coinDecimals":6},{"coinDenom":"amATOM","coinMinimalDenom":"ibc/C86B92F7FCFC1993DAC4AB0D78D9BC080300354B823A57F12CD6E2FBB667214E","coinDecimals":6},{"coinDenom":"tkx","coinMinimalDenom":"ibc/28EEF762052DB8C3D27A7BF625E9F86A1B3B689CC8D80C818CEDF2EB6CBA02A6","coinDecimals":18}],"rest":"https://lcd.osmotest5.osmosis.zone/","rpc":"https://rpc.osmotest5.osmosis.zone/","bech32Config":{"bech32PrefixAccAddr":"osmo","bech32PrefixAccPub":"osmopub","bech32PrefixValAddr":"osmovaloper","bech32PrefixValPub":"osmovaloperpub","bech32PrefixConsAddr":"osmovalcons","bech32PrefixConsPub":"osmovalconspub"},"chainName":"osmosistestnet","feeCurrencies":[{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"osmo","coinMinimalDenom":"uosmo","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"INVALID-ID-permtestnet-testnet-1","currencies":[{"coinDenom":"perm","coinMinimalDenom":"uperm","coinDecimals":6}],"rest":"https://rest.3.finance/","rpc":"https://rpc.3.finance/","bech32Config":{"bech32PrefixAccAddr":"perm","bech32PrefixAccPub":"permpub","bech32PrefixValAddr":"permvaloper","bech32PrefixValPub":"permvaloperpub","bech32PrefixConsAddr":"permvalcons","bech32PrefixConsPub":"permvalconspub"},"chainName":"permtestnet","feeCurrencies":[{"coinDenom":"perm","coinMinimalDenom":"uperm","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.0025,"high":0.0024}}],"stakeCurrency":{"coinDenom":"perm","coinMinimalDenom":"uperm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"test-core-1","currencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},{"coinDenom":"stkatom","coinMinimalDenom":"stk/uatom","coinDecimals":6}],"rest":"https://rest-testnet-persistence.architectnodes.com/","rpc":"https://rpc-testnet-persistence.architectnodes.com/","bech32Config":{"bech32PrefixAccAddr":"persistence","bech32PrefixAccPub":"persistencepub","bech32PrefixValAddr":"persistencevaloper","bech32PrefixValPub":"persistencevaloperpub","bech32PrefixConsAddr":"persistencevalcons","bech32PrefixConsPub":"persistencevalconspub"},"chainName":"persistencetestnet","feeCurrencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.125,"high":0.2}}],"stakeCurrency":{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"test-core-2","currencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},{"coinDenom":"stkatom","coinMinimalDenom":"stk/uatom","coinDecimals":6},{"coinDenom":"stkosmo","coinMinimalDenom":"stk/uosmo","coinDecimals":6},{"coinDenom":"stkdv4tnt","coinMinimalDenom":"stk/adv4tnt","coinDecimals":18}],"rest":"https://api-persistence-testnet-01.stakeflow.io/","rpc":"https://rpc-persistence-testnet-01.stakeflow.io/","bech32Config":{"bech32PrefixAccAddr":"persistence","bech32PrefixAccPub":"persistencepub","bech32PrefixValAddr":"persistencevaloper","bech32PrefixValPub":"persistencevaloperpub","bech32PrefixConsAddr":"persistencevalcons","bech32PrefixConsPub":"persistencevalconspub"},"chainName":"persistencetestnet2","feeCurrencies":[{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.125,"high":0.2}}],"stakeCurrency":{"coinDenom":"xprt","coinMinimalDenom":"uxprt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"planq_7077-1","currencies":[{"coinDenom":"tplanq","coinMinimalDenom":"atplanq","coinDecimals":18}],"rest":"https://rest-atlas.planq.network","rpc":"https://rpc-atlas.planq.network","bech32Config":{"bech32PrefixAccAddr":"plq","bech32PrefixAccPub":"plqpub","bech32PrefixValAddr":"plqvaloper","bech32PrefixValPub":"plqvaloperpub","bech32PrefixConsAddr":"plqvalcons","bech32PrefixConsPub":"plqvalconspub"},"chainName":"planqtestnet","feeCurrencies":[{"coinDenom":"tplanq","coinMinimalDenom":"atplanq","coinDecimals":18,"gasPriceStep":{"low":30000000000,"average":35000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"tplanq","coinMinimalDenom":"atplanq","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"pocket-beta","currencies":[{"coinDenom":"pokt","coinMinimalDenom":"upokt","coinDecimals":6}],"rest":"https://shannon-testnet-grove-api.beta.poktroll.com","rpc":"https://shannon-testnet-grove-rpc.beta.poktroll.com","bech32Config":{"bech32PrefixAccAddr":"pokt@","bech32PrefixAccPub":"pokt@pub","bech32PrefixValAddr":"pokt@valoper","bech32PrefixValPub":"pokt@valoperpub","bech32PrefixConsAddr":"pokt@valcons","bech32PrefixConsPub":"pokt@valconspub"},"chainName":"pockettestnet","feeCurrencies":[{"coinDenom":"pokt","coinMinimalDenom":"upokt","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.002,"high":0.0025}}],"stakeCurrency":{"coinDenom":"pokt","coinMinimalDenom":"upokt","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"indigo-1","currencies":[{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6}],"rest":"https://testnet-api.pryzm.zone","rpc":"https://testnet-rpc.pryzm.zone","bech32Config":{"bech32PrefixAccAddr":"pryzm","bech32PrefixAccPub":"pryzmpub","bech32PrefixValAddr":"pryzmvaloper","bech32PrefixValPub":"pryzmvaloperpub","bech32PrefixConsAddr":"pryzmvalcons","bech32PrefixConsPub":"pryzmvalconspub"},"chainName":"pryzmtestnet","feeCurrencies":[{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6,"gasPriceStep":{"low":0.015,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"pryzm","coinMinimalDenom":"upryzm","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"quasar-test-1","currencies":[{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6},{"coinDenom":"ayy","coinMinimalDenom":"uayy","coinDecimals":6},{"coinDenom":"oro","coinMinimalDenom":"uoro","coinDecimals":6}],"rest":"https://quasar-testnet-api.polkachu.com/","rpc":"https://quasar-testnet-rpc.polkachu.com/","bech32Config":{"bech32PrefixAccAddr":"quasar","bech32PrefixAccPub":"quasarpub","bech32PrefixValAddr":"quasarvaloper","bech32PrefixValPub":"quasarvaloperpub","bech32PrefixConsAddr":"quasarvalcons","bech32PrefixConsPub":"quasarvalconspub"},"chainName":"quasartestnet","feeCurrencies":[{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"qsr","coinMinimalDenom":"uqsr","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"rhye-2","currencies":[{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6}],"rest":"https://quick.api.t.stavr.tech","rpc":"http://quick.rpc.t.stavr.tech:20027","bech32Config":{"bech32PrefixAccAddr":"quick","bech32PrefixAccPub":"quickpub","bech32PrefixValAddr":"quickvaloper","bech32PrefixValPub":"quickvaloperpub","bech32PrefixConsAddr":"quickvalcons","bech32PrefixConsPub":"quickvalconspub"},"chainName":"quicksilvertestnet","feeCurrencies":[{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6,"gasPriceStep":{"low":0.0001,"average":0.0001,"high":0.00025}}],"stakeCurrency":{"coinDenom":"qck","coinMinimalDenom":"uqck","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"earendel-1","currencies":[{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6}],"rest":"https://testnet-api.qwoyn.studio","rpc":"https://testnet-rpc.qwoyn.studio","bech32Config":{"bech32PrefixAccAddr":"qwoyn","bech32PrefixAccPub":"qwoynpub","bech32PrefixValAddr":"qwoynvaloper","bech32PrefixValPub":"qwoynvaloperpub","bech32PrefixConsAddr":"qwoynvalcons","bech32PrefixConsPub":"qwoynvalconspub"},"chainName":"qwoyntestnet","feeCurrencies":[{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6}],"stakeCurrency":{"coinDenom":"qwoyn","coinMinimalDenom":"uqwoyn","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"ssc-testnet-2","currencies":[{"coinDenom":"tsaga","coinMinimalDenom":"utsaga","coinDecimals":6}],"rest":"https://testnet-ssc-lcd.sagarpc.io/","rpc":"https://testnet-ssc.sagarpc.io/","bech32Config":{"bech32PrefixAccAddr":"saga","bech32PrefixAccPub":"sagapub","bech32PrefixValAddr":"sagavaloper","bech32PrefixValPub":"sagavaloperpub","bech32PrefixConsAddr":"sagavalcons","bech32PrefixConsPub":"sagavalconspub"},"chainName":"sagatestnet","feeCurrencies":[{"coinDenom":"tsaga","coinMinimalDenom":"utsaga","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"tsaga","coinMinimalDenom":"utsaga","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pulsar-3","currencies":[{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6}],"rest":"https://lcd.testnet.secretsaturn.net","rpc":"https://rpc.testnet.secretsaturn.net","bech32Config":{"bech32PrefixAccAddr":"secret","bech32PrefixAccPub":"secretpub","bech32PrefixValAddr":"secretvaloper","bech32PrefixValPub":"secretvaloperpub","bech32PrefixConsAddr":"secretvalcons","bech32PrefixConsPub":"secretvalconspub"},"chainName":"secretnetworktestnet","feeCurrencies":[{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6}],"stakeCurrency":{"coinDenom":"scrt","coinMinimalDenom":"uscrt","coinDecimals":6},"bip44":{"coinType":529}},{"chainId":"atlantic-1","currencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6}],"rest":"https://sei-testnet-rest.brocha.in","rpc":"https://sei-testnet-rpc.brocha.in","bech32Config":{"bech32PrefixAccAddr":"sei","bech32PrefixAccPub":"seipub","bech32PrefixValAddr":"seivaloper","bech32PrefixValPub":"seivaloperpub","bech32PrefixConsAddr":"seivalcons","bech32PrefixConsPub":"seivalconspub"},"chainName":"seitestnet","feeCurrencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6}],"stakeCurrency":{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"atlantic-2","currencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6}],"rest":"https://sei-testnet-2-rest.brocha.in","rpc":"https://sei-testnet-2-rpc.brocha.in","bech32Config":{"bech32PrefixAccAddr":"sei","bech32PrefixAccPub":"seipub","bech32PrefixValAddr":"seivaloper","bech32PrefixValPub":"seivaloperpub","bech32PrefixConsAddr":"seivalcons","bech32PrefixConsPub":"seivalconspub"},"chainName":"seitestnet2","feeCurrencies":[{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6}],"stakeCurrency":{"coinDenom":"sei","coinMinimalDenom":"usei","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"self-dev-1","currencies":[{"coinDenom":"self","coinMinimalDenom":"uself","coinDecimals":6}],"rest":"https://api-devnet.selfchain.xyz/","rpc":"https://rpc-devnet.selfchain.xyz","bech32Config":{"bech32PrefixAccAddr":"self","bech32PrefixAccPub":"selfpub","bech32PrefixValAddr":"selfvaloper","bech32PrefixValPub":"selfvaloperpub","bech32PrefixConsAddr":"selfvalcons","bech32PrefixConsPub":"selfvalconspub"},"chainName":"selfchaindevnet","feeCurrencies":[{"coinDenom":"self","coinMinimalDenom":"uself","coinDecimals":6}],"stakeCurrency":{"coinDenom":"self","coinMinimalDenom":"uself","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sge-network-3","currencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"rest":"https://api.testnet.sgenetwork.io","rpc":"https://rpc.testnet.sgenetwork.io","bech32Config":{"bech32PrefixAccAddr":"sge","bech32PrefixAccPub":"sgepub","bech32PrefixValAddr":"sgevaloper","bech32PrefixValPub":"sgevaloperpub","bech32PrefixConsAddr":"sgevalcons","bech32PrefixConsPub":"sgevalconspub"},"chainName":"sgetestnet","feeCurrencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"stakeCurrency":{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sge-network-4","currencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"rest":"https://api.testnet.sgenetwork.io","rpc":"https://rpc.testnet.sgenetwork.io","bech32Config":{"bech32PrefixAccAddr":"sge","bech32PrefixAccPub":"sgepub","bech32PrefixValAddr":"sgevaloper","bech32PrefixValPub":"sgevaloperpub","bech32PrefixConsAddr":"sgevalcons","bech32PrefixConsPub":"sgevalconspub"},"chainName":"sgetestnet4","feeCurrencies":[{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6}],"stakeCurrency":{"coinDenom":"sge","coinMinimalDenom":"usge","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"yulei-2.1","currencies":[{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6}],"rest":"https://yulei-rest.shentu.org/","rpc":"https://yulei-rpc.shentu.org:443","bech32Config":{"bech32PrefixAccAddr":"shentu","bech32PrefixAccPub":"shentupub","bech32PrefixValAddr":"shentuvaloper","bech32PrefixValPub":"shentuvaloperpub","bech32PrefixConsAddr":"shentuvalcons","bech32PrefixConsPub":"shentuvalconspub"},"chainName":"shentutestnet","feeCurrencies":[{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"ctk","coinMinimalDenom":"uctk","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"fivenet","currencies":[{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6}],"rest":"https://api1.fivenet.sixprotocol.net:443","rpc":"https://rpc1.fivenet.sixprotocol.net:443","bech32Config":{"bech32PrefixAccAddr":"6x","bech32PrefixAccPub":"6xpub","bech32PrefixValAddr":"6xvaloper","bech32PrefixValPub":"6xvaloperpub","bech32PrefixConsAddr":"6xvalcons","bech32PrefixConsPub":"6xvalconspub"},"chainName":"sixtestnet","feeCurrencies":[{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6,"gasPriceStep":{"low":1.25,"average":1.5,"high":1.75}}],"stakeCurrency":{"coinDenom":"six","coinMinimalDenom":"usix","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"soarchaintestnet","currencies":[{"coinDenom":"tsoar","coinMinimalDenom":"utsoar","coinDecimals":6}],"rest":"https://api.testnet.soarchain.com/","rpc":"https://rpc1.testnet.soarchain.com","bech32Config":{"bech32PrefixAccAddr":"soar","bech32PrefixAccPub":"soarpub","bech32PrefixValAddr":"soarvaloper","bech32PrefixValPub":"soarvaloperpub","bech32PrefixConsAddr":"soarvalcons","bech32PrefixConsPub":"soarvalconspub"},"chainName":"soarchaintestnet","feeCurrencies":[{"coinDenom":"tsoar","coinMinimalDenom":"utsoar","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.02,"high":0.1}}],"stakeCurrency":{"coinDenom":"tsoar","coinMinimalDenom":"utsoar","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sourcetest-1","currencies":[{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6}],"rest":"https://source-testnet-api.itrocket.net/","rpc":"https://source-testnet-rpc.itrocket.net/","bech32Config":{"bech32PrefixAccAddr":"source","bech32PrefixAccPub":"sourcepub","bech32PrefixValAddr":"sourcevaloper","bech32PrefixValPub":"sourcevaloperpub","bech32PrefixConsAddr":"sourcevalcons","bech32PrefixConsPub":"sourcevalconspub"},"chainName":"sourcetestnet","feeCurrencies":[{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6,"gasPriceStep":{"low":0.05,"average":0.075,"high":0.1}}],"stakeCurrency":{"coinDenom":"source","coinMinimalDenom":"usource","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"elgafar-1","currencies":[{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6}],"rest":"https://rest.elgafar-1.stargaze-apis.com","rpc":"https://rpc.elgafar-1.stargaze-apis.com","bech32Config":{"bech32PrefixAccAddr":"stars","bech32PrefixAccPub":"starspub","bech32PrefixValAddr":"starsvaloper","bech32PrefixValPub":"starsvaloperpub","bech32PrefixConsAddr":"starsvalcons","bech32PrefixConsPub":"starsvalconspub"},"chainName":"stargazetestnet","feeCurrencies":[{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6,"gasPriceStep":{"low":0.03,"average":0.04,"high":0.05}}],"stakeCurrency":{"coinDenom":"stars","coinMinimalDenom":"ustars","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"stateset-1-testnet","currencies":[{"coinDenom":"state","coinMinimalDenom":"ustate","coinDecimals":6}],"rest":"https://rest-api.stateset.zone","rpc":"https://rpc.stateset.zone/","bech32Config":{"bech32PrefixAccAddr":"stateset","bech32PrefixAccPub":"statesetpub","bech32PrefixValAddr":"statesetvaloper","bech32PrefixValPub":"statesetvaloperpub","bech32PrefixConsAddr":"statesetvalcons","bech32PrefixConsPub":"statesetvalconspub"},"chainName":"statesettestnet","feeCurrencies":[{"coinDenom":"state","coinMinimalDenom":"ustate","coinDecimals":6}],"stakeCurrency":{"coinDenom":"state","coinMinimalDenom":"ustate","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"stride-internal-1","currencies":[{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6},{"coinDenom":"stTIA","coinMinimalDenom":"stutia","coinDecimals":6},{"coinDenom":"stDV4TNT","coinMinimalDenom":"stadv4tnt","coinDecimals":18},{"coinDenom":"TIA","coinMinimalDenom":"ibc/1A7653323C1A9E267FF7BEBF40B3EEA8065E8F069F47F2493ABC3E0B621BF793","coinDecimals":6},{"coinDenom":"DV4TNT","coinMinimalDenom":"ibc/DFA22C0A6DD15E64B6BD164A1C748EDA8E976F3BDAC9BA7B40AD887BBEC5D2BB","coinDecimals":6}],"rest":"https://stride.testnet-1.stridenet.co/api","rpc":"https://stride.testnet-1.stridenet.co","bech32Config":{"bech32PrefixAccAddr":"stride","bech32PrefixAccPub":"stridepub","bech32PrefixValAddr":"stridevaloper","bech32PrefixValPub":"stridevaloperpub","bech32PrefixConsAddr":"stridevalcons","bech32PrefixConsPub":"stridevalconspub"},"chainName":"stridetestnet","feeCurrencies":[{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6}],"stakeCurrency":{"coinDenom":"strd","coinMinimalDenom":"ustrd","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"sunrise-test-0.1","currencies":[{"coinDenom":"vrise","coinMinimalDenom":"uvrise","coinDecimals":6},{"coinDenom":"rise","coinMinimalDenom":"urise","coinDecimals":6}],"rest":"https://a-node.sunrise-test-1.cauchye.net:1318","rpc":"https://a-node.sunrise-test-1.cauchye.net/","bech32Config":{"bech32PrefixAccAddr":"sunrise","bech32PrefixAccPub":"sunrisepub","bech32PrefixValAddr":"sunrisevaloper","bech32PrefixValPub":"sunrisevaloperpub","bech32PrefixConsAddr":"sunrisevalcons","bech32PrefixConsPub":"sunrisevalconspub"},"chainName":"sunrisetestnet","feeCurrencies":[{"coinDenom":"rise","coinMinimalDenom":"urise","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"vrise","coinMinimalDenom":"uvrise","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"swisstronik_1291-1","currencies":[{"coinDenom":"swtr","coinMinimalDenom":"aswtr","coinDecimals":18}],"rest":"https://api.testnet.swisstronik.com","rpc":"https://rpc.testnet.swisstronik.com","bech32Config":{"bech32PrefixAccAddr":"swtr","bech32PrefixAccPub":"swtrpub","bech32PrefixValAddr":"swtrvaloper","bech32PrefixValPub":"swtrvaloperpub","bech32PrefixConsAddr":"swtrvalcons","bech32PrefixConsPub":"swtrvalconspub"},"chainName":"swisstroniktestnet","feeCurrencies":[{"coinDenom":"swtr","coinMinimalDenom":"aswtr","coinDecimals":18}],"stakeCurrency":{"coinDenom":"swtr","coinMinimalDenom":"aswtr","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"symphony-testnet-4","currencies":[{"coinDenom":"mld","coinMinimalDenom":"note","coinDecimals":6},{"coinDenom":"husd","coinMinimalDenom":"uusd","coinDecimals":6},{"coinDenom":"hkhd","coinMinimalDenom":"ukhd","coinDecimals":6},{"coinDenom":"hvnd","coinMinimalDenom":"uvnd","coinDecimals":6}],"rest":"https://symphony.test.api.nodeshub.online/","rpc":"https://symphony.test.rpc.nodeshub.online/","bech32Config":{"bech32PrefixAccAddr":"symphony","bech32PrefixAccPub":"symphonypub","bech32PrefixValAddr":"symphonyvaloper","bech32PrefixValPub":"symphonyvaloperpub","bech32PrefixConsAddr":"symphonyvalcons","bech32PrefixConsPub":"symphonyvalconspub"},"chainName":"symphonytestnet","feeCurrencies":[{"coinDenom":"mld","coinMinimalDenom":"note","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"mld","coinMinimalDenom":"note","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"amber-2","currencies":[{"coinDenom":"AMBER","coinMinimalDenom":"uamber","coinDecimals":6}],"rest":"https://api-testnet.synternet.com/","rpc":"https://rpc-testnet.synternet.com/","bech32Config":{"bech32PrefixAccAddr":"amber","bech32PrefixAccPub":"amberpub","bech32PrefixValAddr":"ambervaloper","bech32PrefixValPub":"ambervaloperpub","bech32PrefixConsAddr":"ambervalcons","bech32PrefixConsPub":"ambervalconspub"},"chainName":"synternettestnet","feeCurrencies":[{"coinDenom":"AMBER","coinMinimalDenom":"uamber","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"AMBER","coinMinimalDenom":"uamber","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"90u-4","currencies":[{"coinDenom":"terpx","coinMinimalDenom":"uterpx","coinDecimals":6},{"coinDenom":"thiolx","coinMinimalDenom":"uthiolx","coinDecimals":6}],"rest":"https://testnet-api.terp.network:443/","rpc":"https://testnet-rpc.terp.network:443/","bech32Config":{"bech32PrefixAccAddr":"terp","bech32PrefixAccPub":"terppub","bech32PrefixValAddr":"terpvaloper","bech32PrefixValPub":"terpvaloperpub","bech32PrefixConsAddr":"terpvalcons","bech32PrefixConsPub":"terpvalconspub"},"chainName":"terpnettestnet","feeCurrencies":[{"coinDenom":"thiolx","coinMinimalDenom":"uthiolx","coinDecimals":6,"gasPriceStep":{"low":0.75,"average":1,"high":1.25}}],"stakeCurrency":{"coinDenom":"terpx","coinMinimalDenom":"uterpx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"90u-2","currencies":[{"coinDenom":"terpx","coinMinimalDenom":"uterpx","coinDecimals":6},{"coinDenom":"thiolx","coinMinimalDenom":"uthiolx","coinDecimals":6}],"rest":"https://terp-testnet-api.itrocket.net:443/","rpc":"https://terp-testnet-rpc.itrocket.net:443/","bech32Config":{"bech32PrefixAccAddr":"terp","bech32PrefixAccPub":"terppub","bech32PrefixValAddr":"terpvaloper","bech32PrefixValPub":"terpvaloperpub","bech32PrefixConsAddr":"terpvalcons","bech32PrefixConsPub":"terpvalconspub"},"chainName":"terpnettestnet2","feeCurrencies":[{"coinDenom":"thiolx","coinMinimalDenom":"uthiolx","coinDecimals":6,"gasPriceStep":{"low":0.75,"average":1,"high":1.25}}],"stakeCurrency":{"coinDenom":"terpx","coinMinimalDenom":"uterpx","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"pisco-1","currencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6}],"rest":"https://pisco-lcd.terra.dev:443","rpc":"https://pisco-rpc.terra.dev:443","bech32Config":{"bech32PrefixAccAddr":"terra","bech32PrefixAccPub":"terrapub","bech32PrefixValAddr":"terravaloper","bech32PrefixValPub":"terravaloperpub","bech32PrefixConsAddr":"terravalcons","bech32PrefixConsPub":"terravalconspub"},"chainName":"terra2testnet","feeCurrencies":[{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6,"gasPriceStep":{"low":0.0125,"average":0.015,"high":0.04}}],"stakeCurrency":{"coinDenom":"luna","coinMinimalDenom":"uluna","coinDecimals":6},"bip44":{"coinType":330}},{"chainId":"titan_18889-1","currencies":[{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18},{"coinDenom":"usdc","coinMinimalDenom":"ibc/7C0807A56073C4A27B0DE1C21BA3EB75DF75FD763F4AD37BC159917FC01145F0","coinDecimals":6},{"coinDenom":"btc","coinMinimalDenom":"factory/titan1uvt40rsp68wtas0y75w34qdn5h0g5eyefy5gmvzftdnupyv7q7vq7jfynw/w-btc","coinDecimals":8}],"rest":"https://titan-testnet-lcd.titanlab.io:443","rpc":"https://titan-testnet-rpc.titanlab.io:443","bech32Config":{"bech32PrefixAccAddr":"titan","bech32PrefixAccPub":"titanpub","bech32PrefixValAddr":"titanvaloper","bech32PrefixValPub":"titanvaloperpub","bech32PrefixConsAddr":"titanvalcons","bech32PrefixConsPub":"titanvalconspub"},"chainName":"titantestnet","feeCurrencies":[{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18,"gasPriceStep":{"low":100000000000,"average":110000000000,"high":200000000000}}],"stakeCurrency":{"coinDenom":"tkx","coinMinimalDenom":"atkx","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"tucana_712-1","currencies":[{"coinDenom":"tuc","coinMinimalDenom":"atuc","coinDecimals":18}],"rest":"https://lcd.birdee-2.tucana.zone/","rpc":"https://rpc.birdee-2.tucana.zone/","bech32Config":{"bech32PrefixAccAddr":"tuc","bech32PrefixAccPub":"tucpub","bech32PrefixValAddr":"tucvaloper","bech32PrefixValPub":"tucvaloperpub","bech32PrefixConsAddr":"tucvalcons","bech32PrefixConsPub":"tucvalconspub"},"chainName":"tucanatestnet","feeCurrencies":[{"coinDenom":"tuc","coinMinimalDenom":"atuc","coinDecimals":18,"gasPriceStep":{"low":10000000000,"average":25000000000,"high":30000000000}}],"stakeCurrency":{"coinDenom":"tuc","coinMinimalDenom":"atuc","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"FUND-TestNet-2","currencies":[{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9}],"rest":"https://rest-testnet.unification.io","rpc":"https://rpc-testnet.unification.io:443","bech32Config":{"bech32PrefixAccAddr":"und","bech32PrefixAccPub":"undpub","bech32PrefixValAddr":"undvaloper","bech32PrefixValPub":"undvaloperpub","bech32PrefixConsAddr":"undvalcons","bech32PrefixConsPub":"undvalconspub"},"chainName":"unificationtestnet","feeCurrencies":[{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9,"gasPriceStep":{"low":100,"average":200,"high":300}}],"stakeCurrency":{"coinDenom":"FUND","coinMinimalDenom":"nund","coinDecimals":9},"bip44":{"coinType":5555}},{"chainId":"union-testnet-8","currencies":[{"coinDenom":"uno","coinMinimalDenom":"muno","coinDecimals":6}],"rest":"https://rest.testnet-8.union.build","rpc":"https://rpc.testnet-8.union.build","bech32Config":{"bech32PrefixAccAddr":"union","bech32PrefixAccPub":"unionpub","bech32PrefixValAddr":"unionvaloper","bech32PrefixValPub":"unionvaloperpub","bech32PrefixConsAddr":"unionvalcons","bech32PrefixConsPub":"unionvalconspub"},"chainName":"uniontestnet","feeCurrencies":[{"coinDenom":"uno","coinMinimalDenom":"muno","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.025,"high":0.04}}],"stakeCurrency":{"coinDenom":"uno","coinMinimalDenom":"muno","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"uptick_7000-2","currencies":[{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18}],"rest":"https://uptick-7000-2-rest.staketab.org","rpc":"https://uptick-7000-2-rpc.staketab.org:443","bech32Config":{"bech32PrefixAccAddr":"uptick","bech32PrefixAccPub":"uptickpub","bech32PrefixValAddr":"uptickvaloper","bech32PrefixValPub":"uptickvaloperpub","bech32PrefixConsAddr":"uptickvalcons","bech32PrefixConsPub":"uptickvalconspub"},"chainName":"upticktestnet","feeCurrencies":[{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18}],"stakeCurrency":{"coinDenom":"uptick","coinMinimalDenom":"auptick","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"buenavista-1","currencies":[{"coinDenom":"ward","coinMinimalDenom":"uward","coinDecimals":6}],"rest":"https://api.buenavista.wardenprotocol.org/","rpc":"https://rpc.buenavista.wardenprotocol.org/","bech32Config":{"bech32PrefixAccAddr":"warden","bech32PrefixAccPub":"wardenpub","bech32PrefixValAddr":"wardenvaloper","bech32PrefixValPub":"wardenvaloperpub","bech32PrefixConsAddr":"wardenvalcons","bech32PrefixConsPub":"wardenvalconspub"},"chainName":"wardenprotocoltestnet","feeCurrencies":[{"coinDenom":"ward","coinMinimalDenom":"uward","coinDecimals":6,"gasPriceStep":{"low":0.01,"average":0.025,"high":0.03}}],"stakeCurrency":{"coinDenom":"ward","coinMinimalDenom":"uward","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"INVALID-ID-wavehashtestnet-testnet-1","currencies":[{"coinDenom":"wahax","coinMinimalDenom":"uwahax","coinDecimals":6}],"rest":"https://lcd.wavehash.online/","rpc":"https://rpc.wavehash.online/","bech32Config":{"bech32PrefixAccAddr":"wavehash","bech32PrefixAccPub":"wavehashpub","bech32PrefixValAddr":"wavehashvaloper","bech32PrefixValPub":"wavehashvaloperpub","bech32PrefixConsAddr":"wavehashvalcons","bech32PrefixConsPub":"wavehashvalconspub"},"chainName":"wavehashtestnet","feeCurrencies":[{"coinDenom":"wahax","coinMinimalDenom":"uwahax","coinDecimals":6,"gasPriceStep":{"low":0.0025,"average":0.0025,"high":0.0024}}],"stakeCurrency":{"coinDenom":"wahax","coinMinimalDenom":"uwahax","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"xion-testnet-1","currencies":[{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6},{"coinDenom":"axl","coinMinimalDenom":"ibc/33517D439F5E545A1AAB148FAE43AAE17CF68FFB9BC97AE0048A3E3B64518C58","coinDecimals":6},{"coinDenom":"osmo","coinMinimalDenom":"ibc/484532EB74866F3FB8A71F909F7B1B470FE2E66313DA0A1F9EE5B7C5C046D195","coinDecimals":6},{"coinDenom":"usdc","coinMinimalDenom":"ibc/57097251ED81A232CE3C9D899E7C8096D6D87EF84BA203E12E424AA4C9B57A64","coinDecimals":6},{"coinDenom":"INJ","coinMinimalDenom":"ibc/05314A48723E06A1B1B666066B6BEC89F3708E8854DF2E5E9193387AA9653036","coinDecimals":18}],"rest":"https://api.xion-testnet-1.burnt.com","rpc":"https://rpc.xion-testnet-1.burnt.com","bech32Config":{"bech32PrefixAccAddr":"xion","bech32PrefixAccPub":"xionpub","bech32PrefixValAddr":"xionvaloper","bech32PrefixValPub":"xionvaloperpub","bech32PrefixConsAddr":"xionvalcons","bech32PrefixConsPub":"xionvalconspub"},"chainName":"xiontestnet","feeCurrencies":[{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6,"gasPriceStep":{"low":0.001,"average":0.001,"high":0.01}}],"stakeCurrency":{"coinDenom":"XION","coinMinimalDenom":"uxion","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"cube_47-5","currencies":[{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18}],"rest":"https://cube-lcd.xpla.dev","rpc":"https://cube-rpc.xpla.dev","bech32Config":{"bech32PrefixAccAddr":"xpla","bech32PrefixAccPub":"xplapub","bech32PrefixValAddr":"xplavaloper","bech32PrefixValPub":"xplavaloperpub","bech32PrefixConsAddr":"xplavalcons","bech32PrefixConsPub":"xplavalconspub"},"chainName":"xplatestnet","feeCurrencies":[{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18,"gasPriceStep":{"low":850000000000,"average":1147500000000,"high":1487500000000}}],"stakeCurrency":{"coinDenom":"xpla","coinMinimalDenom":"axpla","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"gardia-2","currencies":[{"coinDenom":"rock","coinMinimalDenom":"urock","coinDecimals":6}],"rest":"https://api.gardia.zenrocklabs.io/","rpc":"https://rpc.gardia.zenrocklabs.io/","bech32Config":{"bech32PrefixAccAddr":"zen","bech32PrefixAccPub":"zenpub","bech32PrefixValAddr":"zenvaloper","bech32PrefixValPub":"zenvaloperpub","bech32PrefixConsAddr":"zenvalcons","bech32PrefixConsPub":"zenvalconspub"},"chainName":"zenrocktestnet","feeCurrencies":[{"coinDenom":"rock","coinMinimalDenom":"urock","coinDecimals":6,"gasPriceStep":{"low":0.5,"average":0.55,"high":0.6}}],"stakeCurrency":{"coinDenom":"rock","coinMinimalDenom":"urock","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"athens_7001-1","currencies":[{"coinDenom":"tzeta","coinMinimalDenom":"azeta","coinDecimals":18}],"rest":"https://zetachain-athens.blockpi.network/lcd/v1/public","rpc":"https://zetachain-athens.blockpi.network/rpc/v1/public","bech32Config":{"bech32PrefixAccAddr":"zeta","bech32PrefixAccPub":"zetapub","bech32PrefixValAddr":"zetavaloper","bech32PrefixValPub":"zetavaloperpub","bech32PrefixConsAddr":"zetavalcons","bech32PrefixConsPub":"zetavalconspub"},"chainName":"zetachaintestnet","feeCurrencies":[{"coinDenom":"tzeta","coinMinimalDenom":"azeta","coinDecimals":18,"gasPriceStep":{"low":20000000000,"average":25000000000,"high":40000000000}}],"stakeCurrency":{"coinDenom":"tzeta","coinMinimalDenom":"azeta","coinDecimals":18},"bip44":{"coinType":60}},{"chainId":"landlord-2","currencies":[{"coinDenom":"INIT","coinMinimalDenom":"l2/1666ede2bf1985307a86de36a6b78411cbf1edeffc2ac569e6a7b2f8753db4bb","coinDecimals":6}],"rest":"https://maze-rest-sequencer-53ecf1d6-4fa1-4103-827f-a9430df97cef.ane1-prod-nocsm.newmetric.xyz","rpc":"https://maze-rpc-sequencer-53ecf1d6-4fa1-4103-827f-a9430df97cef.ane1-prod-nocsm.newmetric.xyz","bech32Config":{"bech32PrefixAccAddr":"init","bech32PrefixAccPub":"initpub","bech32PrefixValAddr":"initvaloper","bech32PrefixValPub":"initvaloperpub","bech32PrefixConsAddr":"initvalcons","bech32PrefixConsPub":"initvalconspub"},"chainName":"civitia","feeCurrencies":[{"coinDenom":"INIT","coinMinimalDenom":"l2/1666ede2bf1985307a86de36a6b78411cbf1edeffc2ac569e6a7b2f8753db4bb","coinDecimals":6,"gasPriceStep":{"low":0.2,"average":0.3,"high":0.4}}],"stakeCurrency":{"coinDenom":"INIT","coinMinimalDenom":"l2/1666ede2bf1985307a86de36a6b78411cbf1edeffc2ac569e6a7b2f8753db4bb","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"initiation-2","currencies":[{"coinDenom":"INIT","coinMinimalDenom":"uinit","coinDecimals":6},{"coinDenom":"ETH","coinMinimalDenom":"ueth","coinDecimals":6},{"coinDenom":"USDC","coinMinimalDenom":"uusdc","coinDecimals":6},{"coinDenom":"TIA","coinMinimalDenom":"utia","coinDecimals":6},{"coinDenom":"USDC-INIT LP","coinMinimalDenom":"move/dbf06c48af3984ec6d9ae8a9aa7dbb0bb1e784aa9b8c4a5681af660cf8558d7d","coinDecimals":6},{"coinDenom":"ETH-INIT LP","coinMinimalDenom":"move/a2b0d3c8e53e379ede31f3a361ff02716d50ec53c6b65b8c48a81d5b06548200","coinDecimals":6},{"coinDenom":"TIA-INIT LP","coinMinimalDenom":"move/b134ae6786f10ef74294e627d2519b63b7c742a6735f98682929fea9a84744d2","coinDecimals":6},{"coinDenom":"oINIT","coinMinimalDenom":"uoinit","coinDecimals":6},{"coinDenom":"minimoveINIT","coinMinimalDenom":"ibc/9DD7B5DF63F03D505BE785C9B32095A33CBB9472503077D375E0A557BE5A2B87","coinDecimals":6},{"coinDenom":"minimoveINIT-INIT LP","coinMinimalDenom":"move/d460381fad32fa8a165f7b13ca4343f99ebd83580b1dc121049b8e695fb6c5b5","coinDecimals":6},{"coinDenom":"TEST LZ","coinMinimalDenom":"move/7dfcccb8d69af29d585165531eae5c558061d3e3bded2a121be3ef5e189e6b01","coinDecimals":8}],"rest":"https://lcd.testnet.initia.xyz","rpc":"https://rpc.testnet.initia.xyz/","bech32Config":{"bech32PrefixAccAddr":"init","bech32PrefixAccPub":"initpub","bech32PrefixValAddr":"initvaloper","bech32PrefixValPub":"initvaloperpub","bech32PrefixConsAddr":"initvalcons","bech32PrefixConsPub":"initvalconspub"},"chainName":"initia","feeCurrencies":[{"coinDenom":"INIT","coinMinimalDenom":"uinit","coinDecimals":6,"gasPriceStep":{"low":0.15,"average":0.15,"high":0.4}}],"stakeCurrency":{"coinDenom":"INIT","coinMinimalDenom":"uinit","coinDecimals":6},"bip44":{"coinType":118}},{"chainId":"glados-2.1","currencies":[{"coinDenom":"MILK","coinMinimalDenom":"umilk","coinDecimals":6},{"coinDenom":"milkINIT","coinMinimalDenom":"milkuinit","coinDecimals":6},{"coinDenom":"INIT","coinMinimalDenom":"ibc/37A3FB4FED4CA04ED6D9E5DA36C6D27248645F0E22F585576A1488B8A89C5A50","coinDecimals":6},{"coinDenom":"TEST LZ","coinMinimalDenom":"ibc/665CCAFA2768242D74D8CB2E9F5167261B6B75646E2EF2546E0707C0BFC7CDAF","coinDecimals":8}],"rest":"https://lcd.testnet.milkyway.zone","rpc":"https://rpc.testnet.milkyway.zone","bech32Config":{"bech32PrefixAccAddr":"init","bech32PrefixAccPub":"initpub","bech32PrefixValAddr":"initvaloper","bech32PrefixValPub":"initvaloperpub","bech32PrefixConsAddr":"initvalcons","bech32PrefixConsPub":"initvalconspub"},"chainName":"milkyway","feeCurrencies":[{"coinDenom":"MILK","coinMinimalDenom":"umilk","coinDecimals":6,"gasPriceStep":{"low":0.2,"average":0.3,"high":0.4}},{"coinDenom":"INIT","coinMinimalDenom":"ibc/37A3FB4FED4CA04ED6D9E5DA36C6D27248645F0E22F585576A1488B8A89C5A50","coinDecimals":6,"gasPriceStep":{"low":0.2,"average":0.3,"high":0.4}}],"stakeCurrency":{"coinDenom":"MILK","coinMinimalDenom":"umilk","coinDecimals":6},"bip44":{"coinType":118}}] \ No newline at end of file diff --git a/vendor/noble-cctp b/vendor/noble-cctp index 253cf7eb9..4285c94ec 160000 --- a/vendor/noble-cctp +++ b/vendor/noble-cctp @@ -1 +1 @@ -Subproject commit 253cf7eb943669e283b4dcb25f83c7096080e67a +Subproject commit 4285c94ec19438ad1e05ba3e5106a5e7980cfffd diff --git a/yarn.lock b/yarn.lock index 08cd4e4c0..427f448a6 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2175,10 +2175,10 @@ __metadata: languageName: node linkType: hard -"@chain-registry/types@npm:^0.50.36": - version: 0.50.36 - resolution: "@chain-registry/types@npm:0.50.36" - checksum: 5223bad31b4cc2fabc67b0674ebd9042b25ef33a21e4d65d826c82f7fc596f9f933a3a37a92d613dccb7a6345851c0db9eb150c767390c68f102845f9699ed27 +"@chain-registry/types@npm:^0.50.41": + version: 0.50.41 + resolution: "@chain-registry/types@npm:0.50.41" + checksum: 8441a5d3c2cbba1be393676e4e074fc35381a4c17aa08a80561f2fd1bd5e12603d75d8030f61e211a2bf08a40e2502290229d3c6a787eec9481caee22514598a languageName: node linkType: hard @@ -7660,7 +7660,7 @@ __metadata: "@solana/wallet-adapter-base": ^0.9.23 "@types/keccak": 3.0.4 axios: 1.x - chain-registry: ^1.69.65 + chain-registry: ^1.69.71 cosmjs-types: ^0.9.0 create-hash: ^1.2.0 keccak: 3.0.4 @@ -7722,7 +7722,7 @@ __metadata: "@walletconnect/modal": 2.7.0 "@walletconnect/sign-client": 2.17.2 buffer: ^6.0.3 - chain-registry: ^1.69.65 + chain-registry: ^1.69.71 eslint: ^9.9.0 eslint-plugin-react-hooks: ^4.6.2 jotai: ^2.10.1 @@ -12928,12 +12928,12 @@ __metadata: languageName: node linkType: hard -"chain-registry@npm:^1.69.65": - version: 1.69.65 - resolution: "chain-registry@npm:1.69.65" +"chain-registry@npm:^1.69.71": + version: 1.69.71 + resolution: "chain-registry@npm:1.69.71" dependencies: - "@chain-registry/types": ^0.50.36 - checksum: f8594ee25432f28ecc877269e0442c262caac73a0ff59f0d2ff40f5a1c24a819ad16845076bf3d253602b4e03747517487ef6158d406c06cf5217f430434e48b + "@chain-registry/types": ^0.50.41 + checksum: a2611b0246172eb6ebc6fc95d3d0383b39b5b08f03403e8a88d3dd1ce647783404b748715b59eebf02d3e79fe95257ccdfee98684b710656ff767c130aa93b18 languageName: node linkType: hard From 2cff22b5a2826f7b8bc686cfe5519b4b3c6ef2e5 Mon Sep 17 00:00:00 2001 From: Nur Fikri Date: Mon, 23 Dec 2024 22:46:12 +0700 Subject: [PATCH 23/24] Remove evm walletconnect (#610) --- .changeset/pretty-radios-eat.md | 5 +++ packages/widget/src/constants/wagmi.ts | 42 +++++++++++++------------- 2 files changed, 26 insertions(+), 21 deletions(-) create mode 100644 .changeset/pretty-radios-eat.md diff --git a/.changeset/pretty-radios-eat.md b/.changeset/pretty-radios-eat.md new file mode 100644 index 000000000..4c73e89ca --- /dev/null +++ b/.changeset/pretty-radios-eat.md @@ -0,0 +1,5 @@ +--- +'@skip-go/widget': patch +--- + +remove evm wallet connect diff --git a/packages/widget/src/constants/wagmi.ts b/packages/widget/src/constants/wagmi.ts index 4ed729ea1..1b1da94c6 100644 --- a/packages/widget/src/constants/wagmi.ts +++ b/packages/widget/src/constants/wagmi.ts @@ -1,5 +1,5 @@ -import { http } from "viem"; -import { Config, createConfig, createStorage } from "wagmi"; +import { http } from 'viem'; +import { Config, createConfig, createStorage } from 'wagmi'; import { arbitrum, arbitrumSepolia, @@ -29,31 +29,30 @@ import { polygonMumbai, sei, sepolia, - forma -} from "wagmi/chains"; -import { defineChain } from "viem"; -import { walletConnect } from "wagmi/connectors" + forma, +} from 'wagmi/chains'; +import { defineChain } from 'viem'; -const isBrowser = typeof window !== "undefined"; +const isBrowser = typeof window !== 'undefined'; export const formaTestnet = defineChain({ id: 984_123, - name: "Forma Testnet", + name: 'Forma Testnet', nativeCurrency: { - name: "TIA", - symbol: "TIA", + name: 'TIA', + symbol: 'TIA', decimals: 18, }, rpcUrls: { default: { - http: ["https://rpc.sketchpad-1.forma.art"], + http: ['https://rpc.sketchpad-1.forma.art'], }, }, blockExplorers: { default: { - name: "Forma Explorer", - url: "https://explorer.sketchpad-1.forma.art", + name: 'Forma Explorer', + url: 'https://explorer.sketchpad-1.forma.art', }, }, testnet: true, @@ -127,14 +126,15 @@ export const config: Config = createConfig({ ssr: false, storage: createStorage({ storage: isBrowser ? localStorage : undefined, // Use a fallback for SSR - key: "skip-go-widget-wagmi", + key: 'skip-go-widget-wagmi', }), - connectors: [ - walletConnect({ - projectId: "ff1b9e9bd6329cfb07642bd7f4d11a8c", - showQrModal: true - }) - ] + // connectors: [ + // walletConnect({ + // projectId: "ff1b9e9bd6329cfb07642bd7f4d11a8c", + // showQrModal: true + // }) + // ] }); -export const walletConnectLogo = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsCAMAAABOo35HAAADAFBMVEVHcEwge/wfffwKcv4TeP0MdP4ngvwog/wcfP0Xe/0hgP0Vev0hgP0ff/wbfv8cffwbffwbfPwaff4QeP4Jc/4sg/oshfsng/wafPwggv8ihf8dffwYgf8hfPgffvsogfslgv0ffvwefvwafP0Ze/0Xe/4QeP4JdP4wiPskgfsliP8igPwhf/wgf/wff/wXe/0VfP8Wefw0ifsXev0Wev0Tfv8Hc/4nhv8kgfwjgPwVef0Tef8IdP4Hcv4vh/sTef0Gc/4Fcf4phf0rif8ng/0lgfsmgvsTeP0ngvsSeP0phf4og/sRd/0Pev8Pd/8Off8vjf8pg/sQd/0qhPsDcf4rhPsPdv4shfsyjf8thfsNdv4uhvs3i/sNdf4Ecf5Aj/k0i/0vh/wvhvoMdv8GdP40ivwyif0wh/oJev8zi/02j/8Ldf5Ik/kxh/oyiPoEcf5CkPgLdP4Kdf8ziPo5kf80ifoJdP41ifo3jP02ivoIdP8Ic/4IeP1Ik/g5jf03ivoHd/89lP84i/pCj/k5i/o5i/k6jPk7jfoGc/88jvw7jPkGcv4/kPw9kf88jflAkvtGkvpAk/89jfkBcP9Dlv8+jfk+jvkCdv9Dkfk/jvkEcv4DeP9Aj/kFcf9Bj/lJmP9Cj/lPlvhEkvxCkPkDcf9DkPlKk/dDkPhEkfhIlfxFkfhBj/hGkvhGkfhQnP9HkvgBc/9PlvdIk/gCcP9Jk/hOmf1Kk/hNlfdKlPhNlfhRl/dLlPggfvsdffspgvpVnPxgpP12sP2Ct/0ae/tanfqbxf2z0/7I3/7Z6f/k8P/x9//2+v/////U5/98s/wrhPqsz/7P4/78/f9Mlfi61/5bof6Uwf1OlfhtqvxQlveMvf1Ql/dOlfff7f9Wn/9OlvcthPlPlvcwhvlop/tQl/eiyf0AcP80iPlSmPdWmvZRl/cNdP3r9P82iflVm/nB2/5TmPdWmfdVmfdUmPdXmvdWmfdWmvhYmfZZm/Y+jfg8jPhZnPUDb/1bnPZbm/VcnfcUYgSRAAAA/3RSTlMACh8sRU5rhJSqw9XR7f//////7YASLOD4/////wQYObf//////7VfYf///////////53///+b///////AjKj/4Wvt///////////////////////V/////////7n/to33////+Nn////p//8o//+nSv///////////////4D//////7X///////////////ju///u/////9///////////2j/////W//////V//////+Z///////R//+o/////////////////////////////////////+b/t//v/////////////////9D/////////6f/////b9v///77///H5MkSAAAAo7klEQVR4AeTWBW4rMRSF4SbDWAgzM3PKzIz7X8o798HIr5Y1YnWSfwmfjq+88QMKhSVZUTXdMC3bcTfR1tY22olYlmnoUVWRpXBoY82LxWVVM+yEk0yl0+kUct3MJqPlum6WcpOOZRtRVY7H1pAply+oetF20lQKlUqlMpXJMFqoUqlWq7XaDqGhiFXXG4V8bn2k4k2t6LTS7XY61en2qH6fsMRag9/VarUhwIajSD3aiK/BouLNMfZETqkO6nah9YdLqFX1tCaTyXQ6HQ6Hs+wwYs0b0govLC/rptNuL9LLXapDdRE7Ln8ttLe3tz+czbKRg0M5v4pSYfUosVi000vKRwvxL5HVIq7j42OADU+M0/CKXSm1eNY+X1wsLy8vWx4WtNiXyN8tHou0PCxqf5idReqn0spsqlk8O4fUFbpErZb/tlgtJJoWur7e35/Bq7EC+wopRyR1g2CFWC2Gy1cLibSub2+H8JoroWA/P82+O1/c34OK1/J7ieKzxWGhh8fZoxUN7HPMyTSqu/vf/a8FLk+L25a/1hTxWg9Pz7OIIQfxOxFTzfOX81fkaSGhFvcSM9+vfFW8LcIirbc3zOvgNBa0o64lMKp35HFxT9HvbnFfeQ9LuC1wPT0/f0TDgTpVZy9/qARal4i9WxR3t/gPBK/FY4HrcRY5lIJCNQbVJ8VqUYIz//0llpDoK88/RF7r6+nxOTKXgkL1ixmz4I0jiGKwyigKCsrMzMzMeHwX3jAzc/Kv+6aBp63PmulKC/4Jn2w/z/z+/XNN7uZSWpeQluUk+mEJrV+/DK6axHeVQWWksETUWwALSj6QtUTGXQ+3JvoC1qaep9Pp34ALvcWTiOM0EK2M4HpSldjLeGb/ly/ZrMACXGAuksQLnBYPIoMl+vhx3+lE7q7DOUFlpLB+85pnSYSS59bCi4i08h8/Fg4nDtWhYilVV59dE3rL0NIoYhKRFhsQ7tZao9XwufHhoYQlsCnVXC8CXGAuqHlG69L/1lZ5a+UF14/TSZoLj1Kplvp1cXMRWi91y5MkktqCIBJaGc87lZTVdXBna1tzi8idlmNvkbVFrEVhtbc3fK58moii78ilUp0ihguiyGjhSSS0uLUorfZkmOuM2EpQrdHy40obobmAlgi9hUF0L3mFpbTEXHE311Zpq66urk7FFcBbMLfYSbTD4tYSXF53rIu+p6mtWVghLcUVMIkkiIQW/mz5aK3B6u3zfuyIr9l3ldr6+/u71sRxYRI5LSx5fhH5q6e8tXp7PzdWHYyr2dtSwkppKS5uLj2KnJazt9yD2L5Oq8Er1MQTwYHmQcOKm4sUF/EWOYmuteVbpsxaQ32fn2yPntXOUtugyE5LcTFa8Ki2r63jQa01NOQ1Po0Y1ZZrbW3Dw8ODwIuay+otHKf22iK04Imo1hJaDd6tLZEuhtzAiLBSWvYosiTy2gpmLV8Qf6m1FNZQn/cgwg1xuGlgVEgBLndaJIn4pvavLd7xZMdjaxlaY96Pw5FVe+vAqJHiolEkE4LTOgtriwSRv3pIaykskVcZ0eI6UxJWbrR4b3FYtm3qbi1yEI3GJ6Kp+cmpgenpUSsu8BZreTIguLX49wM7iApLafXNVIW/2osDU9N/RXCBuTCJnBbdpjyIfD7Qg7hGa2bm4cGQWV2bNaxsuEgUMYkaRaXFg+je8W9ZEBXW+Jh3K1RaW4TV3Nwc0qLeIkkkA4LScm2texQWtJah1R3i4Kqen51aEFgWXFBcmESgBds0SMffczyISqtQHRqr3OzC4uLCgo8XiyLQ4klk3iLbFFsLaFm21pDSelAdGqulxUVOi3hLewvWKfxAMFgkiO4HMVOu4tdoHQql23Ozy0tCyxEXnxCBrKVBZE9E+wfzv+vBaMUrbAnlDgorIwsuMBfpLRwQZD/AZw0E0dFa2FprLX8wBFarAkpxLfpw/eHNLHAru4IgGlrCjHBAnIgVFAQXYWGYGQRBQTgxM+MfMzMtL/d7XFFaR6167/krdwlHVdXVfY24grY0E722ak3E7PhgpFW01XFab//a09vbW5cWcgshz27qi3ytgahrfAqraOvlDu84V6wq4kpofWxoGWn5jPepRR+W1/dTZzefp/oHegd7r1+CK4jLONHQyu4PacbnzTQbiN9FWh3cqr8ZGhgsL9JS0qfaMk78H6SVrNOQVt8vH3TsYnN/eGR08OGjuP4ALmgLtBDyNWnpaGoHom8PojV2v0M35A9HRtsv4OoFrkxcciK0ZY2Ybz1+INbzYaHV9VhHluc3xkf1UnVRXKRlncj7gzWiOT54aQlW3ycvdaKcPjPeMzERaAkXaEFbxonVpSVaRVqExYjPvy4yH/Z1f/JCB/4HR/onJycKLj2KS1ZMnQhabPKk5aUVajyu8YJVqT20afmR6AfhyGR5gZfURXHJiZ6WYOVGzI41vJlyIEJaSC3C6pv64Ikbhvv0+MzMpHBBXIFWaFyZE/O2VUNabkNke2DEE1bfL6/dKOTv/l5YtV+CC9oytExsma0H+7RJLdfiBUu0ZufeunuTLWe8f0YvmDHBZWgh5E1sIeP9QPTtgT4UrdnuuVs3Cqz5+Rq0ktyysZXDorSQWs19CFiz3c2b/L3p8fnyIq8cF4ciaXlp5SsiUgvFFAti1W1aPlz45bWmh9NXxhcXF+cDL8nLiUu0sCeyPzDjFVt5xntpsT3wFk9YswtzXzc8NYz3L1494poIuEjrt/raskY0A9G0Bxvx17C6pxq1rS+Gxxf1SEtWhBMTbWEk+olIWIx43x4Ey0S8fLjwy9jjDWD9vtRqtSIu8aIVnRM5EmtIy3Steu0h+pCwFpr0hwfjyysrK+DF5KK4PC1Ii7RM1+JnvmCl7cH4ULRWZcRaJiysAi7SYszLiRiJkBZoua6l1OK3mPFhTVgLUzSiNeHa2tpK5CVctCJp5SFvjYgzIAdiSK2kPZiqlYbWwurcW/VYrY8vr109jwvBRSdaIxpppQPRt3gXWqIlWG0fdk89Weunfnp8ozzxAq4KtH5rTovXB6QWfYjUMj7MI351dapWNX17aXNzsxYtOlG0stjKth4/EHEEJCzvwxxWoTVX4yfx/tBWgUVexBVyPmgrGYmGlhmIdX1oein2Q8Hq/uB+9cPM0vb29mbkJVxOXNGJrj8kB3mmFqQlWmzxecQnsOjD1epla31pebv9qtFKnCgjNpcWa7wuNfjn4crDXspTfDYPV8urmvG3d5a29cTrX1wt4IITORIJK6PFgajjg9l52OLzjwsfWgVW1+1qF7+l3b297ciLuBrRorZs1xItl1qC5aqWXaYlrVvVrlhtWP/BJTOKFrVlY4uwIC1b4yEtE/F2HhpYlQ7yb+/vlhd4SVzApeACLUhLuFJpkZZpD2abNr3UlPg2rQr14bHhpYPd6xflJVyyYqQ1mdJiNcXWgzOgpGV8yENN/f0wg3U45qV1tH9w9YRrD+qSuGhFp61EWuXVkBZuD86H5ZnQChuP5uHq3Av+2rBVSCW4Ai05McJiyCdFPhmISC3f4lW1XC+tsUyvPpTW41ZYx4IlXpFWwRW0hZk4GGl5aX2cD0S0B/qwPO/DRqF1AmlBWEvH7RdxSV0Ql5woWtBWkBZpGWkZH4qW9SH+LdIfsQAL0sIoLKRIa5e0oC3ElpFW2rVwjddZSzfAHBZ7KUq833gEq0jrZTMKT09PyUviUs53gpbvWrrUpNIK+yF6qfNhfqYRLAzEWN73T69f4AVxwYmiZY1oB2KBZdpDUrV8L+XlwcA6Cd/5uPmdCRZ5CZesaGj1GlphRaySWrZq+V7qNx6dSyWt1/IN8cH++fk5aMGKogUnyog2481ABCzjQ8HCPExKvN94JK38p+fuxf7l5Xn7RV7Q1nZtWn/kRkxSy/vQ7IdNygNhdf1D3B3FtHlleQAnnc5z1tL0CXUqGqSVFWcii9VqqLrqRhoH0vULbNKIInVVa5S8DJlWUZJGUYtUxRmVdKNdKlKl0+2oNDsR0k6ajept0hhjbABif2DjDQz1xJRCgaZAyHQ6uyVNtvvdfD01fzj2uZ8/w5yH5Jmfzj3fvdf3nrul0KGZq11XrAAubijCSJTKFrvqKfZBNKVwqsWOQ/1JvP1tGsJ663ShYzUfXbx2hbQsLkwuvm7xZUuu8cw43N/gc9eGreju7g6HPW6f7aIl7zzoV3gztX5ZaEIauqZinRcORX4kkpZc47lxGNgf8bnD4f2vdYZ6otFobyzWa/7XE3r9+O543FSrdZOWRtFyUOERS2nBxBTmDQ+sVoEhFyYXaklli0ktwgo01Ycjxzv7Yv0Dg0PXE0nj+0gmrg8PDvSP9LzWHPZ2b3fTkgfXh8KmFhUtocIDFqQWO3vY8iFh6WnB7FSjxrPr6YMRX+pUNJYeTWSMgpFJjKZjfc+H4/Htbn4rnp/E26vwJ/hxyJf4F0Kh/zYDvGgswlCE3GJS6xxpCVXrcCDiO9gTu3E9aWhE8vrASKjWG9/Bfw/xoLezCg9Y5y/9kC3vykoFphdw8VpQ5AvXePggHmryvTrWPypCAdjo+MWf1bk8SguxcOdB2KbR3QBUWHyJf+j3oatmkBdwyVqQW6AFS8TvsVoigdD4qFFCDMY6K71VNA757yH7ixhb4WEtzWPRAhFn7yZVnosbizASscgX/SLCelphBSInJ24kjRIjMRD9B6+LxdJfHjJHHngsdhb/MWERGHmtGYqMFlvkC38QD0Y6s8OGoxgeOVDnwsmDMA7ltTRsLT/AonH43LpJ1h9CN28W4WK0fseVLbHGt0T+PZszHEcudsAfZ3Ye7C4P5QrPTLXenfzkpgrUwtyiuoVYfGrlpw+AdcSkuu7ACLie97sKr3hELHlaSuPw17vWjcJPVCgxnoutW6RlYTFaOA5bp07GckbZYqh3e93jO0QsqPD6WIXH4UN/CH2qrMCLuJiRiLklVC3Cmg7MjBpljcFJbw1M4m2vpRELt5bhewjfws8+VUFexMUnl6zFVK3WqavpjFHmyMy+5N/KrHiEtbS0tYxYc2u+hx9NKioVjBbmFhR5ObVoPT0/P3Ld2IDITdR4Rawn7Gw8IJYKvKPyyO8vfpoP5ILc0tc6C6kVnLoyYGxQpA80VupXeL/e5xCwLsEZ0xcufv6ZGRwXJlexgYg1HqpW6/REztiwGBrzV+PyUN4t1Z87rFsf/tOksiqixZUteSAS1nzreMbYwMhkXV5YHjr+HCLW3OoTNY/emvzii88YL9AyQ2nxqYWTLaxaLZdvGBscA81+xMKiJe/SCFh7H101fe/54kGAFyZXvspj2SItvmopq+nokLHhMdS1sFX/cyhj4edw9ST+t5NKCrhAC0Yij2VpMeOwbXpi0diEuD624BKwmF0a4ecwwppbdR73P/NYZkBysVrERVqExYzD4HQsaWxKJCcWquVdGnn/j8fKH6j5MI+FXKgFRZ6v8bCeNrGCS9mMsUmRidXVcFvLwpaWjKXGoSpaVLI+V1GIi8ktNrUurEutU/P9xiZGlrSErWVNLNrSgqL1257bnzNahXOLSS36IALWqSXbVonc8PLycjpt/jOcS9jW8teUCes0Yp2/REXr5bE7d+58bgXklqyF0wcL63utNltWyaHl/t6+0Hunmpr/sTvesH/fq6939fSO3xhK2tNiTh4JWKDFY83RUa1HP568YwV6QXIxWJYWVC2YPdiwyuTSI30n6+t9vvpIZN++/c3N+xoa6n2esBmHekbSuYy+1k5mwSNNtGSsN7+7zPPIH3vucFqQW0UHIjt7OBvUtRqanXk15atvOqgCTmqp8yG7w3FP81j/sK7WU9Uilt8+1vk3rOXhY1/2/ElF3ou4GC2YyEPVgompibUUM3RicWDmlC8SOEjnabhjbfW+7vjz0QG9+VrIL68ObWBR0Zp7zNrL6rltUuW9ZC0+tXAcnm0b1ZlKjodSkQAcPmKOtanTNLXd3Z1aO9KxRmHBI2LhvgNV+F3WlHTsSxV5LlbrJle2ILVo9mBhnemS/7Jc9r1I6vAR5vARYNGptu74EY1d6WwjFS1nWDjRomnpxwpLBSQX1C2+xjPjMJ9a54KD0gDs76wPUKMaBos5E+/xHs9Kg3HSFtaz2ljPPajvtyws4ILc4rTog1h4HLaOCBsFoUgAztNwV3nWYNWb1b4zXXwr0LVTxiItG1iX9j5izd+/zAejhQNRSK38VOtscLzYCOwNpODwER5rAyw8Et/dPTNUxOpxr7yzXArW+Qdz+BfGvlJKkFxUt7jUgiWihYWpRfPS9qXCWgNdkWPMiUkRS2nVel9KF7SqfIr/odUx1tylh9XHcOz2n81ALqxbhEVaMHuABSLMS9uXsvzsOxELBOg4DZ2Y5LGwwtNJ3G5Xb6KAVV0l7v85wvo3wNr1YLHzlQry4rSIC6sWrHloyYPz0ukRTms4mjrWKmM1FcRye7whbmIyW+mt3FoiFmixWGrB85GJZQVwkVaxgQhTLWZe+nYHpzV4eUqdEEEsrPASlvun3gPLxtoY9yorm1ikJWOpz+EtCwu02IEoY+E4VPul7eu10sHpk3ksM3Sx8Niyq3bWwOj37qy0gdVoF2uveZT0fwiL1+LHYZF5KW5qdbSs0ZpdaqGTWpRa2hMtOOPtqhrHvFJWlQ5+DROw3vr7LRU//iNhARdocakFRQuwYFNrbW71Ty8FgzyWPNECrNpKbxasqqsQC+cOjrHUiYdf/G/fV6jFp1bxcYgzLdgBPNPSu7ja6pSAdVAXq7aqJrvaCk+0bdtWZqy5n/+g4rG+vq/NYHLL0sKqRctpqcLDL2LTM4urrBgs0NLHqn2cciuTrYmvO+Fdbqy5hyteiJpUwJUfiDAOSQumWsyKhz6HeSxLi6xOMdctSsJSWt/l1ojfVbVBWHmtN39Y8S5hfc0MRBiHEhal1nqsdqWlrFrb6CyuMywfXeIxtTLqZ52tVWXHOr0Oa1fFyxYWcaEWMw5vMpN4KFoMVoepNTicnW9ts7CCNrFg7gBY26tqov1Rb+VPNgPrR+ZulmJCLajxUOIJi7QI68LK3XMXEMuMVT9Mz7e9PR9s08SKuN0NSoufaOE1zSqv11u1owjWEwsnFvYglnyDh10c/m3FR4AFWvRBZL+HgHXug4lY9J1zWOEBq70teKaNwWKW0il358zMa+59IhZetOCxqp/1/3P0NzsXxF14DaxfVnxDWHxqIdanPNbdmeGkkbxx9S5tAAIWHAHksHB1mEplFzOZXG9tQzmwXjwwkDSSg/96r046GyJjPVlxq+/+/ft5Laxa676H3Ezr/bvfHf0Y/OSuLhbMHQArlfpuGZMNNzjHOnpg2Nrr71JazrDm9ppLQxMrz8WNQ5zE44pHWY0kaIl89S6PheeWi2GRldLyNDjFOmFaWbE4prScYv3ft/dBi8eCogVYl+/mlzOmVpDDUlp6WGRFueUEa1v1ic78nmpCaTnDeqPCsuKxoGjxWGBlGKO3g/g5tIcVUVagZQ8Le4ecgB+YlJYzrLmK+xTcOBSxPiArilxfED+HNrAOpw4pK9Cqt4GFqbXtqLJCrT3lxFJhB+sDq16h1lKpWJHjePaUtGQsrofPi5YVavmdYX2LWnawrl1eYTbZh5RWKVhgRTHr85WGtQBWdDjwdKMzrG9lLHaipazyJ7ZRqxQssAKtoljbeSysVxSZ3nuNzrC+lbHYidYHYIUj0T5WCqxAy20bK74wpqxYrWf+ElhohVrRJbtYkVa0Qi2bWNsWogUPDSqt8mMJw/DKBbSCWJxZsocVOYtWqOV228JyLUSxlGJunXCCVVqBv9DLW5HWvA2sY5HOoueTZnd7bBR4Vz6vWK3Q6c2eOlx7Z8AwRC09LLTib5uEdbF4K6C/17jJk9L/+t2gIWvpYfFWEDeaw5qTUn4MgvzRZ0rEKnm5s5I2RK23NbBkK9Jq0FnuxBtnBCtj/F6pw7DkhfSFmYSkNTGvgSVakdb+cIOIZVpxpRRi8aWjJS+kb/WVuEXzTq+klRiZ7xC3aCJdshVpiVimlSFZhe452s8iKhkLJvArolbS1BI2/yI9OdmJtLoFLFfjiJRXCdOqdKxvxogKreTVzpWVieuSVu90R5FtZWVl45b58ivxolguv2iV+809f8lYT2r+YMHvwd+dkbXm2wtjYV7JMXoyXgRLI69yr9xz9IMF+1PYnzV/ClvR0Jo+UxArclu2Qq1fKS0eq9ob07By9lOY+CMrYbE/smrk1sj8mQJYzBgUtV6KF8CKe8fFay+mlXCnXPiRFX6+t8LOz/caWtn5NuhKQz/f81aylsJa14NTtlJ55fTne6cHQ1bk6+LZ+VM4c1BYxyMss6z1Snx9w1KPS8/K6cEQh0eOTK3bw2LbhZYgYKnEiuCk1oZWpxf6BotWhHyv1CNH9DV8WB1m+9rZYbZzGlrTwTVYJVupH0y9iOXRGIODT592eD7r/M9/UI5jknJuGUprFVZrasZB/4Jclxc6Ule7ZKufnXB8pvSNh/AALm+F5Z05Q7Nye1Qjt/L1/dWUlFeyVh6r5idpDSvnZ0rNA7j80W7CEo92KyxBi04pLxEW1StnWoRVXaVlJbeykzJrb7kuDaxcWRa15pcsrNapXmkMZpKiVp2FVVu9Q7Z6+mg5zsE/R9dRzHB2HWXlfR0tq0ObuCpJTvRJnLmQd3utspLzavnpo/J1FA2sv7MuOplQJpVgJVx0Wrmso2Um1tRIUrTqDoek2VtirM5MLJdsNbBtwe5FJx5rl3WFjqCIirXKJxZ7hU5TS8NqcSLc1BzulL6wi6ZW9U91rGrKd4UOL2diXiGWcDlz5f0bolZLRByDi33hZjN0tBaeX9azKgOW1WDlkVuTZbr2u3IhLfbnG9ewsg4ra2iNyFZ/tSB10NK/9lveC+UrK2nHbbD6wnTPSdYyZKtnC14oV2HzQjm1KgCrklsVONKivCKs/Y610lufKXergnI2wehoT5fDysIytQYNB9H/lL/sTTDK2l6l40za0RjE+xXhI8sOrPzKCrGctFehxj1/ctK4BzvZtbfPlt7k0L22F40Drf49/mq2cY8+FnwMf+y4JRTT5ahjabxUKx9Z5e+ieA6VqNVft6e6/C2h1IIHpJgxKCQWXjUsUWu4y9fCNCrwyLnFj8G6sjcbwzZ2QEVWZthrYwdadvKKvfNb2kgcr6srdxs7ew0SOSxscUTHlDkt2arQBenwAdsNdGONT1Q7x2IbJLKtN7m84q2wLxt1VknaHYOFr957GtI2rRb+xnnrTb5fMNfUlW8lyfYpZfsFt0OHAjEGX48Uaxfi2Z22Z+XdoKau2C6Y6Rd8VbOnK/YKaZ+3oTX4q0jx3ioeX9qWFbbtkbFeFLH+WrcRtdBbmco7NqLu0NdaVlbFejrIWmBV46wR9Qm+ETXX4pyoMK1g6s5YMS3OzZGY0c2rw0y3ELhM3uBx62llyKpMLc7PU8nC5vlMN3i0wmcs8GEnrnn+GbFukRU+zcq2VmkIU25J3ahrNrJ5PjzLQCE/y8A3OIfmF+3U3Vy24ksWPGPrCY/LVjMLOzfwWQb+wQ8V7IMfhCU++EEdCiStgdYU34Ymj0UtHTzd47LVto198IN/SoZLKyxYYHWBf0pG1BpoeWAllCwLi9dCK5fQw87BUzLwSBH/7I4KB48U8VpgZWGRVYASC7HqVexmtcBKeHfHySNF8PwVQVFWaT7oBI+FMW8UTc8kdKz4xCIsOgEfjhfWSqyy2raRz18JD6vhGLxs72G16WiuoNWU2PwWG0n6wq5CWos9ppX+w2pm6D+s9iRaPfrupIIiKcwqTCvMK4UlPNk3dTvHWx1qQiu+vGPLnnCcn70tXlRWwovuTp/sg8cgb27MY5DTrNbsoaYj9rHcO7y9GdbKpAKsDXkMcuOfGWVzqz8VOAYtaJiSxd733Z7XgryqBCyHz4y+xTxvCN/DvBRS4RjEQaj5gC1poRXTvo4vWXjDCXOLrDbgAVvC2sU/jQxUYIV5BQWLxYL3a5XW8Bqrg0eO2ByFhFVbBVrKqrFS82nkPfafRlYn/sr86Lb01u/Uf4yiFTaCkkYh9q/D3BrqbNzMR7fhOXeBirOC6s4/MRoMdI7CGAQrpokkNwoJy8yt/Oxt6PUFZVW5qc+5b/nw4jWUIipMq/x3UFnxxZ17zT1AuZXJBgLYjo2a1yEWl1h0s2KHP5ogKz92CgEsZaW7P8Njvbl3SwUTL18UrCCv4EMoYql7AoHOQWvHKdKirLBiIdY+XEQjlnVXoE5pkRViVWtgPauN9aMKLn7xLyGQ4qjsWsGD24H3+oeGlieayAorlljed0OHgipvKD083H+gjn+fXHPLQdz5w0kWlHiCIimi4tIKJlhkxVd3uo3ZYr6D0tJ0+FjBxBLKO95CqaneWllTY+/le9vPV/z6/1k7A87IzjAK30RbAEpTqGkAlmqxWEq2tv9hC6wEggFaUIRlYtvtpJvYRC8Jg2ljtdIl2lL9e+0dGsc+N4833877Ex7nnPe834yZm3hHxF8pK+gqA0uEFT9M+h8k/CailCyF9enACT9uJLAa8v3Vi4z3nMk/1wOoIJWoQlfJ6uc3hUVWASt/EtFdKLvwE/vZrMJhWP9kh/GeLX6V6UQVsmJelQLrhpUIiy5EI8WPquDfyS2yPN8JK9s7Zuvi70TlrN4ILN45hEVhob1XXXgDKyOLlbQh3xPWH4+2Ag/aA0klquxXEu4prEwsY7VGF/phKPmOZbiI3oDZPF0mqUQFVvBgmBCsCCtNaKyqLoy/zKw//DmsfCIdm73rv5LUChVkVWXVYEK8J7Nk0YWs7/xiln1N+db398XDjpPFdBmsUlZkNXgwwx0mBCtZhZFYASsTK2GtWDksCsu/H0lYKKSYP68D1EAqZZVVNHVlgaXCwnsDXMi7EMLii8MwjcUhYS0edD4fnl4FqVQVZUUPFlgNtUGEJb0B8Z7C4t988HlGisNYZI0JC9IiqmSFvBoPLE93X4XsDYx3wJJd6N9iu/VJWYQVC/F/UkAVuhIPZmApK7yQ4oYulax6fedhKK+ktgpjISapSCugAqtoo4V0D1YQlrhQS1alvsthmLCwCsfm44vlAAqkAhUsmNkugSXpnqyGobC8ZFWP6PKtc/4ohCU1foD1e7DKsEoLorgj3BUWr0IkFtp7uLDcSOXWEVhS3nM2Xi+DVMgqUEFXEBZYcRPKKoSwJN4/8kYqkSUuPH+81ZXm1+UlSDGt2BnASgIrE8uExcQKF1rJqtR3uXXiG7c+k2dLskpZZbSjYCGwisJiIWVviHjPn8uvwDJhEdZiZ9IVZ/vlVZAKVGlB82AWLArLWaULJbE+83iXIxqweOvM97e78uwtgxRURVnRgytdMdydVVFYfMm6eyPVyPLawFfA/jdnlXlFXaWwUld1YbE3eMmiC72RamSd53dICxnfXyapROW6qrJiHxVWld4gd6E3Ut46c6a7z7PlClRkFVBBVqMFiyYMVoV0HxeWuLBUsvTFYbHbcfxhq09SROWsdBE2mvDzZFU4dcSFbKQB6zxeG4rzS38ZqIIVdSUerLcGW4UopHAhEqsd1iv5REeMmKSIKuPKWTGw6sLiCe03NF3okcXPdRa7UrHEiEmKqMZl5azGhSUXtJzQTCy6MD/WqUSWmNDnXn88ymrcgqErCfcWYQksb+/eSMdhzWdiQpsv+iAlqMAqdGUNS1hZx9JXP8Y7P4k2F45/EaT0stUHKaBiXCkr05Wk+1De1YXvszfos58Ka2Z11Oebl2cgRVQhq0ZWX9VNaMKykiXCCljz/Xe75nnaH1dYxT1IVgErWRGWvmOFsO7mQmmkOKLnlRc/eazpb0cVyR7RLnnF6s5NKMIKVugNTS6EsKQ1VGbzoh9IARVkVWVFXZU3oaxC7w3FkvViJs/u1dhKVGTlurLAgrAcFlZhfLTqvaG4Cw/23+nect47O44NCFRYg02sKCy+vHsh5avfXXfhfCENqzr3+6MQVaASC8KDlXAXXXnHwk9eMN7x+I54n08fdG8/G0/6MVVBVtSVBFY53UVY3hu8vdOF052Nbg2z+foMqNbAKsK9bkKe0P7q54kVsGaPNdzrs316lgYMUkAFD2bBqgdWYRUWC2k+zogLZz9tN+PBSjwJUlAVZAVW7sFg1WLCXIWl3sB4n7U3d8zk3snJjzRgskpZ5R5MD0a4qwlxFHrHkngvuvDg2y+7Nc7Tw6MbVCmrtKDFFUpDu7C8Y7X0hoPZB91aZ29F6zlVRVTjrOhBBpaz4gNpdRXShXnqzKcPu/XO5P7h0fNgBVkFrGAlgRWs7prupVWYsCzeD6ZfT7r10/phVFbDAFWFlQUWWeGC5ir0xKIL18kK5XSg9T1UBVSUFVjhfIYJq+kuwioV0vl018to42w9OcxYJyqRVezB0UUodw4Cq1VY7A2DrnbwNLo2Wt+RFXSFe1DCHayqsIJVvZCiN/zLnRmwJhHGYfzvmUotIFAdBDcXwZQFEANnsE3mDIiNU6FFB8lmOOV2LJIhUIOW++bdm8DBw8vz3lF6556P8ON5fv7vNWBVFlkarXtFClHxXrEN6lhphUXsDqzgIGV3w513UZalJbP3cM9QYa34BnmvEBYfodlYUKyF2zMiy6X1OyIr0isqLH5iRb+xOCxgtZTYl7N7Myrs1RfO6gMvVly749uM/rNw7h3ZsuwUFK2felRcV7FYvTGzem22Ox7vYbHm85KsIPXhDFmRXsEGQVh4uUe3O39uMN4N86u2rCL29HoWDZVug1q5k7cGPsKQFRqL/xR6xZysKNXxA6ACs0OtiK+AFRuhut2Z3cmNBcW6886rsrJYg9kPPSqsFfcVbhCv0bisVICVpli33qElK0xmz/cJq2+cFfw/gXKP9J3Di8V+CkfefkZWm/zQJ6hQV6RXRO7/OEL9J7QHal9JpuPZJESFE0RdISvaKzzdyTlq+oLGe/S2d/xEEsjNwHf1rFivogoLR/h/ijXyLrKSSOzC0AdUkXuFrPAajS+sKF+F3lXJlqQyHfsTfatIrYivtNcoOUeJ3TU31q13npMEY7V8V9sqqFV0VtirV7GExYw18r5bkmzq1/4EWIUXQ9grskEqdyos89NMCGvUK9Yk8VQGrouoFqxYr85Yr4jcyfMoLZbn7WQlBbHzQbnQVlgr4waj/xCab3dkpWrVtiUdqbRcd0EKaoUTDN8ZcIMaYZFfwnjGglolnvrYnYSoCKszZKXvFV6j/JeQv4+Oesc1SVW2LofuV4oKWRk3yIVl7tUC1qh3dWRJ2lId9Ptgq8+IitwMwIoIC16x6AhHjnNRlRTGro/7fWAFaqe+ItcoERa1u+Ns1GxJZ8q/Nt2OYYJsg4wVH6GuWF2nd1wqS3pjFU76nRAVqRXZoBIWyD0+qwBVMX2ygtzsLXB9MvsKN8jlHt3uClaAaj8r6U9F4QJUpg1yucctVhdRpRrX3zF+1NeKsIINwuczsAqiZ9V1GsWjlKMCd212OqeMFW4Qe0WvUVKsbi/QuiXrlXL+WaffAVShrsDt0ViZT3en4Ry2t2T9Yk9bJ0G9oFYxWb0g1yj2qttrFJ/mbFnTVArPTztNhYpPEH8HKSvN6a4SlGqjlJV1Tian6tUEtS96RX2FRwO8y0CxDhqqVBlZ+1j1bcXrPfwM8g0iKyL3A0Vqp2bJI0klv32yG/B6t2ClrRVuEL8I9XI/eKtItbMitjyeWPnWZrO5+1K1Cn2FvYoqrADUn3LrAUmCGArAcOxk0Uy70Cytzfsfam3MlEf/Eb7gvb07eY/AGlYRoew0nWbzrH4v7r+WhucbVQRXglRgbSvj4cDYbJoy7z/e4GyrX/dqb2/vuNgL9EmPS7DuPYHxxo4vYr93hhlWbdvuFUWxdxR0169Qm1FZ1Uw0T3fsJe/9TKu23XXFS4HuBKurEmxeUUwYlyaxqX8l8859tdp17hXJpVYbec0IjsCGBxEmlHEhldbWfbEKtFZShIwSjJZh4XwEFR7YAWTU9FMAAAAASUVORK5CYII=" +export const walletConnectLogo = + 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAASwAAAEsCAMAAABOo35HAAADAFBMVEVHcEwge/wfffwKcv4TeP0MdP4ngvwog/wcfP0Xe/0hgP0Vev0hgP0ff/wbfv8cffwbffwbfPwaff4QeP4Jc/4sg/oshfsng/wafPwggv8ihf8dffwYgf8hfPgffvsogfslgv0ffvwefvwafP0Ze/0Xe/4QeP4JdP4wiPskgfsliP8igPwhf/wgf/wff/wXe/0VfP8Wefw0ifsXev0Wev0Tfv8Hc/4nhv8kgfwjgPwVef0Tef8IdP4Hcv4vh/sTef0Gc/4Fcf4phf0rif8ng/0lgfsmgvsTeP0ngvsSeP0phf4og/sRd/0Pev8Pd/8Off8vjf8pg/sQd/0qhPsDcf4rhPsPdv4shfsyjf8thfsNdv4uhvs3i/sNdf4Ecf5Aj/k0i/0vh/wvhvoMdv8GdP40ivwyif0wh/oJev8zi/02j/8Ldf5Ik/kxh/oyiPoEcf5CkPgLdP4Kdf8ziPo5kf80ifoJdP41ifo3jP02ivoIdP8Ic/4IeP1Ik/g5jf03ivoHd/89lP84i/pCj/k5i/o5i/k6jPk7jfoGc/88jvw7jPkGcv4/kPw9kf88jflAkvtGkvpAk/89jfkBcP9Dlv8+jfk+jvkCdv9Dkfk/jvkEcv4DeP9Aj/kFcf9Bj/lJmP9Cj/lPlvhEkvxCkPkDcf9DkPlKk/dDkPhEkfhIlfxFkfhBj/hGkvhGkfhQnP9HkvgBc/9PlvdIk/gCcP9Jk/hOmf1Kk/hNlfdKlPhNlfhRl/dLlPggfvsdffspgvpVnPxgpP12sP2Ct/0ae/tanfqbxf2z0/7I3/7Z6f/k8P/x9//2+v/////U5/98s/wrhPqsz/7P4/78/f9Mlfi61/5bof6Uwf1OlfhtqvxQlveMvf1Ql/dOlfff7f9Wn/9OlvcthPlPlvcwhvlop/tQl/eiyf0AcP80iPlSmPdWmvZRl/cNdP3r9P82iflVm/nB2/5TmPdWmfdVmfdUmPdXmvdWmfdWmvhYmfZZm/Y+jfg8jPhZnPUDb/1bnPZbm/VcnfcUYgSRAAAA/3RSTlMACh8sRU5rhJSqw9XR7f//////7YASLOD4/////wQYObf//////7VfYf///////////53///+b///////AjKj/4Wvt///////////////////////V/////////7n/to33////+Nn////p//8o//+nSv///////////////4D//////7X///////////////ju///u/////9///////////2j/////W//////V//////+Z///////R//+o/////////////////////////////////////+b/t//v/////////////////9D/////////6f/////b9v///77///H5MkSAAAAo7klEQVR4AeTWBW4rMRSF4SbDWAgzM3PKzIz7X8o798HIr5Y1YnWSfwmfjq+88QMKhSVZUTXdMC3bcTfR1tY22olYlmnoUVWRpXBoY82LxWVVM+yEk0yl0+kUct3MJqPlum6WcpOOZRtRVY7H1pAply+oetF20lQKlUqlMpXJMFqoUqlWq7XaDqGhiFXXG4V8bn2k4k2t6LTS7XY61en2qH6fsMRag9/VarUhwIajSD3aiK/BouLNMfZETqkO6nah9YdLqFX1tCaTyXQ6HQ6Hs+wwYs0b0govLC/rptNuL9LLXapDdRE7Ln8ttLe3tz+czbKRg0M5v4pSYfUosVi000vKRwvxL5HVIq7j42OADU+M0/CKXSm1eNY+X1wsLy8vWx4WtNiXyN8tHou0PCxqf5idReqn0spsqlk8O4fUFbpErZb/tlgtJJoWur7e35/Bq7EC+wopRyR1g2CFWC2Gy1cLibSub2+H8JoroWA/P82+O1/c34OK1/J7ieKzxWGhh8fZoxUN7HPMyTSqu/vf/a8FLk+L25a/1hTxWg9Pz7OIIQfxOxFTzfOX81fkaSGhFvcSM9+vfFW8LcIirbc3zOvgNBa0o64lMKp35HFxT9HvbnFfeQ9LuC1wPT0/f0TDgTpVZy9/qARal4i9WxR3t/gPBK/FY4HrcRY5lIJCNQbVJ8VqUYIz//0llpDoK88/RF7r6+nxOTKXgkL1ixmz4I0jiGKwyigKCsrMzMzMeHwX3jAzc/Kv+6aBp63PmulKC/4Jn2w/z/z+/XNN7uZSWpeQluUk+mEJrV+/DK6axHeVQWWksETUWwALSj6QtUTGXQ+3JvoC1qaep9Pp34ALvcWTiOM0EK2M4HpSldjLeGb/ly/ZrMACXGAuksQLnBYPIoMl+vhx3+lE7q7DOUFlpLB+85pnSYSS59bCi4i08h8/Fg4nDtWhYilVV59dE3rL0NIoYhKRFhsQ7tZao9XwufHhoYQlsCnVXC8CXGAuqHlG69L/1lZ5a+UF14/TSZoLj1Kplvp1cXMRWi91y5MkktqCIBJaGc87lZTVdXBna1tzi8idlmNvkbVFrEVhtbc3fK58moii78ilUp0ihguiyGjhSSS0uLUorfZkmOuM2EpQrdHy40obobmAlgi9hUF0L3mFpbTEXHE311Zpq66urk7FFcBbMLfYSbTD4tYSXF53rIu+p6mtWVghLcUVMIkkiIQW/mz5aK3B6u3zfuyIr9l3ldr6+/u71sRxYRI5LSx5fhH5q6e8tXp7PzdWHYyr2dtSwkppKS5uLj2KnJazt9yD2L5Oq8Er1MQTwYHmQcOKm4sUF/EWOYmuteVbpsxaQ32fn2yPntXOUtugyE5LcTFa8Ki2r63jQa01NOQ1Po0Y1ZZrbW3Dw8ODwIuay+otHKf22iK04Imo1hJaDd6tLZEuhtzAiLBSWvYosiTy2gpmLV8Qf6m1FNZQn/cgwg1xuGlgVEgBLndaJIn4pvavLd7xZMdjaxlaY96Pw5FVe+vAqJHiolEkE4LTOgtriwSRv3pIaykskVcZ0eI6UxJWbrR4b3FYtm3qbi1yEI3GJ6Kp+cmpgenpUSsu8BZreTIguLX49wM7iApLafXNVIW/2osDU9N/RXCBuTCJnBbdpjyIfD7Qg7hGa2bm4cGQWV2bNaxsuEgUMYkaRaXFg+je8W9ZEBXW+Jh3K1RaW4TV3Nwc0qLeIkkkA4LScm2texQWtJah1R3i4Kqen51aEFgWXFBcmESgBds0SMffczyISqtQHRqr3OzC4uLCgo8XiyLQ4klk3iLbFFsLaFm21pDSelAdGqulxUVOi3hLewvWKfxAMFgkiO4HMVOu4tdoHQql23Ozy0tCyxEXnxCBrKVBZE9E+wfzv+vBaMUrbAnlDgorIwsuMBfpLRwQZD/AZw0E0dFa2FprLX8wBFarAkpxLfpw/eHNLHAru4IgGlrCjHBAnIgVFAQXYWGYGQRBQTgxM+MfMzMtL/d7XFFaR6167/krdwlHVdXVfY24grY0E722ak3E7PhgpFW01XFab//a09vbW5cWcgshz27qi3ytgahrfAqraOvlDu84V6wq4kpofWxoGWn5jPepRR+W1/dTZzefp/oHegd7r1+CK4jLONHQyu4PacbnzTQbiN9FWh3cqr8ZGhgsL9JS0qfaMk78H6SVrNOQVt8vH3TsYnN/eGR08OGjuP4ALmgLtBDyNWnpaGoHom8PojV2v0M35A9HRtsv4OoFrkxcciK0ZY2Ybz1+INbzYaHV9VhHluc3xkf1UnVRXKRlncj7gzWiOT54aQlW3ycvdaKcPjPeMzERaAkXaEFbxonVpSVaRVqExYjPvy4yH/Z1f/JCB/4HR/onJycKLj2KS1ZMnQhabPKk5aUVajyu8YJVqT20afmR6AfhyGR5gZfURXHJiZ6WYOVGzI41vJlyIEJaSC3C6pv64Ikbhvv0+MzMpHBBXIFWaFyZE/O2VUNabkNke2DEE1bfL6/dKOTv/l5YtV+CC9oytExsma0H+7RJLdfiBUu0ZufeunuTLWe8f0YvmDHBZWgh5E1sIeP9QPTtgT4UrdnuuVs3Cqz5+Rq0ktyysZXDorSQWs19CFiz3c2b/L3p8fnyIq8cF4ciaXlp5SsiUgvFFAti1W1aPlz45bWmh9NXxhcXF+cDL8nLiUu0sCeyPzDjFVt5xntpsT3wFk9YswtzXzc8NYz3L1494poIuEjrt/raskY0A9G0Bxvx17C6pxq1rS+Gxxf1SEtWhBMTbWEk+olIWIx43x4Ey0S8fLjwy9jjDWD9vtRqtSIu8aIVnRM5EmtIy3Steu0h+pCwFpr0hwfjyysrK+DF5KK4PC1Ii7RM1+JnvmCl7cH4ULRWZcRaJiysAi7SYszLiRiJkBZoua6l1OK3mPFhTVgLUzSiNeHa2tpK5CVctCJp5SFvjYgzIAdiSK2kPZiqlYbWwurcW/VYrY8vr109jwvBRSdaIxpppQPRt3gXWqIlWG0fdk89Weunfnp8ozzxAq4KtH5rTovXB6QWfYjUMj7MI351dapWNX17aXNzsxYtOlG0stjKth4/EHEEJCzvwxxWoTVX4yfx/tBWgUVexBVyPmgrGYmGlhmIdX1oein2Q8Hq/uB+9cPM0vb29mbkJVxOXNGJrj8kB3mmFqQlWmzxecQnsOjD1epla31pebv9qtFKnCgjNpcWa7wuNfjn4crDXspTfDYPV8urmvG3d5a29cTrX1wt4IITORIJK6PFgajjg9l52OLzjwsfWgVW1+1qF7+l3b297ciLuBrRorZs1xItl1qC5aqWXaYlrVvVrlhtWP/BJTOKFrVlY4uwIC1b4yEtE/F2HhpYlQ7yb+/vlhd4SVzApeACLUhLuFJpkZZpD2abNr3UlPg2rQr14bHhpYPd6xflJVyyYqQ1mdJiNcXWgzOgpGV8yENN/f0wg3U45qV1tH9w9YRrD+qSuGhFp61EWuXVkBZuD86H5ZnQChuP5uHq3Av+2rBVSCW4Ai05McJiyCdFPhmISC3f4lW1XC+tsUyvPpTW41ZYx4IlXpFWwRW0hZk4GGl5aX2cD0S0B/qwPO/DRqF1AmlBWEvH7RdxSV0Ql5woWtBWkBZpGWkZH4qW9SH+LdIfsQAL0sIoLKRIa5e0oC3ElpFW2rVwjddZSzfAHBZ7KUq833gEq0jrZTMKT09PyUviUs53gpbvWrrUpNIK+yF6qfNhfqYRLAzEWN73T69f4AVxwYmiZY1oB2KBZdpDUrV8L+XlwcA6Cd/5uPmdCRZ5CZesaGj1GlphRaySWrZq+V7qNx6dSyWt1/IN8cH++fk5aMGKogUnyog2481ABCzjQ8HCPExKvN94JK38p+fuxf7l5Xn7RV7Q1nZtWn/kRkxSy/vQ7IdNygNhdf1D3B3FtHlleQAnnc5z1tL0CXUqGqSVFWcii9VqqLrqRhoH0vULbNKIInVVa5S8DJlWUZJGUYtUxRmVdKNdKlKl0+2oNDsR0k6ajept0hhjbABif2DjDQz1xJRCgaZAyHQ6uyVNtvvdfD01fzj2uZ8/w5yH5Jmfzj3fvdf3nrul0KGZq11XrAAubijCSJTKFrvqKfZBNKVwqsWOQ/1JvP1tGsJ663ShYzUfXbx2hbQsLkwuvm7xZUuu8cw43N/gc9eGreju7g6HPW6f7aIl7zzoV3gztX5ZaEIauqZinRcORX4kkpZc47lxGNgf8bnD4f2vdYZ6otFobyzWa/7XE3r9+O543FSrdZOWRtFyUOERS2nBxBTmDQ+sVoEhFyYXaklli0ktwgo01Ycjxzv7Yv0Dg0PXE0nj+0gmrg8PDvSP9LzWHPZ2b3fTkgfXh8KmFhUtocIDFqQWO3vY8iFh6WnB7FSjxrPr6YMRX+pUNJYeTWSMgpFJjKZjfc+H4/Htbn4rnp/E26vwJ/hxyJf4F0Kh/zYDvGgswlCE3GJS6xxpCVXrcCDiO9gTu3E9aWhE8vrASKjWG9/Bfw/xoLezCg9Y5y/9kC3vykoFphdw8VpQ5AvXePggHmryvTrWPypCAdjo+MWf1bk8SguxcOdB2KbR3QBUWHyJf+j3oatmkBdwyVqQW6AFS8TvsVoigdD4qFFCDMY6K71VNA757yH7ixhb4WEtzWPRAhFn7yZVnosbizASscgX/SLCelphBSInJ24kjRIjMRD9B6+LxdJfHjJHHngsdhb/MWERGHmtGYqMFlvkC38QD0Y6s8OGoxgeOVDnwsmDMA7ltTRsLT/AonH43LpJ1h9CN28W4WK0fseVLbHGt0T+PZszHEcudsAfZ3Ye7C4P5QrPTLXenfzkpgrUwtyiuoVYfGrlpw+AdcSkuu7ACLie97sKr3hELHlaSuPw17vWjcJPVCgxnoutW6RlYTFaOA5bp07GckbZYqh3e93jO0QsqPD6WIXH4UN/CH2qrMCLuJiRiLklVC3Cmg7MjBpljcFJbw1M4m2vpRELt5bhewjfws8+VUFexMUnl6zFVK3WqavpjFHmyMy+5N/KrHiEtbS0tYxYc2u+hx9NKioVjBbmFhR5ObVoPT0/P3Ld2IDITdR4Rawn7Gw8IJYKvKPyyO8vfpoP5ILc0tc6C6kVnLoyYGxQpA80VupXeL/e5xCwLsEZ0xcufv6ZGRwXJlexgYg1HqpW6/REztiwGBrzV+PyUN4t1Z87rFsf/tOksiqixZUteSAS1nzreMbYwMhkXV5YHjr+HCLW3OoTNY/emvzii88YL9AyQ2nxqYWTLaxaLZdvGBscA81+xMKiJe/SCFh7H101fe/54kGAFyZXvspj2SItvmopq+nokLHhMdS1sFX/cyhj4edw9ST+t5NKCrhAC0Yij2VpMeOwbXpi0diEuD624BKwmF0a4ecwwppbdR73P/NYZkBysVrERVqExYzD4HQsaWxKJCcWquVdGnn/j8fKH6j5MI+FXKgFRZ6v8bCeNrGCS9mMsUmRidXVcFvLwpaWjKXGoSpaVLI+V1GIi8ktNrUurEutU/P9xiZGlrSErWVNLNrSgqL1257bnzNahXOLSS36IALWqSXbVonc8PLycjpt/jOcS9jW8teUCes0Yp2/REXr5bE7d+58bgXklqyF0wcL63utNltWyaHl/t6+0Hunmpr/sTvesH/fq6939fSO3xhK2tNiTh4JWKDFY83RUa1HP568YwV6QXIxWJYWVC2YPdiwyuTSI30n6+t9vvpIZN++/c3N+xoa6n2esBmHekbSuYy+1k5mwSNNtGSsN7+7zPPIH3vucFqQW0UHIjt7OBvUtRqanXk15atvOqgCTmqp8yG7w3FP81j/sK7WU9Uilt8+1vk3rOXhY1/2/ElF3ou4GC2YyEPVgompibUUM3RicWDmlC8SOEjnabhjbfW+7vjz0QG9+VrIL68ObWBR0Zp7zNrL6rltUuW9ZC0+tXAcnm0b1ZlKjodSkQAcPmKOtanTNLXd3Z1aO9KxRmHBI2LhvgNV+F3WlHTsSxV5LlbrJle2ILVo9mBhnemS/7Jc9r1I6vAR5vARYNGptu74EY1d6WwjFS1nWDjRomnpxwpLBSQX1C2+xjPjMJ9a54KD0gDs76wPUKMaBos5E+/xHs9Kg3HSFtaz2ljPPajvtyws4ILc4rTog1h4HLaOCBsFoUgAztNwV3nWYNWb1b4zXXwr0LVTxiItG1iX9j5izd+/zAejhQNRSK38VOtscLzYCOwNpODwER5rAyw8Et/dPTNUxOpxr7yzXArW+Qdz+BfGvlJKkFxUt7jUgiWihYWpRfPS9qXCWgNdkWPMiUkRS2nVel9KF7SqfIr/odUx1tylh9XHcOz2n81ALqxbhEVaMHuABSLMS9uXsvzsOxELBOg4DZ2Y5LGwwtNJ3G5Xb6KAVV0l7v85wvo3wNr1YLHzlQry4rSIC6sWrHloyYPz0ukRTms4mjrWKmM1FcRye7whbmIyW+mt3FoiFmixWGrB85GJZQVwkVaxgQhTLWZe+nYHpzV4eUqdEEEsrPASlvun3gPLxtoY9yorm1ikJWOpz+EtCwu02IEoY+E4VPul7eu10sHpk3ksM3Sx8Niyq3bWwOj37qy0gdVoF2uveZT0fwiL1+LHYZF5KW5qdbSs0ZpdaqGTWpRa2hMtOOPtqhrHvFJWlQ5+DROw3vr7LRU//iNhARdocakFRQuwYFNrbW71Ty8FgzyWPNECrNpKbxasqqsQC+cOjrHUiYdf/G/fV6jFp1bxcYgzLdgBPNPSu7ja6pSAdVAXq7aqJrvaCk+0bdtWZqy5n/+g4rG+vq/NYHLL0sKqRctpqcLDL2LTM4urrBgs0NLHqn2cciuTrYmvO+Fdbqy5hyteiJpUwJUfiDAOSQumWsyKhz6HeSxLi6xOMdctSsJSWt/l1ojfVbVBWHmtN39Y8S5hfc0MRBiHEhal1nqsdqWlrFrb6CyuMywfXeIxtTLqZ52tVWXHOr0Oa1fFyxYWcaEWMw5vMpN4KFoMVoepNTicnW9ts7CCNrFg7gBY26tqov1Rb+VPNgPrR+ZulmJCLajxUOIJi7QI68LK3XMXEMuMVT9Mz7e9PR9s08SKuN0NSoufaOE1zSqv11u1owjWEwsnFvYglnyDh10c/m3FR4AFWvRBZL+HgHXug4lY9J1zWOEBq70teKaNwWKW0il358zMa+59IhZetOCxqp/1/3P0NzsXxF14DaxfVnxDWHxqIdanPNbdmeGkkbxx9S5tAAIWHAHksHB1mEplFzOZXG9tQzmwXjwwkDSSg/96r046GyJjPVlxq+/+/ft5Laxa676H3Ezr/bvfHf0Y/OSuLhbMHQArlfpuGZMNNzjHOnpg2Nrr71JazrDm9ppLQxMrz8WNQ5zE44pHWY0kaIl89S6PheeWi2GRldLyNDjFOmFaWbE4prScYv3ft/dBi8eCogVYl+/mlzOmVpDDUlp6WGRFueUEa1v1ic78nmpCaTnDeqPCsuKxoGjxWGBlGKO3g/g5tIcVUVagZQ8Le4ecgB+YlJYzrLmK+xTcOBSxPiArilxfED+HNrAOpw4pK9Cqt4GFqbXtqLJCrT3lxFJhB+sDq16h1lKpWJHjePaUtGQsrofPi5YVavmdYX2LWnawrl1eYTbZh5RWKVhgRTHr85WGtQBWdDjwdKMzrG9lLHaipazyJ7ZRqxQssAKtoljbeSysVxSZ3nuNzrC+lbHYidYHYIUj0T5WCqxAy20bK74wpqxYrWf+ElhohVrRJbtYkVa0Qi2bWNsWogUPDSqt8mMJw/DKBbSCWJxZsocVOYtWqOV228JyLUSxlGJunXCCVVqBv9DLW5HWvA2sY5HOoueTZnd7bBR4Vz6vWK3Q6c2eOlx7Z8AwRC09LLTib5uEdbF4K6C/17jJk9L/+t2gIWvpYfFWEDeaw5qTUn4MgvzRZ0rEKnm5s5I2RK23NbBkK9Jq0FnuxBtnBCtj/F6pw7DkhfSFmYSkNTGvgSVakdb+cIOIZVpxpRRi8aWjJS+kb/WVuEXzTq+klRiZ7xC3aCJdshVpiVimlSFZhe452s8iKhkLJvArolbS1BI2/yI9OdmJtLoFLFfjiJRXCdOqdKxvxogKreTVzpWVieuSVu90R5FtZWVl45b58ivxolguv2iV+809f8lYT2r+YMHvwd+dkbXm2wtjYV7JMXoyXgRLI69yr9xz9IMF+1PYnzV/ClvR0Jo+UxArclu2Qq1fKS0eq9ob07By9lOY+CMrYbE/smrk1sj8mQJYzBgUtV6KF8CKe8fFay+mlXCnXPiRFX6+t8LOz/caWtn5NuhKQz/f81aylsJa14NTtlJ55fTne6cHQ1bk6+LZ+VM4c1BYxyMss6z1Snx9w1KPS8/K6cEQh0eOTK3bw2LbhZYgYKnEiuCk1oZWpxf6BotWhHyv1CNH9DV8WB1m+9rZYbZzGlrTwTVYJVupH0y9iOXRGIODT592eD7r/M9/UI5jknJuGUprFVZrasZB/4Jclxc6Ule7ZKufnXB8pvSNh/AALm+F5Z05Q7Nye1Qjt/L1/dWUlFeyVh6r5idpDSvnZ0rNA7j80W7CEo92KyxBi04pLxEW1StnWoRVXaVlJbeykzJrb7kuDaxcWRa15pcsrNapXmkMZpKiVp2FVVu9Q7Z6+mg5zsE/R9dRzHB2HWXlfR0tq0ObuCpJTvRJnLmQd3utspLzavnpo/J1FA2sv7MuOplQJpVgJVx0Wrmso2Um1tRIUrTqDoek2VtirM5MLJdsNbBtwe5FJx5rl3WFjqCIirXKJxZ7hU5TS8NqcSLc1BzulL6wi6ZW9U91rGrKd4UOL2diXiGWcDlz5f0bolZLRByDi33hZjN0tBaeX9azKgOW1WDlkVuTZbr2u3IhLfbnG9ewsg4ra2iNyFZ/tSB10NK/9lveC+UrK2nHbbD6wnTPSdYyZKtnC14oV2HzQjm1KgCrklsVONKivCKs/Y610lufKXergnI2wehoT5fDysIytQYNB9H/lL/sTTDK2l6l40za0RjE+xXhI8sOrPzKCrGctFehxj1/ctK4BzvZtbfPlt7k0L22F40Drf49/mq2cY8+FnwMf+y4JRTT5ahjabxUKx9Z5e+ieA6VqNVft6e6/C2h1IIHpJgxKCQWXjUsUWu4y9fCNCrwyLnFj8G6sjcbwzZ2QEVWZthrYwdadvKKvfNb2kgcr6srdxs7ew0SOSxscUTHlDkt2arQBenwAdsNdGONT1Q7x2IbJLKtN7m84q2wLxt1VknaHYOFr957GtI2rRb+xnnrTb5fMNfUlW8lyfYpZfsFt0OHAjEGX48Uaxfi2Z22Z+XdoKau2C6Y6Rd8VbOnK/YKaZ+3oTX4q0jx3ioeX9qWFbbtkbFeFLH+WrcRtdBbmco7NqLu0NdaVlbFejrIWmBV46wR9Qm+ETXX4pyoMK1g6s5YMS3OzZGY0c2rw0y3ELhM3uBx62llyKpMLc7PU8nC5vlMN3i0wmcs8GEnrnn+GbFukRU+zcq2VmkIU25J3ahrNrJ5PjzLQCE/y8A3OIfmF+3U3Vy24ksWPGPrCY/LVjMLOzfwWQb+wQ8V7IMfhCU++EEdCiStgdYU34Ymj0UtHTzd47LVto198IN/SoZLKyxYYHWBf0pG1BpoeWAllCwLi9dCK5fQw87BUzLwSBH/7I4KB48U8VpgZWGRVYASC7HqVexmtcBKeHfHySNF8PwVQVFWaT7oBI+FMW8UTc8kdKz4xCIsOgEfjhfWSqyy2raRz18JD6vhGLxs72G16WiuoNWU2PwWG0n6wq5CWos9ppX+w2pm6D+s9iRaPfrupIIiKcwqTCvMK4UlPNk3dTvHWx1qQiu+vGPLnnCcn70tXlRWwovuTp/sg8cgb27MY5DTrNbsoaYj9rHcO7y9GdbKpAKsDXkMcuOfGWVzqz8VOAYtaJiSxd733Z7XgryqBCyHz4y+xTxvCN/DvBRS4RjEQaj5gC1poRXTvo4vWXjDCXOLrDbgAVvC2sU/jQxUYIV5BQWLxYL3a5XW8Bqrg0eO2ByFhFVbBVrKqrFS82nkPfafRlYn/sr86Lb01u/Uf4yiFTaCkkYh9q/D3BrqbNzMR7fhOXeBirOC6s4/MRoMdI7CGAQrpokkNwoJy8yt/Oxt6PUFZVW5qc+5b/nw4jWUIipMq/x3UFnxxZ17zT1AuZXJBgLYjo2a1yEWl1h0s2KHP5ogKz92CgEsZaW7P8Njvbl3SwUTL18UrCCv4EMoYql7AoHOQWvHKdKirLBiIdY+XEQjlnVXoE5pkRViVWtgPauN9aMKLn7xLyGQ4qjsWsGD24H3+oeGlieayAorlljed0OHgipvKD083H+gjn+fXHPLQdz5w0kWlHiCIimi4tIKJlhkxVd3uo3ZYr6D0tJ0+FjBxBLKO95CqaneWllTY+/le9vPV/z6/1k7A87IzjAK30RbAEpTqGkAlmqxWEq2tv9hC6wEggFaUIRlYtvtpJvYRC8Jg2ljtdIl2lL9e+0dGsc+N4833877Ex7nnPe834yZm3hHxF8pK+gqA0uEFT9M+h8k/CailCyF9enACT9uJLAa8v3Vi4z3nMk/1wOoIJWoQlfJ6uc3hUVWASt/EtFdKLvwE/vZrMJhWP9kh/GeLX6V6UQVsmJelQLrhpUIiy5EI8WPquDfyS2yPN8JK9s7Zuvi70TlrN4ILN45hEVhob1XXXgDKyOLlbQh3xPWH4+2Ag/aA0klquxXEu4prEwsY7VGF/phKPmOZbiI3oDZPF0mqUQFVvBgmBCsCCtNaKyqLoy/zKw//DmsfCIdm73rv5LUChVkVWXVYEK8J7Nk0YWs7/xiln1N+db398XDjpPFdBmsUlZkNXgwwx0mBCtZhZFYASsTK2GtWDksCsu/H0lYKKSYP68D1EAqZZVVNHVlgaXCwnsDXMi7EMLii8MwjcUhYS0edD4fnl4FqVQVZUUPFlgNtUGEJb0B8Z7C4t988HlGisNYZI0JC9IiqmSFvBoPLE93X4XsDYx3wJJd6N9iu/VJWYQVC/F/UkAVuhIPZmApK7yQ4oYulax6fedhKK+ktgpjISapSCugAqtoo4V0D1YQlrhQS1alvsthmLCwCsfm44vlAAqkAhUsmNkugSXpnqyGobC8ZFWP6PKtc/4ohCU1foD1e7DKsEoLorgj3BUWr0IkFtp7uLDcSOXWEVhS3nM2Xi+DVMgqUEFXEBZYcRPKKoSwJN4/8kYqkSUuPH+81ZXm1+UlSDGt2BnASgIrE8uExcQKF1rJqtR3uXXiG7c+k2dLskpZZbSjYCGwisJiIWVviHjPn8uvwDJhEdZiZ9IVZ/vlVZAKVGlB82AWLArLWaULJbE+83iXIxqweOvM97e78uwtgxRURVnRgytdMdydVVFYfMm6eyPVyPLawFfA/jdnlXlFXaWwUld1YbE3eMmiC72RamSd53dICxnfXyapROW6qrJiHxVWld4gd6E3Ut46c6a7z7PlClRkFVBBVqMFiyYMVoV0HxeWuLBUsvTFYbHbcfxhq09SROWsdBE2mvDzZFU4dcSFbKQB6zxeG4rzS38ZqIIVdSUerLcGW4UopHAhEqsd1iv5REeMmKSIKuPKWTGw6sLiCe03NF3okcXPdRa7UrHEiEmKqMZl5azGhSUXtJzQTCy6MD/WqUSWmNDnXn88ymrcgqErCfcWYQksb+/eSMdhzWdiQpsv+iAlqMAqdGUNS1hZx9JXP8Y7P4k2F45/EaT0stUHKaBiXCkr05Wk+1De1YXvszfos58Ka2Z11Oebl2cgRVQhq0ZWX9VNaMKykiXCCljz/Xe75nnaH1dYxT1IVgErWRGWvmOFsO7mQmmkOKLnlRc/eazpb0cVyR7RLnnF6s5NKMIKVugNTS6EsKQ1VGbzoh9IARVkVWVFXZU3oaxC7w3FkvViJs/u1dhKVGTlurLAgrAcFlZhfLTqvaG4Cw/23+nect47O44NCFRYg02sKCy+vHsh5avfXXfhfCENqzr3+6MQVaASC8KDlXAXXXnHwk9eMN7x+I54n08fdG8/G0/6MVVBVtSVBFY53UVY3hu8vdOF052Nbg2z+foMqNbAKsK9bkKe0P7q54kVsGaPNdzrs316lgYMUkAFD2bBqgdWYRUWC2k+zogLZz9tN+PBSjwJUlAVZAVW7sFg1WLCXIWl3sB4n7U3d8zk3snJjzRgskpZ5R5MD0a4qwlxFHrHkngvuvDg2y+7Nc7Tw6MbVCmrtKDFFUpDu7C8Y7X0hoPZB91aZ29F6zlVRVTjrOhBBpaz4gNpdRXShXnqzKcPu/XO5P7h0fNgBVkFrGAlgRWs7prupVWYsCzeD6ZfT7r10/phVFbDAFWFlQUWWeGC5ir0xKIL18kK5XSg9T1UBVSUFVjhfIYJq+kuwioV0vl018to42w9OcxYJyqRVezB0UUodw4Cq1VY7A2DrnbwNLo2Wt+RFXSFe1DCHayqsIJVvZCiN/zLnRmwJhHGYfzvmUotIFAdBDcXwZQFEANnsE3mDIiNU6FFB8lmOOV2LJIhUIOW++bdm8DBw8vz3lF6556P8ON5fv7vNWBVFlkarXtFClHxXrEN6lhphUXsDqzgIGV3w513UZalJbP3cM9QYa34BnmvEBYfodlYUKyF2zMiy6X1OyIr0isqLH5iRb+xOCxgtZTYl7N7Myrs1RfO6gMvVly749uM/rNw7h3ZsuwUFK2felRcV7FYvTGzem22Ox7vYbHm85KsIPXhDFmRXsEGQVh4uUe3O39uMN4N86u2rCL29HoWDZVug1q5k7cGPsKQFRqL/xR6xZysKNXxA6ACs0OtiK+AFRuhut2Z3cmNBcW6886rsrJYg9kPPSqsFfcVbhCv0bisVICVpli33qElK0xmz/cJq2+cFfw/gXKP9J3Di8V+CkfefkZWm/zQJ6hQV6RXRO7/OEL9J7QHal9JpuPZJESFE0RdISvaKzzdyTlq+oLGe/S2d/xEEsjNwHf1rFivogoLR/h/ijXyLrKSSOzC0AdUkXuFrPAajS+sKF+F3lXJlqQyHfsTfatIrYivtNcoOUeJ3TU31q13npMEY7V8V9sqqFV0VtirV7GExYw18r5bkmzq1/4EWIUXQ9grskEqdyos89NMCGvUK9Yk8VQGrouoFqxYr85Yr4jcyfMoLZbn7WQlBbHzQbnQVlgr4waj/xCab3dkpWrVtiUdqbRcd0EKaoUTDN8ZcIMaYZFfwnjGglolnvrYnYSoCKszZKXvFV6j/JeQv4+Oesc1SVW2LofuV4oKWRk3yIVl7tUC1qh3dWRJ2lId9Ptgq8+IitwMwIoIC16x6AhHjnNRlRTGro/7fWAFaqe+ItcoERa1u+Ns1GxJZ8q/Nt2OYYJsg4wVH6GuWF2nd1wqS3pjFU76nRAVqRXZoBIWyD0+qwBVMX2ygtzsLXB9MvsKN8jlHt3uClaAaj8r6U9F4QJUpg1yucctVhdRpRrX3zF+1NeKsIINwuczsAqiZ9V1GsWjlKMCd212OqeMFW4Qe0WvUVKsbi/QuiXrlXL+WaffAVShrsDt0ViZT3en4Ry2t2T9Yk9bJ0G9oFYxWb0g1yj2qttrFJ/mbFnTVArPTztNhYpPEH8HKSvN6a4SlGqjlJV1Tian6tUEtS96RX2FRwO8y0CxDhqqVBlZ+1j1bcXrPfwM8g0iKyL3A0Vqp2bJI0klv32yG/B6t2ClrRVuEL8I9XI/eKtItbMitjyeWPnWZrO5+1K1Cn2FvYoqrADUn3LrAUmCGArAcOxk0Uy70Cytzfsfam3MlEf/Eb7gvb07eY/AGlYRoew0nWbzrH4v7r+WhucbVQRXglRgbSvj4cDYbJoy7z/e4GyrX/dqb2/vuNgL9EmPS7DuPYHxxo4vYr93hhlWbdvuFUWxdxR0169Qm1FZ1Uw0T3fsJe/9TKu23XXFS4HuBKurEmxeUUwYlyaxqX8l8859tdp17hXJpVYbec0IjsCGBxEmlHEhldbWfbEKtFZShIwSjJZh4XwEFR7YAWTU9FMAAAAASUVORK5CYII='; From 7caf0cb8f7c994d92d68db71cfe65c1173c8843d Mon Sep 17 00:00:00 2001 From: plubber <51789398+ericHgorski@users.noreply.github.com> Date: Mon, 23 Dec 2024 11:28:55 -0500 Subject: [PATCH 24/24] [FRE-1314] fix: filter available wallets in RenderWalletList component (#597) --- .changeset/moody-beers-turn.md | 5 + .../src/components/RenderWalletList.tsx | 95 +++++++++---------- 2 files changed, 48 insertions(+), 52 deletions(-) create mode 100644 .changeset/moody-beers-turn.md diff --git a/.changeset/moody-beers-turn.md b/.changeset/moody-beers-turn.md new file mode 100644 index 000000000..031029ca9 --- /dev/null +++ b/.changeset/moody-beers-turn.md @@ -0,0 +1,5 @@ +--- +'@skip-go/widget': patch +--- + +filter cosmos wallets for is available items diff --git a/packages/widget/src/components/RenderWalletList.tsx b/packages/widget/src/components/RenderWalletList.tsx index b37b88814..f71d90e55 100644 --- a/packages/widget/src/components/RenderWalletList.tsx +++ b/packages/widget/src/components/RenderWalletList.tsx @@ -61,6 +61,14 @@ export const RenderWalletList = ({ const theme = useTheme(); const setChainAddresses = useSetAtom(chainAddressesAtom); + const displayWallets = useMemo(() => { + const filteredWallets = walletList.filter( + (wallet) => isMinimalWallet(wallet) && wallet?.isAvailable !== false + ); + + return filteredWallets.length === 1 ? walletList : filteredWallets; + }, [walletList]); + const clearAssetInputAmounts = useSetAtom(clearAssetInputAmountsAtom); const connectMutation = useMutation({ @@ -106,68 +114,51 @@ export const RenderWalletList = ({ const renderItem = useCallback( (wallet: ManualWalletEntry | MinimalWallet) => { - const name = isMinimalWallet(wallet) ? wallet.walletPrettyName ?? wallet.walletName : wallet.walletName; - const imageUrl = isMinimalWallet(wallet) ? wallet.walletInfo.logo : undefined; - const rightContent = isManualWalletEntry(wallet) ? wallet.rightContent : undefined; - const isAvailable = isMinimalWallet(wallet) ? wallet.isAvailable : undefined; + const name = isMinimalWallet(wallet) + ? wallet.walletPrettyName ?? wallet.walletName + : wallet.walletName; + + const imageUrl = isMinimalWallet(wallet) ? wallet?.walletInfo?.logo : undefined; + const rightContent = isManualWalletEntry(wallet) ? wallet?.rightContent : undefined; + const isAvailable = isMinimalWallet(wallet) ? wallet?.isAvailable : undefined; + + const renderedRightContent = rightContent?.() ?? <>; + + const imageElement = ( + {`${name}-logo`} + ) const onClickConnectWallet = () => { if (isMinimalWallet(wallet)) { connectMutation.mutate(wallet); } else { wallet.onSelect(); - }; + } }; - if (wallet.walletName === "prax") { - return ( - - {imageUrl && ( - {`${name} - )} - - {name} - - } - rightContent={rightContent?.()} - /> - ); - } + const leftContent = ( + + + {imageElement} + {name} + + {isAvailable !== undefined && {isAvailable ? "Installed" : "Not Installed"}} + + ); return ( - - {imageUrl && ( - {`${name} - )} - {name} - - {isAvailable !== undefined && {isAvailable ? "Installed" : "Not Installed"}} - - } - rightContent={rightContent?.()} + leftContent={leftContent} + rightContent={renderedRightContent} /> ); }, @@ -175,8 +166,9 @@ export const RenderWalletList = ({ ); const height = useMemo(() => { - return Math.min(530, walletList.length * (ITEM_HEIGHT + ITEM_GAP)); - }, [walletList]); + return Math.min(530, displayWallets.length * (ITEM_HEIGHT + ITEM_GAP)); + }, [walletList, displayWallets.length]); + const renderWalletListOrWalletConnectionStatus = useMemo(() => { if (connectMutation.isError || connectMutation.isPending) { @@ -219,7 +211,7 @@ export const RenderWalletList = ({ return ( item.walletName} @@ -238,7 +230,6 @@ export const RenderWalletList = ({ renderItem, theme.primary.text.lowContrast, theme.primary.text.normal, - walletList, ]); return (