juno-network 0.10.0 → 0.11.0

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.
@@ -1,5 +1,6 @@
1
- import { OfflineSigner, GeneratedType, Registry } from "@cosmjs/proto-signing";
1
+ import { GeneratedType, Registry, OfflineSigner } from "@cosmjs/proto-signing";
2
2
  import { AminoTypes, SigningStargateClient } from "@cosmjs/stargate";
3
+ import { HttpEndpoint } from "@cosmjs/tendermint-rpc";
3
4
  export declare const cosmwasmAminoConverters: {
4
5
  "/cosmwasm.wasm.v1.MsgStoreCode": {
5
6
  aminoType: string;
@@ -114,7 +115,7 @@ export declare const getSigningCosmwasmClientOptions: ({ defaultTypes }?: {
114
115
  aminoTypes: AminoTypes;
115
116
  };
116
117
  export declare const getSigningCosmwasmClient: ({ rpcEndpoint, signer, defaultTypes }: {
117
- rpcEndpoint: string;
118
+ rpcEndpoint: string | HttpEndpoint;
118
119
  signer: OfflineSigner;
119
120
  defaultTypes?: ReadonlyArray<[string, GeneratedType]>;
120
121
  }) => Promise<SigningStargateClient>;
@@ -1,5 +1,6 @@
1
+ import { HttpEndpoint } from "@cosmjs/tendermint-rpc";
1
2
  export declare const createRPCQueryClient: ({ rpcEndpoint }: {
2
- rpcEndpoint: string;
3
+ rpcEndpoint: string | HttpEndpoint;
3
4
  }) => Promise<{
4
5
  cosmos: {
5
6
  authz: {