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.
- package/main/codegen/helpers.js +4 -4
- package/module/codegen/helpers.js +4 -4
- package/module/codegen/index.js +1 -1
- package/package.json +8 -8
- package/src/codegen/helpers.ts +7 -5
- package/src/codegen/index.ts +1 -1
- package/types/codegen/JunoSwap.client.d.ts +1 -1
- package/types/codegen/JunoSwap.types.d.ts +1 -1
- package/types/codegen/contracts.d.ts +1 -1
- package/types/codegen/cosmos/bundle.d.ts +331 -3694
- package/types/codegen/cosmos/client.d.ts +3 -2
- package/types/codegen/cosmos/rpc.query.d.ts +2 -1
- package/types/codegen/cosmos_proto/bundle.d.ts +2 -9
- package/types/codegen/cosmwasm/bundle.d.ts +56 -488
- package/types/codegen/cosmwasm/client.d.ts +3 -2
- package/types/codegen/cosmwasm/rpc.query.d.ts +2 -1
- package/types/codegen/google/bundle.d.ts +31 -1256
- package/types/codegen/helpers.d.ts +5 -5
- package/types/codegen/ibc/bundle.d.ts +169 -1905
- package/types/codegen/ibc/client.d.ts +3 -2
- package/types/codegen/ibc/rpc.query.d.ts +2 -1
- package/types/codegen/ics23/bundle.d.ts +13 -482
- package/types/codegen/index.d.ts +1 -1
- package/types/codegen/juno/bundle.d.ts +10 -38
- package/types/codegen/juno/rpc.query.d.ts +2 -1
- package/types/codegen/tendermint/bundle.d.ts +85 -1674
@@ -1,8 +1,8 @@
|
|
1
1
|
/**
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
2
|
+
* This file and any referenced files were automatically generated by @osmonauts/telescope@0.80.0
|
3
|
+
* DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
|
4
|
+
* and run the transpile command or yarn proto command to regenerate this bundle.
|
5
|
+
*/
|
6
6
|
import Long from 'long';
|
7
7
|
export { Long };
|
8
8
|
export declare function bytesFromBase64(b64: string): Uint8Array;
|
@@ -52,7 +52,7 @@ export interface Params {
|
|
52
52
|
}
|
53
53
|
export declare const setPaginationParams: (options: Params, pagination?: PageRequest) => Params;
|
54
54
|
declare type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
55
|
-
export declare type DeepPartial<T> = T extends Builtin ? T : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
55
|
+
export declare type DeepPartial<T> = T extends Builtin ? T : T extends Long ? string | number | Long : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
56
56
|
[K in keyof T]?: DeepPartial<T[K]>;
|
57
57
|
} : Partial<T>;
|
58
58
|
declare type KeysOfUnion<T> = T extends T ? keyof T : never;
|