MsgBurn is the sdk.Msg type for allowing an admin account to burn a token. For now, we only support burning from the sender account.

interface MsgBurn {
    amount: undefined | Coin;
    sender: string;
}

Properties

Properties

amount: undefined | Coin
sender: string