Interface VoteOperation

Vote on a comment.

interface VoteOperation {
    0: "vote";
    1: {
        author: string;
        permlink: string;
        voter: string;
        weight: number;
    };
}

Hierarchy (view full)

Properties

0 1

Properties

0
1: {
    author: string;
    permlink: string;
    voter: string;
    weight: number;
}

Type declaration

  • author: string
  • permlink: string
  • voter: string
  • weight: number

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