MsgSend represents a message to send coins from one account to another.

interface MsgSend {
    amount: Coin[];
    fromAddress: string;
    toAddress: string;
}

Properties

amount: Coin[]
fromAddress: string
toAddress: string