JsonParsedVoteAccount
type JsonParsedVoteAccount = RpcParsedInfo<{
authorizedVoters: Readonly<{
authorizedVoter: Address;
epoch: Epoch;
}>[];
authorizedWithdrawer: Address;
blockRevenueCollector: Address;
blockRevenueCommissionBps: bigint;
blsPubkeyCompressed: string | null;
commission: number;
epochCredits: Readonly<{
credits: StringifiedBigInt;
epoch: Epoch;
previousCredits: StringifiedBigInt;
}>[];
inflationRewardsCollector: Address;
inflationRewardsCommissionBps: bigint;
lastTimestamp: Readonly<{
slot: Slot;
timestamp: UnixTimestamp;
}>;
nodePubkey: Address;
pendingDelegatorRewards: StringifiedBigInt;
priorVoters: Readonly<{
authorizedPubkey: Address;
epochOfLastAuthorizedSwitch: Epoch;
targetEpoch: Epoch;
}>[];
rootSlot: Slot | null;
votes: Readonly<{
confirmationCount: number;
latency: bigint;
slot: Slot;
}>[];
}>;