graz 0.0.7 → 0.0.10

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.
File without changes
@@ -1,4 +1,3 @@
1
1
  export * from '@cosmjs/cosmwasm-stargate';
2
2
  export * from '@cosmjs/proto-signing';
3
3
  export * from '@cosmjs/stargate';
4
- export * from '@keplr-wallet/types';
@@ -1 +1 @@
1
- "use strict";var a=Object.defineProperty;var b=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var d=Object.prototype.hasOwnProperty;var t=(f,e,p,x)=>{if(e&&typeof e=="object"||typeof e=="function")for(let m of c(e))!d.call(f,m)&&m!==p&&a(f,m,{get:()=>e[m],enumerable:!(x=b(e,m))||x.enumerable});return f},r=(f,e,p)=>(t(f,e,"default"),p&&t(p,e,"default"));var g=f=>t(a({},"__esModule",{value:!0}),f);var o={};module.exports=g(o);r(o,require("@cosmjs/cosmwasm-stargate"),module.exports);r(o,require("@cosmjs/proto-signing"),module.exports);r(o,require("@cosmjs/stargate"),module.exports);r(o,require("@keplr-wallet/types"),module.exports);
1
+ "use strict";var a=Object.defineProperty;var b=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var d=Object.prototype.hasOwnProperty;var t=(f,e,p,x)=>{if(e&&typeof e=="object"||typeof e=="function")for(let m of c(e))!d.call(f,m)&&m!==p&&a(f,m,{get:()=>e[m],enumerable:!(x=b(e,m))||x.enumerable});return f},r=(f,e,p)=>(t(f,e,"default"),p&&t(p,e,"default"));var g=f=>t(a({},"__esModule",{value:!0}),f);var o={};module.exports=g(o);r(o,require("@cosmjs/cosmwasm-stargate"),module.exports);r(o,require("@cosmjs/proto-signing"),module.exports);r(o,require("@cosmjs/stargate"),module.exports);
@@ -1 +1 @@
1
- import"./chunk-L7O257ZE.mjs";export*from"@cosmjs/cosmwasm-stargate";export*from"@cosmjs/proto-signing";export*from"@cosmjs/stargate";export*from"@keplr-wallet/types";
1
+ import"./chunk-L7O257ZE.mjs";export*from"@cosmjs/cosmwasm-stargate";export*from"@cosmjs/proto-signing";export*from"@cosmjs/stargate";
package/dist/index.d.ts CHANGED
@@ -4,11 +4,12 @@ import * as _cosmjs_proto_signing from '@cosmjs/proto-signing';
4
4
  import { Coin, OfflineSigner } from '@cosmjs/proto-signing';
5
5
  import * as _keplr_wallet_types from '@keplr-wallet/types';
6
6
  import { AppCurrency, Key, ChainInfo, Keplr } from '@keplr-wallet/types';
7
- import * as react_query from 'react-query';
7
+ import * as _tanstack_react_query from '@tanstack/react-query';
8
8
  import * as _cosmjs_amino from '@cosmjs/amino';
9
9
  import { ReactNode } from 'react';
10
10
 
11
11
  declare type Dictionary<T = string> = Record<string, T>;
12
+ declare type Maybe<T> = T | undefined;
12
13
 
13
14
  interface GrazChain {
14
15
  chainId: string;
@@ -81,6 +82,7 @@ declare const mainnetChainsArray: _keplr_wallet_types.ChainInfo[];
81
82
  */
82
83
  declare const testnetChains: {
83
84
  crescent: _keplr_wallet_types.ChainInfo;
85
+ juno: _keplr_wallet_types.ChainInfo;
84
86
  osmosis: _keplr_wallet_types.ChainInfo;
85
87
  };
86
88
  /**
@@ -90,11 +92,17 @@ declare const testnetChains: {
90
92
  */
91
93
  declare const testnetChainsArray: _keplr_wallet_types.ChainInfo[];
92
94
 
93
- declare function connect(chain: GrazChain, signerOpts?: SigningCosmWasmClientOptions): Promise<Key>;
94
- declare function disconnect(): Promise<void>;
95
+ declare type ConnectArgs = Maybe<GrazChain & {
96
+ signerOpts?: SigningCosmWasmClientOptions;
97
+ }>;
98
+ declare function connect(args?: ConnectArgs): Promise<Key>;
99
+ declare function disconnect(clearRecentChain?: boolean): Promise<void>;
95
100
  declare function getBalances(bech32Address: string): Promise<Coin[]>;
96
101
  declare function reconnect(): void;
97
102
 
103
+ declare function configureDefaultChain(chain: GrazChain): GrazChain;
104
+ declare function getRecentChain(): GrazChain | null;
105
+ declare function clearRecentChain(): void;
98
106
  declare function suggestChain(chainInfo: ChainInfo): Promise<ChainInfo>;
99
107
  declare function suggestChainAndConnect(chainInfo: ChainInfo): Promise<{
100
108
  account: Key;
@@ -109,6 +117,41 @@ declare type CreateSigningClientArgs = CreateClientArgs & {
109
117
  };
110
118
  declare function createSigningClient(args: CreateSigningClientArgs): Promise<SigningCosmWasmClient>;
111
119
 
120
+ /**
121
+ * Function to return {@link Keplr} object and throws and error if it does not exist on `window`.
122
+ *
123
+ * @example
124
+ * ```ts
125
+ * try {
126
+ * const keplr = getKeplr();
127
+ * } catch (error: Error) {
128
+ * console.error(error.message);
129
+ * }
130
+ * ```
131
+ *
132
+ * @see https://docs.keplr.app
133
+ */
134
+ declare function getKeplr(): Keplr;
135
+ /**
136
+ * Register a callback to run when invoking {@link getKeplr} throws an error.
137
+ *
138
+ * @example
139
+ * ```ts
140
+ * registerKeplrNotFound(() => {
141
+ * console.error("keplr not found");
142
+ * });
143
+ * ```
144
+ *
145
+ * @see {@link unregisterKeplrNotFound}
146
+ */
147
+ declare function registerKeplrNotFound(fn: () => void): void;
148
+ /**
149
+ * Clear registered callback when using {@link registerKeplrNotFound}.
150
+ *
151
+ * @see {@link registerKeplrNotFound}
152
+ */
153
+ declare function unregisterKeplrNotFound(): void;
154
+
112
155
  interface MutationEventArgs<TInitial = unknown, TSuccess = TInitial> {
113
156
  onError?: (error: unknown, data: TInitial) => unknown;
114
157
  onLoading?: (data: TInitial) => unknown;
@@ -172,10 +215,10 @@ declare function useBalances(bech32Address?: string): {
172
215
  isLoading: boolean;
173
216
  isRefetching: boolean;
174
217
  isSuccess: boolean;
175
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<_cosmjs_amino.Coin[], unknown>>;
176
- status: "idle" | "error" | "loading" | "success";
218
+ refetch: <TPageData>(options?: (_tanstack_react_query.RefetchOptions & _tanstack_react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<_tanstack_react_query.QueryObserverResult<_cosmjs_amino.Coin[], unknown>>;
219
+ status: "error" | "loading" | "success";
177
220
  };
178
- declare type UseConnectChainArgs = MutationEventArgs<GrazChain, Key>;
221
+ declare type UseConnectChainArgs = MutationEventArgs<ConnectArgs, Key>;
179
222
  /**
180
223
  * graz mutation hook to execute wallet connection with optional arguments to
181
224
  * invoke given functions on error, loading, or success event.
@@ -209,13 +252,13 @@ declare type UseConnectChainArgs = MutationEventArgs<GrazChain, Key>;
209
252
  * @see {@link connect}
210
253
  */
211
254
  declare function useConnect({ onError, onLoading, onSuccess }?: UseConnectChainArgs): {
212
- connect: react_query.UseMutateFunction<Key, unknown, GrazChain, unknown>;
213
- connectAsync: react_query.UseMutateAsyncFunction<Key, unknown, GrazChain, unknown>;
255
+ connect: (args?: ConnectArgs) => void;
256
+ connectAsync: (args?: ConnectArgs) => Promise<Key>;
214
257
  error: unknown;
215
258
  isLoading: boolean;
216
259
  isSuccess: boolean;
217
260
  isSupported: boolean;
218
- status: "idle" | "error" | "loading" | "success";
261
+ status: "error" | "loading" | "success" | "idle";
219
262
  };
220
263
  /**
221
264
  * graz mutation hook to execute wallet disconnection with optional arguments to
@@ -234,17 +277,20 @@ declare function useConnect({ onError, onLoading, onSuccess }?: UseConnectChainA
234
277
  * onLoading: () => { ... },
235
278
  * onSuccess: () => { ... },
236
279
  * });
280
+ *
281
+ * // pass `true` on disconnect to clear recent connected chain
282
+ * disconnect(true);
237
283
  * ```
238
284
  *
239
285
  * @see {@link disconnect}
240
286
  */
241
287
  declare function useDisconnect({ onError, onLoading, onSuccess }?: MutationEventArgs): {
242
- disconnect: () => void;
243
- disconnectAsync: () => Promise<void>;
288
+ disconnect: (forget?: boolean) => void;
289
+ disconnectAsync: (forget?: boolean) => Promise<void>;
244
290
  error: unknown;
245
291
  isLoading: boolean;
246
292
  isSuccess: boolean;
247
- status: "idle" | "error" | "loading" | "success";
293
+ status: "error" | "loading" | "success" | "idle";
248
294
  };
249
295
  /**
250
296
  * graz hook to retrieve offline signer objects (default, amino enabled, and auto).
@@ -273,6 +319,26 @@ declare function useSigners(): {
273
319
  * ```
274
320
  */
275
321
  declare function useActiveChain(): GrazChain | null;
322
+ /**
323
+ * graz hook to retrieve last connected chain info
324
+ *
325
+ * @example
326
+ * ```ts
327
+ * import { useRecentChain, connect, mainnetChains } from "graz";
328
+ * const recentChain = useRecentChain();
329
+ * try {
330
+ * connect();
331
+ * } catch {
332
+ * connect(mainnetChains.cosmos);
333
+ * }
334
+ * ```
335
+ *
336
+ * @see {@link useActiveChain}
337
+ */
338
+ declare function useRecentChain(): {
339
+ data: GrazChain | null;
340
+ clear: typeof clearRecentChain;
341
+ };
276
342
  declare type UseSuggestChainArgs = MutationEventArgs<ChainInfo>;
277
343
  /**
278
344
  * graz mutation hook to suggest chain to Keplr Wallet
@@ -294,9 +360,9 @@ declare function useSuggestChain({ onError, onLoading, onSuccess }?: UseSuggestC
294
360
  error: unknown;
295
361
  isLoading: boolean;
296
362
  isSuccess: boolean;
297
- suggest: react_query.UseMutateFunction<ChainInfo, unknown, ChainInfo, unknown>;
298
- suggestAsync: react_query.UseMutateAsyncFunction<ChainInfo, unknown, ChainInfo, unknown>;
299
- status: "idle" | "error" | "loading" | "success";
363
+ suggest: _tanstack_react_query.UseMutateFunction<ChainInfo, unknown, ChainInfo, unknown>;
364
+ suggestAsync: _tanstack_react_query.UseMutateAsyncFunction<ChainInfo, unknown, ChainInfo, unknown>;
365
+ status: "error" | "loading" | "success" | "idle";
300
366
  };
301
367
  declare type UseSuggestChainAndConnectArgs = MutationEventArgs<ChainInfo, {
302
368
  chain: ChainInfo;
@@ -334,12 +400,12 @@ declare function useSuggestChainAndConnect({ onError, onLoading, onSuccess }?: U
334
400
  isLoading: boolean;
335
401
  isSuccess: boolean;
336
402
  isSupported: boolean;
337
- status: "idle" | "error" | "loading" | "success";
338
- suggestAndConnect: react_query.UseMutateFunction<{
403
+ status: "error" | "loading" | "success" | "idle";
404
+ suggestAndConnect: _tanstack_react_query.UseMutateFunction<{
339
405
  account: Key;
340
406
  chain: ChainInfo;
341
407
  }, unknown, ChainInfo, unknown>;
342
- suggestAndConnectAsync: react_query.UseMutateAsyncFunction<{
408
+ suggestAndConnectAsync: _tanstack_react_query.UseMutateAsyncFunction<{
343
409
  account: Key;
344
410
  chain: ChainInfo;
345
411
  }, unknown, ChainInfo, unknown>;
@@ -369,8 +435,8 @@ declare function useClient(args?: WithRefetchOpts<CreateClientArgs>): {
369
435
  isLoading: boolean;
370
436
  isRefetching: boolean;
371
437
  isSuccess: boolean;
372
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<_cosmjs_cosmwasm_stargate.CosmWasmClient | null, unknown>>;
373
- status: "idle" | "error" | "loading" | "success";
438
+ refetch: <TPageData>(options?: (_tanstack_react_query.RefetchOptions & _tanstack_react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<_tanstack_react_query.QueryObserverResult<_cosmjs_cosmwasm_stargate.CosmWasmClient | null, unknown>>;
439
+ status: "error" | "loading" | "success";
374
440
  };
375
441
  /**
376
442
  * graz query hook to retrieve a SigningCosmWasmClient. If there's no given args it will be using the current connected signer
@@ -397,8 +463,8 @@ declare function useSigningClient(args?: WithRefetchOpts<CreateSigningClientArgs
397
463
  isLoading: boolean;
398
464
  isRefetching: boolean;
399
465
  isSuccess: boolean;
400
- refetch: <TPageData>(options?: (react_query.RefetchOptions & react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<react_query.QueryObserverResult<_cosmjs_cosmwasm_stargate.SigningCosmWasmClient | null, unknown>>;
401
- status: "idle" | "error" | "loading" | "success";
466
+ refetch: <TPageData>(options?: (_tanstack_react_query.RefetchOptions & _tanstack_react_query.RefetchQueryFilters<TPageData>) | undefined) => Promise<_tanstack_react_query.QueryObserverResult<_cosmjs_cosmwasm_stargate.SigningCosmWasmClient | null, unknown>>;
467
+ status: "error" | "loading" | "success";
402
468
  };
403
469
 
404
470
  /**
@@ -419,46 +485,11 @@ declare function useSigningClient(args?: WithRefetchOpts<CreateSigningClientArgs
419
485
  */
420
486
  declare function useCheckKeplr(): boolean;
421
487
 
422
- /**
423
- * Function to return {@link Keplr} object and throws and error if it does not exist on `window`.
424
- *
425
- * @example
426
- * ```ts
427
- * try {
428
- * const keplr = getKeplr();
429
- * } catch (error: Error) {
430
- * console.error(error.message);
431
- * }
432
- * ```
433
- *
434
- * @see https://docs.keplr.app
435
- */
436
- declare function getKeplr(): Keplr;
437
- /**
438
- * Register a callback to run when invoking {@link getKeplr} throws an error.
439
- *
440
- * @example
441
- * ```ts
442
- * registerKeplrNotFound(() => {
443
- * console.error("keplr not found");
444
- * });
445
- * ```
446
- *
447
- * @see {@link unregisterKeplrNotFound}
448
- */
449
- declare function registerKeplrNotFound(fn: () => void): void;
450
- /**
451
- * Clear registered callback when using {@link registerKeplrNotFound}.
452
- *
453
- * @see {@link registerKeplrNotFound}
454
- */
455
- declare function unregisterKeplrNotFound(): void;
456
-
457
488
  interface GrazProviderProps {
458
489
  children: ReactNode;
459
490
  }
460
491
  /**
461
- * Provider component which wraps `react-query`'s {@link QueryClientProvider} and various `graz` side effects
492
+ * Provider component which wraps `@tanstack/react-query`'s {@link QueryClientProvider} and various `graz` side effects
462
493
  *
463
494
  * @example
464
495
  * ```tsx
@@ -472,8 +503,9 @@ interface GrazProviderProps {
472
503
  * }
473
504
  * ```
474
505
  *
475
- * @see https://react-query-v3.tanstack.com/reference/QueryClientProvider
506
+ * @see https://tanstack.com/query
476
507
  */
477
508
  declare function GrazProvider({ children }: GrazProviderProps): JSX.Element;
509
+ declare const GRAZ_PROVIDER_COMPONENT_KEY = "graz-query-client";
478
510
 
479
- export { CreateClientArgs, CreateSigningClientArgs, GrazChain, GrazProvider, GrazProviderProps, UseAccountArgs, UseConnectChainArgs, UseSuggestChainAndConnectArgs, UseSuggestChainArgs, connect, createClient, createSigningClient, defineChains, disconnect, getBalances, getKeplr, mainnetChains, mainnetChainsArray, reconnect, registerKeplrNotFound, suggestChain, suggestChainAndConnect, testnetChains, testnetChainsArray, unregisterKeplrNotFound, useAccount, useActiveChain, useBalances, useCheckKeplr, useClient, useConnect, useDisconnect, useSigners, useSigningClient, useSuggestChain, useSuggestChainAndConnect };
511
+ export { ConnectArgs, CreateClientArgs, CreateSigningClientArgs, GRAZ_PROVIDER_COMPONENT_KEY, GrazChain, GrazProvider, GrazProviderProps, UseAccountArgs, UseConnectChainArgs, UseSuggestChainAndConnectArgs, UseSuggestChainArgs, clearRecentChain, configureDefaultChain, connect, createClient, createSigningClient, defineChains, disconnect, getBalances, getKeplr, getRecentChain, mainnetChains, mainnetChainsArray, reconnect, registerKeplrNotFound, suggestChain, suggestChainAndConnect, testnetChains, testnetChainsArray, unregisterKeplrNotFound, useAccount, useActiveChain, useBalances, useCheckKeplr, useClient, useConnect, useDisconnect, useRecentChain, useSigners, useSigningClient, useSuggestChain, useSuggestChainAndConnect };
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- "use strict";var he=Object.create;var y=Object.defineProperty;var fe=Object.getOwnPropertyDescriptor;var ye=Object.getOwnPropertyNames;var Ce=Object.getPrototypeOf,de=Object.prototype.hasOwnProperty;var we=(e,o)=>{for(var t in o)y(e,t,{get:o[t],enumerable:!0})},T=(e,o,t,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of ye(o))!de.call(e,n)&&n!==t&&y(e,n,{get:()=>o[n],enumerable:!(i=fe(o,n))||i.enumerable});return e};var S=(e,o,t)=>(t=e!=null?he(Ce(e)):{},T(o||!e||!e.__esModule?y(t,"default",{value:e,enumerable:!0}):t,e)),Ae=e=>T(y({},"__esModule",{value:!0}),e);var tn={};we(tn,{GrazProvider:()=>nn,connect:()=>p,createClient:()=>l,createSigningClient:()=>g,defineChains:()=>Re,disconnect:()=>I,getBalances:()=>D,getKeplr:()=>u,mainnetChains:()=>Ee,mainnetChainsArray:()=>We,reconnect:()=>m,registerKeplrNotFound:()=>Se,suggestChain:()=>d,suggestChainAndConnect:()=>v,testnetChains:()=>_e,testnetChainsArray:()=>Fe,unregisterKeplrNotFound:()=>xe,useAccount:()=>ce,useActiveChain:()=>Ve,useBalances:()=>Le,useCheckKeplr:()=>h,useClient:()=>Ye,useConnect:()=>He,useDisconnect:()=>Qe,useSigners:()=>Je,useSigningClient:()=>Ze,useSuggestChain:()=>Xe,useSuggestChainAndConnect:()=>$e});module.exports=Ae(tn);var c=S(require("react"));var P=require("@cosmjs/stargate");var N=S(require("zustand")),C=require("zustand/middleware"),x={account:null,activeChain:null,balances:null,client:null,offlineSigner:null,offlineSignerAmino:null,offlineSignerAuto:null,signingClient:null,status:"disconnected",_notFoundFn:()=>null,_reconnect:!1,_supported:!1},r=(0,N.default)((0,C.subscribeWithSelector)((0,C.persist)(()=>({...x}),{name:"graz",partialize:e=>({activeChain:e.activeChain,_reconnect:e._reconnect}),version:1})));function u(){if(typeof window.keplr<"u")return window.keplr;throw r.getState()._notFoundFn(),new Error("Keplr is not defined")}function Se(e){r.setState({_notFoundFn:e})}function xe(){r.setState({_notFoundFn:()=>null})}var k=require("@cosmjs/cosmwasm-stargate");async function l({rpc:e,rpcHeaders:o}){let t={url:e,headers:{...o||{}}};return await k.SigningCosmWasmClient.connect(t)}async function g(e){let{rpc:o,rpcHeaders:t,offlineSigner:i,signerOptions:n={}}=e,s={url:o,headers:{...t||{}}};return await k.SigningCosmWasmClient.connectWithSigner(s,i,n)}async function p(e,o={}){try{let t=u();r.setState(A=>{let ge=A._reconnect;return A.activeChain&&A.activeChain.chainId!==e.chainId?{status:"connecting"}:ge?{status:"reconnecting"}:{status:"connecting"}}),await t.enable(e.chainId);let i=t.getOfflineSigner(e.chainId),n=t.getOfflineSignerOnlyAmino(e.chainId),s=e.gas?P.GasPrice.fromString(`${e.gas.price}${e.gas.denom}`):void 0,[a,pe,ue,le]=await Promise.all([t.getKey(e.chainId),l(e),t.getOfflineSignerAuto(e.chainId),g({...e,offlineSigner:i,signerOptions:{gasPrice:s,...o}})]);return r.setState({account:a,activeChain:e,client:pe,offlineSigner:i,offlineSignerAmino:n,offlineSignerAuto:ue,signingClient:le,status:"connected",_reconnect:!0}),a}catch(t){throw r.getState().account===null&&r.setState({status:"disconnected"}),t}}async function I(){return r.setState(e=>({...x,_supported:e._supported})),Promise.resolve()}async function D(e){let{activeChain:o,signingClient:t}=r.getState();if(!o||!t)throw new Error("No connected account detected");return await Promise.all(o.currencies.map(async n=>t.getBalance(e,n.coinMinimalDenom)))}function m(){let{activeChain:e}=r.getState();e&&p(e)}async function d(e){return await u().experimentalSuggestChain(e),e}async function v(e){let o=await d(e);return{account:await p(e),chain:o}}var E=require("@keplr-wallet/cosmos"),W={coinDenom:"axl",coinMinimalDenom:"uaxl",coinDecimals:6,coinGeckoId:"axelar-network",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png"},ke={coinDenom:"usdc",coinMinimalDenom:"uusdc",coinDecimals:6,coinGeckoId:"usd-coin",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png"},Ie={coinDenom:"dai",coinMinimalDenom:"dai-wei",coinDecimals:18,coinGeckoId:"dai",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png"},De={coinDenom:"usdt",coinMinimalDenom:"uusdt",coinDecimals:6,coinGeckoId:"tether",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png"},ve={coinDenom:"weth-wei",coinMinimalDenom:"weth",coinDecimals:18,coinGeckoId:"weth",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png"},be={coinDenom:"wbtc-satoshi",coinMinimalDenom:"wbtc",coinDecimals:8,coinGeckoId:"wrapped-bitcoin",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png"},R=[W,ke,Ie,De,ve,be],b={rpc:"https://rpc.axelar.strange.love",rest:"https://api.axelar.strange.love",chainId:"axelar-dojo-1",chainName:"Axelar",stakeCurrency:W,bip44:{coinType:118},bech32Config:E.Bech32Address.defaultBech32Config("axelar"),currencies:R,feeCurrencies:R};var F=require("@keplr-wallet/cosmos"),L={coinDenom:"atom",coinMinimalDenom:"uatom",coinDecimals:6,coinGeckoId:"cosmos",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png"},_=[L],j={rpc:"https://rpc.cosmoshub.strange.love",rest:"https://api.cosmoshub.strange.love",chainId:"cosmoshub-4",chainName:"Cosmos Hub",stakeCurrency:L,bip44:{coinType:118},bech32Config:F.Bech32Address.defaultBech32Config("cosmos"),currencies:_,feeCurrencies:_};var Q=require("@keplr-wallet/cosmos"),J={coinDenom:"CRE",coinMinimalDenom:"ucre",coinDecimals:6,coinGeckoId:"crescent",coinImageUrl:"https://raw.githubusercontent.com/crescent-network/asset/main/images/coin/CRE.png"},H=[J],z={rpc:"https://testnet-endpoint.crescent.network/rpc/crescent",rest:"https://testnet-endpoint.crescent.network/api/crescent",chainId:"mooncat-1-1",chainName:"Crescent Testnet",bip44:{coinType:118},bech32Config:Q.Bech32Address.defaultBech32Config("CRE"),currencies:H,feeCurrencies:H,stakeCurrency:J,coinType:118};var X=require("@keplr-wallet/cosmos"),$={coinDenom:"juno",coinMinimalDenom:"ujuno",coinDecimals:6,coinGeckoId:"juno-network",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png"},je={coinDenom:"neta",coinMinimalDenom:"cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr",coinDecimals:6,coinGeckoId:"neta",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png"},ze={coinDenom:"marble",coinMinimalDenom:"cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl",coinDecimals:3,coinGeckoId:"marble",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png"},Ge={coinDenom:"hope",coinMinimalDenom:"cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z",coinDecimals:6,coinGeckoId:"hope-galaxy",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png"},Oe={coinDenom:"rac",coinMinimalDenom:"cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa",coinDecimals:6,coinGeckoId:"racoon",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png"},Me={coinDenom:"block",coinMinimalDenom:"cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png"},qe={coinDenom:"dhk",coinMinimalDenom:"cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49",coinDecimals:0,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png"},Ue={coinDenom:"raw",coinMinimalDenom:"cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png",coinGeckoId:"junoswap-raw-dao"},Ke={coinDenom:"asvt",coinMinimalDenom:"cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png"},Be={coinDenom:"hns",coinMinimalDenom:"cw20:juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hns.svg"},Te={coinDenom:"joe",coinMinimalDenom:"cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png"},V=[$,je,ze,Ge,Oe,Me,qe,Ue,Ke,Be,Te],G={rpc:"https://rpc.juno.strange.love",rest:"https://api.juno.strange.love",chainId:"juno-1",chainName:"Juno",stakeCurrency:$,bip44:{coinType:118},bech32Config:X.Bech32Address.defaultBech32Config("juno"),currencies:V,feeCurrencies:V};var Z=require("@keplr-wallet/cosmos"),ee={coinDenom:"osmo",coinMinimalDenom:"uosmo",coinDecimals:6,coinGeckoId:"osmosis",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png"},Ne={coinDenom:"ion",coinMinimalDenom:"uion",coinDecimals:6,coinGeckoId:"ion",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png"},Y=[ee,Ne],O={rpc:"https://rpc.osmosis.strange.love",rest:"https://api.osmosis.strange.love",chainId:"osmosis-1",chainName:"Osmosis",stakeCurrency:ee,bip44:{coinType:118},bech32Config:Z.Bech32Address.defaultBech32Config("osmo"),currencies:Y,feeCurrencies:Y};var ne=require("@keplr-wallet/cosmos"),M={coinDenom:"osmo",coinMinimalDenom:"uosmo",coinDecimals:6,coinGeckoId:"osmosis",coinImageUrl:"https://dhj8dql1kzq2v.cloudfront.net/white/osmo.png"},Pe=[M],q={rpc:"https://testnet-rpc.osmosis.zone",rest:"https://testnet-rest.osmosis.zone",chainId:"osmo-test-4",chainName:"Osmosis Testnet",stakeCurrency:M,bip44:{coinType:118},bech32Config:ne.Bech32Address.defaultBech32Config("osmo"),currencies:Pe,feeCurrencies:[M],coinType:118};var oe=require("@keplr-wallet/cosmos"),ie={coinDenom:"somm",coinMinimalDenom:"usomm",coinDecimals:6,coinGeckoId:"sommelier",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png"},te=[ie],U={rpc:"https://rpc.sommelier.strange.love",rest:"https://api.sommelier.strange.love",chainId:"sommelier-3",chainName:"Sommelier",stakeCurrency:ie,bip44:{coinType:118},bech32Config:oe.Bech32Address.defaultBech32Config("somm"),currencies:te,feeCurrencies:te};function Re(e){return e}var Ee={axelar:b,cosmos:j,juno:G,osmosis:O,sommelier:U},We=[b,j,G,O,U],_e={crescent:z,osmosis:q},Fe=[z,q];var re=require("react"),f=require("react-query"),se=S(require("zustand/shallow"));function h(){return r(e=>e._supported)}function ce({onConnect:e,onDisconnect:o}={}){let t=r(n=>n.account),i=r(n=>n.status);return(0,re.useEffect)(()=>r.subscribe(n=>n.status,(n,s)=>{if(n==="connected"){let a=r.getState();e==null||e({account:a.account,isReconnect:s==="reconnecting"})}n==="disconnected"&&(o==null||o())}),[e,o]),{data:t,isConnected:Boolean(t),isConnecting:i==="connecting",isDisconnected:i==="disconnected",isReconnecting:i==="reconnecting",reconnect:m,status:i}}function Le(e){let{data:o}=ce(),t=e||(o==null?void 0:o.bech32Address),n=(0,f.useQuery)(["USE_BALANCES",t],({queryKey:[,s]})=>D(s),{enabled:Boolean(t)});return{data:n.data,error:n.error,isFetching:n.isFetching,isLoading:n.isLoading,isRefetching:n.isRefetching,isSuccess:n.isSuccess,refetch:n.refetch,status:n.status}}function He({onError:e,onLoading:o,onSuccess:t}={}){let n=(0,f.useMutation)(["USE_CONNECT",e,o,t],p,{onError:(s,a)=>Promise.resolve(e==null?void 0:e(s,a)),onMutate:o,onSuccess:s=>Promise.resolve(t==null?void 0:t(s))});return{connect:n.mutate,connectAsync:n.mutateAsync,error:n.error,isLoading:n.isLoading,isSuccess:n.isSuccess,isSupported:h(),status:n.status}}function Qe({onError:e,onLoading:o,onSuccess:t}={}){let n=(0,f.useMutation)(["USE_DISCONNECT",e,o,t],I,{onError:s=>Promise.resolve(e==null?void 0:e(s,void 0)),onMutate:o,onSuccess:()=>Promise.resolve(t==null?void 0:t(void 0))});return{disconnect:()=>n.mutate(void 0),disconnectAsync:()=>n.mutateAsync(void 0),error:n.error,isLoading:n.isLoading,isSuccess:n.isSuccess,status:n.status}}function Je(){return r(e=>({signer:e.offlineSigner,signerAmino:e.offlineSignerAmino,signerAuto:e.offlineSignerAuto}),se.default)}var K=require("react-query");function Ve(){return r(e=>e.activeChain)}function Xe({onError:e,onLoading:o,onSuccess:t}={}){let n=(0,K.useMutation)(["USE_SUGGEST_CHAIN",e,o,t],d,{onError:(s,a)=>Promise.resolve(e==null?void 0:e(s,a)),onMutate:o,onSuccess:s=>Promise.resolve(t==null?void 0:t(s))});return{error:n.error,isLoading:n.isLoading,isSuccess:n.isSuccess,suggest:n.mutate,suggestAsync:n.mutateAsync,status:n.status}}function $e({onError:e,onLoading:o,onSuccess:t}={}){let n=(0,K.useMutation)(["USE_SUGGEST_CHAIN_AND_CONNECT",e,o,t],v,{onError:(s,a)=>Promise.resolve(e==null?void 0:e(s,a)),onMutate:o,onSuccess:s=>Promise.resolve(t==null?void 0:t(s))});return{error:n.error,isLoading:n.isLoading,isSuccess:n.isSuccess,isSupported:h(),status:n.status,suggestAndConnect:n.mutate,suggestAndConnectAsync:n.mutateAsync}}var B=require("react-query");function Ye(e){let o=r(n=>n.client),i=(0,B.useQuery)(["USE_CLIENT",e,o],({queryKey:[,n,s]})=>n!=null&&n.rpc?l(n):s,{refetchOnMount:Boolean(e==null?void 0:e.keepRefetchBehavior),refetchOnWindowFocus:Boolean(e==null?void 0:e.keepRefetchBehavior)});return{data:i.data,error:i.error,isFetching:i.isFetching,isLoading:i.isLoading,isRefetching:i.isRefetching,isSuccess:i.isSuccess,refetch:i.refetch,status:i.status}}function Ze(e){let o=r(n=>n.signingClient),i=(0,B.useQuery)(["USE_SIGNING_CLIENT",e,o],({queryKey:[,n,s]})=>n!=null&&n.rpc?g(n):s,{refetchOnMount:Boolean(e==null?void 0:e.keepRefetchBehavior),refetchOnWindowFocus:Boolean(e==null?void 0:e.keepRefetchBehavior)});return{data:i.data,error:i.error,isFetching:i.isFetching,isLoading:i.isLoading,isRefetching:i.isRefetching,isSuccess:i.isSuccess,refetch:i.refetch,status:i.status}}var w=require("react-query");var ae=require("react");function me(){return(0,ae.useEffect)(()=>{r.setState({_supported:typeof window.keplr<"u"});let{_reconnect:e}=r.getState();return e&&m(),window.addEventListener("keplr_keystorechange",m),()=>{window.removeEventListener("keplr_keystorechange",m)}},[]),null}var en=new w.QueryClient({defaultOptions:{queries:{notifyOnChangeProps:"tracked"}}});function nn({children:e}){return c.createElement(w.QueryClientProvider,{key:"graz-query-client",client:en},c.createElement(me,null),e)}0&&(module.exports={GrazProvider,connect,createClient,createSigningClient,defineChains,disconnect,getBalances,getKeplr,mainnetChains,mainnetChainsArray,reconnect,registerKeplrNotFound,suggestChain,suggestChainAndConnect,testnetChains,testnetChainsArray,unregisterKeplrNotFound,useAccount,useActiveChain,useBalances,useCheckKeplr,useClient,useConnect,useDisconnect,useSigners,useSigningClient,useSuggestChain,useSuggestChainAndConnect});
1
+ "use strict";var Se=Object.create;var C=Object.defineProperty;var xe=Object.getOwnPropertyDescriptor;var ke=Object.getOwnPropertyNames;var Ie=Object.getPrototypeOf,De=Object.prototype.hasOwnProperty;var be=(e,t)=>{for(var o in t)C(e,o,{get:t[o],enumerable:!0})},E=(e,t,o,i)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of ke(t))!De.call(e,n)&&n!==o&&C(e,n,{get:()=>t[n],enumerable:!(i=xe(t,n))||i.enumerable});return e};var S=(e,t,o)=>(o=e!=null?Se(Ie(e)):{},E(t||!e||!e.__esModule?C(o,"default",{value:e,enumerable:!0}):o,e)),ve=e=>E(C({},"__esModule",{value:!0}),e);var fn={};be(fn,{GRAZ_PROVIDER_COMPONENT_KEY:()=>fe,GrazProvider:()=>hn,clearRecentChain:()=>b,configureDefaultChain:()=>Oe,connect:()=>p,createClient:()=>u,createSigningClient:()=>l,defineChains:()=>$e,disconnect:()=>I,getBalances:()=>D,getKeplr:()=>g,getRecentChain:()=>Me,mainnetChains:()=>Ye,mainnetChainsArray:()=>Ze,reconnect:()=>m,registerKeplrNotFound:()=>Ge,suggestChain:()=>d,suggestChainAndConnect:()=>v,testnetChains:()=>en,testnetChainsArray:()=>nn,unregisterKeplrNotFound:()=>ze,useAccount:()=>le,useActiveChain:()=>cn,useBalances:()=>tn,useCheckKeplr:()=>h,useClient:()=>un,useConnect:()=>on,useDisconnect:()=>rn,useRecentChain:()=>an,useSigners:()=>sn,useSigningClient:()=>ln,useSuggestChain:()=>mn,useSuggestChainAndConnect:()=>pn});module.exports=ve(fn);var c=S(require("react"));var W=require("@cosmjs/stargate");var _=S(require("zustand")),y=require("zustand/middleware"),x={account:null,activeChain:null,balances:null,client:null,defaultChain:null,offlineSigner:null,offlineSignerAmino:null,offlineSignerAuto:null,recentChain:null,signingClient:null,status:"disconnected",_notFoundFn:()=>null,_reconnect:!1,_supported:!1},je={name:"graz",partialize:e=>({activeChain:e.activeChain,recentChain:e.recentChain,_reconnect:e._reconnect}),version:1},s=(0,_.default)((0,y.subscribeWithSelector)((0,y.persist)(()=>x,je)));var k=require("@cosmjs/cosmwasm-stargate");async function u({rpc:e,rpcHeaders:t}){let o={url:e,headers:{...t||{}}};return await k.SigningCosmWasmClient.connect(o)}async function l(e){let{rpc:t,rpcHeaders:o,offlineSigner:i,signerOptions:n={}}=e,r={url:t,headers:{...o||{}}};return await k.SigningCosmWasmClient.connectWithSigner(r,i,n)}function g(){if(typeof window.keplr<"u")return window.keplr;throw s.getState()._notFoundFn(),new Error("Keplr is not defined")}function Ge(e){s.setState({_notFoundFn:e})}function ze(){s.setState({_notFoundFn:()=>null})}async function p(e){try{let t=g(),{defaultChain:o,recentChain:i}=s.getState(),n=e||i||o;if(!n)throw new Error("No last known connected chain, connect action requires chain info");s.setState(A=>{let Ae=A._reconnect;return A.activeChain&&A.activeChain.chainId!==n.chainId?{status:"connecting"}:Ae?{status:"reconnecting"}:{status:"connecting"}}),await t.enable(n.chainId);let r=t.getOfflineSigner(n.chainId),a=t.getOfflineSignerOnlyAmino(n.chainId),Ce=n.gas?W.GasPrice.fromString(`${n.gas.price}${n.gas.denom}`):void 0,[R,ye,de,we]=await Promise.all([t.getKey(n.chainId),u(n),t.getOfflineSignerAuto(n.chainId),l({...n,offlineSigner:r,signerOptions:{gasPrice:Ce,...(e==null?void 0:e.signerOpts)||{}}})]);return s.setState({account:R,activeChain:n,client:ye,offlineSigner:r,offlineSignerAmino:a,offlineSignerAuto:de,recentChain:n,signingClient:we,status:"connected",_reconnect:!0}),R}catch(t){throw s.getState().account===null&&s.setState({status:"disconnected"}),t}}async function I(e=!1){return s.setState(t=>({...x,recentChain:e?null:t.recentChain,_supported:t._supported})),Promise.resolve()}async function D(e){let{activeChain:t,signingClient:o}=s.getState();if(!t||!o)throw new Error("No connected account detected");return await Promise.all(t.currencies.map(async n=>o.getBalance(e,n.coinMinimalDenom)))}function m(){let{activeChain:e}=s.getState();e&&p(e)}function Oe(e){return s.setState({defaultChain:e}),e}function Me(){return s.getState().recentChain}function b(){s.setState({recentChain:null})}async function d(e){return await g().experimentalSuggestChain(e),e}async function v(e){let t=await d(e);return{account:await p(e),chain:t}}var L=require("@keplr-wallet/cosmos"),H={coinDenom:"axl",coinMinimalDenom:"uaxl",coinDecimals:6,coinGeckoId:"axelar-network",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png"},Ue={coinDenom:"usdc",coinMinimalDenom:"uusdc",coinDecimals:6,coinGeckoId:"usd-coin",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png"},qe={coinDenom:"dai",coinMinimalDenom:"dai-wei",coinDecimals:18,coinGeckoId:"dai",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png"},Ke={coinDenom:"usdt",coinMinimalDenom:"uusdt",coinDecimals:6,coinGeckoId:"tether",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png"},Te={coinDenom:"weth-wei",coinMinimalDenom:"weth",coinDecimals:18,coinGeckoId:"weth",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png"},Pe={coinDenom:"wbtc-satoshi",coinMinimalDenom:"wbtc",coinDecimals:8,coinGeckoId:"wrapped-bitcoin",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png"},F=[H,Ue,qe,Ke,Te,Pe],j={rpc:"https://rpc.axelar.strange.love",rest:"https://api.axelar.strange.love",chainId:"axelar-dojo-1",chainName:"Axelar",stakeCurrency:H,bip44:{coinType:118},bech32Config:L.Bech32Address.defaultBech32Config("axelar"),currencies:F,feeCurrencies:F};var Q=require("@keplr-wallet/cosmos"),V={coinDenom:"atom",coinMinimalDenom:"uatom",coinDecimals:6,coinGeckoId:"cosmos",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png"},J=[V],G={rpc:"https://rpc.cosmoshub.strange.love",rest:"https://api.cosmoshub.strange.love",chainId:"cosmoshub-4",chainName:"Cosmos Hub",stakeCurrency:V,bip44:{coinType:118},bech32Config:Q.Bech32Address.defaultBech32Config("cosmos"),currencies:J,feeCurrencies:J};var $=require("@keplr-wallet/cosmos"),Y={coinDenom:"CRE",coinMinimalDenom:"ucre",coinDecimals:6,coinGeckoId:"crescent",coinImageUrl:"https://raw.githubusercontent.com/crescent-network/asset/main/images/coin/CRE.png"},X=[Y],z={rpc:"https://testnet-endpoint.crescent.network/rpc/crescent",rest:"https://testnet-endpoint.crescent.network/api/crescent",chainId:"mooncat-1-1",chainName:"Crescent Testnet",bip44:{coinType:118},bech32Config:$.Bech32Address.defaultBech32Config("CRE"),currencies:X,feeCurrencies:X,stakeCurrency:Y,coinType:118};var ee=require("@keplr-wallet/cosmos"),ne={coinDenom:"juno",coinMinimalDenom:"ujuno",coinDecimals:6,coinGeckoId:"juno-network",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png"},Be={coinDenom:"neta",coinMinimalDenom:"cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr",coinDecimals:6,coinGeckoId:"neta",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png"},Ne={coinDenom:"marble",coinMinimalDenom:"cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl",coinDecimals:3,coinGeckoId:"marble",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png"},Re={coinDenom:"hope",coinMinimalDenom:"cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z",coinDecimals:6,coinGeckoId:"hope-galaxy",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png"},Ee={coinDenom:"rac",coinMinimalDenom:"cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa",coinDecimals:6,coinGeckoId:"racoon",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png"},_e={coinDenom:"block",coinMinimalDenom:"cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png"},We={coinDenom:"dhk",coinMinimalDenom:"cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49",coinDecimals:0,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png"},Fe={coinDenom:"raw",coinMinimalDenom:"cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png",coinGeckoId:"junoswap-raw-dao"},Le={coinDenom:"asvt",coinMinimalDenom:"cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png"},He={coinDenom:"hns",coinMinimalDenom:"cw20:juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hns.svg"},Je={coinDenom:"joe",coinMinimalDenom:"cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png"},Z=[ne,Be,Ne,Re,Ee,_e,We,Fe,Le,He,Je],O={rpc:"https://rpc.juno.strange.love",rest:"https://api.juno.strange.love",chainId:"juno-1",chainName:"Juno",stakeCurrency:ne,bip44:{coinType:118},bech32Config:ee.Bech32Address.defaultBech32Config("juno"),currencies:Z,feeCurrencies:Z};var te=require("@keplr-wallet/cosmos"),M={coinDenom:"junox",coinMinimalDenom:"ujunox",coinDecimals:6,coinGeckoId:"juno-network",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png"},Qe=[M],U={rpc:"https://rpc.uni.junonetwork.io",rest:"https://api.uni.junonetwork.io",chainId:"uni-3",chainName:"Juno Testnet",stakeCurrency:M,bip44:{coinType:118},bech32Config:te.Bech32Address.defaultBech32Config("juno"),currencies:Qe,feeCurrencies:[M],coinType:118};var ie=require("@keplr-wallet/cosmos"),re={coinDenom:"osmo",coinMinimalDenom:"uosmo",coinDecimals:6,coinGeckoId:"osmosis",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png"},Ve={coinDenom:"ion",coinMinimalDenom:"uion",coinDecimals:6,coinGeckoId:"ion",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png"},oe=[re,Ve],q={rpc:"https://rpc.osmosis.strange.love",rest:"https://api.osmosis.strange.love",chainId:"osmosis-1",chainName:"Osmosis",stakeCurrency:re,bip44:{coinType:118},bech32Config:ie.Bech32Address.defaultBech32Config("osmo"),currencies:oe,feeCurrencies:oe};var se=require("@keplr-wallet/cosmos"),K={coinDenom:"osmo",coinMinimalDenom:"uosmo",coinDecimals:6,coinGeckoId:"osmosis",coinImageUrl:"https://dhj8dql1kzq2v.cloudfront.net/white/osmo.png"},Xe=[K],T={rpc:"https://testnet-rpc.osmosis.zone",rest:"https://testnet-rest.osmosis.zone",chainId:"osmo-test-4",chainName:"Osmosis Testnet",stakeCurrency:K,bip44:{coinType:118},bech32Config:se.Bech32Address.defaultBech32Config("osmo"),currencies:Xe,feeCurrencies:[K],coinType:118};var ae=require("@keplr-wallet/cosmos"),me={coinDenom:"somm",coinMinimalDenom:"usomm",coinDecimals:6,coinGeckoId:"sommelier",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png"},ce=[me],P={rpc:"https://rpc.sommelier.strange.love",rest:"https://api.sommelier.strange.love",chainId:"sommelier-3",chainName:"Sommelier",stakeCurrency:me,bip44:{coinType:118},bech32Config:ae.Bech32Address.defaultBech32Config("somm"),currencies:ce,feeCurrencies:ce};function $e(e){return e}var Ye={axelar:j,cosmos:G,juno:O,osmosis:q,sommelier:P},Ze=[j,G,O,q,P],en={crescent:z,juno:U,osmosis:T},nn=[z,U,T];var f=require("@tanstack/react-query"),pe=require("react"),ue=S(require("zustand/shallow"));function h(){return s(e=>e._supported)}function le({onConnect:e,onDisconnect:t}={}){let o=s(n=>n.account),i=s(n=>n.status);return(0,pe.useEffect)(()=>s.subscribe(n=>n.status,(n,r)=>{if(n==="connected"){let a=s.getState();e==null||e({account:a.account,isReconnect:r==="reconnecting"})}n==="disconnected"&&(t==null||t())}),[e,t]),{data:o,isConnected:Boolean(o),isConnecting:i==="connecting",isDisconnected:i==="disconnected",isReconnecting:i==="reconnecting",reconnect:m,status:i}}function tn(e){let{data:t}=le(),o=e||(t==null?void 0:t.bech32Address),n=(0,f.useQuery)(["USE_BALANCES",o],({queryKey:[,r]})=>D(r),{enabled:Boolean(o)});return{data:n.data,error:n.error,isFetching:n.isFetching,isLoading:n.isLoading,isRefetching:n.isRefetching,isSuccess:n.isSuccess,refetch:n.refetch,status:n.status}}function on({onError:e,onLoading:t,onSuccess:o}={}){let n=(0,f.useMutation)(["USE_CONNECT",e,t,o],p,{onError:(r,a)=>Promise.resolve(e==null?void 0:e(r,a)),onMutate:t,onSuccess:r=>Promise.resolve(o==null?void 0:o(r))});return{connect:r=>n.mutate(r),connectAsync:r=>n.mutateAsync(r),error:n.error,isLoading:n.isLoading,isSuccess:n.isSuccess,isSupported:h(),status:n.status}}function rn({onError:e,onLoading:t,onSuccess:o}={}){let n=(0,f.useMutation)(["USE_DISCONNECT",e,t,o],I,{onError:r=>Promise.resolve(e==null?void 0:e(r,void 0)),onMutate:t,onSuccess:()=>Promise.resolve(o==null?void 0:o(void 0))});return{disconnect:r=>n.mutate(r),disconnectAsync:r=>n.mutateAsync(r),error:n.error,isLoading:n.isLoading,isSuccess:n.isSuccess,status:n.status}}function sn(){return s(e=>({signer:e.offlineSigner,signerAmino:e.offlineSignerAmino,signerAuto:e.offlineSignerAuto}),ue.default)}var B=require("@tanstack/react-query");function cn(){return s(e=>e.activeChain)}function an(){return{data:s(t=>t.recentChain),clear:b}}function mn({onError:e,onLoading:t,onSuccess:o}={}){let n=(0,B.useMutation)(["USE_SUGGEST_CHAIN",e,t,o],d,{onError:(r,a)=>Promise.resolve(e==null?void 0:e(r,a)),onMutate:t,onSuccess:r=>Promise.resolve(o==null?void 0:o(r))});return{error:n.error,isLoading:n.isLoading,isSuccess:n.isSuccess,suggest:n.mutate,suggestAsync:n.mutateAsync,status:n.status}}function pn({onError:e,onLoading:t,onSuccess:o}={}){let n=(0,B.useMutation)(["USE_SUGGEST_CHAIN_AND_CONNECT",e,t,o],v,{onError:(r,a)=>Promise.resolve(e==null?void 0:e(r,a)),onMutate:t,onSuccess:r=>Promise.resolve(o==null?void 0:o(r))});return{error:n.error,isLoading:n.isLoading,isSuccess:n.isSuccess,isSupported:h(),status:n.status,suggestAndConnect:n.mutate,suggestAndConnectAsync:n.mutateAsync}}var N=require("@tanstack/react-query");function un(e){let t=s(n=>n.client),i=(0,N.useQuery)(["USE_CLIENT",e,t],({queryKey:[,n,r]})=>n!=null&&n.rpc?u(n):r,{refetchOnMount:Boolean(e==null?void 0:e.keepRefetchBehavior),refetchOnWindowFocus:Boolean(e==null?void 0:e.keepRefetchBehavior)});return{data:i.data,error:i.error,isFetching:i.isFetching,isLoading:i.isLoading,isRefetching:i.isRefetching,isSuccess:i.isSuccess,refetch:i.refetch,status:i.status}}function ln(e){let t=s(n=>n.signingClient),i=(0,N.useQuery)(["USE_SIGNING_CLIENT",e,t],({queryKey:[,n,r]})=>n!=null&&n.rpc?l(n):r,{refetchOnMount:Boolean(e==null?void 0:e.keepRefetchBehavior),refetchOnWindowFocus:Boolean(e==null?void 0:e.keepRefetchBehavior)});return{data:i.data,error:i.error,isFetching:i.isFetching,isLoading:i.isLoading,isRefetching:i.isRefetching,isSuccess:i.isSuccess,refetch:i.refetch,status:i.status}}var w=require("@tanstack/react-query");var ge=require("react");function he(){return(0,ge.useEffect)(()=>{s.setState({_supported:typeof window.keplr<"u"});let{_reconnect:e}=s.getState();return e&&m(),window.addEventListener("keplr_keystorechange",m),()=>{window.removeEventListener("keplr_keystorechange",m)}},[]),null}var gn=new w.QueryClient({});function hn({children:e}){return c.createElement(w.QueryClientProvider,{key:fe,client:gn},c.createElement(he,null),e)}var fe="graz-query-client";0&&(module.exports={GRAZ_PROVIDER_COMPONENT_KEY,GrazProvider,clearRecentChain,configureDefaultChain,connect,createClient,createSigningClient,defineChains,disconnect,getBalances,getKeplr,getRecentChain,mainnetChains,mainnetChainsArray,reconnect,registerKeplrNotFound,suggestChain,suggestChainAndConnect,testnetChains,testnetChainsArray,unregisterKeplrNotFound,useAccount,useActiveChain,useBalances,useCheckKeplr,useClient,useConnect,useDisconnect,useRecentChain,useSigners,useSigningClient,useSuggestChain,useSuggestChainAndConnect});
package/dist/index.mjs CHANGED
@@ -1 +1 @@
1
- import{a as c}from"./chunk-L7O257ZE.mjs";import{GasPrice as Z}from"@cosmjs/stargate";import X from"zustand";import{persist as $,subscribeWithSelector as Y}from"zustand/middleware";var y={account:null,activeChain:null,balances:null,client:null,offlineSigner:null,offlineSignerAmino:null,offlineSignerAuto:null,signingClient:null,status:"disconnected",_notFoundFn:()=>null,_reconnect:!1,_supported:!1},r=X(Y($(()=>({...y}),{name:"graz",partialize:e=>({activeChain:e.activeChain,_reconnect:e._reconnect}),version:1})));function u(){if(typeof window.keplr<"u")return window.keplr;throw r.getState()._notFoundFn(),new Error("Keplr is not defined")}function Te(e){r.setState({_notFoundFn:e})}function Ne(){r.setState({_notFoundFn:()=>null})}import{SigningCosmWasmClient as v}from"@cosmjs/cosmwasm-stargate";async function l({rpc:e,rpcHeaders:o}){let t={url:e,headers:{...o||{}}};return await v.connect(t)}async function g(e){let{rpc:o,rpcHeaders:t,offlineSigner:i,signerOptions:n={}}=e,s={url:o,headers:{...t||{}}};return await v.connectWithSigner(s,i,n)}async function p(e,o={}){try{let t=u();r.setState(f=>{let V=f._reconnect;return f.activeChain&&f.activeChain.chainId!==e.chainId?{status:"connecting"}:V?{status:"reconnecting"}:{status:"connecting"}}),await t.enable(e.chainId);let i=t.getOfflineSigner(e.chainId),n=t.getOfflineSignerOnlyAmino(e.chainId),s=e.gas?Z.fromString(`${e.gas.price}${e.gas.denom}`):void 0,[a,H,Q,J]=await Promise.all([t.getKey(e.chainId),l(e),t.getOfflineSignerAuto(e.chainId),g({...e,offlineSigner:i,signerOptions:{gasPrice:s,...o}})]);return r.setState({account:a,activeChain:e,client:H,offlineSigner:i,offlineSignerAmino:n,offlineSignerAuto:Q,signingClient:J,status:"connected",_reconnect:!0}),a}catch(t){throw r.getState().account===null&&r.setState({status:"disconnected"}),t}}async function b(){return r.setState(e=>({...y,_supported:e._supported})),Promise.resolve()}async function j(e){let{activeChain:o,signingClient:t}=r.getState();if(!o||!t)throw new Error("No connected account detected");return await Promise.all(o.currencies.map(async n=>t.getBalance(e,n.coinMinimalDenom)))}function m(){let{activeChain:e}=r.getState();e&&p(e)}async function C(e){return await u().experimentalSuggestChain(e),e}async function z(e){let o=await C(e);return{account:await p(e),chain:o}}import{Bech32Address as ee}from"@keplr-wallet/cosmos";var O={coinDenom:"axl",coinMinimalDenom:"uaxl",coinDecimals:6,coinGeckoId:"axelar-network",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png"},ne={coinDenom:"usdc",coinMinimalDenom:"uusdc",coinDecimals:6,coinGeckoId:"usd-coin",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png"},te={coinDenom:"dai",coinMinimalDenom:"dai-wei",coinDecimals:18,coinGeckoId:"dai",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png"},oe={coinDenom:"usdt",coinMinimalDenom:"uusdt",coinDecimals:6,coinGeckoId:"tether",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png"},ie={coinDenom:"weth-wei",coinMinimalDenom:"weth",coinDecimals:18,coinGeckoId:"weth",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png"},re={coinDenom:"wbtc-satoshi",coinMinimalDenom:"wbtc",coinDecimals:8,coinGeckoId:"wrapped-bitcoin",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png"},G=[O,ne,te,oe,ie,re],d={rpc:"https://rpc.axelar.strange.love",rest:"https://api.axelar.strange.love",chainId:"axelar-dojo-1",chainName:"Axelar",stakeCurrency:O,bip44:{coinType:118},bech32Config:ee.defaultBech32Config("axelar"),currencies:G,feeCurrencies:G};import{Bech32Address as se}from"@keplr-wallet/cosmos";var q={coinDenom:"atom",coinMinimalDenom:"uatom",coinDecimals:6,coinGeckoId:"cosmos",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png"},M=[q],w={rpc:"https://rpc.cosmoshub.strange.love",rest:"https://api.cosmoshub.strange.love",chainId:"cosmoshub-4",chainName:"Cosmos Hub",stakeCurrency:q,bip44:{coinType:118},bech32Config:se.defaultBech32Config("cosmos"),currencies:M,feeCurrencies:M};import{Bech32Address as ce}from"@keplr-wallet/cosmos";var K={coinDenom:"CRE",coinMinimalDenom:"ucre",coinDecimals:6,coinGeckoId:"crescent",coinImageUrl:"https://raw.githubusercontent.com/crescent-network/asset/main/images/coin/CRE.png"},U=[K],A={rpc:"https://testnet-endpoint.crescent.network/rpc/crescent",rest:"https://testnet-endpoint.crescent.network/api/crescent",chainId:"mooncat-1-1",chainName:"Crescent Testnet",bip44:{coinType:118},bech32Config:ce.defaultBech32Config("CRE"),currencies:U,feeCurrencies:U,stakeCurrency:K,coinType:118};import{Bech32Address as ae}from"@keplr-wallet/cosmos";var T={coinDenom:"juno",coinMinimalDenom:"ujuno",coinDecimals:6,coinGeckoId:"juno-network",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png"},me={coinDenom:"neta",coinMinimalDenom:"cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr",coinDecimals:6,coinGeckoId:"neta",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png"},pe={coinDenom:"marble",coinMinimalDenom:"cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl",coinDecimals:3,coinGeckoId:"marble",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png"},ue={coinDenom:"hope",coinMinimalDenom:"cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z",coinDecimals:6,coinGeckoId:"hope-galaxy",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png"},le={coinDenom:"rac",coinMinimalDenom:"cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa",coinDecimals:6,coinGeckoId:"racoon",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png"},ge={coinDenom:"block",coinMinimalDenom:"cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png"},he={coinDenom:"dhk",coinMinimalDenom:"cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49",coinDecimals:0,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png"},fe={coinDenom:"raw",coinMinimalDenom:"cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png",coinGeckoId:"junoswap-raw-dao"},ye={coinDenom:"asvt",coinMinimalDenom:"cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png"},Ce={coinDenom:"hns",coinMinimalDenom:"cw20:juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hns.svg"},de={coinDenom:"joe",coinMinimalDenom:"cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png"},B=[T,me,pe,ue,le,ge,he,fe,ye,Ce,de],S={rpc:"https://rpc.juno.strange.love",rest:"https://api.juno.strange.love",chainId:"juno-1",chainName:"Juno",stakeCurrency:T,bip44:{coinType:118},bech32Config:ae.defaultBech32Config("juno"),currencies:B,feeCurrencies:B};import{Bech32Address as we}from"@keplr-wallet/cosmos";var P={coinDenom:"osmo",coinMinimalDenom:"uosmo",coinDecimals:6,coinGeckoId:"osmosis",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png"},Ae={coinDenom:"ion",coinMinimalDenom:"uion",coinDecimals:6,coinGeckoId:"ion",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png"},N=[P,Ae],x={rpc:"https://rpc.osmosis.strange.love",rest:"https://api.osmosis.strange.love",chainId:"osmosis-1",chainName:"Osmosis",stakeCurrency:P,bip44:{coinType:118},bech32Config:we.defaultBech32Config("osmo"),currencies:N,feeCurrencies:N};import{Bech32Address as Se}from"@keplr-wallet/cosmos";var k={coinDenom:"osmo",coinMinimalDenom:"uosmo",coinDecimals:6,coinGeckoId:"osmosis",coinImageUrl:"https://dhj8dql1kzq2v.cloudfront.net/white/osmo.png"},xe=[k],I={rpc:"https://testnet-rpc.osmosis.zone",rest:"https://testnet-rest.osmosis.zone",chainId:"osmo-test-4",chainName:"Osmosis Testnet",stakeCurrency:k,bip44:{coinType:118},bech32Config:Se.defaultBech32Config("osmo"),currencies:xe,feeCurrencies:[k],coinType:118};import{Bech32Address as ke}from"@keplr-wallet/cosmos";var E={coinDenom:"somm",coinMinimalDenom:"usomm",coinDecimals:6,coinGeckoId:"sommelier",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png"},R=[E],D={rpc:"https://rpc.sommelier.strange.love",rest:"https://api.sommelier.strange.love",chainId:"sommelier-3",chainName:"Sommelier",stakeCurrency:E,bip44:{coinType:118},bech32Config:ke.defaultBech32Config("somm"),currencies:R,feeCurrencies:R};function dn(e){return e}var wn={axelar:d,cosmos:w,juno:S,osmosis:x,sommelier:D},An=[d,w,S,x,D],Sn={crescent:A,osmosis:I},xn=[A,I];import{useEffect as Ie}from"react";import{useMutation as W,useQuery as De}from"react-query";import ve from"zustand/shallow";function h(){return r(e=>e._supported)}function be({onConnect:e,onDisconnect:o}={}){let t=r(n=>n.account),i=r(n=>n.status);return Ie(()=>r.subscribe(n=>n.status,(n,s)=>{if(n==="connected"){let a=r.getState();e==null||e({account:a.account,isReconnect:s==="reconnecting"})}n==="disconnected"&&(o==null||o())}),[e,o]),{data:t,isConnected:Boolean(t),isConnecting:i==="connecting",isDisconnected:i==="disconnected",isReconnecting:i==="reconnecting",reconnect:m,status:i}}function Mn(e){let{data:o}=be(),t=e||(o==null?void 0:o.bech32Address),n=De(["USE_BALANCES",t],({queryKey:[,s]})=>j(s),{enabled:Boolean(t)});return{data:n.data,error:n.error,isFetching:n.isFetching,isLoading:n.isLoading,isRefetching:n.isRefetching,isSuccess:n.isSuccess,refetch:n.refetch,status:n.status}}function qn({onError:e,onLoading:o,onSuccess:t}={}){let n=W(["USE_CONNECT",e,o,t],p,{onError:(s,a)=>Promise.resolve(e==null?void 0:e(s,a)),onMutate:o,onSuccess:s=>Promise.resolve(t==null?void 0:t(s))});return{connect:n.mutate,connectAsync:n.mutateAsync,error:n.error,isLoading:n.isLoading,isSuccess:n.isSuccess,isSupported:h(),status:n.status}}function Un({onError:e,onLoading:o,onSuccess:t}={}){let n=W(["USE_DISCONNECT",e,o,t],b,{onError:s=>Promise.resolve(e==null?void 0:e(s,void 0)),onMutate:o,onSuccess:()=>Promise.resolve(t==null?void 0:t(void 0))});return{disconnect:()=>n.mutate(void 0),disconnectAsync:()=>n.mutateAsync(void 0),error:n.error,isLoading:n.isLoading,isSuccess:n.isSuccess,status:n.status}}function Kn(){return r(e=>({signer:e.offlineSigner,signerAmino:e.offlineSignerAmino,signerAuto:e.offlineSignerAuto}),ve)}import{useMutation as _}from"react-query";function En(){return r(e=>e.activeChain)}function Wn({onError:e,onLoading:o,onSuccess:t}={}){let n=_(["USE_SUGGEST_CHAIN",e,o,t],C,{onError:(s,a)=>Promise.resolve(e==null?void 0:e(s,a)),onMutate:o,onSuccess:s=>Promise.resolve(t==null?void 0:t(s))});return{error:n.error,isLoading:n.isLoading,isSuccess:n.isSuccess,suggest:n.mutate,suggestAsync:n.mutateAsync,status:n.status}}function _n({onError:e,onLoading:o,onSuccess:t}={}){let n=_(["USE_SUGGEST_CHAIN_AND_CONNECT",e,o,t],z,{onError:(s,a)=>Promise.resolve(e==null?void 0:e(s,a)),onMutate:o,onSuccess:s=>Promise.resolve(t==null?void 0:t(s))});return{error:n.error,isLoading:n.isLoading,isSuccess:n.isSuccess,isSupported:h(),status:n.status,suggestAndConnect:n.mutate,suggestAndConnectAsync:n.mutateAsync}}import{useQuery as F}from"react-query";function Jn(e){let o=r(n=>n.client),i=F(["USE_CLIENT",e,o],({queryKey:[,n,s]})=>n!=null&&n.rpc?l(n):s,{refetchOnMount:Boolean(e==null?void 0:e.keepRefetchBehavior),refetchOnWindowFocus:Boolean(e==null?void 0:e.keepRefetchBehavior)});return{data:i.data,error:i.error,isFetching:i.isFetching,isLoading:i.isLoading,isRefetching:i.isRefetching,isSuccess:i.isSuccess,refetch:i.refetch,status:i.status}}function Vn(e){let o=r(n=>n.signingClient),i=F(["USE_SIGNING_CLIENT",e,o],({queryKey:[,n,s]})=>n!=null&&n.rpc?g(n):s,{refetchOnMount:Boolean(e==null?void 0:e.keepRefetchBehavior),refetchOnWindowFocus:Boolean(e==null?void 0:e.keepRefetchBehavior)});return{data:i.data,error:i.error,isFetching:i.isFetching,isLoading:i.isLoading,isRefetching:i.isRefetching,isSuccess:i.isSuccess,refetch:i.refetch,status:i.status}}import{QueryClient as ze,QueryClientProvider as Ge}from"react-query";import{useEffect as je}from"react";function L(){return je(()=>{r.setState({_supported:typeof window.keplr<"u"});let{_reconnect:e}=r.getState();return e&&m(),window.addEventListener("keplr_keystorechange",m),()=>{window.removeEventListener("keplr_keystorechange",m)}},[]),null}var Oe=new ze({defaultOptions:{queries:{notifyOnChangeProps:"tracked"}}});function ot({children:e}){return c.createElement(Ge,{key:"graz-query-client",client:Oe},c.createElement(L,null),e)}export{ot as GrazProvider,p as connect,l as createClient,g as createSigningClient,dn as defineChains,b as disconnect,j as getBalances,u as getKeplr,wn as mainnetChains,An as mainnetChainsArray,m as reconnect,Te as registerKeplrNotFound,C as suggestChain,z as suggestChainAndConnect,Sn as testnetChains,xn as testnetChainsArray,Ne as unregisterKeplrNotFound,be as useAccount,En as useActiveChain,Mn as useBalances,h as useCheckKeplr,Jn as useClient,qn as useConnect,Un as useDisconnect,Kn as useSigners,Vn as useSigningClient,Wn as useSuggestChain,_n as useSuggestChainAndConnect};
1
+ import{a as c}from"./chunk-L7O257ZE.mjs";import{GasPrice as re}from"@cosmjs/stargate";import ne from"zustand";import{persist as te,subscribeWithSelector as oe}from"zustand/middleware";var C={account:null,activeChain:null,balances:null,client:null,defaultChain:null,offlineSigner:null,offlineSignerAmino:null,offlineSignerAuto:null,recentChain:null,signingClient:null,status:"disconnected",_notFoundFn:()=>null,_reconnect:!1,_supported:!1},ie={name:"graz",partialize:e=>({activeChain:e.activeChain,recentChain:e.recentChain,_reconnect:e._reconnect}),version:1},r=ne(oe(te(()=>C,ie)));import{SigningCosmWasmClient as G}from"@cosmjs/cosmwasm-stargate";async function u({rpc:e,rpcHeaders:t}){let o={url:e,headers:{...t||{}}};return await G.connect(o)}async function l(e){let{rpc:t,rpcHeaders:o,offlineSigner:s,signerOptions:n={}}=e,i={url:t,headers:{...o||{}}};return await G.connectWithSigner(i,s,n)}function g(){if(typeof window.keplr<"u")return window.keplr;throw r.getState()._notFoundFn(),new Error("Keplr is not defined")}function Qe(e){r.setState({_notFoundFn:e})}function Ve(){r.setState({_notFoundFn:()=>null})}async function p(e){try{let t=g(),{defaultChain:o,recentChain:s}=r.getState(),n=e||s||o;if(!n)throw new Error("No last known connected chain, connect action requires chain info");r.setState(f=>{let ee=f._reconnect;return f.activeChain&&f.activeChain.chainId!==n.chainId?{status:"connecting"}:ee?{status:"reconnecting"}:{status:"connecting"}}),await t.enable(n.chainId);let i=t.getOfflineSigner(n.chainId),a=t.getOfflineSignerOnlyAmino(n.chainId),X=n.gas?re.fromString(`${n.gas.price}${n.gas.denom}`):void 0,[j,$,Y,Z]=await Promise.all([t.getKey(n.chainId),u(n),t.getOfflineSignerAuto(n.chainId),l({...n,offlineSigner:i,signerOptions:{gasPrice:X,...(e==null?void 0:e.signerOpts)||{}}})]);return r.setState({account:j,activeChain:n,client:$,offlineSigner:i,offlineSignerAmino:a,offlineSignerAuto:Y,recentChain:n,signingClient:Z,status:"connected",_reconnect:!0}),j}catch(t){throw r.getState().account===null&&r.setState({status:"disconnected"}),t}}async function z(e=!1){return r.setState(t=>({...C,recentChain:e?null:t.recentChain,_supported:t._supported})),Promise.resolve()}async function O(e){let{activeChain:t,signingClient:o}=r.getState();if(!t||!o)throw new Error("No connected account detected");return await Promise.all(t.currencies.map(async n=>o.getBalance(e,n.coinMinimalDenom)))}function m(){let{activeChain:e}=r.getState();e&&p(e)}function sn(e){return r.setState({defaultChain:e}),e}function cn(){return r.getState().recentChain}function M(){r.setState({recentChain:null})}async function y(e){return await g().experimentalSuggestChain(e),e}async function U(e){let t=await y(e);return{account:await p(e),chain:t}}import{Bech32Address as se}from"@keplr-wallet/cosmos";var K={coinDenom:"axl",coinMinimalDenom:"uaxl",coinDecimals:6,coinGeckoId:"axelar-network",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png"},ce={coinDenom:"usdc",coinMinimalDenom:"uusdc",coinDecimals:6,coinGeckoId:"usd-coin",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png"},ae={coinDenom:"dai",coinMinimalDenom:"dai-wei",coinDecimals:18,coinGeckoId:"dai",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png"},me={coinDenom:"usdt",coinMinimalDenom:"uusdt",coinDecimals:6,coinGeckoId:"tether",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png"},pe={coinDenom:"weth-wei",coinMinimalDenom:"weth",coinDecimals:18,coinGeckoId:"weth",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png"},ue={coinDenom:"wbtc-satoshi",coinMinimalDenom:"wbtc",coinDecimals:8,coinGeckoId:"wrapped-bitcoin",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png"},q=[K,ce,ae,me,pe,ue],d={rpc:"https://rpc.axelar.strange.love",rest:"https://api.axelar.strange.love",chainId:"axelar-dojo-1",chainName:"Axelar",stakeCurrency:K,bip44:{coinType:118},bech32Config:se.defaultBech32Config("axelar"),currencies:q,feeCurrencies:q};import{Bech32Address as le}from"@keplr-wallet/cosmos";var P={coinDenom:"atom",coinMinimalDenom:"uatom",coinDecimals:6,coinGeckoId:"cosmos",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png"},T=[P],w={rpc:"https://rpc.cosmoshub.strange.love",rest:"https://api.cosmoshub.strange.love",chainId:"cosmoshub-4",chainName:"Cosmos Hub",stakeCurrency:P,bip44:{coinType:118},bech32Config:le.defaultBech32Config("cosmos"),currencies:T,feeCurrencies:T};import{Bech32Address as ge}from"@keplr-wallet/cosmos";var N={coinDenom:"CRE",coinMinimalDenom:"ucre",coinDecimals:6,coinGeckoId:"crescent",coinImageUrl:"https://raw.githubusercontent.com/crescent-network/asset/main/images/coin/CRE.png"},B=[N],A={rpc:"https://testnet-endpoint.crescent.network/rpc/crescent",rest:"https://testnet-endpoint.crescent.network/api/crescent",chainId:"mooncat-1-1",chainName:"Crescent Testnet",bip44:{coinType:118},bech32Config:ge.defaultBech32Config("CRE"),currencies:B,feeCurrencies:B,stakeCurrency:N,coinType:118};import{Bech32Address as he}from"@keplr-wallet/cosmos";var E={coinDenom:"juno",coinMinimalDenom:"ujuno",coinDecimals:6,coinGeckoId:"juno-network",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png"},fe={coinDenom:"neta",coinMinimalDenom:"cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr",coinDecimals:6,coinGeckoId:"neta",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png"},Ce={coinDenom:"marble",coinMinimalDenom:"cw20:juno1g2g7ucurum66d42g8k5twk34yegdq8c82858gz0tq2fc75zy7khssgnhjl",coinDecimals:3,coinGeckoId:"marble",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png"},ye={coinDenom:"hope",coinMinimalDenom:"cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z",coinDecimals:6,coinGeckoId:"hope-galaxy",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png"},de={coinDenom:"rac",coinMinimalDenom:"cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa",coinDecimals:6,coinGeckoId:"racoon",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png"},we={coinDenom:"block",coinMinimalDenom:"cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png"},Ae={coinDenom:"dhk",coinMinimalDenom:"cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49",coinDecimals:0,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png"},Se={coinDenom:"raw",coinMinimalDenom:"cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png",coinGeckoId:"junoswap-raw-dao"},xe={coinDenom:"asvt",coinMinimalDenom:"cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png"},ke={coinDenom:"hns",coinMinimalDenom:"cw20:juno1ur4jx0sxchdevahep7fwq28yk4tqsrhshdtylz46yka3uf6kky5qllqp4k",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hns.svg"},Ie={coinDenom:"joe",coinMinimalDenom:"cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3",coinDecimals:6,coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png"},R=[E,fe,Ce,ye,de,we,Ae,Se,xe,ke,Ie],S={rpc:"https://rpc.juno.strange.love",rest:"https://api.juno.strange.love",chainId:"juno-1",chainName:"Juno",stakeCurrency:E,bip44:{coinType:118},bech32Config:he.defaultBech32Config("juno"),currencies:R,feeCurrencies:R};import{Bech32Address as De}from"@keplr-wallet/cosmos";var x={coinDenom:"junox",coinMinimalDenom:"ujunox",coinDecimals:6,coinGeckoId:"juno-network",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png"},be=[x],k={rpc:"https://rpc.uni.junonetwork.io",rest:"https://api.uni.junonetwork.io",chainId:"uni-3",chainName:"Juno Testnet",stakeCurrency:x,bip44:{coinType:118},bech32Config:De.defaultBech32Config("juno"),currencies:be,feeCurrencies:[x],coinType:118};import{Bech32Address as ve}from"@keplr-wallet/cosmos";var W={coinDenom:"osmo",coinMinimalDenom:"uosmo",coinDecimals:6,coinGeckoId:"osmosis",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png"},je={coinDenom:"ion",coinMinimalDenom:"uion",coinDecimals:6,coinGeckoId:"ion",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png"},_=[W,je],I={rpc:"https://rpc.osmosis.strange.love",rest:"https://api.osmosis.strange.love",chainId:"osmosis-1",chainName:"Osmosis",stakeCurrency:W,bip44:{coinType:118},bech32Config:ve.defaultBech32Config("osmo"),currencies:_,feeCurrencies:_};import{Bech32Address as Ge}from"@keplr-wallet/cosmos";var D={coinDenom:"osmo",coinMinimalDenom:"uosmo",coinDecimals:6,coinGeckoId:"osmosis",coinImageUrl:"https://dhj8dql1kzq2v.cloudfront.net/white/osmo.png"},ze=[D],b={rpc:"https://testnet-rpc.osmosis.zone",rest:"https://testnet-rest.osmosis.zone",chainId:"osmo-test-4",chainName:"Osmosis Testnet",stakeCurrency:D,bip44:{coinType:118},bech32Config:Ge.defaultBech32Config("osmo"),currencies:ze,feeCurrencies:[D],coinType:118};import{Bech32Address as Oe}from"@keplr-wallet/cosmos";var L={coinDenom:"somm",coinMinimalDenom:"usomm",coinDecimals:6,coinGeckoId:"sommelier",coinImageUrl:"https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png"},F=[L],v={rpc:"https://rpc.sommelier.strange.love",rest:"https://api.sommelier.strange.love",chainId:"sommelier-3",chainName:"Sommelier",stakeCurrency:L,bip44:{coinType:118},bech32Config:Oe.defaultBech32Config("somm"),currencies:F,feeCurrencies:F};function Un(e){return e}var qn={axelar:d,cosmos:w,juno:S,osmosis:I,sommelier:v},Kn=[d,w,S,I,v],Tn={crescent:A,juno:k,osmosis:b},Pn=[A,k,b];import{useMutation as H,useQuery as Me}from"@tanstack/react-query";import{useEffect as Ue}from"react";import qe from"zustand/shallow";function h(){return r(e=>e._supported)}function Ke({onConnect:e,onDisconnect:t}={}){let o=r(n=>n.account),s=r(n=>n.status);return Ue(()=>r.subscribe(n=>n.status,(n,i)=>{if(n==="connected"){let a=r.getState();e==null||e({account:a.account,isReconnect:i==="reconnecting"})}n==="disconnected"&&(t==null||t())}),[e,t]),{data:o,isConnected:Boolean(o),isConnecting:s==="connecting",isDisconnected:s==="disconnected",isReconnecting:s==="reconnecting",reconnect:m,status:s}}function Jn(e){let{data:t}=Ke(),o=e||(t==null?void 0:t.bech32Address),n=Me(["USE_BALANCES",o],({queryKey:[,i]})=>O(i),{enabled:Boolean(o)});return{data:n.data,error:n.error,isFetching:n.isFetching,isLoading:n.isLoading,isRefetching:n.isRefetching,isSuccess:n.isSuccess,refetch:n.refetch,status:n.status}}function Qn({onError:e,onLoading:t,onSuccess:o}={}){let n=H(["USE_CONNECT",e,t,o],p,{onError:(i,a)=>Promise.resolve(e==null?void 0:e(i,a)),onMutate:t,onSuccess:i=>Promise.resolve(o==null?void 0:o(i))});return{connect:i=>n.mutate(i),connectAsync:i=>n.mutateAsync(i),error:n.error,isLoading:n.isLoading,isSuccess:n.isSuccess,isSupported:h(),status:n.status}}function Vn({onError:e,onLoading:t,onSuccess:o}={}){let n=H(["USE_DISCONNECT",e,t,o],z,{onError:i=>Promise.resolve(e==null?void 0:e(i,void 0)),onMutate:t,onSuccess:()=>Promise.resolve(o==null?void 0:o(void 0))});return{disconnect:i=>n.mutate(i),disconnectAsync:i=>n.mutateAsync(i),error:n.error,isLoading:n.isLoading,isSuccess:n.isSuccess,status:n.status}}function Xn(){return r(e=>({signer:e.offlineSigner,signerAmino:e.offlineSignerAmino,signerAuto:e.offlineSignerAuto}),qe)}import{useMutation as J}from"@tanstack/react-query";function tt(){return r(e=>e.activeChain)}function ot(){return{data:r(t=>t.recentChain),clear:M}}function it({onError:e,onLoading:t,onSuccess:o}={}){let n=J(["USE_SUGGEST_CHAIN",e,t,o],y,{onError:(i,a)=>Promise.resolve(e==null?void 0:e(i,a)),onMutate:t,onSuccess:i=>Promise.resolve(o==null?void 0:o(i))});return{error:n.error,isLoading:n.isLoading,isSuccess:n.isSuccess,suggest:n.mutate,suggestAsync:n.mutateAsync,status:n.status}}function rt({onError:e,onLoading:t,onSuccess:o}={}){let n=J(["USE_SUGGEST_CHAIN_AND_CONNECT",e,t,o],U,{onError:(i,a)=>Promise.resolve(e==null?void 0:e(i,a)),onMutate:t,onSuccess:i=>Promise.resolve(o==null?void 0:o(i))});return{error:n.error,isLoading:n.isLoading,isSuccess:n.isSuccess,isSupported:h(),status:n.status,suggestAndConnect:n.mutate,suggestAndConnectAsync:n.mutateAsync}}import{useQuery as Q}from"@tanstack/react-query";function pt(e){let t=r(n=>n.client),s=Q(["USE_CLIENT",e,t],({queryKey:[,n,i]})=>n!=null&&n.rpc?u(n):i,{refetchOnMount:Boolean(e==null?void 0:e.keepRefetchBehavior),refetchOnWindowFocus:Boolean(e==null?void 0:e.keepRefetchBehavior)});return{data:s.data,error:s.error,isFetching:s.isFetching,isLoading:s.isLoading,isRefetching:s.isRefetching,isSuccess:s.isSuccess,refetch:s.refetch,status:s.status}}function ut(e){let t=r(n=>n.signingClient),s=Q(["USE_SIGNING_CLIENT",e,t],({queryKey:[,n,i]})=>n!=null&&n.rpc?l(n):i,{refetchOnMount:Boolean(e==null?void 0:e.keepRefetchBehavior),refetchOnWindowFocus:Boolean(e==null?void 0:e.keepRefetchBehavior)});return{data:s.data,error:s.error,isFetching:s.isFetching,isLoading:s.isLoading,isRefetching:s.isRefetching,isSuccess:s.isSuccess,refetch:s.refetch,status:s.status}}import{QueryClient as Pe,QueryClientProvider as Be}from"@tanstack/react-query";import{useEffect as Te}from"react";function V(){return Te(()=>{r.setState({_supported:typeof window.keplr<"u"});let{_reconnect:e}=r.getState();return e&&m(),window.addEventListener("keplr_keystorechange",m),()=>{window.removeEventListener("keplr_keystorechange",m)}},[]),null}var Ne=new Pe({});function wt({children:e}){return c.createElement(Be,{key:Re,client:Ne},c.createElement(V,null),e)}var Re="graz-query-client";export{Re as GRAZ_PROVIDER_COMPONENT_KEY,wt as GrazProvider,M as clearRecentChain,sn as configureDefaultChain,p as connect,u as createClient,l as createSigningClient,Un as defineChains,z as disconnect,O as getBalances,g as getKeplr,cn as getRecentChain,qn as mainnetChains,Kn as mainnetChainsArray,m as reconnect,Qe as registerKeplrNotFound,y as suggestChain,U as suggestChainAndConnect,Tn as testnetChains,Pn as testnetChainsArray,Ve as unregisterKeplrNotFound,Ke as useAccount,tt as useActiveChain,Jn as useBalances,h as useCheckKeplr,pt as useClient,Qn as useConnect,Vn as useDisconnect,ot as useRecentChain,Xn as useSigners,ut as useSigningClient,it as useSuggestChain,rt as useSuggestChainAndConnect};
@@ -0,0 +1,2 @@
1
+ export * from '@keplr-wallet/cosmos';
2
+ export * from '@keplr-wallet/types';
package/dist/keplr.js ADDED
@@ -0,0 +1 @@
1
+ "use strict";var a=Object.defineProperty;var b=Object.getOwnPropertyDescriptor;var c=Object.getOwnPropertyNames;var d=Object.prototype.hasOwnProperty;var t=(f,e,p,x)=>{if(e&&typeof e=="object"||typeof e=="function")for(let m of c(e))!d.call(f,m)&&m!==p&&a(f,m,{get:()=>e[m],enumerable:!(x=b(e,m))||x.enumerable});return f},r=(f,e,p)=>(t(f,e,"default"),p&&t(p,e,"default"));var g=f=>t(a({},"__esModule",{value:!0}),f);var o={};module.exports=g(o);r(o,require("@keplr-wallet/cosmos"),module.exports);r(o,require("@keplr-wallet/types"),module.exports);
package/dist/keplr.mjs ADDED
@@ -0,0 +1 @@
1
+ import"./chunk-L7O257ZE.mjs";export*from"@keplr-wallet/cosmos";export*from"@keplr-wallet/types";
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "graz",
3
3
  "description": "React hooks for Cosmos",
4
- "version": "0.0.7",
5
- "author": "Griko Nibras <griko@stranvgelove.ventures>",
4
+ "version": "0.0.10",
5
+ "author": "Griko Nibras <griko@strangelove.ventures>",
6
6
  "repository": "https://github.com/strangelove-ventures/graz.git",
7
7
  "homepage": "https://github.com/strangelove-ventures/graz",
8
8
  "bugs": "https://github.com/strangelove-ventures/graz/issues",
@@ -26,8 +26,8 @@
26
26
  "@cosmjs/stargate": "^0.28.10",
27
27
  "@keplr-wallet/cosmos": "^0.10.10",
28
28
  "@keplr-wallet/types": "^0.10.10",
29
- "react-query": "^3",
30
- "zustand": "4.0.0-rc.1"
29
+ "@tanstack/react-query": "^4.0.10",
30
+ "zustand": "^4.0.0-rc.4"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/node": "^16",