Interface AppliedVoteOperation

Vote on a comment.

interface AppliedVoteOperation {
    block: number;
    op: {
        type: "vote_operation";
        value: {
            author: string;
            permlink: string;
            voter: string;
            weight: number;
        };
    };
    op_in_trx: number;
    timestamp: string;
    trx_id: string;
    trx_in_block: number;
    virtual_op: number;
}

Hierarchy (view full)

Properties

block: number
op: {
    type: "vote_operation";
    value: {
        author: string;
        permlink: string;
        voter: string;
        weight: number;
    };
}

Type declaration

  • type: "vote_operation"
  • value: {
        author: string;
        permlink: string;
        voter: string;
        weight: number;
    }
    • author: string
    • permlink: string
    • voter: string
    • weight: number

      Voting weight, 100% = 10000 (100_PERCENT).

op_in_trx: number
timestamp: string
trx_id: string
trx_in_block: number
virtual_op: number