carbon-js-sdk 0.11.43 → 0.11.45
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.
|
@@ -47,6 +47,7 @@ const TxTypes = {
|
|
|
47
47
|
UpdateEModeCategory: "cdp/UpdateEModeCategory",
|
|
48
48
|
SetAccountEMode: "cdp/SetAccountEMode",
|
|
49
49
|
RemoveAccountEMode: "cdp/RemoveAccountEMode",
|
|
50
|
+
ConvertTokenInCdpToGroupTokens: "cdp/ConvertTokenInCdpToGroupTokens",
|
|
50
51
|
};
|
|
51
52
|
const MsgSupplyAsset = {
|
|
52
53
|
aminoType: TxTypes.SupplyAsset,
|
|
@@ -151,6 +152,10 @@ const MsgRemoveAccountEMode = {
|
|
|
151
152
|
aminoType: TxTypes.RemoveAccountEMode,
|
|
152
153
|
valueMap: {},
|
|
153
154
|
};
|
|
155
|
+
const MsgConvertTokenInCdpToGroupTokens = {
|
|
156
|
+
aminoType: TxTypes.ConvertTokenInCdpToGroupTokens,
|
|
157
|
+
valueMap: {},
|
|
158
|
+
};
|
|
154
159
|
const CdpAmino = {
|
|
155
160
|
[CarbonTx.Types.MsgSupplyAsset]: (0, utils_1.generateAminoType)(MsgSupplyAsset),
|
|
156
161
|
[CarbonTx.Types.MsgWithdrawAsset]: (0, utils_1.generateAminoType)(MsgWithdrawAsset),
|
|
@@ -173,5 +178,6 @@ const CdpAmino = {
|
|
|
173
178
|
[CarbonTx.Types.MsgUpdateEModeCategory]: (0, utils_1.generateAminoType)(MsgUpdateEModeCategory),
|
|
174
179
|
[CarbonTx.Types.MsgSetAccountEMode]: (0, utils_1.generateAminoType)(MsgSetAccountEMode),
|
|
175
180
|
[CarbonTx.Types.MsgRemoveAccountEMode]: (0, utils_1.generateAminoType)(MsgRemoveAccountEMode),
|
|
181
|
+
[CarbonTx.Types.MsgConvertTokenInCdpToGroupTokens]: (0, utils_1.generateAminoType)(MsgConvertTokenInCdpToGroupTokens),
|
|
176
182
|
};
|
|
177
183
|
exports.default = CdpAmino;
|