You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TITLE: Setting up ChainProvider with all chains (React)
44
-
DESCRIPTION: This snippet shows an alternative configuration for `ChainProvider` where all mainnet chains and asset lists are imported from `@chain-registry/v2/mainnet`. This simplifies setup if your application needs to interact with a wide range of chains supported by the registry.
44
+
DESCRIPTION: This snippet shows an alternative configuration for `ChainProvider` where all mainnet chains and asset lists are imported from `chain-registry/mainnet`. This simplifies setup if your application needs to interact with a wide range of chains supported by the registry.
TITLE: Setting up ChainProvider with All Mainnet Chains
183
-
DESCRIPTION: This Vue component snippet shows an alternative setup for the `ChainProvider`, importing all mainnet chains and asset lists directly from `@chain-registry/v2/mainnet`. This simplifies configuration if you need access to the entire mainnet registry.
183
+
DESCRIPTION: This Vue component snippet shows an alternative setup for the `ChainProvider`, importing all mainnet chains and asset lists directly from `chain-registry/mainnet`. This simplifies configuration if you need access to the entire mainnet registry.
import { ChainProvider } from '@interchain-kit/vue';
191
191
import { keplrWallet } from '@interchain-kit/keplr-extension';
192
-
import { chains, assetLists } from '@chain-registry/v2/mainnet';
192
+
import { chains, assetLists } from 'chain-registry/mainnet';
193
193
import Show from './views/show.vue';
194
194
</script>
195
195
@@ -212,7 +212,7 @@ import Show from './views/show.vue';
212
212
----------------------------------------
213
213
214
214
TITLE: Setting up ChainProvider with All Mainnet Chains (Vue)
215
-
DESCRIPTION: This Vue SFC illustrates an alternative ChainProvider setup where all mainnet chains and asset lists are imported from @chain-registry/v2. This approach is simpler if your application needs access to the full mainnet registry.
215
+
DESCRIPTION: This Vue SFC illustrates an alternative ChainProvider setup where all mainnet chains and asset lists are imported from chain-registry. This approach is simpler if your application needs access to the full mainnet registry.
import { ChainProvider } from '@interchain-kit/vue';
223
223
import { keplrWallet } from '@interchain-kit/keplr-extension';
224
-
import { chains, assetLists } from '@chain-registry/v2/mainnet';
224
+
import { chains, assetLists } from 'chain-registry/mainnet';
225
225
import Show from './views/show.vue';
226
226
</script>
227
227
@@ -244,7 +244,7 @@ import Show from './views/show.vue';
244
244
----------------------------------------
245
245
246
246
TITLE: Setting up ChainProvider with Specific Chains
247
-
DESCRIPTION: This Vue component snippet demonstrates setting up the `ChainProvider` with specific chains and asset lists imported individually from `@chain-registry/v2`. It requires explicitly listing the desired chains, asset lists, and available wallets.
247
+
DESCRIPTION: This Vue component snippet demonstrates setting up the `ChainProvider` with specific chains and asset lists imported individually from `chain-registry`. It requires explicitly listing the desired chains, asset lists, and available wallets.
@@ -255,10 +255,10 @@ import { ChainProvider } from '@interchain-kit/vue'
255
255
import { keplrWallet } from '@interchain-kit/keplr-extension';
256
256
import { leapWallet } from '@interchain-kit/leap-extension';
257
257
import { RouterView } from 'vue-router';
258
-
import { chain as junoChain, assetList as junoAssetList } from "@chain-registry/v2/mainnet/juno";
259
-
import { chain as osmosisChain,assetList as osmosisAssetList } from "@chain-registry/v2/mainnet/osmosis";
260
-
import { chain as cosmoshubChain, assetList as cosmoshubAssetList } from "@chain-registry/v2/mainnet/cosmoshub";
261
-
import { chain as osmosisTestChain, assetList as osmosisTestAssetList } from "@chain-registry/v2/testnet/osmosistestnet"
258
+
import { chain as junoChain, assetList as junoAssetList } from "chain-registry/mainnet/juno";
259
+
import { chain as osmosisChain,assetList as osmosisAssetList } from "chain-registry/mainnet/osmosis";
260
+
import { chain as cosmoshubChain, assetList as cosmoshubAssetList } from "chain-registry/mainnet/cosmoshub";
261
+
import { chain as osmosisTestChain, assetList as osmosisTestAssetList } from "chain-registry/testnet/osmosistestnet"
262
262
</script>
263
263
264
264
<template>
@@ -280,7 +280,7 @@ import { chain as osmosisTestChain, assetList as osmosisTestAssetList } from "@c
280
280
----------------------------------------
281
281
282
282
TITLE: Setting up ChainProvider with Specific Chains (Vue)
283
-
DESCRIPTION: This Vue SFC demonstrates how to set up the ChainProvider component by explicitly importing and providing specific chain and asset list data from @chain-registry/v2, along with wallet connectors. It is suitable for applications needing to support a predefined set of chains.
283
+
DESCRIPTION: This Vue SFC demonstrates how to set up the ChainProvider component by explicitly importing and providing specific chain and asset list data from chain-registry, along with wallet connectors. It is suitable for applications needing to support a predefined set of chains.
0 commit comments