Interface IAddressInfo

Represents the address information including balances, datastore keys, roll counts, and information about created blocks, endorsements, and operations.

interface IAddressInfo {
    address: string;
    candidate_balance: string;
    candidate_datastore_keys: number[][];
    candidate_roll_count: number;
    created_blocks: string[];
    created_endorsements: string[];
    created_operations: string[];
    cycle_infos: ICycleInfos[];
    deferred_credits: IDeferredCredits[];
    final_balance: string;
    final_datastore_keys: number[][];
    final_roll_count: number;
    next_block_draws: ISlot[];
    next_endorsement_draws: IEndorsementDraws[];
    thread: number;
}

Hierarchy (view full)

Properties

address: string
candidate_balance: string
candidate_datastore_keys: number[][]
candidate_roll_count: number
created_blocks: string[]
created_endorsements: string[]
created_operations: string[]
cycle_infos: ICycleInfos[]
deferred_credits: IDeferredCredits[]
final_balance: string
final_datastore_keys: number[][]
final_roll_count: number
next_block_draws: ISlot[]
next_endorsement_draws: IEndorsementDraws[]
thread: number

Generated using TypeDoc