Interface AccountWitnessVoteOperation

Vote/Unvote for a Witness.

interface AccountWitnessVoteOperation {
    0: "account_witness_vote";
    1: {
        account: string;
        approve: boolean;
        witness: string;
    };
}

Hierarchy (view full)

Properties

0 1

Properties

0
1: {
    account: string;
    approve: boolean;
    witness: string;
}