@mictonode/widget 0.3.15 → 0.3.17
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/.github/FUNDING.yml +3 -3
- package/.github/workflows/npm-publish.yml +34 -34
- package/.prettierrc.json +9 -9
- package/.vscode/extensions.json +3 -3
- package/LICENSE +674 -674
- package/README.md +41 -41
- package/dist/{main-3096050c.js → main-465ae991.js} +155 -150
- package/dist/ping-widget.js +2 -2
- package/dist/ping-widget.umd.cjs +17 -17
- package/dist/{query.lcd-1625d320.js → query.lcd-d9c6163c.js} +1 -1
- package/dist/{query.rpc.Query-45d48ded.js → query.rpc.Query-a479e6f9.js} +1 -1
- package/dist/{tx.rpc.msg-0e09f357.js → tx.rpc.msg-7444045d.js} +1 -1
- package/example/.vscode/extensions.json +3 -3
- package/example/README.md +7 -7
- package/example/index.html +12 -12
- package/example/package.json +19 -19
- package/example/pnpm-lock.yaml +465 -465
- package/example/public/cdn.html +19 -19
- package/example/src/App.vue +73 -73
- package/example/src/main.js +4 -4
- package/example/vite.config.js +7 -7
- package/index.html +12 -12
- package/lib/components/ConnectWallet/index.vue +262 -262
- package/lib/components/TokenConvert/index.vue +1033 -1033
- package/lib/components/TokenConvert/tokens.ts +36 -36
- package/lib/components/TxDialog/index.vue +13 -9
- package/lib/components/TxDialog/messages/Delegate.vue +174 -174
- package/lib/components/TxDialog/messages/Deposit.vue +96 -96
- package/lib/components/TxDialog/messages/Redelegate.vue +160 -160
- package/lib/components/TxDialog/messages/Send.vue +142 -142
- package/lib/components/TxDialog/messages/Transfer.vue +248 -248
- package/lib/components/TxDialog/messages/Unbond.vue +103 -103
- package/lib/components/TxDialog/messages/Vote.vue +62 -62
- package/lib/components/TxDialog/messages/Withdraw.vue +55 -55
- package/lib/components/TxDialog/messages/WithdrawCommission.vue +74 -74
- package/lib/components/TxDialog/wasm/ClearAdmin.vue +55 -55
- package/lib/components/TxDialog/wasm/ExecuteContract.vue +98 -98
- package/lib/components/TxDialog/wasm/InstantiateContract.vue +108 -108
- package/lib/components/TxDialog/wasm/MigrateContract.vue +76 -76
- package/lib/components/TxDialog/wasm/MigrateContract2.vue +76 -76
- package/lib/components/TxDialog/wasm/StoreCode.vue +100 -100
- package/lib/components/TxDialog/wasm/UpdateAdmin.vue +74 -74
- package/lib/main.css +132 -7
- package/lib/main.ts +23 -23
- package/lib/utils/TokenUnitConverter.ts +44 -44
- package/lib/utils/format.ts +16 -16
- package/lib/utils/http.ts +154 -154
- package/lib/utils/type.ts +56 -56
- package/lib/wallet/EthermintMessageAdapter.ts +135 -135
- package/lib/wallet/UniClient.ts +144 -144
- package/lib/wallet/Wallet.ts +142 -133
- package/lib/wallet/wallets/KeplerWallet.ts +141 -141
- package/lib/wallet/wallets/LeapWallet.ts +141 -141
- package/lib/wallet/wallets/LedgerWallet.ts +202 -202
- package/lib/wallet/wallets/MetamaskSnapWallet.ts +105 -105
- package/lib/wallet/wallets/MetamaskWallet.ts +173 -173
- package/lib/wallet/wallets/OKXWallet.ts +202 -202
- package/lib/wallet/wallets/UnisatWallet.ts +198 -198
- package/package.json +3 -3
- package/postcss.config.js +6 -6
- package/src/App.vue +225 -225
- package/src/main.ts +7 -4
- package/src/styles/design-system.css +150 -0
- package/src/vite-env.d.ts +1 -1
- package/tailwind.config.js +211 -34
- package/tsconfig.json +25 -25
- package/tsconfig.node.json +10 -10
- package/vite.config.ts +62 -62
- package/vue-shim.d.ts +6 -6
package/lib/utils/type.ts
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
import { EncodeObject } from '@cosmjs/proto-signing';
|
|
2
|
-
import { SignerData, StdFee } from '@cosmjs/stargate';
|
|
3
|
-
import type { App, Plugin } from 'vue';
|
|
4
|
-
export const withInstall = <T>(comp: T) => {
|
|
5
|
-
const c = comp as any;
|
|
6
|
-
c.install = function (app: App) {
|
|
7
|
-
app.component(c.displayName || c.name, comp as any);
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
return comp as T & Plugin;
|
|
11
|
-
};
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
export interface Coin {
|
|
15
|
-
amount: string,
|
|
16
|
-
denom: string,
|
|
17
|
-
}
|
|
18
|
-
export interface Configuration {
|
|
19
|
-
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
export interface CoinMetadata {
|
|
23
|
-
description: string,
|
|
24
|
-
denom_units: {
|
|
25
|
-
denom: string,
|
|
26
|
-
exponent: number,
|
|
27
|
-
aliases: string[]
|
|
28
|
-
}[],
|
|
29
|
-
base: string,
|
|
30
|
-
display: string,
|
|
31
|
-
name: string,
|
|
32
|
-
symbol: string
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
export interface TxResponse {
|
|
36
|
-
height: string,
|
|
37
|
-
txhash: string,
|
|
38
|
-
codespace: string,
|
|
39
|
-
code: 0,
|
|
40
|
-
data: string,
|
|
41
|
-
raw_log: string,
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
export interface Transaction {
|
|
45
|
-
chainId: string;
|
|
46
|
-
signerAddress: string;
|
|
47
|
-
messages: readonly EncodeObject[];
|
|
48
|
-
fee: StdFee;
|
|
49
|
-
memo: string;
|
|
50
|
-
signerData: SignerData
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
export enum BroadcastMode {
|
|
54
|
-
SYNC = 'BROADCAST_MODE_SYNC',
|
|
55
|
-
BLOCK = 'BROADCAST_MODE_BLOCK',
|
|
56
|
-
ASYNC = 'BROADCAST_MODE_ASYNC',
|
|
1
|
+
import { EncodeObject } from '@cosmjs/proto-signing';
|
|
2
|
+
import { SignerData, StdFee } from '@cosmjs/stargate';
|
|
3
|
+
import type { App, Plugin } from 'vue';
|
|
4
|
+
export const withInstall = <T>(comp: T) => {
|
|
5
|
+
const c = comp as any;
|
|
6
|
+
c.install = function (app: App) {
|
|
7
|
+
app.component(c.displayName || c.name, comp as any);
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
return comp as T & Plugin;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
export interface Coin {
|
|
15
|
+
amount: string,
|
|
16
|
+
denom: string,
|
|
17
|
+
}
|
|
18
|
+
export interface Configuration {
|
|
19
|
+
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
export interface CoinMetadata {
|
|
23
|
+
description: string,
|
|
24
|
+
denom_units: {
|
|
25
|
+
denom: string,
|
|
26
|
+
exponent: number,
|
|
27
|
+
aliases: string[]
|
|
28
|
+
}[],
|
|
29
|
+
base: string,
|
|
30
|
+
display: string,
|
|
31
|
+
name: string,
|
|
32
|
+
symbol: string
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export interface TxResponse {
|
|
36
|
+
height: string,
|
|
37
|
+
txhash: string,
|
|
38
|
+
codespace: string,
|
|
39
|
+
code: 0,
|
|
40
|
+
data: string,
|
|
41
|
+
raw_log: string,
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export interface Transaction {
|
|
45
|
+
chainId: string;
|
|
46
|
+
signerAddress: string;
|
|
47
|
+
messages: readonly EncodeObject[];
|
|
48
|
+
fee: StdFee;
|
|
49
|
+
memo: string;
|
|
50
|
+
signerData: SignerData
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export enum BroadcastMode {
|
|
54
|
+
SYNC = 'BROADCAST_MODE_SYNC',
|
|
55
|
+
BLOCK = 'BROADCAST_MODE_BLOCK',
|
|
56
|
+
ASYNC = 'BROADCAST_MODE_ASYNC',
|
|
57
57
|
}
|
|
@@ -1,136 +1,136 @@
|
|
|
1
|
-
import { EncodeObject } from "@cosmjs/proto-signing"
|
|
2
|
-
import {
|
|
3
|
-
createMsgWithdrawDelegatorReward,
|
|
4
|
-
createIBCMsgTransfer,
|
|
5
|
-
createMsgSend,
|
|
6
|
-
createMsgBeginRedelegate,
|
|
7
|
-
createMsgDelegate,
|
|
8
|
-
createMsgUndelegate,
|
|
9
|
-
createMsgVote,
|
|
10
|
-
// createMsgWithdrawValidatorCommission,
|
|
11
|
-
} from '@tharsis/proto'
|
|
12
|
-
import {
|
|
13
|
-
MSG_WITHDRAW_DELEGATOR_REWARD_TYPES,
|
|
14
|
-
MSG_BEGIN_REDELEGATE_TYPES,
|
|
15
|
-
MSG_DELEGATE_TYPES,
|
|
16
|
-
MSG_SEND_TYPES,
|
|
17
|
-
MSG_UNDELEGATE_TYPES,
|
|
18
|
-
MSG_VOTE_TYPES,
|
|
19
|
-
IBC_MSG_TRANSFER_TYPES,
|
|
20
|
-
MSG_WITHDRAW_VALIDATOR_COMMISSION_TYPES,
|
|
21
|
-
} from "@tharsis/eip712"
|
|
22
|
-
|
|
23
|
-
export interface MessageAdapter {
|
|
24
|
-
toProto(message: EncodeObject): object
|
|
25
|
-
getTypes: ()=> object
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
export class WithdrawMessageAdapter implements MessageAdapter {
|
|
29
|
-
toProto(message: EncodeObject) {
|
|
30
|
-
const param = message.value
|
|
31
|
-
return createMsgWithdrawDelegatorReward(param.delegatorAddress, param.validatorAddress)
|
|
32
|
-
}
|
|
33
|
-
getTypes() {
|
|
34
|
-
return MSG_WITHDRAW_DELEGATOR_REWARD_TYPES
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
export class WithdrawCommissionMessageAdapter implements MessageAdapter {
|
|
39
|
-
toProto(message: EncodeObject) {
|
|
40
|
-
const param = message.value
|
|
41
|
-
return createMsgWithdrawDelegatorReward(param.delegatorAddress, param.validatorAddress)
|
|
42
|
-
}
|
|
43
|
-
getTypes() {
|
|
44
|
-
return MSG_WITHDRAW_VALIDATOR_COMMISSION_TYPES
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
export class BeginRedelegateMessageAdapter implements MessageAdapter {
|
|
49
|
-
toProto(message: EncodeObject) {
|
|
50
|
-
const param = message.value
|
|
51
|
-
return createMsgBeginRedelegate(
|
|
52
|
-
param.delegatorAddress,
|
|
53
|
-
param.validatorSrcAddress,
|
|
54
|
-
param.validatorDstAddress,
|
|
55
|
-
param.amount.amount,
|
|
56
|
-
param.amount.denom)
|
|
57
|
-
}
|
|
58
|
-
getTypes() {
|
|
59
|
-
return MSG_BEGIN_REDELEGATE_TYPES
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
export class DelegateMessageAdapter implements MessageAdapter {
|
|
64
|
-
toProto(message: EncodeObject) {
|
|
65
|
-
const param = message.value
|
|
66
|
-
const amount = Array.isArray(param.amount) ? param.amount[0] : param.amount
|
|
67
|
-
return createMsgDelegate(param.delegatorAddress, param.validatorAddress, amount.amount, amount.denom)
|
|
68
|
-
}
|
|
69
|
-
getTypes() {
|
|
70
|
-
return MSG_DELEGATE_TYPES
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
export class SendMessageAdapter implements MessageAdapter {
|
|
75
|
-
toProto(message: EncodeObject) {
|
|
76
|
-
const param = message.value
|
|
77
|
-
const amount = Array.isArray(param.amount) ? param.amount[0] : param.amount
|
|
78
|
-
return createMsgSend(param.fromAddress, param.toAddress, amount.amount, amount.denom)
|
|
79
|
-
}
|
|
80
|
-
getTypes() {
|
|
81
|
-
return MSG_SEND_TYPES
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
export class UndelegateMessageAdapter implements MessageAdapter {
|
|
86
|
-
toProto(message: EncodeObject) {
|
|
87
|
-
const param = message.value
|
|
88
|
-
const amount = Array.isArray(param.amount) ? param.amount[0] : param.amount
|
|
89
|
-
return createMsgUndelegate(param.delegatorAddress, param.validatorAddress, amount.amount, amount.denom)
|
|
90
|
-
}
|
|
91
|
-
getTypes() {
|
|
92
|
-
return MSG_UNDELEGATE_TYPES
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
export class VoteMessageAdapter implements MessageAdapter {
|
|
97
|
-
toProto(message: EncodeObject) {
|
|
98
|
-
const param = message.value
|
|
99
|
-
return createMsgVote(param.proposalId, param.option, param.voter)
|
|
100
|
-
}
|
|
101
|
-
getTypes() {
|
|
102
|
-
return MSG_VOTE_TYPES
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
export class IBCMessageAdapter implements MessageAdapter {
|
|
107
|
-
toProto(message: EncodeObject) {
|
|
108
|
-
const param = message.value
|
|
109
|
-
return createIBCMsgTransfer(
|
|
110
|
-
param.sourcePort,
|
|
111
|
-
param.sourceChannel,
|
|
112
|
-
param.amount.amount,
|
|
113
|
-
param.amount.denom,
|
|
114
|
-
param.sender,
|
|
115
|
-
param.receiver,
|
|
116
|
-
param.revisionNumber,
|
|
117
|
-
param.revisionHeight,
|
|
118
|
-
param.timeoutTimestamp
|
|
119
|
-
)
|
|
120
|
-
}
|
|
121
|
-
getTypes() {
|
|
122
|
-
return IBC_MSG_TRANSFER_TYPES
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
export const defaultMessageAdapter: Record<string, MessageAdapter> = {
|
|
128
|
-
"/cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward": new WithdrawMessageAdapter(),
|
|
129
|
-
"/cosmos.staking.v1beta1.MsgDelegate": new DelegateMessageAdapter(),
|
|
130
|
-
"/cosmos.staking.v1beta1.MsgBeginRedelegate": new BeginRedelegateMessageAdapter(),
|
|
131
|
-
"/cosmos.staking.v1beta1.MsgUndelegate": new UndelegateMessageAdapter(),
|
|
132
|
-
"/cosmos.bank.v1beta1.MsgSend": new SendMessageAdapter(),
|
|
133
|
-
"/cosmos.gov.v1beta1.MsgVote": new VoteMessageAdapter(),
|
|
134
|
-
"/ibc.applications.transfer.v1.MsgTransfer": new IBCMessageAdapter(),
|
|
135
|
-
"/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission": new WithdrawCommissionMessageAdapter()
|
|
1
|
+
import { EncodeObject } from "@cosmjs/proto-signing"
|
|
2
|
+
import {
|
|
3
|
+
createMsgWithdrawDelegatorReward,
|
|
4
|
+
createIBCMsgTransfer,
|
|
5
|
+
createMsgSend,
|
|
6
|
+
createMsgBeginRedelegate,
|
|
7
|
+
createMsgDelegate,
|
|
8
|
+
createMsgUndelegate,
|
|
9
|
+
createMsgVote,
|
|
10
|
+
// createMsgWithdrawValidatorCommission,
|
|
11
|
+
} from '@tharsis/proto'
|
|
12
|
+
import {
|
|
13
|
+
MSG_WITHDRAW_DELEGATOR_REWARD_TYPES,
|
|
14
|
+
MSG_BEGIN_REDELEGATE_TYPES,
|
|
15
|
+
MSG_DELEGATE_TYPES,
|
|
16
|
+
MSG_SEND_TYPES,
|
|
17
|
+
MSG_UNDELEGATE_TYPES,
|
|
18
|
+
MSG_VOTE_TYPES,
|
|
19
|
+
IBC_MSG_TRANSFER_TYPES,
|
|
20
|
+
MSG_WITHDRAW_VALIDATOR_COMMISSION_TYPES,
|
|
21
|
+
} from "@tharsis/eip712"
|
|
22
|
+
|
|
23
|
+
export interface MessageAdapter {
|
|
24
|
+
toProto(message: EncodeObject): object
|
|
25
|
+
getTypes: ()=> object
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export class WithdrawMessageAdapter implements MessageAdapter {
|
|
29
|
+
toProto(message: EncodeObject) {
|
|
30
|
+
const param = message.value
|
|
31
|
+
return createMsgWithdrawDelegatorReward(param.delegatorAddress, param.validatorAddress)
|
|
32
|
+
}
|
|
33
|
+
getTypes() {
|
|
34
|
+
return MSG_WITHDRAW_DELEGATOR_REWARD_TYPES
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export class WithdrawCommissionMessageAdapter implements MessageAdapter {
|
|
39
|
+
toProto(message: EncodeObject) {
|
|
40
|
+
const param = message.value
|
|
41
|
+
return createMsgWithdrawDelegatorReward(param.delegatorAddress, param.validatorAddress)
|
|
42
|
+
}
|
|
43
|
+
getTypes() {
|
|
44
|
+
return MSG_WITHDRAW_VALIDATOR_COMMISSION_TYPES
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export class BeginRedelegateMessageAdapter implements MessageAdapter {
|
|
49
|
+
toProto(message: EncodeObject) {
|
|
50
|
+
const param = message.value
|
|
51
|
+
return createMsgBeginRedelegate(
|
|
52
|
+
param.delegatorAddress,
|
|
53
|
+
param.validatorSrcAddress,
|
|
54
|
+
param.validatorDstAddress,
|
|
55
|
+
param.amount.amount,
|
|
56
|
+
param.amount.denom)
|
|
57
|
+
}
|
|
58
|
+
getTypes() {
|
|
59
|
+
return MSG_BEGIN_REDELEGATE_TYPES
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export class DelegateMessageAdapter implements MessageAdapter {
|
|
64
|
+
toProto(message: EncodeObject) {
|
|
65
|
+
const param = message.value
|
|
66
|
+
const amount = Array.isArray(param.amount) ? param.amount[0] : param.amount
|
|
67
|
+
return createMsgDelegate(param.delegatorAddress, param.validatorAddress, amount.amount, amount.denom)
|
|
68
|
+
}
|
|
69
|
+
getTypes() {
|
|
70
|
+
return MSG_DELEGATE_TYPES
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export class SendMessageAdapter implements MessageAdapter {
|
|
75
|
+
toProto(message: EncodeObject) {
|
|
76
|
+
const param = message.value
|
|
77
|
+
const amount = Array.isArray(param.amount) ? param.amount[0] : param.amount
|
|
78
|
+
return createMsgSend(param.fromAddress, param.toAddress, amount.amount, amount.denom)
|
|
79
|
+
}
|
|
80
|
+
getTypes() {
|
|
81
|
+
return MSG_SEND_TYPES
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export class UndelegateMessageAdapter implements MessageAdapter {
|
|
86
|
+
toProto(message: EncodeObject) {
|
|
87
|
+
const param = message.value
|
|
88
|
+
const amount = Array.isArray(param.amount) ? param.amount[0] : param.amount
|
|
89
|
+
return createMsgUndelegate(param.delegatorAddress, param.validatorAddress, amount.amount, amount.denom)
|
|
90
|
+
}
|
|
91
|
+
getTypes() {
|
|
92
|
+
return MSG_UNDELEGATE_TYPES
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export class VoteMessageAdapter implements MessageAdapter {
|
|
97
|
+
toProto(message: EncodeObject) {
|
|
98
|
+
const param = message.value
|
|
99
|
+
return createMsgVote(param.proposalId, param.option, param.voter)
|
|
100
|
+
}
|
|
101
|
+
getTypes() {
|
|
102
|
+
return MSG_VOTE_TYPES
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
export class IBCMessageAdapter implements MessageAdapter {
|
|
107
|
+
toProto(message: EncodeObject) {
|
|
108
|
+
const param = message.value
|
|
109
|
+
return createIBCMsgTransfer(
|
|
110
|
+
param.sourcePort,
|
|
111
|
+
param.sourceChannel,
|
|
112
|
+
param.amount.amount,
|
|
113
|
+
param.amount.denom,
|
|
114
|
+
param.sender,
|
|
115
|
+
param.receiver,
|
|
116
|
+
param.revisionNumber,
|
|
117
|
+
param.revisionHeight,
|
|
118
|
+
param.timeoutTimestamp
|
|
119
|
+
)
|
|
120
|
+
}
|
|
121
|
+
getTypes() {
|
|
122
|
+
return IBC_MSG_TRANSFER_TYPES
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
export const defaultMessageAdapter: Record<string, MessageAdapter> = {
|
|
128
|
+
"/cosmos.distribution.v1beta1.MsgWithdrawDelegatorReward": new WithdrawMessageAdapter(),
|
|
129
|
+
"/cosmos.staking.v1beta1.MsgDelegate": new DelegateMessageAdapter(),
|
|
130
|
+
"/cosmos.staking.v1beta1.MsgBeginRedelegate": new BeginRedelegateMessageAdapter(),
|
|
131
|
+
"/cosmos.staking.v1beta1.MsgUndelegate": new UndelegateMessageAdapter(),
|
|
132
|
+
"/cosmos.bank.v1beta1.MsgSend": new SendMessageAdapter(),
|
|
133
|
+
"/cosmos.gov.v1beta1.MsgVote": new VoteMessageAdapter(),
|
|
134
|
+
"/ibc.applications.transfer.v1.MsgTransfer": new IBCMessageAdapter(),
|
|
135
|
+
"/cosmos.distribution.v1beta1.MsgWithdrawValidatorCommission": new WithdrawCommissionMessageAdapter()
|
|
136
136
|
}
|