Msg defines the bank Msg service.

interface Msg {
    multiSend(request: MsgMultiSend): Promise<MsgMultiSendResponse>;
    send(request: MsgSend): Promise<MsgSendResponse>;
}

Implemented by

Methods

Methods

  • MultiSend defines a method for sending coins from some accounts to other accounts.

    Parameters

    Returns Promise<MsgMultiSendResponse>

  • Send defines a method for sending coins from one account to another account.

    Parameters

    Returns Promise<MsgSendResponse>