Interface DelegatesResponse

interface DelegatesResponse {
    active_consensus_key?: string;
    active_staking_parameters?: StakingParameters;
    baking_power?: string;
    balance?: BigNumber;
    consensus_key?: {
        active: {
            pk: string;
            pkh: string;
        };
        pendings?: {
            cycle: number;
            pk: string;
            pkh: string;
        }[];
    };
    current_ballot?: BallotVote;
    current_frozen_deposits?: BigNumber;
    current_proposals?: string[];
    current_voting_power?: BigNumber;
    dal_participation?: {
        delegate_attestable_dal_slots: number;
        delegate_attested_dal_slots: number;
        denounced: true;
        expected_assigned_shards_per_slot: number;
        expected_dal_rewards: string;
        sufficient_dal_participationa: true;
    };
    deactivated: boolean;
    delegated_balance?: BigNumber;
    delegated_contracts?: string[];
    delegators?: string[];
    denunciations?: {
        misbehaviour: {
            kind: "attestation" | "block" | "preattestation";
            level: number;
            round: number;
        };
        operation_hash: string;
        rewarded: string;
    }[];
    estimated_shared_pending_slashed_amount?: string;
    external_delegated?: string;
    external_staked?: string;
    frozen_balance?: BigNumber;
    frozen_balance_by_cycle?: Frozenbalancebycycle[];
    frozen_deposits?: BigNumber;
    frozen_deposits_limit?: BigNumber;
    full_balance?: BigNumber;
    grace_period: number;
    is_forbidden?: boolean;
    min_delegated_in_current_cycle?: MinDelegatedInCurrentCycle;
    own_delegated?: string;
    own_full_balance?: string;
    own_staked?: string;
    participation?: {
        expected_attesting_rewards: string;
        expected_cycle_activity: number;
        minimal_cycle_activity: number;
        missed_levels: number;
        missed_slots: number;
        remaining_allowed_missed_slots: number;
    };
    pending_consensus_keys?: PendingConsensusKey[];
    pending_denunciations?: boolean;
    pending_staking_parameters?: {
        cycle: number;
        parameters: StakingParameters;
    }[];
    remaining_proposals?: number;
    stakers?: {
        frozen_deposits: string;
        staker: string;
    }[];
    staking_balance?: BigNumber;
    staking_denominator?: BigNumber;
    total_delegated?: string;
    total_delegated_stake?: BigNumber;
    total_staked?: string;
    total_unstaked_per_cycle?: {
        cycle: number;
        deposit: string;
    }[];
    voting_info?: VotingInfoResponse;
    voting_power?: BigNumber;
}

Properties

active_consensus_key?: string
active_staking_parameters?: StakingParameters
baking_power?: string
balance?: BigNumber
consensus_key?: {
    active: {
        pk: string;
        pkh: string;
    };
    pendings?: {
        cycle: number;
        pk: string;
        pkh: string;
    }[];
}
current_ballot?: BallotVote
current_frozen_deposits?: BigNumber
current_proposals?: string[]
current_voting_power?: BigNumber
dal_participation?: {
    delegate_attestable_dal_slots: number;
    delegate_attested_dal_slots: number;
    denounced: true;
    expected_assigned_shards_per_slot: number;
    expected_dal_rewards: string;
    sufficient_dal_participationa: true;
}
deactivated: boolean
delegated_balance?: BigNumber
delegated_contracts?: string[]
delegators?: string[]
denunciations?: {
    misbehaviour: {
        kind: "attestation" | "block" | "preattestation";
        level: number;
        round: number;
    };
    operation_hash: string;
    rewarded: string;
}[]
estimated_shared_pending_slashed_amount?: string
external_delegated?: string
external_staked?: string
frozen_balance?: BigNumber
frozen_balance_by_cycle?: Frozenbalancebycycle[]
frozen_deposits?: BigNumber
frozen_deposits_limit?: BigNumber
full_balance?: BigNumber
grace_period: number
is_forbidden?: boolean
min_delegated_in_current_cycle?: MinDelegatedInCurrentCycle
own_delegated?: string
own_full_balance?: string
own_staked?: string
participation?: {
    expected_attesting_rewards: string;
    expected_cycle_activity: number;
    minimal_cycle_activity: number;
    missed_levels: number;
    missed_slots: number;
    remaining_allowed_missed_slots: number;
}
pending_consensus_keys?: PendingConsensusKey[]
pending_denunciations?: boolean
pending_staking_parameters?: {
    cycle: number;
    parameters: StakingParameters;
}[]
remaining_proposals?: number
stakers?: {
    frozen_deposits: string;
    staker: string;
}[]
staking_balance?: BigNumber
staking_denominator?: BigNumber
total_delegated?: string
total_delegated_stake?: BigNumber
total_staked?: string
total_unstaked_per_cycle?: {
    cycle: number;
    deposit: string;
}[]
voting_info?: VotingInfoResponse
voting_power?: BigNumber