coreum-js 2.16.3 → 2.17.1
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/dist/main/client/index.js +15 -16
- package/dist/main/coreum/asset/ft/v1/authz.d.ts +38 -0
- package/dist/main/coreum/asset/ft/v1/authz.js +122 -0
- package/dist/main/coreum/asset/ft/v1/event.d.ts +52 -28
- package/dist/main/coreum/asset/ft/v1/event.js +744 -138
- package/dist/main/coreum/asset/ft/v1/genesis.d.ts +31 -21
- package/dist/main/coreum/asset/ft/v1/genesis.js +273 -62
- package/dist/main/coreum/asset/ft/v1/params.d.ts +12 -11
- package/dist/main/coreum/asset/ft/v1/params.js +37 -33
- package/dist/main/coreum/asset/ft/v1/query.d.ts +87 -127
- package/dist/main/coreum/asset/ft/v1/query.js +697 -217
- package/dist/main/coreum/asset/ft/v1/token.d.ts +17 -51
- package/dist/main/coreum/asset/ft/v1/token.js +276 -200
- package/dist/main/coreum/asset/ft/v1/tx.d.ts +30 -147
- package/dist/main/coreum/asset/ft/v1/tx.js +502 -386
- package/dist/main/coreum/asset/index.d.ts +2 -3
- package/dist/main/coreum/asset/nft/v1/authz.d.ts +33 -0
- package/dist/main/coreum/asset/nft/v1/authz.js +137 -0
- package/dist/main/coreum/asset/nft/v1/event.d.ts +35 -43
- package/dist/main/coreum/asset/nft/v1/event.js +475 -147
- package/dist/main/coreum/asset/nft/v1/genesis.d.ts +27 -36
- package/dist/main/coreum/asset/nft/v1/genesis.js +311 -119
- package/dist/main/coreum/asset/nft/v1/nft.d.ts +20 -26
- package/dist/main/coreum/asset/nft/v1/nft.js +139 -104
- package/dist/main/coreum/asset/nft/v1/params.d.ts +12 -12
- package/dist/main/coreum/asset/nft/v1/params.js +17 -20
- package/dist/main/coreum/asset/nft/v1/query.d.ts +110 -88
- package/dist/main/coreum/asset/nft/v1/query.js +1079 -185
- package/dist/main/coreum/asset/nft/v1/tx.d.ts +96 -70
- package/dist/main/coreum/asset/nft/v1/tx.js +865 -234
- package/dist/main/coreum/asset/nft/v1/types.d.ts +38 -11
- package/dist/main/coreum/asset/nft/v1/types.js +273 -45
- package/dist/main/coreum/customparams/v1/genesis.d.ts +12 -12
- package/dist/main/coreum/customparams/v1/genesis.js +26 -22
- package/dist/main/coreum/customparams/v1/params.d.ts +11 -11
- package/dist/main/coreum/customparams/v1/params.js +23 -20
- package/dist/main/coreum/customparams/v1/query.d.ts +14 -20
- package/dist/main/coreum/customparams/v1/query.js +35 -29
- package/dist/main/coreum/dex/index.d.ts +2 -0
- package/dist/main/coreum/dex/index.js +11 -0
- package/dist/main/coreum/dex/v1/event.d.ts +73 -0
- package/dist/main/coreum/dex/v1/event.js +470 -0
- package/dist/main/coreum/dex/v1/genesis.d.ts +49 -0
- package/dist/main/coreum/dex/v1/genesis.js +318 -0
- package/dist/main/coreum/dex/v1/order.d.ts +172 -0
- package/dist/main/coreum/dex/v1/order.js +1137 -0
- package/dist/main/coreum/dex/v1/params.d.ts +34 -0
- package/dist/main/coreum/dex/v1/params.js +139 -0
- package/dist/main/coreum/dex/v1/query.d.ts +133 -0
- package/dist/main/coreum/dex/v1/query.js +873 -0
- package/dist/main/coreum/dex/v1/tx.d.ts +102 -0
- package/dist/main/coreum/dex/v1/tx.js +521 -0
- package/dist/main/coreum/extensions/dex.d.ts +12 -0
- package/dist/main/coreum/extensions/dex.js +32 -0
- package/dist/main/coreum/extensions/ft.js +2 -1
- package/dist/main/coreum/extensions/nft.js +2 -1
- package/dist/main/coreum/extensions/nftbeta.js +2 -1
- package/dist/main/coreum/feemodel/v1/genesis.d.ts +13 -13
- package/dist/main/coreum/feemodel/v1/genesis.js +23 -24
- package/dist/main/coreum/feemodel/v1/params.d.ts +14 -21
- package/dist/main/coreum/feemodel/v1/params.js +113 -66
- package/dist/main/coreum/feemodel/v1/query.d.ts +30 -37
- package/dist/main/coreum/feemodel/v1/query.js +196 -43
- package/dist/main/coreum/index.d.ts +46 -0
- package/dist/main/coreum/index.js +58 -1
- package/dist/main/coreum/nft/index.d.ts +1 -2
- package/dist/main/coreum/nft/v1beta1/event.d.ts +23 -27
- package/dist/main/coreum/nft/v1beta1/event.js +103 -77
- package/dist/main/coreum/nft/v1beta1/genesis.d.ts +13 -19
- package/dist/main/coreum/nft/v1beta1/genesis.js +50 -52
- package/dist/main/coreum/nft/v1beta1/nft.d.ts +15 -22
- package/dist/main/coreum/nft/v1beta1/nft.js +111 -81
- package/dist/main/coreum/nft/v1beta1/query.d.ts +54 -124
- package/dist/main/coreum/nft/v1beta1/query.js +259 -223
- package/dist/main/coreum/nft/v1beta1/tx.d.ts +13 -19
- package/dist/main/coreum/nft/v1beta1/tx.js +54 -43
- package/dist/main/cosmos/extensions/bank.js +2 -1
- package/dist/main/cosmos/extensions/distribution.d.ts +4 -4
- package/dist/main/cosmos/extensions/distribution.js +11 -10
- package/dist/main/cosmos/extensions/gov.d.ts +13 -13
- package/dist/main/cosmos/extensions/gov.js +16 -9
- package/dist/main/cosmos/index.d.ts +8 -8
- package/dist/main/google/api/http.d.ts +2636 -6
- package/dist/main/google/api/http.js +18 -21
- package/dist/main/google/protobuf/any.d.ts +14 -2
- package/dist/main/google/protobuf/any.js +6 -7
- package/dist/main/google/protobuf/duration.d.ts +14 -2
- package/dist/main/google/protobuf/duration.js +3 -4
- package/dist/main/google/protobuf/timestamp.d.ts +14 -2
- package/dist/main/google/protobuf/timestamp.js +3 -4
- package/dist/main/index.js +7 -17
- package/dist/main/services/cosmostation.js +1 -1
- package/dist/main/tendermint/abci/types.d.ts +6360 -92
- package/dist/main/tendermint/abci/types.js +195 -235
- package/dist/main/tendermint/crypto/keys.d.ts +14 -2
- package/dist/main/tendermint/crypto/keys.js +3 -4
- package/dist/main/tendermint/crypto/proof.d.ts +152 -10
- package/dist/main/tendermint/crypto/proof.js +19 -24
- package/dist/main/tendermint/types/params.d.ts +196 -12
- package/dist/main/tendermint/types/params.js +15 -20
- package/dist/main/tendermint/types/types.d.ts +1744 -26
- package/dist/main/tendermint/types/types.js +62 -73
- package/dist/main/tendermint/types/validator.d.ts +230 -6
- package/dist/main/tendermint/types/validator.js +10 -13
- package/dist/main/tendermint/version/types.d.ts +28 -4
- package/dist/main/tendermint/version/types.js +6 -8
- package/dist/main/types/core.d.ts +2 -1
- package/dist/main/types/core.js +2 -0
- package/dist/main/utils/convertStringToAny.d.ts +0 -1
- package/dist/main/utils/nft.js +2 -1
- package/dist/main/wasm/v1/authz.d.ts +20 -75
- package/dist/main/wasm/v1/authz.js +129 -148
- package/dist/main/wasm/v1/extensions/wasm.js +2 -1
- package/dist/main/wasm/v1/genesis.d.ts +14 -34
- package/dist/main/wasm/v1/genesis.js +169 -140
- package/dist/main/wasm/v1/ibc.d.ts +13 -26
- package/dist/main/wasm/v1/ibc.js +91 -76
- package/dist/main/wasm/v1/index.d.ts +1 -2
- package/dist/main/wasm/v1/pagination.d.ts +40 -4
- package/dist/main/wasm/v1/pagination.js +9 -11
- package/dist/main/wasm/v1/proposal.d.ts +23 -106
- package/dist/main/wasm/v1/proposal.js +634 -465
- package/dist/main/wasm/v1/query.d.ts +35 -187
- package/dist/main/wasm/v1/query.js +370 -363
- package/dist/main/wasm/v1/tx.d.ts +37 -210
- package/dist/main/wasm/v1/tx.js +621 -497
- package/dist/main/wasm/v1/types.d.ts +19 -67
- package/dist/main/wasm/v1/types.js +224 -195
- package/dist/module/client/index.js +2 -1
- package/dist/module/coreum/asset/ft/v1/authz.d.ts +38 -0
- package/dist/module/coreum/asset/ft/v1/authz.js +119 -0
- package/dist/module/coreum/asset/ft/v1/event.d.ts +52 -28
- package/dist/module/coreum/asset/ft/v1/event.js +721 -109
- package/dist/module/coreum/asset/ft/v1/genesis.d.ts +31 -21
- package/dist/module/coreum/asset/ft/v1/genesis.js +266 -50
- package/dist/module/coreum/asset/ft/v1/params.d.ts +12 -11
- package/dist/module/coreum/asset/ft/v1/params.js +35 -27
- package/dist/module/coreum/asset/ft/v1/query.d.ts +87 -127
- package/dist/module/coreum/asset/ft/v1/query.js +672 -180
- package/dist/module/coreum/asset/ft/v1/token.d.ts +17 -51
- package/dist/module/coreum/asset/ft/v1/token.js +236 -152
- package/dist/module/coreum/asset/ft/v1/tx.d.ts +30 -147
- package/dist/module/coreum/asset/ft/v1/tx.js +437 -301
- package/dist/module/coreum/asset/index.d.ts +2 -3
- package/dist/module/coreum/asset/nft/v1/authz.d.ts +33 -0
- package/dist/module/coreum/asset/nft/v1/authz.js +134 -0
- package/dist/module/coreum/asset/nft/v1/event.d.ts +35 -43
- package/dist/module/coreum/asset/nft/v1/event.js +448 -112
- package/dist/module/coreum/asset/nft/v1/genesis.d.ts +27 -36
- package/dist/module/coreum/asset/nft/v1/genesis.js +299 -100
- package/dist/module/coreum/asset/nft/v1/nft.d.ts +20 -26
- package/dist/module/coreum/asset/nft/v1/nft.js +121 -81
- package/dist/module/coreum/asset/nft/v1/params.d.ts +12 -12
- package/dist/module/coreum/asset/nft/v1/params.js +16 -16
- package/dist/module/coreum/asset/nft/v1/query.d.ts +110 -88
- package/dist/module/coreum/asset/nft/v1/query.js +1057 -153
- package/dist/module/coreum/asset/nft/v1/tx.d.ts +96 -70
- package/dist/module/coreum/asset/nft/v1/tx.js +825 -184
- package/dist/module/coreum/asset/nft/v1/types.d.ts +38 -11
- package/dist/module/coreum/asset/nft/v1/types.js +269 -39
- package/dist/module/coreum/customparams/v1/genesis.d.ts +12 -12
- package/dist/module/coreum/customparams/v1/genesis.js +25 -18
- package/dist/module/coreum/customparams/v1/params.d.ts +11 -11
- package/dist/module/coreum/customparams/v1/params.js +21 -14
- package/dist/module/coreum/customparams/v1/query.d.ts +14 -20
- package/dist/module/coreum/customparams/v1/query.js +32 -23
- package/dist/module/coreum/dex/index.d.ts +2 -0
- package/dist/module/coreum/dex/index.js +8 -0
- package/dist/module/coreum/dex/v1/event.d.ts +73 -0
- package/dist/module/coreum/dex/v1/event.js +467 -0
- package/dist/module/coreum/dex/v1/genesis.d.ts +49 -0
- package/dist/module/coreum/dex/v1/genesis.js +315 -0
- package/dist/module/coreum/dex/v1/order.d.ts +172 -0
- package/dist/module/coreum/dex/v1/order.js +1128 -0
- package/dist/module/coreum/dex/v1/params.d.ts +34 -0
- package/dist/module/coreum/dex/v1/params.js +136 -0
- package/dist/module/coreum/dex/v1/query.d.ts +133 -0
- package/dist/module/coreum/dex/v1/query.js +871 -0
- package/dist/module/coreum/dex/v1/tx.d.ts +102 -0
- package/dist/module/coreum/dex/v1/tx.js +519 -0
- package/dist/module/coreum/extensions/dex.d.ts +12 -0
- package/dist/module/coreum/extensions/dex.js +28 -0
- package/dist/module/coreum/feemodel/v1/genesis.d.ts +13 -13
- package/dist/module/coreum/feemodel/v1/genesis.js +22 -20
- package/dist/module/coreum/feemodel/v1/params.d.ts +14 -21
- package/dist/module/coreum/feemodel/v1/params.js +105 -54
- package/dist/module/coreum/feemodel/v1/query.d.ts +30 -37
- package/dist/module/coreum/feemodel/v1/query.js +191 -35
- package/dist/module/coreum/index.d.ts +46 -0
- package/dist/module/coreum/index.js +57 -0
- package/dist/module/coreum/nft/index.d.ts +1 -2
- package/dist/module/coreum/nft/v1beta1/event.d.ts +23 -27
- package/dist/module/coreum/nft/v1beta1/event.js +90 -58
- package/dist/module/coreum/nft/v1beta1/genesis.d.ts +13 -19
- package/dist/module/coreum/nft/v1beta1/genesis.js +44 -41
- package/dist/module/coreum/nft/v1beta1/nft.d.ts +15 -22
- package/dist/module/coreum/nft/v1beta1/nft.js +99 -64
- package/dist/module/coreum/nft/v1beta1/query.d.ts +54 -124
- package/dist/module/coreum/nft/v1beta1/query.js +231 -183
- package/dist/module/coreum/nft/v1beta1/tx.d.ts +13 -19
- package/dist/module/coreum/nft/v1beta1/tx.js +47 -32
- package/dist/module/cosmos/extensions/distribution.d.ts +4 -4
- package/dist/module/cosmos/extensions/gov.d.ts +13 -13
- package/dist/module/cosmos/index.d.ts +8 -8
- package/dist/module/google/api/http.d.ts +2636 -6
- package/dist/module/google/protobuf/any.d.ts +14 -2
- package/dist/module/google/protobuf/duration.d.ts +14 -2
- package/dist/module/google/protobuf/timestamp.d.ts +14 -2
- package/dist/module/services/cosmostation.js +1 -1
- package/dist/module/tendermint/abci/types.d.ts +6360 -92
- package/dist/module/tendermint/crypto/keys.d.ts +14 -2
- package/dist/module/tendermint/crypto/proof.d.ts +152 -10
- package/dist/module/tendermint/types/params.d.ts +196 -12
- package/dist/module/tendermint/types/types.d.ts +1744 -26
- package/dist/module/tendermint/types/validator.d.ts +230 -6
- package/dist/module/tendermint/version/types.d.ts +28 -4
- package/dist/module/types/core.d.ts +2 -1
- package/dist/module/types/core.js +2 -0
- package/dist/module/utils/convertStringToAny.d.ts +0 -1
- package/dist/module/wasm/v1/authz.d.ts +20 -75
- package/dist/module/wasm/v1/authz.js +111 -119
- package/dist/module/wasm/v1/genesis.d.ts +14 -34
- package/dist/module/wasm/v1/genesis.js +161 -125
- package/dist/module/wasm/v1/ibc.d.ts +13 -26
- package/dist/module/wasm/v1/ibc.js +83 -62
- package/dist/module/wasm/v1/index.d.ts +1 -2
- package/dist/module/wasm/v1/pagination.d.ts +40 -4
- package/dist/module/wasm/v1/proposal.d.ts +23 -106
- package/dist/module/wasm/v1/proposal.js +562 -377
- package/dist/module/wasm/v1/query.d.ts +35 -187
- package/dist/module/wasm/v1/query.js +330 -301
- package/dist/module/wasm/v1/tx.d.ts +37 -210
- package/dist/module/wasm/v1/tx.js +551 -404
- package/dist/module/wasm/v1/types.d.ts +19 -67
- package/dist/module/wasm/v1/types.js +196 -156
- package/package.json +11 -10
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { BinaryReader, BinaryWriter } from "cosmjs-types/binary";
|
|
2
2
|
import { Coin } from "cosmjs-types/cosmos/base/v1beta1/coin";
|
|
3
3
|
import { Params } from "./params";
|
|
4
4
|
import { DEXSettings, Feature } from "./token";
|
|
@@ -107,7 +107,7 @@ export interface MsgUpdateParams {
|
|
|
107
107
|
export interface MsgUpdateDEXUnifiedRefAmount {
|
|
108
108
|
sender: string;
|
|
109
109
|
denom: string;
|
|
110
|
-
/** unified_ref_amount is the approximate amount you need to
|
|
110
|
+
/** unified_ref_amount is the approximate amount you need to buy 1USD, used to define the price tick size */
|
|
111
111
|
unifiedRefAmount: string;
|
|
112
112
|
}
|
|
113
113
|
export interface MsgUpdateDEXWhitelistedDenoms {
|
|
@@ -118,150 +118,24 @@ export interface MsgUpdateDEXWhitelistedDenoms {
|
|
|
118
118
|
}
|
|
119
119
|
export interface EmptyResponse {
|
|
120
120
|
}
|
|
121
|
-
export declare const MsgIssue:
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
export declare const
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
export declare const
|
|
138
|
-
|
|
139
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): MsgMint;
|
|
140
|
-
fromJSON(object: any): MsgMint;
|
|
141
|
-
toJSON(message: MsgMint): unknown;
|
|
142
|
-
create<I extends Exact<DeepPartial<MsgMint>, I>>(base?: I): MsgMint;
|
|
143
|
-
fromPartial<I extends Exact<DeepPartial<MsgMint>, I>>(object: I): MsgMint;
|
|
144
|
-
};
|
|
145
|
-
export declare const MsgBurn: {
|
|
146
|
-
encode(message: MsgBurn, writer?: _m0.Writer): _m0.Writer;
|
|
147
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): MsgBurn;
|
|
148
|
-
fromJSON(object: any): MsgBurn;
|
|
149
|
-
toJSON(message: MsgBurn): unknown;
|
|
150
|
-
create<I extends Exact<DeepPartial<MsgBurn>, I>>(base?: I): MsgBurn;
|
|
151
|
-
fromPartial<I extends Exact<DeepPartial<MsgBurn>, I>>(object: I): MsgBurn;
|
|
152
|
-
};
|
|
153
|
-
export declare const MsgFreeze: {
|
|
154
|
-
encode(message: MsgFreeze, writer?: _m0.Writer): _m0.Writer;
|
|
155
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): MsgFreeze;
|
|
156
|
-
fromJSON(object: any): MsgFreeze;
|
|
157
|
-
toJSON(message: MsgFreeze): unknown;
|
|
158
|
-
create<I extends Exact<DeepPartial<MsgFreeze>, I>>(base?: I): MsgFreeze;
|
|
159
|
-
fromPartial<I extends Exact<DeepPartial<MsgFreeze>, I>>(object: I): MsgFreeze;
|
|
160
|
-
};
|
|
161
|
-
export declare const MsgUnfreeze: {
|
|
162
|
-
encode(message: MsgUnfreeze, writer?: _m0.Writer): _m0.Writer;
|
|
163
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): MsgUnfreeze;
|
|
164
|
-
fromJSON(object: any): MsgUnfreeze;
|
|
165
|
-
toJSON(message: MsgUnfreeze): unknown;
|
|
166
|
-
create<I extends Exact<DeepPartial<MsgUnfreeze>, I>>(base?: I): MsgUnfreeze;
|
|
167
|
-
fromPartial<I extends Exact<DeepPartial<MsgUnfreeze>, I>>(object: I): MsgUnfreeze;
|
|
168
|
-
};
|
|
169
|
-
export declare const MsgSetFrozen: {
|
|
170
|
-
encode(message: MsgSetFrozen, writer?: _m0.Writer): _m0.Writer;
|
|
171
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): MsgSetFrozen;
|
|
172
|
-
fromJSON(object: any): MsgSetFrozen;
|
|
173
|
-
toJSON(message: MsgSetFrozen): unknown;
|
|
174
|
-
create<I extends Exact<DeepPartial<MsgSetFrozen>, I>>(base?: I): MsgSetFrozen;
|
|
175
|
-
fromPartial<I extends Exact<DeepPartial<MsgSetFrozen>, I>>(object: I): MsgSetFrozen;
|
|
176
|
-
};
|
|
177
|
-
export declare const MsgGloballyFreeze: {
|
|
178
|
-
encode(message: MsgGloballyFreeze, writer?: _m0.Writer): _m0.Writer;
|
|
179
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): MsgGloballyFreeze;
|
|
180
|
-
fromJSON(object: any): MsgGloballyFreeze;
|
|
181
|
-
toJSON(message: MsgGloballyFreeze): unknown;
|
|
182
|
-
create<I extends Exact<DeepPartial<MsgGloballyFreeze>, I>>(base?: I): MsgGloballyFreeze;
|
|
183
|
-
fromPartial<I extends Exact<DeepPartial<MsgGloballyFreeze>, I>>(object: I): MsgGloballyFreeze;
|
|
184
|
-
};
|
|
185
|
-
export declare const MsgGloballyUnfreeze: {
|
|
186
|
-
encode(message: MsgGloballyUnfreeze, writer?: _m0.Writer): _m0.Writer;
|
|
187
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): MsgGloballyUnfreeze;
|
|
188
|
-
fromJSON(object: any): MsgGloballyUnfreeze;
|
|
189
|
-
toJSON(message: MsgGloballyUnfreeze): unknown;
|
|
190
|
-
create<I extends Exact<DeepPartial<MsgGloballyUnfreeze>, I>>(base?: I): MsgGloballyUnfreeze;
|
|
191
|
-
fromPartial<I extends Exact<DeepPartial<MsgGloballyUnfreeze>, I>>(object: I): MsgGloballyUnfreeze;
|
|
192
|
-
};
|
|
193
|
-
export declare const MsgClawback: {
|
|
194
|
-
encode(message: MsgClawback, writer?: _m0.Writer): _m0.Writer;
|
|
195
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): MsgClawback;
|
|
196
|
-
fromJSON(object: any): MsgClawback;
|
|
197
|
-
toJSON(message: MsgClawback): unknown;
|
|
198
|
-
create<I extends Exact<DeepPartial<MsgClawback>, I>>(base?: I): MsgClawback;
|
|
199
|
-
fromPartial<I extends Exact<DeepPartial<MsgClawback>, I>>(object: I): MsgClawback;
|
|
200
|
-
};
|
|
201
|
-
export declare const MsgSetWhitelistedLimit: {
|
|
202
|
-
encode(message: MsgSetWhitelistedLimit, writer?: _m0.Writer): _m0.Writer;
|
|
203
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): MsgSetWhitelistedLimit;
|
|
204
|
-
fromJSON(object: any): MsgSetWhitelistedLimit;
|
|
205
|
-
toJSON(message: MsgSetWhitelistedLimit): unknown;
|
|
206
|
-
create<I extends Exact<DeepPartial<MsgSetWhitelistedLimit>, I>>(base?: I): MsgSetWhitelistedLimit;
|
|
207
|
-
fromPartial<I extends Exact<DeepPartial<MsgSetWhitelistedLimit>, I>>(object: I): MsgSetWhitelistedLimit;
|
|
208
|
-
};
|
|
209
|
-
export declare const MsgTransferAdmin: {
|
|
210
|
-
encode(message: MsgTransferAdmin, writer?: _m0.Writer): _m0.Writer;
|
|
211
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): MsgTransferAdmin;
|
|
212
|
-
fromJSON(object: any): MsgTransferAdmin;
|
|
213
|
-
toJSON(message: MsgTransferAdmin): unknown;
|
|
214
|
-
create<I extends Exact<DeepPartial<MsgTransferAdmin>, I>>(base?: I): MsgTransferAdmin;
|
|
215
|
-
fromPartial<I extends Exact<DeepPartial<MsgTransferAdmin>, I>>(object: I): MsgTransferAdmin;
|
|
216
|
-
};
|
|
217
|
-
export declare const MsgClearAdmin: {
|
|
218
|
-
encode(message: MsgClearAdmin, writer?: _m0.Writer): _m0.Writer;
|
|
219
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): MsgClearAdmin;
|
|
220
|
-
fromJSON(object: any): MsgClearAdmin;
|
|
221
|
-
toJSON(message: MsgClearAdmin): unknown;
|
|
222
|
-
create<I extends Exact<DeepPartial<MsgClearAdmin>, I>>(base?: I): MsgClearAdmin;
|
|
223
|
-
fromPartial<I extends Exact<DeepPartial<MsgClearAdmin>, I>>(object: I): MsgClearAdmin;
|
|
224
|
-
};
|
|
225
|
-
export declare const MsgUpgradeTokenV1: {
|
|
226
|
-
encode(message: MsgUpgradeTokenV1, writer?: _m0.Writer): _m0.Writer;
|
|
227
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpgradeTokenV1;
|
|
228
|
-
fromJSON(object: any): MsgUpgradeTokenV1;
|
|
229
|
-
toJSON(message: MsgUpgradeTokenV1): unknown;
|
|
230
|
-
create<I extends Exact<DeepPartial<MsgUpgradeTokenV1>, I>>(base?: I): MsgUpgradeTokenV1;
|
|
231
|
-
fromPartial<I extends Exact<DeepPartial<MsgUpgradeTokenV1>, I>>(object: I): MsgUpgradeTokenV1;
|
|
232
|
-
};
|
|
233
|
-
export declare const MsgUpdateParams: {
|
|
234
|
-
encode(message: MsgUpdateParams, writer?: _m0.Writer): _m0.Writer;
|
|
235
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateParams;
|
|
236
|
-
fromJSON(object: any): MsgUpdateParams;
|
|
237
|
-
toJSON(message: MsgUpdateParams): unknown;
|
|
238
|
-
create<I extends Exact<DeepPartial<MsgUpdateParams>, I>>(base?: I): MsgUpdateParams;
|
|
239
|
-
fromPartial<I extends Exact<DeepPartial<MsgUpdateParams>, I>>(object: I): MsgUpdateParams;
|
|
240
|
-
};
|
|
241
|
-
export declare const MsgUpdateDEXUnifiedRefAmount: {
|
|
242
|
-
encode(message: MsgUpdateDEXUnifiedRefAmount, writer?: _m0.Writer): _m0.Writer;
|
|
243
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateDEXUnifiedRefAmount;
|
|
244
|
-
fromJSON(object: any): MsgUpdateDEXUnifiedRefAmount;
|
|
245
|
-
toJSON(message: MsgUpdateDEXUnifiedRefAmount): unknown;
|
|
246
|
-
create<I extends Exact<DeepPartial<MsgUpdateDEXUnifiedRefAmount>, I>>(base?: I): MsgUpdateDEXUnifiedRefAmount;
|
|
247
|
-
fromPartial<I extends Exact<DeepPartial<MsgUpdateDEXUnifiedRefAmount>, I>>(object: I): MsgUpdateDEXUnifiedRefAmount;
|
|
248
|
-
};
|
|
249
|
-
export declare const MsgUpdateDEXWhitelistedDenoms: {
|
|
250
|
-
encode(message: MsgUpdateDEXWhitelistedDenoms, writer?: _m0.Writer): _m0.Writer;
|
|
251
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): MsgUpdateDEXWhitelistedDenoms;
|
|
252
|
-
fromJSON(object: any): MsgUpdateDEXWhitelistedDenoms;
|
|
253
|
-
toJSON(message: MsgUpdateDEXWhitelistedDenoms): unknown;
|
|
254
|
-
create<I extends Exact<DeepPartial<MsgUpdateDEXWhitelistedDenoms>, I>>(base?: I): MsgUpdateDEXWhitelistedDenoms;
|
|
255
|
-
fromPartial<I extends Exact<DeepPartial<MsgUpdateDEXWhitelistedDenoms>, I>>(object: I): MsgUpdateDEXWhitelistedDenoms;
|
|
256
|
-
};
|
|
257
|
-
export declare const EmptyResponse: {
|
|
258
|
-
encode(_: EmptyResponse, writer?: _m0.Writer): _m0.Writer;
|
|
259
|
-
decode(input: _m0.Reader | Uint8Array, length?: number): EmptyResponse;
|
|
260
|
-
fromJSON(_: any): EmptyResponse;
|
|
261
|
-
toJSON(_: EmptyResponse): unknown;
|
|
262
|
-
create<I extends Exact<DeepPartial<EmptyResponse>, I>>(base?: I): EmptyResponse;
|
|
263
|
-
fromPartial<I extends Exact<DeepPartial<EmptyResponse>, I>>(_: I): EmptyResponse;
|
|
264
|
-
};
|
|
121
|
+
export declare const MsgIssue: MessageFns<MsgIssue>;
|
|
122
|
+
export declare const ExtensionIssueSettings: MessageFns<ExtensionIssueSettings>;
|
|
123
|
+
export declare const MsgMint: MessageFns<MsgMint>;
|
|
124
|
+
export declare const MsgBurn: MessageFns<MsgBurn>;
|
|
125
|
+
export declare const MsgFreeze: MessageFns<MsgFreeze>;
|
|
126
|
+
export declare const MsgUnfreeze: MessageFns<MsgUnfreeze>;
|
|
127
|
+
export declare const MsgSetFrozen: MessageFns<MsgSetFrozen>;
|
|
128
|
+
export declare const MsgGloballyFreeze: MessageFns<MsgGloballyFreeze>;
|
|
129
|
+
export declare const MsgGloballyUnfreeze: MessageFns<MsgGloballyUnfreeze>;
|
|
130
|
+
export declare const MsgClawback: MessageFns<MsgClawback>;
|
|
131
|
+
export declare const MsgSetWhitelistedLimit: MessageFns<MsgSetWhitelistedLimit>;
|
|
132
|
+
export declare const MsgTransferAdmin: MessageFns<MsgTransferAdmin>;
|
|
133
|
+
export declare const MsgClearAdmin: MessageFns<MsgClearAdmin>;
|
|
134
|
+
export declare const MsgUpgradeTokenV1: MessageFns<MsgUpgradeTokenV1>;
|
|
135
|
+
export declare const MsgUpdateParams: MessageFns<MsgUpdateParams>;
|
|
136
|
+
export declare const MsgUpdateDEXUnifiedRefAmount: MessageFns<MsgUpdateDEXUnifiedRefAmount>;
|
|
137
|
+
export declare const MsgUpdateDEXWhitelistedDenoms: MessageFns<MsgUpdateDEXWhitelistedDenoms>;
|
|
138
|
+
export declare const EmptyResponse: MessageFns<EmptyResponse>;
|
|
265
139
|
/** Msg defines the Msg service. */
|
|
266
140
|
export interface Msg {
|
|
267
141
|
/** Issue defines a method to issue a new fungible token. */
|
|
@@ -315,6 +189,7 @@ export interface Msg {
|
|
|
315
189
|
/** UpdateDEXWhitelistedDenoms updates DEX whitelisted denoms. */
|
|
316
190
|
UpdateDEXWhitelistedDenoms(request: MsgUpdateDEXWhitelistedDenoms): Promise<EmptyResponse>;
|
|
317
191
|
}
|
|
192
|
+
export declare const MsgServiceName = "coreum.asset.ft.v1.Msg";
|
|
318
193
|
export declare class MsgClientImpl implements Msg {
|
|
319
194
|
private readonly rpc;
|
|
320
195
|
private readonly service;
|
|
@@ -342,7 +217,7 @@ interface Rpc {
|
|
|
342
217
|
request(service: string, method: string, data: Uint8Array): Promise<Uint8Array>;
|
|
343
218
|
}
|
|
344
219
|
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
345
|
-
export 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 {} ? {
|
|
220
|
+
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
346
221
|
[K in keyof T]?: DeepPartial<T[K]>;
|
|
347
222
|
} : Partial<T>;
|
|
348
223
|
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
|
@@ -351,4 +226,12 @@ export type Exact<P, I extends P> = P extends Builtin ? P : P & {
|
|
|
351
226
|
} & {
|
|
352
227
|
[K in Exclude<keyof I, KeysOfUnion<P>>]: never;
|
|
353
228
|
};
|
|
229
|
+
export interface MessageFns<T> {
|
|
230
|
+
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
231
|
+
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
232
|
+
fromJSON(object: any): T;
|
|
233
|
+
toJSON(message: T): unknown;
|
|
234
|
+
create<I extends Exact<DeepPartial<T>, I>>(base?: I): T;
|
|
235
|
+
fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
|
|
236
|
+
}
|
|
354
237
|
export {};
|