Type alias MessageWithInfo

MessageWithInfo: Prettify<{
    info: MsgSendInfo;
    typeUrl: MsgSendTypeUrl;
    value: MsgSend;
} | {
    info: MsgExecuteContractInfo;
    typeUrl: MsgExecuteContractTypeUrl;
    value: MsgExecuteContract;
} | {
    info: MsgTransferInfo;
    typeUrl: MsgTransferTypeUrl;
    value: MsgTransfer;
} | {
    info: MsgDepositForBurnInfo;
    typeUrl: MsgDepositForBurnTypeUrl;
    value: MsgDepositForBurn;
} | {
    info: MsgDepositForBurnWithCallerInfo;
    typeUrl: MsgDepositForBurnWithCallerTypeUrl;
    value: MsgDepositForBurnWithCaller;
}>