@interchain-kit/react 0.0.1-beta.32 → 0.0.1-beta.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -108,6 +108,8 @@ console.log(balance)
|
|
|
108
108
|
|
|
109
109
|
### useChainWallet
|
|
110
110
|
```js
|
|
111
|
+
import { chain as junoChain, assetList as junoAssetList } from "@chain-registry/v2/mainnet/juno";
|
|
112
|
+
import { chain as stargazeChain,assetList as stargazeAssetList } from "@chain-registry/v2/mainnet/stargaze";
|
|
111
113
|
import { keplrWallet } from "@interchain-kit/keplr-extension";
|
|
112
114
|
import { leapWallet } from "@interchain-kit/leap-extension";
|
|
113
115
|
|
|
@@ -124,8 +126,8 @@ function App() {
|
|
|
124
126
|
return (
|
|
125
127
|
<ThemeProvider>
|
|
126
128
|
<ChainProvider
|
|
127
|
-
chains={
|
|
128
|
-
assetLists={
|
|
129
|
+
chains={[junoChain, stargazeChain]}
|
|
130
|
+
assetLists={[junoAssetList, stargazeAssetList]}
|
|
129
131
|
wallets={[keplrWallet, leapWallet]}
|
|
130
132
|
signerOptions={{}}
|
|
131
133
|
endpointOptions={{}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@interchain-kit/react",
|
|
3
|
-
"version": "0.0.1-beta.
|
|
3
|
+
"version": "0.0.1-beta.33",
|
|
4
4
|
"author": "cosmology-tech <developers@cosmology.zone>",
|
|
5
5
|
"description": "interchain-kit wallet connector react package",
|
|
6
6
|
"main": "index.js",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"keywords": [],
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@chain-registry/v2-types": "^0.53.0",
|
|
36
|
-
"@interchain-kit/core": "0.0.1-beta.
|
|
36
|
+
"@interchain-kit/core": "0.0.1-beta.33",
|
|
37
37
|
"@interchain-ui/react": "1.24.0",
|
|
38
38
|
"@interchainjs/cosmos-types": "0.0.1-beta.13",
|
|
39
39
|
"@interchainjs/injective": "0.0.1-beta.18",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"react": "^18.3.1",
|
|
44
44
|
"react-dom": "^18.3.1"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "98e09a4c98adaec764d6aaab001de745642b4ca8"
|
|
47
47
|
}
|