interface Vote {
    num_votes: bigint;
    proposal_id: bigint;
    should_pass: Boolean;
    stake_pool: string;
    voter: string;
}

Properties

num_votes: bigint
proposal_id: bigint
should_pass: Boolean
stake_pool: string
voter: string