Interface BlockMetadata

interface BlockMetadata {
    baker: string;
    baker_consensus_key?: string;
    balance_updates?: OperationBalanceUpdates;
    consumed_gas?: string;
    consumed_milligas?: string;
    deactivated?: string[];
    implicit_operations_results?: SuccessfulManagerOperationResult[];
    level?: Level;
    level_info?: LevelInfo;
    liquidity_baking_escape_ema?: number;
    liquidity_baking_toggle_ema?: number;
    max_block_header_length: number;
    max_operation_data_length: number;
    max_operation_list_length: MaxOperationListLength[];
    max_operations_ttl: number;
    next_protocol: string;
    nonce_hash?: string;
    proposer?: string;
    proposer_consensus_key?: string;
    protocol: string;
    test_chain_status: TestChainStatus;
    voting_period_info?: VotingPeriodBlockResult;
    voting_period_kind?: string;
}

Properties

baker: string
baker_consensus_key?: string
balance_updates?: OperationBalanceUpdates
consumed_gas?: string
consumed_milligas?: string
deactivated?: string[]
implicit_operations_results?: SuccessfulManagerOperationResult[]
level?: Level
level_info?: LevelInfo
liquidity_baking_escape_ema?: number
liquidity_baking_toggle_ema?: number
max_block_header_length: number
max_operation_data_length: number
max_operation_list_length: MaxOperationListLength[]
max_operations_ttl: number
next_protocol: string
nonce_hash?: string
proposer?: string
proposer_consensus_key?: string
protocol: string
test_chain_status: TestChainStatus
voting_period_info?: VotingPeriodBlockResult
voting_period_kind?: string

Generated using TypeDoc