MsgSubmitProposal defines an sdk.Msg type that supports submitting arbitrary proposal Content.

interface MsgSubmitProposal {
    content?: Any | TextProposal;
    initialDeposit: Coin[];
    isExpedited: boolean;
    proposer: string;
}

Properties

content?: Any | TextProposal
initialDeposit: Coin[]
isExpedited: boolean
proposer: string