Interface AppliedAccountWitnessVoteOperation

Vote/Unvote for a Witness.

interface AppliedAccountWitnessVoteOperation {
    block: number;
    op: {
        type: "account_witness_vote_operation";
        value: {
            account: string;
            approve: boolean;
            witness: string;
        };
    };
    op_in_trx: number;
    timestamp: string;
    trx_id: string;
    trx_in_block: number;
    virtual_op: number;
}

Hierarchy (view full)

Properties

block: number
op: {
    type: "account_witness_vote_operation";
    value: {
        account: string;
        approve: boolean;
        witness: string;
    };
}
op_in_trx: number
timestamp: string
trx_id: string
trx_in_block: number
virtual_op: number