MsgMint is the sdk.Msg type for allowing an admin account to mint more of a token. For now, we only support minting to the sender account

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

Properties

Properties

amount: undefined | Coin
sender: string