@iconlake/client 0.6.0 → 1.1.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/dist/index.iife.js +4 -4
- package/dist/index.js +4 -4
- package/dist/index.mjs +5228 -5144
- package/dist/index.umd.js +4 -4
- package/package.json +2 -2
- package/types/amino.d.ts +32 -0
- package/types/client.d.ts +2 -0
- package/types/cosmos.authz.v1beta1/module.d.ts +10 -10
- package/types/cosmos.bank.v1beta1/module.d.ts +10 -10
- package/types/cosmos.distribution.v1beta1/module.d.ts +26 -26
- package/types/cosmos.feegrant.v1beta1/module.d.ts +10 -10
- package/types/cosmos.gov.v1/module.d.ts +21 -21
- package/types/cosmos.gov.v1beta1/module.d.ts +15 -15
- package/types/cosmos.group.v1/module.d.ts +78 -78
- package/types/cosmos.staking.v1beta1/module.d.ts +33 -33
- package/types/cosmos.vesting.v1beta1/module.d.ts +10 -10
- package/types/iconlake.drop/module.d.ts +10 -10
- package/types/iconlake.drop/types/iconlake/drop/tx.d.ts +17 -0
- package/types/iconlake.icon/types/iconlake/icon/tx.d.ts +20 -3
- package/types/index.d.ts +200 -200
- package/types/iconlake.iconlake/index.d.ts +0 -5
- package/types/iconlake.iconlake/module.d.ts +0 -44
- package/types/iconlake.iconlake/registry.d.ts +0 -3
- package/types/iconlake.iconlake/rest.d.ts +0 -196
- package/types/iconlake.iconlake/types/amino/amino.d.ts +0 -1
- package/types/iconlake.iconlake/types/cosmos/base/query/v1beta1/pagination.d.ts +0 -108
- package/types/iconlake.iconlake/types/cosmos/base/v1beta1/coin.d.ts +0 -89
- package/types/iconlake.iconlake/types/cosmos_proto/cosmos.d.ts +0 -98
- package/types/iconlake.iconlake/types/gogoproto/gogo.d.ts +0 -1
- package/types/iconlake.iconlake/types/google/api/annotations.d.ts +0 -1
- package/types/iconlake.iconlake/types/google/api/http.d.ts +0 -1634
- package/types/iconlake.iconlake/types/google/protobuf/descriptor.d.ts +0 -50957
- package/types/iconlake.iconlake/types/iconlake/iconlake/account.d.ts +0 -30
- package/types/iconlake.iconlake/types/iconlake/iconlake/genesis.d.ts +0 -48
- package/types/iconlake.iconlake/types/iconlake/iconlake/params.d.ts +0 -23
- package/types/iconlake.iconlake/types/iconlake/iconlake/query.d.ts +0 -170
- package/types/iconlake.iconlake/types/iconlake/iconlake/tx.d.ts +0 -66
- package/types/iconlake.iconlake/types.d.ts +0 -3
package/types/index.d.ts
CHANGED
|
@@ -2,89 +2,40 @@ import { Registry } from '@cosmjs/proto-signing';
|
|
|
2
2
|
import { IgniteClient } from "./client";
|
|
3
3
|
import { MissingWalletError } from "./helpers";
|
|
4
4
|
declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
5
|
-
|
|
6
|
-
query: import("./cosmos.
|
|
5
|
+
CosmosAuthV1Beta1: {
|
|
6
|
+
query: import("./cosmos.auth.v1beta1/rest").Api<unknown>;
|
|
7
7
|
tx: {};
|
|
8
8
|
structure: Record<string, unknown>;
|
|
9
9
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
10
10
|
updateTX(client: IgniteClient): void;
|
|
11
11
|
};
|
|
12
12
|
} & {
|
|
13
|
-
|
|
14
|
-
query: import("./cosmos.
|
|
15
|
-
tx: {
|
|
16
|
-
sendMsgSend({ value, fee, memo }: {
|
|
17
|
-
value: import("./cosmos.bank.v1beta1/module").MsgSend;
|
|
18
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
19
|
-
memo?: string;
|
|
20
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
21
|
-
sendMsgMultiSend({ value, fee, memo }: {
|
|
22
|
-
value: import("./cosmos.bank.v1beta1/module").MsgMultiSend;
|
|
23
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
24
|
-
memo?: string;
|
|
25
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
26
|
-
msgSend({ value }: {
|
|
27
|
-
value: import("./cosmos.bank.v1beta1/module").MsgSend;
|
|
28
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
29
|
-
msgMultiSend({ value }: {
|
|
30
|
-
value: import("./cosmos.bank.v1beta1/module").MsgMultiSend;
|
|
31
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
32
|
-
};
|
|
33
|
-
structure: Record<string, unknown>;
|
|
34
|
-
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
35
|
-
updateTX(client: IgniteClient): void;
|
|
36
|
-
};
|
|
37
|
-
} & {
|
|
38
|
-
CosmosStakingV1Beta1: {
|
|
39
|
-
query: import("./cosmos.staking.v1beta1/rest").Api<unknown>;
|
|
13
|
+
CosmosAuthzV1Beta1: {
|
|
14
|
+
query: import("./cosmos.authz.v1beta1/rest").Api<unknown>;
|
|
40
15
|
tx: {
|
|
41
|
-
|
|
42
|
-
value: import("./cosmos.
|
|
43
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
44
|
-
memo?: string;
|
|
45
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
46
|
-
sendMsgCreateValidator({ value, fee, memo }: {
|
|
47
|
-
value: import("./cosmos.staking.v1beta1/module").MsgCreateValidator;
|
|
48
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
49
|
-
memo?: string;
|
|
50
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
51
|
-
sendMsgEditValidator({ value, fee, memo }: {
|
|
52
|
-
value: import("./cosmos.staking.v1beta1/module").MsgEditValidator;
|
|
53
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
54
|
-
memo?: string;
|
|
55
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
56
|
-
sendMsgBeginRedelegate({ value, fee, memo }: {
|
|
57
|
-
value: import("./cosmos.staking.v1beta1/module").MsgBeginRedelegate;
|
|
16
|
+
sendMsgExec({ value, fee, memo }: {
|
|
17
|
+
value: import("./cosmos.authz.v1beta1/module").MsgExec;
|
|
58
18
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
59
19
|
memo?: string;
|
|
60
20
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
61
|
-
|
|
62
|
-
value: import("./cosmos.
|
|
21
|
+
sendMsgRevoke({ value, fee, memo }: {
|
|
22
|
+
value: import("./cosmos.authz.v1beta1/module").MsgRevoke;
|
|
63
23
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
64
24
|
memo?: string;
|
|
65
25
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
66
|
-
|
|
67
|
-
value: import("./cosmos.
|
|
26
|
+
sendMsgGrant({ value, fee, memo }: {
|
|
27
|
+
value: import("./cosmos.authz.v1beta1/module").MsgGrant;
|
|
68
28
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
69
29
|
memo?: string;
|
|
70
30
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
71
|
-
|
|
72
|
-
value: import("./cosmos.
|
|
73
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
74
|
-
msgCreateValidator({ value }: {
|
|
75
|
-
value: import("./cosmos.staking.v1beta1/module").MsgCreateValidator;
|
|
76
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
77
|
-
msgEditValidator({ value }: {
|
|
78
|
-
value: import("./cosmos.staking.v1beta1/module").MsgEditValidator;
|
|
79
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
80
|
-
msgBeginRedelegate({ value }: {
|
|
81
|
-
value: import("./cosmos.staking.v1beta1/module").MsgBeginRedelegate;
|
|
31
|
+
msgExec({ value }: {
|
|
32
|
+
value: import("./cosmos.authz.v1beta1/module").MsgExec;
|
|
82
33
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
83
|
-
|
|
84
|
-
value: import("./cosmos.
|
|
34
|
+
msgRevoke({ value }: {
|
|
35
|
+
value: import("./cosmos.authz.v1beta1/module").MsgRevoke;
|
|
85
36
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
86
|
-
|
|
87
|
-
value: import("./cosmos.
|
|
37
|
+
msgGrant({ value }: {
|
|
38
|
+
value: import("./cosmos.authz.v1beta1/module").MsgGrant;
|
|
88
39
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
89
40
|
};
|
|
90
41
|
structure: Record<string, unknown>;
|
|
@@ -92,40 +43,24 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
92
43
|
updateTX(client: IgniteClient): void;
|
|
93
44
|
};
|
|
94
45
|
} & {
|
|
95
|
-
|
|
96
|
-
query: import("./cosmos.
|
|
97
|
-
tx: {};
|
|
98
|
-
structure: Record<string, unknown>;
|
|
99
|
-
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
100
|
-
updateTX(client: IgniteClient): void;
|
|
101
|
-
};
|
|
102
|
-
} & {
|
|
103
|
-
CosmosAuthzV1Beta1: {
|
|
104
|
-
query: import("./cosmos.authz.v1beta1/rest").Api<unknown>;
|
|
46
|
+
CosmosBankV1Beta1: {
|
|
47
|
+
query: import("./cosmos.bank.v1beta1/rest").Api<unknown>;
|
|
105
48
|
tx: {
|
|
106
|
-
|
|
107
|
-
value: import("./cosmos.
|
|
108
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
109
|
-
memo?: string;
|
|
110
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
111
|
-
sendMsgExec({ value, fee, memo }: {
|
|
112
|
-
value: import("./cosmos.authz.v1beta1/module").MsgExec;
|
|
49
|
+
sendMsgMultiSend({ value, fee, memo }: {
|
|
50
|
+
value: import("./cosmos.bank.v1beta1/module").MsgMultiSend;
|
|
113
51
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
114
52
|
memo?: string;
|
|
115
53
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
116
|
-
|
|
117
|
-
value: import("./cosmos.
|
|
54
|
+
sendMsgSend({ value, fee, memo }: {
|
|
55
|
+
value: import("./cosmos.bank.v1beta1/module").MsgSend;
|
|
118
56
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
119
57
|
memo?: string;
|
|
120
58
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
121
|
-
|
|
122
|
-
value: import("./cosmos.
|
|
123
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
124
|
-
msgExec({ value }: {
|
|
125
|
-
value: import("./cosmos.authz.v1beta1/module").MsgExec;
|
|
59
|
+
msgMultiSend({ value }: {
|
|
60
|
+
value: import("./cosmos.bank.v1beta1/module").MsgMultiSend;
|
|
126
61
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
127
|
-
|
|
128
|
-
value: import("./cosmos.
|
|
62
|
+
msgSend({ value }: {
|
|
63
|
+
value: import("./cosmos.bank.v1beta1/module").MsgSend;
|
|
129
64
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
130
65
|
};
|
|
131
66
|
structure: Record<string, unknown>;
|
|
@@ -140,6 +75,14 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
140
75
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
141
76
|
updateTX(client: IgniteClient): void;
|
|
142
77
|
};
|
|
78
|
+
} & {
|
|
79
|
+
CosmosBaseTendermintV1Beta1: {
|
|
80
|
+
query: import("./cosmos.base.tendermint.v1beta1/rest").Api<unknown>;
|
|
81
|
+
tx: {};
|
|
82
|
+
structure: Record<string, unknown>;
|
|
83
|
+
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
84
|
+
updateTX(client: IgniteClient): void;
|
|
85
|
+
};
|
|
143
86
|
} & {
|
|
144
87
|
CosmosConsensusV1: {
|
|
145
88
|
query: import("./cosmos.consensus.v1/rest").Api<unknown>;
|
|
@@ -186,8 +129,8 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
186
129
|
CosmosDistributionV1Beta1: {
|
|
187
130
|
query: import("./cosmos.distribution.v1beta1/rest").Api<unknown>;
|
|
188
131
|
tx: {
|
|
189
|
-
|
|
190
|
-
value: import("./cosmos.distribution.v1beta1/module").
|
|
132
|
+
sendMsgWithdrawDelegatorReward({ value, fee, memo }: {
|
|
133
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawDelegatorReward;
|
|
191
134
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
192
135
|
memo?: string;
|
|
193
136
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -196,8 +139,13 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
196
139
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
197
140
|
memo?: string;
|
|
198
141
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
199
|
-
|
|
200
|
-
value: import("./cosmos.distribution.v1beta1/module").
|
|
142
|
+
sendMsgFundCommunityPool({ value, fee, memo }: {
|
|
143
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgFundCommunityPool;
|
|
144
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
145
|
+
memo?: string;
|
|
146
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
147
|
+
sendMsgSetWithdrawAddress({ value, fee, memo }: {
|
|
148
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgSetWithdrawAddress;
|
|
201
149
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
202
150
|
memo?: string;
|
|
203
151
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -211,19 +159,17 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
211
159
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
212
160
|
memo?: string;
|
|
213
161
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
214
|
-
|
|
215
|
-
value: import("./cosmos.distribution.v1beta1/module").
|
|
216
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
217
|
-
memo?: string;
|
|
218
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
219
|
-
msgFundCommunityPool({ value }: {
|
|
220
|
-
value: import("./cosmos.distribution.v1beta1/module").MsgFundCommunityPool;
|
|
162
|
+
msgWithdrawDelegatorReward({ value }: {
|
|
163
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawDelegatorReward;
|
|
221
164
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
222
165
|
msgCommunityPoolSpend({ value }: {
|
|
223
166
|
value: import("./cosmos.distribution.v1beta1/module").MsgCommunityPoolSpend;
|
|
224
167
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
225
|
-
|
|
226
|
-
value: import("./cosmos.distribution.v1beta1/module").
|
|
168
|
+
msgFundCommunityPool({ value }: {
|
|
169
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgFundCommunityPool;
|
|
170
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
171
|
+
msgSetWithdrawAddress({ value }: {
|
|
172
|
+
value: import("./cosmos.distribution.v1beta1/module").MsgSetWithdrawAddress;
|
|
227
173
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
228
174
|
msgWithdrawValidatorCommission({ value }: {
|
|
229
175
|
value: import("./cosmos.distribution.v1beta1/module").MsgWithdrawValidatorCommission;
|
|
@@ -231,9 +177,6 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
231
177
|
msgUpdateParams({ value }: {
|
|
232
178
|
value: import("./cosmos.distribution.v1beta1/module").MsgUpdateParams;
|
|
233
179
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
234
|
-
msgSetWithdrawAddress({ value }: {
|
|
235
|
-
value: import("./cosmos.distribution.v1beta1/module").MsgSetWithdrawAddress;
|
|
236
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
237
180
|
};
|
|
238
181
|
structure: Record<string, unknown>;
|
|
239
182
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -260,22 +203,22 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
260
203
|
CosmosFeegrantV1Beta1: {
|
|
261
204
|
query: import("./cosmos.feegrant.v1beta1/rest").Api<unknown>;
|
|
262
205
|
tx: {
|
|
263
|
-
sendMsgRevokeAllowance({ value, fee, memo }: {
|
|
264
|
-
value: import("./cosmos.feegrant.v1beta1/module").MsgRevokeAllowance;
|
|
265
|
-
fee?: import("@cosmjs/launchpad").StdFee;
|
|
266
|
-
memo?: string;
|
|
267
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
268
206
|
sendMsgGrantAllowance({ value, fee, memo }: {
|
|
269
207
|
value: import("./cosmos.feegrant.v1beta1/module").MsgGrantAllowance;
|
|
270
208
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
271
209
|
memo?: string;
|
|
272
210
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
273
|
-
|
|
211
|
+
sendMsgRevokeAllowance({ value, fee, memo }: {
|
|
274
212
|
value: import("./cosmos.feegrant.v1beta1/module").MsgRevokeAllowance;
|
|
275
|
-
|
|
213
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
214
|
+
memo?: string;
|
|
215
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
276
216
|
msgGrantAllowance({ value }: {
|
|
277
217
|
value: import("./cosmos.feegrant.v1beta1/module").MsgGrantAllowance;
|
|
278
218
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
219
|
+
msgRevokeAllowance({ value }: {
|
|
220
|
+
value: import("./cosmos.feegrant.v1beta1/module").MsgRevokeAllowance;
|
|
221
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
279
222
|
};
|
|
280
223
|
structure: Record<string, unknown>;
|
|
281
224
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -290,41 +233,41 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
290
233
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
291
234
|
memo?: string;
|
|
292
235
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
293
|
-
|
|
294
|
-
value: import("./cosmos.gov.v1/module").
|
|
236
|
+
sendMsgUpdateParams({ value, fee, memo }: {
|
|
237
|
+
value: import("./cosmos.gov.v1/module").MsgUpdateParams;
|
|
295
238
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
296
239
|
memo?: string;
|
|
297
240
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
298
|
-
|
|
299
|
-
value: import("./cosmos.gov.v1/module").
|
|
241
|
+
sendMsgDeposit({ value, fee, memo }: {
|
|
242
|
+
value: import("./cosmos.gov.v1/module").MsgDeposit;
|
|
300
243
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
301
244
|
memo?: string;
|
|
302
245
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
303
|
-
|
|
304
|
-
value: import("./cosmos.gov.v1/module").
|
|
246
|
+
sendMsgVoteWeighted({ value, fee, memo }: {
|
|
247
|
+
value: import("./cosmos.gov.v1/module").MsgVoteWeighted;
|
|
305
248
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
306
249
|
memo?: string;
|
|
307
250
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
308
|
-
|
|
309
|
-
value: import("./cosmos.gov.v1/module").
|
|
251
|
+
sendMsgSubmitProposal({ value, fee, memo }: {
|
|
252
|
+
value: import("./cosmos.gov.v1/module").MsgSubmitProposal;
|
|
310
253
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
311
254
|
memo?: string;
|
|
312
255
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
313
256
|
msgVote({ value }: {
|
|
314
257
|
value: import("./cosmos.gov.v1/module").MsgVote;
|
|
315
258
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
316
|
-
msgVoteWeighted({ value }: {
|
|
317
|
-
value: import("./cosmos.gov.v1/module").MsgVoteWeighted;
|
|
318
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
319
|
-
msgSubmitProposal({ value }: {
|
|
320
|
-
value: import("./cosmos.gov.v1/module").MsgSubmitProposal;
|
|
321
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
322
259
|
msgUpdateParams({ value }: {
|
|
323
260
|
value: import("./cosmos.gov.v1/module").MsgUpdateParams;
|
|
324
261
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
325
262
|
msgDeposit({ value }: {
|
|
326
263
|
value: import("./cosmos.gov.v1/module").MsgDeposit;
|
|
327
264
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
265
|
+
msgVoteWeighted({ value }: {
|
|
266
|
+
value: import("./cosmos.gov.v1/module").MsgVoteWeighted;
|
|
267
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
268
|
+
msgSubmitProposal({ value }: {
|
|
269
|
+
value: import("./cosmos.gov.v1/module").MsgSubmitProposal;
|
|
270
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
328
271
|
};
|
|
329
272
|
structure: Record<string, unknown>;
|
|
330
273
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -339,8 +282,8 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
339
282
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
340
283
|
memo?: string;
|
|
341
284
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
342
|
-
|
|
343
|
-
value: import("./cosmos.gov.v1beta1/module").
|
|
285
|
+
sendMsgDeposit({ value, fee, memo }: {
|
|
286
|
+
value: import("./cosmos.gov.v1beta1/module").MsgDeposit;
|
|
344
287
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
345
288
|
memo?: string;
|
|
346
289
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -349,22 +292,22 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
349
292
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
350
293
|
memo?: string;
|
|
351
294
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
352
|
-
|
|
353
|
-
value: import("./cosmos.gov.v1beta1/module").
|
|
295
|
+
sendMsgVote({ value, fee, memo }: {
|
|
296
|
+
value: import("./cosmos.gov.v1beta1/module").MsgVote;
|
|
354
297
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
355
298
|
memo?: string;
|
|
356
299
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
357
300
|
msgSubmitProposal({ value }: {
|
|
358
301
|
value: import("./cosmos.gov.v1beta1/module").MsgSubmitProposal;
|
|
359
302
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
360
|
-
|
|
361
|
-
value: import("./cosmos.gov.v1beta1/module").
|
|
303
|
+
msgDeposit({ value }: {
|
|
304
|
+
value: import("./cosmos.gov.v1beta1/module").MsgDeposit;
|
|
362
305
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
363
306
|
msgVoteWeighted({ value }: {
|
|
364
307
|
value: import("./cosmos.gov.v1beta1/module").MsgVoteWeighted;
|
|
365
308
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
366
|
-
|
|
367
|
-
value: import("./cosmos.gov.v1beta1/module").
|
|
309
|
+
msgVote({ value }: {
|
|
310
|
+
value: import("./cosmos.gov.v1beta1/module").MsgVote;
|
|
368
311
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
369
312
|
};
|
|
370
313
|
structure: Record<string, unknown>;
|
|
@@ -375,23 +318,23 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
375
318
|
CosmosGroupV1: {
|
|
376
319
|
query: import("./cosmos.group.v1/rest").Api<unknown>;
|
|
377
320
|
tx: {
|
|
378
|
-
|
|
379
|
-
value: import("./cosmos.group.v1/module").
|
|
321
|
+
sendMsgCreateGroupPolicy({ value, fee, memo }: {
|
|
322
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroupPolicy;
|
|
380
323
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
381
324
|
memo?: string;
|
|
382
325
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
383
|
-
|
|
384
|
-
value: import("./cosmos.group.v1/module").
|
|
326
|
+
sendMsgUpdateGroupPolicyAdmin({ value, fee, memo }: {
|
|
327
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyAdmin;
|
|
385
328
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
386
329
|
memo?: string;
|
|
387
330
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
388
|
-
|
|
389
|
-
value: import("./cosmos.group.v1/module").
|
|
331
|
+
sendMsgLeaveGroup({ value, fee, memo }: {
|
|
332
|
+
value: import("./cosmos.group.v1/module").MsgLeaveGroup;
|
|
390
333
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
391
334
|
memo?: string;
|
|
392
335
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
393
|
-
|
|
394
|
-
value: import("./cosmos.group.v1/module").
|
|
336
|
+
sendMsgUpdateGroupMetadata({ value, fee, memo }: {
|
|
337
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupMetadata;
|
|
395
338
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
396
339
|
memo?: string;
|
|
397
340
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
@@ -400,92 +343,92 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
400
343
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
401
344
|
memo?: string;
|
|
402
345
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
403
|
-
|
|
404
|
-
value: import("./cosmos.group.v1/module").
|
|
346
|
+
sendMsgUpdateGroupMembers({ value, fee, memo }: {
|
|
347
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupMembers;
|
|
405
348
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
406
349
|
memo?: string;
|
|
407
350
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
408
|
-
|
|
409
|
-
value: import("./cosmos.group.v1/module").
|
|
351
|
+
sendMsgUpdateGroupPolicyDecisionPolicy({ value, fee, memo }: {
|
|
352
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyDecisionPolicy;
|
|
410
353
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
411
354
|
memo?: string;
|
|
412
355
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
413
|
-
|
|
414
|
-
value: import("./cosmos.group.v1/module").
|
|
356
|
+
sendMsgCreateGroup({ value, fee, memo }: {
|
|
357
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroup;
|
|
415
358
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
416
359
|
memo?: string;
|
|
417
360
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
418
|
-
|
|
419
|
-
value: import("./cosmos.group.v1/module").
|
|
361
|
+
sendMsgUpdateGroupPolicyMetadata({ value, fee, memo }: {
|
|
362
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyMetadata;
|
|
420
363
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
421
364
|
memo?: string;
|
|
422
365
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
423
|
-
|
|
424
|
-
value: import("./cosmos.group.v1/module").
|
|
366
|
+
sendMsgSubmitProposal({ value, fee, memo }: {
|
|
367
|
+
value: import("./cosmos.group.v1/module").MsgSubmitProposal;
|
|
425
368
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
426
369
|
memo?: string;
|
|
427
370
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
428
|
-
|
|
429
|
-
value: import("./cosmos.group.v1/module").
|
|
371
|
+
sendMsgCreateGroupWithPolicy({ value, fee, memo }: {
|
|
372
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroupWithPolicy;
|
|
430
373
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
431
374
|
memo?: string;
|
|
432
375
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
433
|
-
|
|
434
|
-
value: import("./cosmos.group.v1/module").
|
|
376
|
+
sendMsgExec({ value, fee, memo }: {
|
|
377
|
+
value: import("./cosmos.group.v1/module").MsgExec;
|
|
435
378
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
436
379
|
memo?: string;
|
|
437
380
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
438
|
-
|
|
439
|
-
value: import("./cosmos.group.v1/module").
|
|
381
|
+
sendMsgVote({ value, fee, memo }: {
|
|
382
|
+
value: import("./cosmos.group.v1/module").MsgVote;
|
|
440
383
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
441
384
|
memo?: string;
|
|
442
385
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
443
|
-
|
|
444
|
-
value: import("./cosmos.group.v1/module").
|
|
386
|
+
sendMsgWithdrawProposal({ value, fee, memo }: {
|
|
387
|
+
value: import("./cosmos.group.v1/module").MsgWithdrawProposal;
|
|
445
388
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
446
389
|
memo?: string;
|
|
447
390
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
448
|
-
|
|
449
|
-
value: import("./cosmos.group.v1/module").
|
|
391
|
+
msgCreateGroupPolicy({ value }: {
|
|
392
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroupPolicy;
|
|
450
393
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
451
|
-
|
|
452
|
-
value: import("./cosmos.group.v1/module").
|
|
394
|
+
msgUpdateGroupPolicyAdmin({ value }: {
|
|
395
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyAdmin;
|
|
453
396
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
454
|
-
|
|
455
|
-
value: import("./cosmos.group.v1/module").
|
|
397
|
+
msgLeaveGroup({ value }: {
|
|
398
|
+
value: import("./cosmos.group.v1/module").MsgLeaveGroup;
|
|
456
399
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
457
|
-
|
|
458
|
-
value: import("./cosmos.group.v1/module").
|
|
400
|
+
msgUpdateGroupMetadata({ value }: {
|
|
401
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupMetadata;
|
|
459
402
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
460
403
|
msgUpdateGroupAdmin({ value }: {
|
|
461
404
|
value: import("./cosmos.group.v1/module").MsgUpdateGroupAdmin;
|
|
462
405
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
463
|
-
|
|
464
|
-
value: import("./cosmos.group.v1/module").
|
|
465
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
466
|
-
msgUpdateGroupPolicyAdmin({ value }: {
|
|
467
|
-
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyAdmin;
|
|
468
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
469
|
-
msgWithdrawProposal({ value }: {
|
|
470
|
-
value: import("./cosmos.group.v1/module").MsgWithdrawProposal;
|
|
406
|
+
msgUpdateGroupMembers({ value }: {
|
|
407
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupMembers;
|
|
471
408
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
472
409
|
msgUpdateGroupPolicyDecisionPolicy({ value }: {
|
|
473
410
|
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyDecisionPolicy;
|
|
474
411
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
475
|
-
|
|
476
|
-
value: import("./cosmos.group.v1/module").
|
|
412
|
+
msgCreateGroup({ value }: {
|
|
413
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroup;
|
|
477
414
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
478
|
-
|
|
479
|
-
value: import("./cosmos.group.v1/module").
|
|
415
|
+
msgUpdateGroupPolicyMetadata({ value }: {
|
|
416
|
+
value: import("./cosmos.group.v1/module").MsgUpdateGroupPolicyMetadata;
|
|
480
417
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
481
418
|
msgSubmitProposal({ value }: {
|
|
482
419
|
value: import("./cosmos.group.v1/module").MsgSubmitProposal;
|
|
483
420
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
484
|
-
|
|
485
|
-
value: import("./cosmos.group.v1/module").
|
|
421
|
+
msgCreateGroupWithPolicy({ value }: {
|
|
422
|
+
value: import("./cosmos.group.v1/module").MsgCreateGroupWithPolicy;
|
|
486
423
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
487
|
-
|
|
488
|
-
value: import("./cosmos.group.v1/module").
|
|
424
|
+
msgExec({ value }: {
|
|
425
|
+
value: import("./cosmos.group.v1/module").MsgExec;
|
|
426
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
427
|
+
msgVote({ value }: {
|
|
428
|
+
value: import("./cosmos.group.v1/module").MsgVote;
|
|
429
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
430
|
+
msgWithdrawProposal({ value }: {
|
|
431
|
+
value: import("./cosmos.group.v1/module").MsgWithdrawProposal;
|
|
489
432
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
490
433
|
};
|
|
491
434
|
structure: Record<string, unknown>;
|
|
@@ -533,6 +476,63 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
533
476
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
534
477
|
updateTX(client: IgniteClient): void;
|
|
535
478
|
};
|
|
479
|
+
} & {
|
|
480
|
+
CosmosStakingV1Beta1: {
|
|
481
|
+
query: import("./cosmos.staking.v1beta1/rest").Api<unknown>;
|
|
482
|
+
tx: {
|
|
483
|
+
sendMsgDelegate({ value, fee, memo }: {
|
|
484
|
+
value: import("./cosmos.staking.v1beta1/module").MsgDelegate;
|
|
485
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
486
|
+
memo?: string;
|
|
487
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
488
|
+
sendMsgBeginRedelegate({ value, fee, memo }: {
|
|
489
|
+
value: import("./cosmos.staking.v1beta1/module").MsgBeginRedelegate;
|
|
490
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
491
|
+
memo?: string;
|
|
492
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
493
|
+
sendMsgEditValidator({ value, fee, memo }: {
|
|
494
|
+
value: import("./cosmos.staking.v1beta1/module").MsgEditValidator;
|
|
495
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
496
|
+
memo?: string;
|
|
497
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
498
|
+
sendMsgUndelegate({ value, fee, memo }: {
|
|
499
|
+
value: import("./cosmos.staking.v1beta1/module").MsgUndelegate;
|
|
500
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
501
|
+
memo?: string;
|
|
502
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
503
|
+
sendMsgCancelUnbondingDelegation({ value, fee, memo }: {
|
|
504
|
+
value: import("./cosmos.staking.v1beta1/module").MsgCancelUnbondingDelegation;
|
|
505
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
506
|
+
memo?: string;
|
|
507
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
508
|
+
sendMsgCreateValidator({ value, fee, memo }: {
|
|
509
|
+
value: import("./cosmos.staking.v1beta1/module").MsgCreateValidator;
|
|
510
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
511
|
+
memo?: string;
|
|
512
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
513
|
+
msgDelegate({ value }: {
|
|
514
|
+
value: import("./cosmos.staking.v1beta1/module").MsgDelegate;
|
|
515
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
516
|
+
msgBeginRedelegate({ value }: {
|
|
517
|
+
value: import("./cosmos.staking.v1beta1/module").MsgBeginRedelegate;
|
|
518
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
519
|
+
msgEditValidator({ value }: {
|
|
520
|
+
value: import("./cosmos.staking.v1beta1/module").MsgEditValidator;
|
|
521
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
522
|
+
msgUndelegate({ value }: {
|
|
523
|
+
value: import("./cosmos.staking.v1beta1/module").MsgUndelegate;
|
|
524
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
525
|
+
msgCancelUnbondingDelegation({ value }: {
|
|
526
|
+
value: import("./cosmos.staking.v1beta1/module").MsgCancelUnbondingDelegation;
|
|
527
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
528
|
+
msgCreateValidator({ value }: {
|
|
529
|
+
value: import("./cosmos.staking.v1beta1/module").MsgCreateValidator;
|
|
530
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
531
|
+
};
|
|
532
|
+
structure: Record<string, unknown>;
|
|
533
|
+
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
534
|
+
updateTX(client: IgniteClient): void;
|
|
535
|
+
};
|
|
536
536
|
} & {
|
|
537
537
|
CosmosTxV1Beta1: {
|
|
538
538
|
query: import("./cosmos.tx.v1beta1/rest").Api<unknown>;
|
|
@@ -570,6 +570,11 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
570
570
|
CosmosVestingV1Beta1: {
|
|
571
571
|
query: import("./cosmos.vesting.v1beta1/rest").Api<unknown>;
|
|
572
572
|
tx: {
|
|
573
|
+
sendMsgCreatePermanentLockedAccount({ value, fee, memo }: {
|
|
574
|
+
value: import("./cosmos.vesting.v1beta1/module").MsgCreatePermanentLockedAccount;
|
|
575
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
576
|
+
memo?: string;
|
|
577
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
573
578
|
sendMsgCreateVestingAccount({ value, fee, memo }: {
|
|
574
579
|
value: import("./cosmos.vesting.v1beta1/module").MsgCreateVestingAccount;
|
|
575
580
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
@@ -580,20 +585,15 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
580
585
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
581
586
|
memo?: string;
|
|
582
587
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
583
|
-
|
|
588
|
+
msgCreatePermanentLockedAccount({ value }: {
|
|
584
589
|
value: import("./cosmos.vesting.v1beta1/module").MsgCreatePermanentLockedAccount;
|
|
585
|
-
|
|
586
|
-
memo?: string;
|
|
587
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
590
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
588
591
|
msgCreateVestingAccount({ value }: {
|
|
589
592
|
value: import("./cosmos.vesting.v1beta1/module").MsgCreateVestingAccount;
|
|
590
593
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
591
594
|
msgCreatePeriodicVestingAccount({ value }: {
|
|
592
595
|
value: import("./cosmos.vesting.v1beta1/module").MsgCreatePeriodicVestingAccount;
|
|
593
596
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
594
|
-
msgCreatePermanentLockedAccount({ value }: {
|
|
595
|
-
value: import("./cosmos.vesting.v1beta1/module").MsgCreatePermanentLockedAccount;
|
|
596
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
597
597
|
};
|
|
598
598
|
structure: Record<string, unknown>;
|
|
599
599
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|
|
@@ -651,6 +651,11 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
651
651
|
IconlakeDrop: {
|
|
652
652
|
query: import("./iconlake.drop/rest").Api<unknown>;
|
|
653
653
|
tx: {
|
|
654
|
+
sendMsgUpdateParams({ value, fee, memo }: {
|
|
655
|
+
value: import("./iconlake.drop/module").MsgUpdateParams;
|
|
656
|
+
fee?: import("@cosmjs/launchpad").StdFee;
|
|
657
|
+
memo?: string;
|
|
658
|
+
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
654
659
|
sendMsgInit({ value, fee, memo }: {
|
|
655
660
|
value: import("./iconlake.drop/module").MsgInit;
|
|
656
661
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
@@ -661,20 +666,15 @@ declare const Client: typeof IgniteClient & import("./helpers").Constructor<{
|
|
|
661
666
|
fee?: import("@cosmjs/launchpad").StdFee;
|
|
662
667
|
memo?: string;
|
|
663
668
|
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
664
|
-
|
|
669
|
+
msgUpdateParams({ value }: {
|
|
665
670
|
value: import("./iconlake.drop/module").MsgUpdateParams;
|
|
666
|
-
|
|
667
|
-
memo?: string;
|
|
668
|
-
}): Promise<import("@cosmjs/stargate").DeliverTxResponse>;
|
|
671
|
+
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
669
672
|
msgInit({ value }: {
|
|
670
673
|
value: import("./iconlake.drop/module").MsgInit;
|
|
671
674
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
672
675
|
msgMint({ value }: {
|
|
673
676
|
value: import("./iconlake.drop/module").MsgMint;
|
|
674
677
|
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
675
|
-
msgUpdateParams({ value }: {
|
|
676
|
-
value: import("./iconlake.drop/module").MsgUpdateParams;
|
|
677
|
-
}): import("@cosmjs/proto-signing").EncodeObject;
|
|
678
678
|
};
|
|
679
679
|
structure: Record<string, unknown>;
|
|
680
680
|
registry: [string, import("@cosmjs/proto-signing").GeneratedType][];
|