@iconlake/client 0.6.0 → 1.0.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
|
@@ -3,38 +3,38 @@ import { DeliverTxResponse } from "@cosmjs/stargate";
|
|
|
3
3
|
import { EncodeObject, GeneratedType, OfflineSigner, Registry } from "@cosmjs/proto-signing";
|
|
4
4
|
import { IgniteClient } from "../client";
|
|
5
5
|
import { Api } from "./rest";
|
|
6
|
+
import { MsgCreateGroupPolicy } from "./types/cosmos/group/v1/tx";
|
|
7
|
+
import { MsgUpdateGroupPolicyAdmin } from "./types/cosmos/group/v1/tx";
|
|
6
8
|
import { MsgLeaveGroup } from "./types/cosmos/group/v1/tx";
|
|
9
|
+
import { MsgUpdateGroupMetadata } from "./types/cosmos/group/v1/tx";
|
|
10
|
+
import { MsgUpdateGroupAdmin } from "./types/cosmos/group/v1/tx";
|
|
11
|
+
import { MsgUpdateGroupMembers } from "./types/cosmos/group/v1/tx";
|
|
12
|
+
import { MsgUpdateGroupPolicyDecisionPolicy } from "./types/cosmos/group/v1/tx";
|
|
7
13
|
import { MsgCreateGroup } from "./types/cosmos/group/v1/tx";
|
|
8
14
|
import { MsgUpdateGroupPolicyMetadata } from "./types/cosmos/group/v1/tx";
|
|
9
|
-
import {
|
|
10
|
-
import { MsgUpdateGroupAdmin } from "./types/cosmos/group/v1/tx";
|
|
15
|
+
import { MsgSubmitProposal } from "./types/cosmos/group/v1/tx";
|
|
11
16
|
import { MsgCreateGroupWithPolicy } from "./types/cosmos/group/v1/tx";
|
|
12
|
-
import {
|
|
13
|
-
import { MsgWithdrawProposal } from "./types/cosmos/group/v1/tx";
|
|
14
|
-
import { MsgUpdateGroupPolicyDecisionPolicy } from "./types/cosmos/group/v1/tx";
|
|
15
|
-
import { MsgUpdateGroupMetadata } from "./types/cosmos/group/v1/tx";
|
|
17
|
+
import { MsgExec } from "./types/cosmos/group/v1/tx";
|
|
16
18
|
import { MsgVote } from "./types/cosmos/group/v1/tx";
|
|
17
|
-
import {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
type sendMsgLeaveGroupParams = {
|
|
22
|
-
value: MsgLeaveGroup;
|
|
19
|
+
import { MsgWithdrawProposal } from "./types/cosmos/group/v1/tx";
|
|
20
|
+
export { MsgCreateGroupPolicy, MsgUpdateGroupPolicyAdmin, MsgLeaveGroup, MsgUpdateGroupMetadata, MsgUpdateGroupAdmin, MsgUpdateGroupMembers, MsgUpdateGroupPolicyDecisionPolicy, MsgCreateGroup, MsgUpdateGroupPolicyMetadata, MsgSubmitProposal, MsgCreateGroupWithPolicy, MsgExec, MsgVote, MsgWithdrawProposal };
|
|
21
|
+
type sendMsgCreateGroupPolicyParams = {
|
|
22
|
+
value: MsgCreateGroupPolicy;
|
|
23
23
|
fee?: StdFee;
|
|
24
24
|
memo?: string;
|
|
25
25
|
};
|
|
26
|
-
type
|
|
27
|
-
value:
|
|
26
|
+
type sendMsgUpdateGroupPolicyAdminParams = {
|
|
27
|
+
value: MsgUpdateGroupPolicyAdmin;
|
|
28
28
|
fee?: StdFee;
|
|
29
29
|
memo?: string;
|
|
30
30
|
};
|
|
31
|
-
type
|
|
32
|
-
value:
|
|
31
|
+
type sendMsgLeaveGroupParams = {
|
|
32
|
+
value: MsgLeaveGroup;
|
|
33
33
|
fee?: StdFee;
|
|
34
34
|
memo?: string;
|
|
35
35
|
};
|
|
36
|
-
type
|
|
37
|
-
value:
|
|
36
|
+
type sendMsgUpdateGroupMetadataParams = {
|
|
37
|
+
value: MsgUpdateGroupMetadata;
|
|
38
38
|
fee?: StdFee;
|
|
39
39
|
memo?: string;
|
|
40
40
|
};
|
|
@@ -43,92 +43,92 @@ type sendMsgUpdateGroupAdminParams = {
|
|
|
43
43
|
fee?: StdFee;
|
|
44
44
|
memo?: string;
|
|
45
45
|
};
|
|
46
|
-
type
|
|
47
|
-
value:
|
|
46
|
+
type sendMsgUpdateGroupMembersParams = {
|
|
47
|
+
value: MsgUpdateGroupMembers;
|
|
48
48
|
fee?: StdFee;
|
|
49
49
|
memo?: string;
|
|
50
50
|
};
|
|
51
|
-
type
|
|
52
|
-
value:
|
|
51
|
+
type sendMsgUpdateGroupPolicyDecisionPolicyParams = {
|
|
52
|
+
value: MsgUpdateGroupPolicyDecisionPolicy;
|
|
53
53
|
fee?: StdFee;
|
|
54
54
|
memo?: string;
|
|
55
55
|
};
|
|
56
|
-
type
|
|
57
|
-
value:
|
|
56
|
+
type sendMsgCreateGroupParams = {
|
|
57
|
+
value: MsgCreateGroup;
|
|
58
58
|
fee?: StdFee;
|
|
59
59
|
memo?: string;
|
|
60
60
|
};
|
|
61
|
-
type
|
|
62
|
-
value:
|
|
61
|
+
type sendMsgUpdateGroupPolicyMetadataParams = {
|
|
62
|
+
value: MsgUpdateGroupPolicyMetadata;
|
|
63
63
|
fee?: StdFee;
|
|
64
64
|
memo?: string;
|
|
65
65
|
};
|
|
66
|
-
type
|
|
67
|
-
value:
|
|
66
|
+
type sendMsgSubmitProposalParams = {
|
|
67
|
+
value: MsgSubmitProposal;
|
|
68
68
|
fee?: StdFee;
|
|
69
69
|
memo?: string;
|
|
70
70
|
};
|
|
71
|
-
type
|
|
72
|
-
value:
|
|
71
|
+
type sendMsgCreateGroupWithPolicyParams = {
|
|
72
|
+
value: MsgCreateGroupWithPolicy;
|
|
73
73
|
fee?: StdFee;
|
|
74
74
|
memo?: string;
|
|
75
75
|
};
|
|
76
|
-
type
|
|
77
|
-
value:
|
|
76
|
+
type sendMsgExecParams = {
|
|
77
|
+
value: MsgExec;
|
|
78
78
|
fee?: StdFee;
|
|
79
79
|
memo?: string;
|
|
80
80
|
};
|
|
81
|
-
type
|
|
82
|
-
value:
|
|
81
|
+
type sendMsgVoteParams = {
|
|
82
|
+
value: MsgVote;
|
|
83
83
|
fee?: StdFee;
|
|
84
84
|
memo?: string;
|
|
85
85
|
};
|
|
86
|
-
type
|
|
87
|
-
value:
|
|
86
|
+
type sendMsgWithdrawProposalParams = {
|
|
87
|
+
value: MsgWithdrawProposal;
|
|
88
88
|
fee?: StdFee;
|
|
89
89
|
memo?: string;
|
|
90
90
|
};
|
|
91
|
-
type
|
|
92
|
-
value:
|
|
91
|
+
type msgCreateGroupPolicyParams = {
|
|
92
|
+
value: MsgCreateGroupPolicy;
|
|
93
93
|
};
|
|
94
|
-
type
|
|
95
|
-
value:
|
|
94
|
+
type msgUpdateGroupPolicyAdminParams = {
|
|
95
|
+
value: MsgUpdateGroupPolicyAdmin;
|
|
96
96
|
};
|
|
97
|
-
type
|
|
98
|
-
value:
|
|
97
|
+
type msgLeaveGroupParams = {
|
|
98
|
+
value: MsgLeaveGroup;
|
|
99
99
|
};
|
|
100
|
-
type
|
|
101
|
-
value:
|
|
100
|
+
type msgUpdateGroupMetadataParams = {
|
|
101
|
+
value: MsgUpdateGroupMetadata;
|
|
102
102
|
};
|
|
103
103
|
type msgUpdateGroupAdminParams = {
|
|
104
104
|
value: MsgUpdateGroupAdmin;
|
|
105
105
|
};
|
|
106
|
-
type
|
|
107
|
-
value:
|
|
108
|
-
};
|
|
109
|
-
type msgUpdateGroupPolicyAdminParams = {
|
|
110
|
-
value: MsgUpdateGroupPolicyAdmin;
|
|
111
|
-
};
|
|
112
|
-
type msgWithdrawProposalParams = {
|
|
113
|
-
value: MsgWithdrawProposal;
|
|
106
|
+
type msgUpdateGroupMembersParams = {
|
|
107
|
+
value: MsgUpdateGroupMembers;
|
|
114
108
|
};
|
|
115
109
|
type msgUpdateGroupPolicyDecisionPolicyParams = {
|
|
116
110
|
value: MsgUpdateGroupPolicyDecisionPolicy;
|
|
117
111
|
};
|
|
118
|
-
type
|
|
119
|
-
value:
|
|
112
|
+
type msgCreateGroupParams = {
|
|
113
|
+
value: MsgCreateGroup;
|
|
120
114
|
};
|
|
121
|
-
type
|
|
122
|
-
value:
|
|
115
|
+
type msgUpdateGroupPolicyMetadataParams = {
|
|
116
|
+
value: MsgUpdateGroupPolicyMetadata;
|
|
123
117
|
};
|
|
124
118
|
type msgSubmitProposalParams = {
|
|
125
119
|
value: MsgSubmitProposal;
|
|
126
120
|
};
|
|
127
|
-
type
|
|
128
|
-
value:
|
|
121
|
+
type msgCreateGroupWithPolicyParams = {
|
|
122
|
+
value: MsgCreateGroupWithPolicy;
|
|
129
123
|
};
|
|
130
|
-
type
|
|
131
|
-
value:
|
|
124
|
+
type msgExecParams = {
|
|
125
|
+
value: MsgExec;
|
|
126
|
+
};
|
|
127
|
+
type msgVoteParams = {
|
|
128
|
+
value: MsgVote;
|
|
129
|
+
};
|
|
130
|
+
type msgWithdrawProposalParams = {
|
|
131
|
+
value: MsgWithdrawProposal;
|
|
132
132
|
};
|
|
133
133
|
export declare const registry: Registry;
|
|
134
134
|
interface TxClientOptions {
|
|
@@ -137,34 +137,34 @@ interface TxClientOptions {
|
|
|
137
137
|
signer?: OfflineSigner;
|
|
138
138
|
}
|
|
139
139
|
export declare const txClient: ({ signer, prefix, addr }?: TxClientOptions) => {
|
|
140
|
+
sendMsgCreateGroupPolicy({ value, fee, memo }: sendMsgCreateGroupPolicyParams): Promise<DeliverTxResponse>;
|
|
141
|
+
sendMsgUpdateGroupPolicyAdmin({ value, fee, memo }: sendMsgUpdateGroupPolicyAdminParams): Promise<DeliverTxResponse>;
|
|
140
142
|
sendMsgLeaveGroup({ value, fee, memo }: sendMsgLeaveGroupParams): Promise<DeliverTxResponse>;
|
|
143
|
+
sendMsgUpdateGroupMetadata({ value, fee, memo }: sendMsgUpdateGroupMetadataParams): Promise<DeliverTxResponse>;
|
|
144
|
+
sendMsgUpdateGroupAdmin({ value, fee, memo }: sendMsgUpdateGroupAdminParams): Promise<DeliverTxResponse>;
|
|
145
|
+
sendMsgUpdateGroupMembers({ value, fee, memo }: sendMsgUpdateGroupMembersParams): Promise<DeliverTxResponse>;
|
|
146
|
+
sendMsgUpdateGroupPolicyDecisionPolicy({ value, fee, memo }: sendMsgUpdateGroupPolicyDecisionPolicyParams): Promise<DeliverTxResponse>;
|
|
141
147
|
sendMsgCreateGroup({ value, fee, memo }: sendMsgCreateGroupParams): Promise<DeliverTxResponse>;
|
|
142
148
|
sendMsgUpdateGroupPolicyMetadata({ value, fee, memo }: sendMsgUpdateGroupPolicyMetadataParams): Promise<DeliverTxResponse>;
|
|
143
|
-
|
|
144
|
-
sendMsgUpdateGroupAdmin({ value, fee, memo }: sendMsgUpdateGroupAdminParams): Promise<DeliverTxResponse>;
|
|
149
|
+
sendMsgSubmitProposal({ value, fee, memo }: sendMsgSubmitProposalParams): Promise<DeliverTxResponse>;
|
|
145
150
|
sendMsgCreateGroupWithPolicy({ value, fee, memo }: sendMsgCreateGroupWithPolicyParams): Promise<DeliverTxResponse>;
|
|
146
|
-
|
|
147
|
-
sendMsgWithdrawProposal({ value, fee, memo }: sendMsgWithdrawProposalParams): Promise<DeliverTxResponse>;
|
|
148
|
-
sendMsgUpdateGroupPolicyDecisionPolicy({ value, fee, memo }: sendMsgUpdateGroupPolicyDecisionPolicyParams): Promise<DeliverTxResponse>;
|
|
149
|
-
sendMsgUpdateGroupMetadata({ value, fee, memo }: sendMsgUpdateGroupMetadataParams): Promise<DeliverTxResponse>;
|
|
151
|
+
sendMsgExec({ value, fee, memo }: sendMsgExecParams): Promise<DeliverTxResponse>;
|
|
150
152
|
sendMsgVote({ value, fee, memo }: sendMsgVoteParams): Promise<DeliverTxResponse>;
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
153
|
+
sendMsgWithdrawProposal({ value, fee, memo }: sendMsgWithdrawProposalParams): Promise<DeliverTxResponse>;
|
|
154
|
+
msgCreateGroupPolicy({ value }: msgCreateGroupPolicyParams): EncodeObject;
|
|
155
|
+
msgUpdateGroupPolicyAdmin({ value }: msgUpdateGroupPolicyAdminParams): EncodeObject;
|
|
154
156
|
msgLeaveGroup({ value }: msgLeaveGroupParams): EncodeObject;
|
|
157
|
+
msgUpdateGroupMetadata({ value }: msgUpdateGroupMetadataParams): EncodeObject;
|
|
158
|
+
msgUpdateGroupAdmin({ value }: msgUpdateGroupAdminParams): EncodeObject;
|
|
159
|
+
msgUpdateGroupMembers({ value }: msgUpdateGroupMembersParams): EncodeObject;
|
|
160
|
+
msgUpdateGroupPolicyDecisionPolicy({ value }: msgUpdateGroupPolicyDecisionPolicyParams): EncodeObject;
|
|
155
161
|
msgCreateGroup({ value }: msgCreateGroupParams): EncodeObject;
|
|
156
162
|
msgUpdateGroupPolicyMetadata({ value }: msgUpdateGroupPolicyMetadataParams): EncodeObject;
|
|
157
|
-
|
|
158
|
-
msgUpdateGroupAdmin({ value }: msgUpdateGroupAdminParams): EncodeObject;
|
|
163
|
+
msgSubmitProposal({ value }: msgSubmitProposalParams): EncodeObject;
|
|
159
164
|
msgCreateGroupWithPolicy({ value }: msgCreateGroupWithPolicyParams): EncodeObject;
|
|
160
|
-
|
|
161
|
-
msgWithdrawProposal({ value }: msgWithdrawProposalParams): EncodeObject;
|
|
162
|
-
msgUpdateGroupPolicyDecisionPolicy({ value }: msgUpdateGroupPolicyDecisionPolicyParams): EncodeObject;
|
|
163
|
-
msgUpdateGroupMetadata({ value }: msgUpdateGroupMetadataParams): EncodeObject;
|
|
165
|
+
msgExec({ value }: msgExecParams): EncodeObject;
|
|
164
166
|
msgVote({ value }: msgVoteParams): EncodeObject;
|
|
165
|
-
|
|
166
|
-
msgCreateGroupPolicy({ value }: msgCreateGroupPolicyParams): EncodeObject;
|
|
167
|
-
msgUpdateGroupMembers({ value }: msgUpdateGroupMembersParams): EncodeObject;
|
|
167
|
+
msgWithdrawProposal({ value }: msgWithdrawProposalParams): EncodeObject;
|
|
168
168
|
};
|
|
169
169
|
interface QueryClientOptions {
|
|
170
170
|
addr: string;
|
|
@@ -3,25 +3,15 @@ import { DeliverTxResponse } from "@cosmjs/stargate";
|
|
|
3
3
|
import { EncodeObject, GeneratedType, OfflineSigner, Registry } from "@cosmjs/proto-signing";
|
|
4
4
|
import { IgniteClient } from "../client";
|
|
5
5
|
import { Api } from "./rest";
|
|
6
|
-
import { MsgCancelUnbondingDelegation } from "./types/cosmos/staking/v1beta1/tx";
|
|
7
|
-
import { MsgCreateValidator } from "./types/cosmos/staking/v1beta1/tx";
|
|
8
|
-
import { MsgEditValidator } from "./types/cosmos/staking/v1beta1/tx";
|
|
9
|
-
import { MsgBeginRedelegate } from "./types/cosmos/staking/v1beta1/tx";
|
|
10
6
|
import { MsgDelegate } from "./types/cosmos/staking/v1beta1/tx";
|
|
7
|
+
import { MsgBeginRedelegate } from "./types/cosmos/staking/v1beta1/tx";
|
|
8
|
+
import { MsgEditValidator } from "./types/cosmos/staking/v1beta1/tx";
|
|
11
9
|
import { MsgUndelegate } from "./types/cosmos/staking/v1beta1/tx";
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
};
|
|
18
|
-
type sendMsgCreateValidatorParams = {
|
|
19
|
-
value: MsgCreateValidator;
|
|
20
|
-
fee?: StdFee;
|
|
21
|
-
memo?: string;
|
|
22
|
-
};
|
|
23
|
-
type sendMsgEditValidatorParams = {
|
|
24
|
-
value: MsgEditValidator;
|
|
10
|
+
import { MsgCancelUnbondingDelegation } from "./types/cosmos/staking/v1beta1/tx";
|
|
11
|
+
import { MsgCreateValidator } from "./types/cosmos/staking/v1beta1/tx";
|
|
12
|
+
export { MsgDelegate, MsgBeginRedelegate, MsgEditValidator, MsgUndelegate, MsgCancelUnbondingDelegation, MsgCreateValidator };
|
|
13
|
+
type sendMsgDelegateParams = {
|
|
14
|
+
value: MsgDelegate;
|
|
25
15
|
fee?: StdFee;
|
|
26
16
|
memo?: string;
|
|
27
17
|
};
|
|
@@ -30,8 +20,8 @@ type sendMsgBeginRedelegateParams = {
|
|
|
30
20
|
fee?: StdFee;
|
|
31
21
|
memo?: string;
|
|
32
22
|
};
|
|
33
|
-
type
|
|
34
|
-
value:
|
|
23
|
+
type sendMsgEditValidatorParams = {
|
|
24
|
+
value: MsgEditValidator;
|
|
35
25
|
fee?: StdFee;
|
|
36
26
|
memo?: string;
|
|
37
27
|
};
|
|
@@ -40,24 +30,34 @@ type sendMsgUndelegateParams = {
|
|
|
40
30
|
fee?: StdFee;
|
|
41
31
|
memo?: string;
|
|
42
32
|
};
|
|
43
|
-
type
|
|
33
|
+
type sendMsgCancelUnbondingDelegationParams = {
|
|
44
34
|
value: MsgCancelUnbondingDelegation;
|
|
35
|
+
fee?: StdFee;
|
|
36
|
+
memo?: string;
|
|
45
37
|
};
|
|
46
|
-
type
|
|
38
|
+
type sendMsgCreateValidatorParams = {
|
|
47
39
|
value: MsgCreateValidator;
|
|
40
|
+
fee?: StdFee;
|
|
41
|
+
memo?: string;
|
|
48
42
|
};
|
|
49
|
-
type
|
|
50
|
-
value:
|
|
43
|
+
type msgDelegateParams = {
|
|
44
|
+
value: MsgDelegate;
|
|
51
45
|
};
|
|
52
46
|
type msgBeginRedelegateParams = {
|
|
53
47
|
value: MsgBeginRedelegate;
|
|
54
48
|
};
|
|
55
|
-
type
|
|
56
|
-
value:
|
|
49
|
+
type msgEditValidatorParams = {
|
|
50
|
+
value: MsgEditValidator;
|
|
57
51
|
};
|
|
58
52
|
type msgUndelegateParams = {
|
|
59
53
|
value: MsgUndelegate;
|
|
60
54
|
};
|
|
55
|
+
type msgCancelUnbondingDelegationParams = {
|
|
56
|
+
value: MsgCancelUnbondingDelegation;
|
|
57
|
+
};
|
|
58
|
+
type msgCreateValidatorParams = {
|
|
59
|
+
value: MsgCreateValidator;
|
|
60
|
+
};
|
|
61
61
|
export declare const registry: Registry;
|
|
62
62
|
interface TxClientOptions {
|
|
63
63
|
addr: string;
|
|
@@ -65,18 +65,18 @@ interface TxClientOptions {
|
|
|
65
65
|
signer?: OfflineSigner;
|
|
66
66
|
}
|
|
67
67
|
export declare const txClient: ({ signer, prefix, addr }?: TxClientOptions) => {
|
|
68
|
-
sendMsgCancelUnbondingDelegation({ value, fee, memo }: sendMsgCancelUnbondingDelegationParams): Promise<DeliverTxResponse>;
|
|
69
|
-
sendMsgCreateValidator({ value, fee, memo }: sendMsgCreateValidatorParams): Promise<DeliverTxResponse>;
|
|
70
|
-
sendMsgEditValidator({ value, fee, memo }: sendMsgEditValidatorParams): Promise<DeliverTxResponse>;
|
|
71
|
-
sendMsgBeginRedelegate({ value, fee, memo }: sendMsgBeginRedelegateParams): Promise<DeliverTxResponse>;
|
|
72
68
|
sendMsgDelegate({ value, fee, memo }: sendMsgDelegateParams): Promise<DeliverTxResponse>;
|
|
69
|
+
sendMsgBeginRedelegate({ value, fee, memo }: sendMsgBeginRedelegateParams): Promise<DeliverTxResponse>;
|
|
70
|
+
sendMsgEditValidator({ value, fee, memo }: sendMsgEditValidatorParams): Promise<DeliverTxResponse>;
|
|
73
71
|
sendMsgUndelegate({ value, fee, memo }: sendMsgUndelegateParams): Promise<DeliverTxResponse>;
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
msgEditValidator({ value }: msgEditValidatorParams): EncodeObject;
|
|
77
|
-
msgBeginRedelegate({ value }: msgBeginRedelegateParams): EncodeObject;
|
|
72
|
+
sendMsgCancelUnbondingDelegation({ value, fee, memo }: sendMsgCancelUnbondingDelegationParams): Promise<DeliverTxResponse>;
|
|
73
|
+
sendMsgCreateValidator({ value, fee, memo }: sendMsgCreateValidatorParams): Promise<DeliverTxResponse>;
|
|
78
74
|
msgDelegate({ value }: msgDelegateParams): EncodeObject;
|
|
75
|
+
msgBeginRedelegate({ value }: msgBeginRedelegateParams): EncodeObject;
|
|
76
|
+
msgEditValidator({ value }: msgEditValidatorParams): EncodeObject;
|
|
79
77
|
msgUndelegate({ value }: msgUndelegateParams): EncodeObject;
|
|
78
|
+
msgCancelUnbondingDelegation({ value }: msgCancelUnbondingDelegationParams): EncodeObject;
|
|
79
|
+
msgCreateValidator({ value }: msgCreateValidatorParams): EncodeObject;
|
|
80
80
|
};
|
|
81
81
|
interface QueryClientOptions {
|
|
82
82
|
addr: string;
|
|
@@ -3,10 +3,15 @@ import { DeliverTxResponse } from "@cosmjs/stargate";
|
|
|
3
3
|
import { EncodeObject, GeneratedType, OfflineSigner, Registry } from "@cosmjs/proto-signing";
|
|
4
4
|
import { IgniteClient } from "../client";
|
|
5
5
|
import { Api } from "./rest";
|
|
6
|
+
import { MsgCreatePermanentLockedAccount } from "./types/cosmos/vesting/v1beta1/tx";
|
|
6
7
|
import { MsgCreateVestingAccount } from "./types/cosmos/vesting/v1beta1/tx";
|
|
7
8
|
import { MsgCreatePeriodicVestingAccount } from "./types/cosmos/vesting/v1beta1/tx";
|
|
8
|
-
|
|
9
|
-
|
|
9
|
+
export { MsgCreatePermanentLockedAccount, MsgCreateVestingAccount, MsgCreatePeriodicVestingAccount };
|
|
10
|
+
type sendMsgCreatePermanentLockedAccountParams = {
|
|
11
|
+
value: MsgCreatePermanentLockedAccount;
|
|
12
|
+
fee?: StdFee;
|
|
13
|
+
memo?: string;
|
|
14
|
+
};
|
|
10
15
|
type sendMsgCreateVestingAccountParams = {
|
|
11
16
|
value: MsgCreateVestingAccount;
|
|
12
17
|
fee?: StdFee;
|
|
@@ -17,10 +22,8 @@ type sendMsgCreatePeriodicVestingAccountParams = {
|
|
|
17
22
|
fee?: StdFee;
|
|
18
23
|
memo?: string;
|
|
19
24
|
};
|
|
20
|
-
type
|
|
25
|
+
type msgCreatePermanentLockedAccountParams = {
|
|
21
26
|
value: MsgCreatePermanentLockedAccount;
|
|
22
|
-
fee?: StdFee;
|
|
23
|
-
memo?: string;
|
|
24
27
|
};
|
|
25
28
|
type msgCreateVestingAccountParams = {
|
|
26
29
|
value: MsgCreateVestingAccount;
|
|
@@ -28,9 +31,6 @@ type msgCreateVestingAccountParams = {
|
|
|
28
31
|
type msgCreatePeriodicVestingAccountParams = {
|
|
29
32
|
value: MsgCreatePeriodicVestingAccount;
|
|
30
33
|
};
|
|
31
|
-
type msgCreatePermanentLockedAccountParams = {
|
|
32
|
-
value: MsgCreatePermanentLockedAccount;
|
|
33
|
-
};
|
|
34
34
|
export declare const registry: Registry;
|
|
35
35
|
interface TxClientOptions {
|
|
36
36
|
addr: string;
|
|
@@ -38,12 +38,12 @@ interface TxClientOptions {
|
|
|
38
38
|
signer?: OfflineSigner;
|
|
39
39
|
}
|
|
40
40
|
export declare const txClient: ({ signer, prefix, addr }?: TxClientOptions) => {
|
|
41
|
+
sendMsgCreatePermanentLockedAccount({ value, fee, memo }: sendMsgCreatePermanentLockedAccountParams): Promise<DeliverTxResponse>;
|
|
41
42
|
sendMsgCreateVestingAccount({ value, fee, memo }: sendMsgCreateVestingAccountParams): Promise<DeliverTxResponse>;
|
|
42
43
|
sendMsgCreatePeriodicVestingAccount({ value, fee, memo }: sendMsgCreatePeriodicVestingAccountParams): Promise<DeliverTxResponse>;
|
|
43
|
-
|
|
44
|
+
msgCreatePermanentLockedAccount({ value }: msgCreatePermanentLockedAccountParams): EncodeObject;
|
|
44
45
|
msgCreateVestingAccount({ value }: msgCreateVestingAccountParams): EncodeObject;
|
|
45
46
|
msgCreatePeriodicVestingAccount({ value }: msgCreatePeriodicVestingAccountParams): EncodeObject;
|
|
46
|
-
msgCreatePermanentLockedAccount({ value }: msgCreatePermanentLockedAccountParams): EncodeObject;
|
|
47
47
|
};
|
|
48
48
|
interface QueryClientOptions {
|
|
49
49
|
addr: string;
|
|
@@ -3,10 +3,15 @@ import { DeliverTxResponse } from "@cosmjs/stargate";
|
|
|
3
3
|
import { EncodeObject, GeneratedType, OfflineSigner, Registry } from "@cosmjs/proto-signing";
|
|
4
4
|
import { IgniteClient } from "../client";
|
|
5
5
|
import { Api } from "./rest";
|
|
6
|
+
import { MsgUpdateParams } from "./types/iconlake/drop/tx";
|
|
6
7
|
import { MsgInit } from "./types/iconlake/drop/tx";
|
|
7
8
|
import { MsgMint } from "./types/iconlake/drop/tx";
|
|
8
|
-
|
|
9
|
-
|
|
9
|
+
export { MsgUpdateParams, MsgInit, MsgMint };
|
|
10
|
+
type sendMsgUpdateParamsParams = {
|
|
11
|
+
value: MsgUpdateParams;
|
|
12
|
+
fee?: StdFee;
|
|
13
|
+
memo?: string;
|
|
14
|
+
};
|
|
10
15
|
type sendMsgInitParams = {
|
|
11
16
|
value: MsgInit;
|
|
12
17
|
fee?: StdFee;
|
|
@@ -17,10 +22,8 @@ type sendMsgMintParams = {
|
|
|
17
22
|
fee?: StdFee;
|
|
18
23
|
memo?: string;
|
|
19
24
|
};
|
|
20
|
-
type
|
|
25
|
+
type msgUpdateParamsParams = {
|
|
21
26
|
value: MsgUpdateParams;
|
|
22
|
-
fee?: StdFee;
|
|
23
|
-
memo?: string;
|
|
24
27
|
};
|
|
25
28
|
type msgInitParams = {
|
|
26
29
|
value: MsgInit;
|
|
@@ -28,9 +31,6 @@ type msgInitParams = {
|
|
|
28
31
|
type msgMintParams = {
|
|
29
32
|
value: MsgMint;
|
|
30
33
|
};
|
|
31
|
-
type msgUpdateParamsParams = {
|
|
32
|
-
value: MsgUpdateParams;
|
|
33
|
-
};
|
|
34
34
|
export declare const registry: Registry;
|
|
35
35
|
interface TxClientOptions {
|
|
36
36
|
addr: string;
|
|
@@ -38,12 +38,12 @@ interface TxClientOptions {
|
|
|
38
38
|
signer?: OfflineSigner;
|
|
39
39
|
}
|
|
40
40
|
export declare const txClient: ({ signer, prefix, addr }?: TxClientOptions) => {
|
|
41
|
+
sendMsgUpdateParams({ value, fee, memo }: sendMsgUpdateParamsParams): Promise<DeliverTxResponse>;
|
|
41
42
|
sendMsgInit({ value, fee, memo }: sendMsgInitParams): Promise<DeliverTxResponse>;
|
|
42
43
|
sendMsgMint({ value, fee, memo }: sendMsgMintParams): Promise<DeliverTxResponse>;
|
|
43
|
-
|
|
44
|
+
msgUpdateParams({ value }: msgUpdateParamsParams): EncodeObject;
|
|
44
45
|
msgInit({ value }: msgInitParams): EncodeObject;
|
|
45
46
|
msgMint({ value }: msgMintParams): EncodeObject;
|
|
46
|
-
msgUpdateParams({ value }: msgUpdateParamsParams): EncodeObject;
|
|
47
47
|
};
|
|
48
48
|
interface QueryClientOptions {
|
|
49
49
|
addr: string;
|
|
@@ -135,4 +135,21 @@ export type Exact<P, I extends P> = P extends Builtin ? P : P & {
|
|
|
135
135
|
} & {
|
|
136
136
|
[K in Exclude<keyof I, KeysOfUnion<P>>]: never;
|
|
137
137
|
};
|
|
138
|
+
export declare function createDropAminoConverters(): {
|
|
139
|
+
"/iconlake.drop.MsgMint": {
|
|
140
|
+
aminoType: string;
|
|
141
|
+
toAmino: ({ creator, amount }: MsgMint) => unknown;
|
|
142
|
+
fromAmino: ({ creator, amount }: any) => MsgMint;
|
|
143
|
+
};
|
|
144
|
+
"/iconlake.drop.MsgInit": {
|
|
145
|
+
aminoType: string;
|
|
146
|
+
toAmino: ({ creator, address }: MsgInit) => unknown;
|
|
147
|
+
fromAmino: ({ creator, address }: any) => MsgInit;
|
|
148
|
+
};
|
|
149
|
+
"/iconlake.drop.MsgUpdateParams": {
|
|
150
|
+
aminoType: string;
|
|
151
|
+
toAmino: ({ authority, params }: MsgUpdateParams) => unknown;
|
|
152
|
+
fromAmino: ({ authority, params }: any) => MsgUpdateParams;
|
|
153
|
+
};
|
|
154
|
+
};
|
|
138
155
|
export {};
|
|
@@ -8,7 +8,7 @@ export interface MsgMint {
|
|
|
8
8
|
description: string;
|
|
9
9
|
uri: string;
|
|
10
10
|
uriHash: string;
|
|
11
|
-
supply:
|
|
11
|
+
supply: string;
|
|
12
12
|
}
|
|
13
13
|
export interface MsgMintResponse {
|
|
14
14
|
}
|
|
@@ -43,7 +43,7 @@ export declare const MsgMint: {
|
|
|
43
43
|
description?: string;
|
|
44
44
|
uri?: string;
|
|
45
45
|
uriHash?: string;
|
|
46
|
-
supply?:
|
|
46
|
+
supply?: string;
|
|
47
47
|
} & {
|
|
48
48
|
creator?: string;
|
|
49
49
|
classId?: string;
|
|
@@ -52,7 +52,7 @@ export declare const MsgMint: {
|
|
|
52
52
|
description?: string;
|
|
53
53
|
uri?: string;
|
|
54
54
|
uriHash?: string;
|
|
55
|
-
supply?:
|
|
55
|
+
supply?: string;
|
|
56
56
|
} & { [K in Exclude<keyof I, keyof MsgMint>]: never; }>(object: I): MsgMint;
|
|
57
57
|
};
|
|
58
58
|
export declare const MsgMintResponse: {
|
|
@@ -140,4 +140,21 @@ export type Exact<P, I extends P> = P extends Builtin ? P : P & {
|
|
|
140
140
|
} & {
|
|
141
141
|
[K in Exclude<keyof I, KeysOfUnion<P>>]: never;
|
|
142
142
|
};
|
|
143
|
+
export declare function createIconAminoConverters(): {
|
|
144
|
+
'/iconlake.icon.MsgMint': {
|
|
145
|
+
aminoType: string;
|
|
146
|
+
fromAmino(object: any): MsgMint;
|
|
147
|
+
toAmino(message: MsgMint): unknown;
|
|
148
|
+
};
|
|
149
|
+
'/iconlake.icon.MsgBurn': {
|
|
150
|
+
aminoType: string;
|
|
151
|
+
fromAmino(object: any): MsgBurn;
|
|
152
|
+
toAmino(message: MsgBurn): unknown;
|
|
153
|
+
};
|
|
154
|
+
'/iconlake.icon.MsgUpdateClass': {
|
|
155
|
+
aminoType: string;
|
|
156
|
+
fromAmino(object: any): MsgUpdateClass;
|
|
157
|
+
toAmino(message: MsgUpdateClass): unknown;
|
|
158
|
+
};
|
|
159
|
+
};
|
|
143
160
|
export {};
|