import * as P from 'micro-packed'; export declare const ForkSlots: { readonly Phase0: 0; readonly Altair: 2375680; readonly Bellatrix: 4700013; readonly Capella: 6209536; readonly Deneb: 8626176; }; export type SSZCoder = P.CoderType & { default: T; info: { type: string; }; composite: boolean; chunkCount: number; chunks: (value: T) => Uint8Array[]; merkleRoot: (value: T) => Uint8Array; _isStableCompat: (other: SSZCoder) => boolean; }; export declare const uint8: SSZCoder; export declare const uint16: SSZCoder; export declare const uint32: SSZCoder; export declare const uint64: SSZCoder; export declare const uint128: SSZCoder; export declare const uint256: SSZCoder; export declare const boolean: SSZCoder; type VectorType = SSZCoder & { info: { type: 'vector'; N: number; inner: SSZCoder; }; }; /** * Vector: fixed size ('len') array of elements 'inner' */ export declare const vector: (len: number, inner: SSZCoder) => VectorType; type ListType = SSZCoder & { info: { type: 'list'; N: number; inner: SSZCoder; }; }; /** * List: dynamic array of 'inner' elements with length limit maxLen */ export declare const list: (maxLen: number, inner: SSZCoder) => ListType; type ContainerCoder>> = SSZCoder<{ [K in keyof T]: P.UnwrapCoder; }> & { info: { type: 'container'; fields: T; }; }; /** * Container: Encodes object with multiple fields. P.struct for SSZ. */ export declare const container: >>(fields: T) => ContainerCoder; type BitVectorType = SSZCoder & { info: { type: 'bitVector'; N: number; }; }; /** * BitVector: array of booleans with fixed size */ export declare const bitvector: (len: number) => BitVectorType; type BitListType = SSZCoder & { info: { type: 'bitList'; N: number; }; }; /** * BitList: array of booleans with dynamic size (but maxLen limit) */ export declare const bitlist: (maxLen: number) => BitListType; /** * Union type (None is null) * */ export declare const union: (...types: (SSZCoder | null)[]) => SSZCoder<{ selector: number; value: any; }>; type ByteListType = SSZCoder & { info: { type: 'list'; N: number; inner: typeof byte; }; }; /** * ByteList: same as List(len, SSZ.byte), but returns Uint8Array */ export declare const bytelist: (maxLen: number) => ByteListType; type ByteVectorType = SSZCoder & { info: { type: 'vector'; N: number; inner: typeof byte; }; }; /** * ByteVector: same as Vector(len, SSZ.byte), but returns Uint8Array */ export declare const bytevector: (len: number) => ByteVectorType; type StableContainerCoder>> = SSZCoder<{ [K in keyof T]?: P.UnwrapCoder; }> & { info: { type: 'stableContainer'; N: number; fields: T; }; }; /** * Same as container, but all values are optional using bitvector as prefix which indicates active fields */ export declare const stableContainer: >>(N: number, fields: T) => StableContainerCoder; type ProfileCoder>, OptK extends keyof T & string, ReqK extends keyof T & string> = SSZCoder<{ [K in ReqK]: P.UnwrapCoder; } & { [K in OptK]?: P.UnwrapCoder; }> & { info: { type: 'profile'; container: StableContainerCoder; }; }; /** * Profile - fixed subset of stableContainer. * - fields and order of fields is exactly same as in underlying container * - some fields may be excluded or required in profile (all fields in stable container are always optional) * - adding new fields to underlying container won't change profile's constructed on top of it, * because it is required to provide all list of optional fields. * - type of field can be changed inside profile (but we should be very explicit about this) to same shape type. * * @example * // class Shape(StableContainer[4]): * // side: Optional[uint16] * // color: Optional[uint8] * // radius: Optional[uint16] * * // class Square(Profile[Shape]): * // side: uint16 * // color: uint8 * * // class Circle(Profile[Shape]): * // color: uint8 * // radius: Optional[uint16] * // -> * const Shape = SSZ.stableContainer(4, { * side: SSZ.uint16, * color: SSZ.uint8, * radius: SSZ.uint16, * }); * const Square = profile(Shape, [], ['side', 'color']); * const Circle = profile(Shape, ['radius'], ['color']); * const Circle2 = profile(Shape, ['radius'], ['color'], { color: SSZ.byte }); */ export declare const profile: >, OptK extends keyof T & string, ReqK extends keyof T & string>(c: StableContainerCoder, optFields: OptK[], requiredFields?: ReqK[], replaceType?: Record) => ProfileCoder; export declare const byte: SSZCoder; export declare const bit: SSZCoder; export declare const bool: SSZCoder; export declare const bytes: (len: number) => ByteVectorType; export declare const ETH2_TYPES: { Slot: SSZCoder; Epoch: SSZCoder; CommitteeIndex: SSZCoder; ValidatorIndex: SSZCoder; WithdrawalIndex: SSZCoder; Gwei: SSZCoder; Root: ByteVectorType; Hash32: ByteVectorType; Bytes32: ByteVectorType; Version: ByteVectorType; DomainType: ByteVectorType; ForkDigest: ByteVectorType; Domain: ByteVectorType; BLSPubkey: ByteVectorType; BLSSignature: ByteVectorType; Ether: SSZCoder; ParticipationFlags: SSZCoder; ExecutionAddress: ByteVectorType; PayloadId: ByteVectorType; KZGCommitment: ByteVectorType; KZGProof: ByteVectorType; Checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; AttestationData: ContainerCoder<{ slot: SSZCoder; index: SSZCoder; beacon_block_root: ByteVectorType; source: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; target: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; }>; Attestation: ContainerCoder<{ aggregation_bits: BitListType; data: ContainerCoder<{ slot: SSZCoder; index: SSZCoder; beacon_block_root: ByteVectorType; source: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; target: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; }>; signature: ByteVectorType; }>; AggregateAndProof: ContainerCoder<{ aggregator_index: SSZCoder; aggregate: ContainerCoder<{ aggregation_bits: BitListType; data: ContainerCoder<{ slot: SSZCoder; index: SSZCoder; beacon_block_root: ByteVectorType; source: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; target: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; }>; signature: ByteVectorType; }>; selection_proof: ByteVectorType; }>; IndexedAttestation: ContainerCoder<{ attesting_indices: ListType; data: ContainerCoder<{ slot: SSZCoder; index: SSZCoder; beacon_block_root: ByteVectorType; source: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; target: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; }>; signature: ByteVectorType; }>; AttesterSlashing: ContainerCoder<{ attestation_1: ContainerCoder<{ attesting_indices: ListType; data: ContainerCoder<{ slot: SSZCoder; index: SSZCoder; beacon_block_root: ByteVectorType; source: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; target: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; }>; signature: ByteVectorType; }>; attestation_2: ContainerCoder<{ attesting_indices: ListType; data: ContainerCoder<{ slot: SSZCoder; index: SSZCoder; beacon_block_root: ByteVectorType; source: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; target: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; }>; signature: ByteVectorType; }>; }>; BLSToExecutionChange: ContainerCoder<{ validator_index: SSZCoder; from_bls_pubkey: ByteVectorType; to_execution_address: ByteVectorType; }>; ExecutionPayload: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions: ListType>; withdrawals: ListType<{ index: number | bigint; validator_index: number | bigint; address: Uint8Array; amount: number | bigint; }>; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; }>; SyncAggregate: ContainerCoder<{ sync_committee_bits: BitVectorType; sync_committee_signature: ByteVectorType; }>; VoluntaryExit: ContainerCoder<{ epoch: SSZCoder; validator_index: SSZCoder; }>; BeaconBlockHeader: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body_root: ByteVectorType; }>; SigningData: ContainerCoder<{ object_root: ByteVectorType; domain: ByteVectorType; }>; SignedBeaconBlockHeader: ContainerCoder<{ message: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body_root: ByteVectorType; }>; signature: ByteVectorType; }>; ProposerSlashing: ContainerCoder<{ signed_header_1: ContainerCoder<{ message: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body_root: ByteVectorType; }>; signature: ByteVectorType; }>; signed_header_2: ContainerCoder<{ message: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body_root: ByteVectorType; }>; signature: ByteVectorType; }>; }>; DepositData: ContainerCoder<{ pubkey: ByteVectorType; withdrawal_credentials: ByteVectorType; amount: SSZCoder; signature: ByteVectorType; }>; Deposit: ContainerCoder<{ proof: VectorType>; data: ContainerCoder<{ pubkey: ByteVectorType; withdrawal_credentials: ByteVectorType; amount: SSZCoder; signature: ByteVectorType; }>; }>; SignedVoluntaryExit: ContainerCoder<{ message: ContainerCoder<{ epoch: SSZCoder; validator_index: SSZCoder; }>; signature: ByteVectorType; }>; Eth1Data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; Withdrawal: ContainerCoder<{ index: SSZCoder; validator_index: SSZCoder; address: ByteVectorType; amount: SSZCoder; }>; BeaconBlockBody: ContainerCoder<{ randao_reveal: ByteVectorType; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; graffiti: ByteVectorType; proposer_slashings: ListType<{ signed_header_1: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; signed_header_2: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; }>; attester_slashings: ListType<{ attestation_1: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; attestation_2: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; }>; attestations: ListType<{ aggregation_bits: boolean[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }>; deposits: ListType<{ proof: Uint8Array[]; data: { pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; }; }>; voluntary_exits: ListType<{ message: { epoch: number | bigint; validator_index: number | bigint; }; signature: Uint8Array; }>; sync_aggregate: ContainerCoder<{ sync_committee_bits: BitVectorType; sync_committee_signature: ByteVectorType; }>; execution_payload: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions: ListType>; withdrawals: ListType<{ index: number | bigint; validator_index: number | bigint; address: Uint8Array; amount: number | bigint; }>; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; }>; bls_to_execution_changes: ListType<{ message: { validator_index: number | bigint; from_bls_pubkey: Uint8Array; to_execution_address: Uint8Array; }; signature: Uint8Array; }>; blob_kzg_commitments: ListType>; }>; BeaconBlock: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body: ContainerCoder<{ randao_reveal: ByteVectorType; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; graffiti: ByteVectorType; proposer_slashings: ListType<{ signed_header_1: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; signed_header_2: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; }>; attester_slashings: ListType<{ attestation_1: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; attestation_2: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; }>; attestations: ListType<{ aggregation_bits: boolean[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }>; deposits: ListType<{ proof: Uint8Array[]; data: { pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; }; }>; voluntary_exits: ListType<{ message: { epoch: number | bigint; validator_index: number | bigint; }; signature: Uint8Array; }>; sync_aggregate: ContainerCoder<{ sync_committee_bits: BitVectorType; sync_committee_signature: ByteVectorType; }>; execution_payload: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions: ListType>; withdrawals: ListType<{ index: number | bigint; validator_index: number | bigint; address: Uint8Array; amount: number | bigint; }>; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; }>; bls_to_execution_changes: ListType<{ message: { validator_index: number | bigint; from_bls_pubkey: Uint8Array; to_execution_address: Uint8Array; }; signature: Uint8Array; }>; blob_kzg_commitments: ListType>; }>; }>; SyncCommittee: ContainerCoder<{ pubkeys: VectorType>; aggregate_pubkey: ByteVectorType; }>; Fork: ContainerCoder<{ previous_version: ByteVectorType; current_version: ByteVectorType; epoch: SSZCoder; }>; Validator: ContainerCoder<{ pubkey: ByteVectorType; withdrawal_credentials: ByteVectorType; effective_balance: SSZCoder; slashed: SSZCoder; activation_eligibility_epoch: SSZCoder; activation_epoch: SSZCoder; exit_epoch: SSZCoder; withdrawable_epoch: SSZCoder; }>; ExecutionPayloadHeader: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; withdrawals_root: ByteVectorType; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; }>; HistoricalSummary: ContainerCoder<{ block_summary_root: ByteVectorType; state_summary_root: ByteVectorType; }>; BeaconState: ContainerCoder<{ genesis_time: SSZCoder; genesis_validators_root: ByteVectorType; slot: SSZCoder; fork: ContainerCoder<{ previous_version: ByteVectorType; current_version: ByteVectorType; epoch: SSZCoder; }>; latest_block_header: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body_root: ByteVectorType; }>; block_roots: VectorType>; state_roots: VectorType>; historical_roots: ListType>; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; eth1_data_votes: ListType<{ deposit_root: Uint8Array; deposit_count: number | bigint; block_hash: Uint8Array; }>; eth1_deposit_index: SSZCoder; validators: ListType<{ pubkey: Uint8Array; withdrawal_credentials: Uint8Array; effective_balance: number | bigint; slashed: boolean; activation_eligibility_epoch: number | bigint; activation_epoch: number | bigint; exit_epoch: number | bigint; withdrawable_epoch: number | bigint; }>; balances: ListType; randao_mixes: VectorType>; slashings: VectorType; previous_epoch_participation: ListType; current_epoch_participation: ListType; justification_bits: BitVectorType; previous_justified_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; current_justified_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; finalized_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; inactivity_scores: ListType; current_sync_committee: ContainerCoder<{ pubkeys: VectorType>; aggregate_pubkey: ByteVectorType; }>; next_sync_committee: ContainerCoder<{ pubkeys: VectorType>; aggregate_pubkey: ByteVectorType; }>; latest_execution_payload_header: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; withdrawals_root: ByteVectorType; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; }>; next_withdrawal_index: SSZCoder; next_withdrawal_validator_index: SSZCoder; historical_summaries: ListType<{ block_summary_root: Uint8Array; state_summary_root: Uint8Array; }>; }>; BlobIdentifier: ContainerCoder<{ block_root: ByteVectorType; index: SSZCoder; }>; BlobSidecar: ContainerCoder<{ index: SSZCoder; blob: ByteVectorType; kzg_commitment: ByteVectorType; kzg_proof: ByteVectorType; signed_block_header: ContainerCoder<{ message: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body_root: ByteVectorType; }>; signature: ByteVectorType; }>; kzg_commitment_inclusion_proof: VectorType>; }>; ContributionAndProof: ContainerCoder<{ aggregator_index: SSZCoder; contribution: ContainerCoder<{ slot: SSZCoder; beacon_block_root: ByteVectorType; subcommittee_index: SSZCoder; aggregation_bits: BitVectorType; signature: ByteVectorType; }>; selection_proof: ByteVectorType; }>; DepositMessage: ContainerCoder<{ pubkey: ByteVectorType; withdrawal_credentials: ByteVectorType; amount: SSZCoder; }>; Eth1Block: ContainerCoder<{ timestamp: SSZCoder; deposit_root: ByteVectorType; deposit_count: SSZCoder; }>; ForkData: ContainerCoder<{ current_version: ByteVectorType; genesis_validators_root: ByteVectorType; }>; HistoricalBatch: ContainerCoder<{ block_roots: VectorType>; state_roots: VectorType>; }>; PendingAttestation: ContainerCoder<{ aggregation_bits: BitListType; data: ContainerCoder<{ slot: SSZCoder; index: SSZCoder; beacon_block_root: ByteVectorType; source: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; target: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; }>; inclusion_delay: SSZCoder; proposer_index: SSZCoder; }>; PowBlock: ContainerCoder<{ block_hash: ByteVectorType; parent_hash: ByteVectorType; total_difficulty: SSZCoder; }>; Transaction: ByteListType; SignedAggregateAndProof: ContainerCoder<{ message: ContainerCoder<{ aggregator_index: SSZCoder; aggregate: ContainerCoder<{ aggregation_bits: BitListType; data: ContainerCoder<{ slot: SSZCoder; index: SSZCoder; beacon_block_root: ByteVectorType; source: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; target: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; }>; signature: ByteVectorType; }>; selection_proof: ByteVectorType; }>; signature: ByteVectorType; }>; SignedBLSToExecutionChange: ContainerCoder<{ message: ContainerCoder<{ validator_index: SSZCoder; from_bls_pubkey: ByteVectorType; to_execution_address: ByteVectorType; }>; signature: ByteVectorType; }>; SignedBeaconBlock: ContainerCoder<{ message: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body: ContainerCoder<{ randao_reveal: ByteVectorType; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; graffiti: ByteVectorType; proposer_slashings: ListType<{ signed_header_1: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; signed_header_2: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; }>; attester_slashings: ListType<{ attestation_1: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; attestation_2: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; }>; attestations: ListType<{ aggregation_bits: boolean[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }>; deposits: ListType<{ proof: Uint8Array[]; data: { pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; }; }>; voluntary_exits: ListType<{ message: { epoch: number | bigint; validator_index: number | bigint; }; signature: Uint8Array; }>; sync_aggregate: ContainerCoder<{ sync_committee_bits: BitVectorType; sync_committee_signature: ByteVectorType; }>; execution_payload: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions: ListType>; withdrawals: ListType<{ index: number | bigint; validator_index: number | bigint; address: Uint8Array; amount: number | bigint; }>; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; }>; bls_to_execution_changes: ListType<{ message: { validator_index: number | bigint; from_bls_pubkey: Uint8Array; to_execution_address: Uint8Array; }; signature: Uint8Array; }>; blob_kzg_commitments: ListType>; }>; }>; signature: ByteVectorType; }>; SignedContributionAndProof: ContainerCoder<{ message: ContainerCoder<{ aggregator_index: SSZCoder; contribution: ContainerCoder<{ slot: SSZCoder; beacon_block_root: ByteVectorType; subcommittee_index: SSZCoder; aggregation_bits: BitVectorType; signature: ByteVectorType; }>; selection_proof: ByteVectorType; }>; signature: ByteVectorType; }>; SyncAggregatorSelectionData: ContainerCoder<{ slot: SSZCoder; subcommittee_index: SSZCoder; }>; SyncCommitteeContribution: ContainerCoder<{ slot: SSZCoder; beacon_block_root: ByteVectorType; subcommittee_index: SSZCoder; aggregation_bits: BitVectorType; signature: ByteVectorType; }>; SyncCommitteeMessage: ContainerCoder<{ slot: SSZCoder; beacon_block_root: ByteVectorType; validator_index: SSZCoder; signature: ByteVectorType; }>; LightClientHeader: ContainerCoder<{ beacon: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body_root: ByteVectorType; }>; execution: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; withdrawals_root: ByteVectorType; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; }>; execution_branch: VectorType>; }>; LightClientBootstrap: ContainerCoder<{ header: ContainerCoder<{ beacon: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body_root: ByteVectorType; }>; execution: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; withdrawals_root: ByteVectorType; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; }>; execution_branch: VectorType>; }>; current_sync_committee: ContainerCoder<{ pubkeys: VectorType>; aggregate_pubkey: ByteVectorType; }>; current_sync_committee_branch: VectorType>; }>; LightClientUpdate: ContainerCoder<{ attested_header: ContainerCoder<{ beacon: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body_root: ByteVectorType; }>; execution: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; withdrawals_root: ByteVectorType; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; }>; execution_branch: VectorType>; }>; next_sync_committee: ContainerCoder<{ pubkeys: VectorType>; aggregate_pubkey: ByteVectorType; }>; next_sync_committee_branch: VectorType>; finalized_header: ContainerCoder<{ beacon: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body_root: ByteVectorType; }>; execution: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; withdrawals_root: ByteVectorType; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; }>; execution_branch: VectorType>; }>; finality_branch: VectorType>; sync_aggregate: ContainerCoder<{ sync_committee_bits: BitVectorType; sync_committee_signature: ByteVectorType; }>; signature_slot: SSZCoder; }>; LightClientOptimisticUpdate: ContainerCoder<{ attested_header: ContainerCoder<{ beacon: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body_root: ByteVectorType; }>; execution: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; withdrawals_root: ByteVectorType; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; }>; execution_branch: VectorType>; }>; sync_aggregate: ContainerCoder<{ sync_committee_bits: BitVectorType; sync_committee_signature: ByteVectorType; }>; signature_slot: SSZCoder; }>; LightClientFinalityUpdate: ContainerCoder<{ attested_header: ContainerCoder<{ beacon: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body_root: ByteVectorType; }>; execution: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; withdrawals_root: ByteVectorType; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; }>; execution_branch: VectorType>; }>; finalized_header: ContainerCoder<{ beacon: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body_root: ByteVectorType; }>; execution: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; withdrawals_root: ByteVectorType; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; }>; execution_branch: VectorType>; }>; finality_branch: VectorType>; sync_aggregate: ContainerCoder<{ sync_committee_bits: BitVectorType; sync_committee_signature: ByteVectorType; }>; signature_slot: SSZCoder; }>; DepositRequest: ContainerCoder<{ pubkey: ByteVectorType; withdrawal_credentials: ByteVectorType; amount: SSZCoder; signature: ByteVectorType; index: SSZCoder; }>; WithdrawalRequest: ContainerCoder<{ source_address: ByteVectorType; validator_pubkey: ByteVectorType; amount: SSZCoder; }>; ConsolidationRequest: ContainerCoder<{ source_address: ByteVectorType; source_pubkey: ByteVectorType; target_pubkey: ByteVectorType; }>; PendingBalanceDeposit: ContainerCoder<{ index: SSZCoder; amount: SSZCoder; }>; PendingPartialWithdrawal: ContainerCoder<{ index: SSZCoder; amount: SSZCoder; withdrawable_epoch: SSZCoder; }>; PendingConsolidation: ContainerCoder<{ source_index: SSZCoder; target_index: SSZCoder; }>; }; export declare const ETH2_CONSENSUS: { StableAttestation: StableContainerCoder<{ aggregation_bits: BitListType; data: ContainerCoder<{ slot: SSZCoder; index: SSZCoder; beacon_block_root: ByteVectorType; source: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; target: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; }>; signature: ByteVectorType; committee_bits: BitVectorType; }>; StableIndexedAttestation: StableContainerCoder<{ attesting_indices: ListType; data: ContainerCoder<{ slot: SSZCoder; index: SSZCoder; beacon_block_root: ByteVectorType; source: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; target: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; }>; signature: ByteVectorType; }>; StableAttesterSlashing: ContainerCoder<{ attestation_1: StableContainerCoder<{ attesting_indices: ListType; data: ContainerCoder<{ slot: SSZCoder; index: SSZCoder; beacon_block_root: ByteVectorType; source: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; target: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; }>; signature: ByteVectorType; }>; attestation_2: StableContainerCoder<{ attesting_indices: ListType; data: ContainerCoder<{ slot: SSZCoder; index: SSZCoder; beacon_block_root: ByteVectorType; source: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; target: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; }>; signature: ByteVectorType; }>; }>; StableExecutionPayload: StableContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions: ListType>; withdrawals: ListType<{ index: number | bigint; validator_index: number | bigint; address: Uint8Array; amount: number | bigint; }>; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; deposit_requests: ListType<{ pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; index: number | bigint; }>; withdrawal_requests: ListType<{ source_address: Uint8Array; validator_pubkey: Uint8Array; amount: number | bigint; }>; consolidation_requests: ListType<{ source_address: Uint8Array; source_pubkey: Uint8Array; target_pubkey: Uint8Array; }>; }>; StableExecutionRequests: StableContainerCoder<{ deposits: ListType<{ pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; index: number | bigint; }>; withdrawals: ListType<{ source_address: Uint8Array; validator_pubkey: Uint8Array; amount: number | bigint; }>; consolidations: ListType<{ source_address: Uint8Array; source_pubkey: Uint8Array; target_pubkey: Uint8Array; }>; }>; StableExecutionPayloadHeader: StableContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; withdrawals_root: ByteVectorType; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; deposit_requests_root: ByteVectorType; withdrawal_requests_root: ByteVectorType; consolidation_requests_root: ByteVectorType; }>; StableBeaconBlockBody: StableContainerCoder<{ randao_reveal: ByteVectorType; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; graffiti: ByteVectorType; proposer_slashings: ListType<{ signed_header_1: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; signed_header_2: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; }>; attester_slashings: ListType<{ attestation_1: { attesting_indices?: (number | bigint)[] | undefined; data?: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; } | undefined; signature?: Uint8Array | undefined; }; attestation_2: { attesting_indices?: (number | bigint)[] | undefined; data?: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; } | undefined; signature?: Uint8Array | undefined; }; }>; attestations: ListType<{ aggregation_bits?: boolean[] | undefined; data?: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; } | undefined; signature?: Uint8Array | undefined; committee_bits?: boolean[] | undefined; }>; deposits: ListType<{ proof: Uint8Array[]; data: { pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; }; }>; voluntary_exits: ListType<{ message: { epoch: number | bigint; validator_index: number | bigint; }; signature: Uint8Array; }>; sync_aggregate: ContainerCoder<{ sync_committee_bits: BitVectorType; sync_committee_signature: ByteVectorType; }>; execution_payload: StableContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions: ListType>; withdrawals: ListType<{ index: number | bigint; validator_index: number | bigint; address: Uint8Array; amount: number | bigint; }>; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; deposit_requests: ListType<{ pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; index: number | bigint; }>; withdrawal_requests: ListType<{ source_address: Uint8Array; validator_pubkey: Uint8Array; amount: number | bigint; }>; consolidation_requests: ListType<{ source_address: Uint8Array; source_pubkey: Uint8Array; target_pubkey: Uint8Array; }>; }>; bls_to_execution_changes: ListType<{ message: { validator_index: number | bigint; from_bls_pubkey: Uint8Array; to_execution_address: Uint8Array; }; signature: Uint8Array; }>; blob_kzg_commitments: ListType>; execution_requests: StableContainerCoder<{ deposits: ListType<{ pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; index: number | bigint; }>; withdrawals: ListType<{ source_address: Uint8Array; validator_pubkey: Uint8Array; amount: number | bigint; }>; consolidations: ListType<{ source_address: Uint8Array; source_pubkey: Uint8Array; target_pubkey: Uint8Array; }>; }>; }>; StableBeaconState: StableContainerCoder<{ genesis_time: SSZCoder; genesis_validators_root: ByteVectorType; slot: SSZCoder; fork: ContainerCoder<{ previous_version: ByteVectorType; current_version: ByteVectorType; epoch: SSZCoder; }>; latest_block_header: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body_root: ByteVectorType; }>; block_roots: VectorType>; state_roots: VectorType>; historical_roots: ListType>; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; eth1_data_votes: ListType<{ deposit_root: Uint8Array; deposit_count: number | bigint; block_hash: Uint8Array; }>; eth1_deposit_index: SSZCoder; validators: ListType<{ pubkey: Uint8Array; withdrawal_credentials: Uint8Array; effective_balance: number | bigint; slashed: boolean; activation_eligibility_epoch: number | bigint; activation_epoch: number | bigint; exit_epoch: number | bigint; withdrawable_epoch: number | bigint; }>; balances: ListType; randao_mixes: VectorType>; slashings: VectorType; previous_epoch_participation: ListType; current_epoch_participation: ListType; justification_bits: BitVectorType; previous_justified_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; current_justified_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; finalized_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; inactivity_scores: ListType; current_sync_committee: ContainerCoder<{ pubkeys: VectorType>; aggregate_pubkey: ByteVectorType; }>; next_sync_committee: ContainerCoder<{ pubkeys: VectorType>; aggregate_pubkey: ByteVectorType; }>; latest_execution_payload_header: StableContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; withdrawals_root: ByteVectorType; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; deposit_requests_root: ByteVectorType; withdrawal_requests_root: ByteVectorType; consolidation_requests_root: ByteVectorType; }>; next_withdrawal_index: SSZCoder; next_withdrawal_validator_index: SSZCoder; historical_summaries: ListType<{ block_summary_root: Uint8Array; state_summary_root: Uint8Array; }>; deposit_requests_start_index: SSZCoder; deposit_balance_to_consume: SSZCoder; exit_balance_to_consume: SSZCoder; earliest_exit_epoch: SSZCoder; consolidation_balance_to_consume: SSZCoder; earliest_consolidation_epoch: SSZCoder; pending_balance_deposits: ListType<{ index: number | bigint; amount: number | bigint; }>; pending_partial_withdrawals: ListType<{ index: number | bigint; amount: number | bigint; withdrawable_epoch: number | bigint; }>; pending_consolidations: ListType<{ source_index: number | bigint; target_index: number | bigint; }>; }>; }; export declare const ETH2_PROFILES: { electra: { Attestation: ProfileCoder<{ aggregation_bits: BitListType; data: ContainerCoder<{ slot: SSZCoder; index: SSZCoder; beacon_block_root: ByteVectorType; source: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; target: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; }>; signature: ByteVectorType; committee_bits: BitVectorType; }, never, "data" | "signature" | "aggregation_bits" | "committee_bits">; AttesterSlashing: ContainerCoder<{ attestation_1: ProfileCoder<{ attesting_indices: ListType; data: ContainerCoder<{ slot: SSZCoder; index: SSZCoder; beacon_block_root: ByteVectorType; source: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; target: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; }>; signature: ByteVectorType; }, never, "data" | "signature" | "attesting_indices">; attestation_2: ProfileCoder<{ attesting_indices: ListType; data: ContainerCoder<{ slot: SSZCoder; index: SSZCoder; beacon_block_root: ByteVectorType; source: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; target: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; }>; signature: ByteVectorType; }, never, "data" | "signature" | "attesting_indices">; }>; IndexedAttestation: ProfileCoder<{ attesting_indices: ListType; data: ContainerCoder<{ slot: SSZCoder; index: SSZCoder; beacon_block_root: ByteVectorType; source: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; target: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; }>; signature: ByteVectorType; }, never, "data" | "signature" | "attesting_indices">; ExecutionRequests: ProfileCoder<{ deposits: ListType<{ pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; index: number | bigint; }>; withdrawals: ListType<{ source_address: Uint8Array; validator_pubkey: Uint8Array; amount: number | bigint; }>; consolidations: ListType<{ source_address: Uint8Array; source_pubkey: Uint8Array; target_pubkey: Uint8Array; }>; }, never, "withdrawals" | "deposits" | "consolidations">; ExecutionPayloadHeader: ProfileCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; withdrawals_root: ByteVectorType; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; deposit_requests_root: ByteVectorType; withdrawal_requests_root: ByteVectorType; consolidation_requests_root: ByteVectorType; }, never, "parent_hash" | "fee_recipient" | "state_root" | "receipts_root" | "logs_bloom" | "prev_randao" | "block_number" | "gas_limit" | "gas_used" | "timestamp" | "extra_data" | "base_fee_per_gas" | "block_hash" | "blob_gas_used" | "excess_blob_gas" | "transactions_root" | "withdrawals_root">; ExecutionPayload: ProfileCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions: ListType>; withdrawals: ListType<{ index: number | bigint; validator_index: number | bigint; address: Uint8Array; amount: number | bigint; }>; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; deposit_requests: ListType<{ pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; index: number | bigint; }>; withdrawal_requests: ListType<{ source_address: Uint8Array; validator_pubkey: Uint8Array; amount: number | bigint; }>; consolidation_requests: ListType<{ source_address: Uint8Array; source_pubkey: Uint8Array; target_pubkey: Uint8Array; }>; }, never, "parent_hash" | "fee_recipient" | "state_root" | "receipts_root" | "logs_bloom" | "prev_randao" | "block_number" | "gas_limit" | "gas_used" | "timestamp" | "extra_data" | "base_fee_per_gas" | "block_hash" | "transactions" | "withdrawals" | "blob_gas_used" | "excess_blob_gas">; BeaconBlockBody: ProfileCoder<{ randao_reveal: ByteVectorType; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; graffiti: ByteVectorType; proposer_slashings: ListType<{ signed_header_1: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; signed_header_2: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; }>; attester_slashings: ListType<{ attestation_1: { attesting_indices?: (number | bigint)[] | undefined; data?: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; } | undefined; signature?: Uint8Array | undefined; }; attestation_2: { attesting_indices?: (number | bigint)[] | undefined; data?: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; } | undefined; signature?: Uint8Array | undefined; }; }>; attestations: ListType<{ aggregation_bits?: boolean[] | undefined; data?: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; } | undefined; signature?: Uint8Array | undefined; committee_bits?: boolean[] | undefined; }>; deposits: ListType<{ proof: Uint8Array[]; data: { pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; }; }>; voluntary_exits: ListType<{ message: { epoch: number | bigint; validator_index: number | bigint; }; signature: Uint8Array; }>; sync_aggregate: ContainerCoder<{ sync_committee_bits: BitVectorType; sync_committee_signature: ByteVectorType; }>; execution_payload: StableContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions: ListType>; withdrawals: ListType<{ index: number | bigint; validator_index: number | bigint; address: Uint8Array; amount: number | bigint; }>; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; deposit_requests: ListType<{ pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; index: number | bigint; }>; withdrawal_requests: ListType<{ source_address: Uint8Array; validator_pubkey: Uint8Array; amount: number | bigint; }>; consolidation_requests: ListType<{ source_address: Uint8Array; source_pubkey: Uint8Array; target_pubkey: Uint8Array; }>; }>; bls_to_execution_changes: ListType<{ message: { validator_index: number | bigint; from_bls_pubkey: Uint8Array; to_execution_address: Uint8Array; }; signature: Uint8Array; }>; blob_kzg_commitments: ListType>; execution_requests: StableContainerCoder<{ deposits: ListType<{ pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; index: number | bigint; }>; withdrawals: ListType<{ source_address: Uint8Array; validator_pubkey: Uint8Array; amount: number | bigint; }>; consolidations: ListType<{ source_address: Uint8Array; source_pubkey: Uint8Array; target_pubkey: Uint8Array; }>; }>; }, never, "randao_reveal" | "eth1_data" | "graffiti" | "proposer_slashings" | "attester_slashings" | "attestations" | "deposits" | "voluntary_exits" | "sync_aggregate" | "execution_payload" | "bls_to_execution_changes" | "blob_kzg_commitments" | "execution_requests">; BeaconState: ProfileCoder<{ genesis_time: SSZCoder; genesis_validators_root: ByteVectorType; slot: SSZCoder; fork: ContainerCoder<{ previous_version: ByteVectorType; current_version: ByteVectorType; epoch: SSZCoder; }>; latest_block_header: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body_root: ByteVectorType; }>; block_roots: VectorType>; state_roots: VectorType>; historical_roots: ListType>; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; eth1_data_votes: ListType<{ deposit_root: Uint8Array; deposit_count: number | bigint; block_hash: Uint8Array; }>; eth1_deposit_index: SSZCoder; validators: ListType<{ pubkey: Uint8Array; withdrawal_credentials: Uint8Array; effective_balance: number | bigint; slashed: boolean; activation_eligibility_epoch: number | bigint; activation_epoch: number | bigint; exit_epoch: number | bigint; withdrawable_epoch: number | bigint; }>; balances: ListType; randao_mixes: VectorType>; slashings: VectorType; previous_epoch_participation: ListType; current_epoch_participation: ListType; justification_bits: BitVectorType; previous_justified_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; current_justified_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; finalized_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; inactivity_scores: ListType; current_sync_committee: ContainerCoder<{ pubkeys: VectorType>; aggregate_pubkey: ByteVectorType; }>; next_sync_committee: ContainerCoder<{ pubkeys: VectorType>; aggregate_pubkey: ByteVectorType; }>; latest_execution_payload_header: StableContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; withdrawals_root: ByteVectorType; blob_gas_used: SSZCoder; excess_blob_gas: SSZCoder; deposit_requests_root: ByteVectorType; withdrawal_requests_root: ByteVectorType; consolidation_requests_root: ByteVectorType; }>; next_withdrawal_index: SSZCoder; next_withdrawal_validator_index: SSZCoder; historical_summaries: ListType<{ block_summary_root: Uint8Array; state_summary_root: Uint8Array; }>; deposit_requests_start_index: SSZCoder; deposit_balance_to_consume: SSZCoder; exit_balance_to_consume: SSZCoder; earliest_exit_epoch: SSZCoder; consolidation_balance_to_consume: SSZCoder; earliest_consolidation_epoch: SSZCoder; pending_balance_deposits: ListType<{ index: number | bigint; amount: number | bigint; }>; pending_partial_withdrawals: ListType<{ index: number | bigint; amount: number | bigint; withdrawable_epoch: number | bigint; }>; pending_consolidations: ListType<{ source_index: number | bigint; target_index: number | bigint; }>; }, never, "slot" | "eth1_data" | "genesis_time" | "genesis_validators_root" | "fork" | "latest_block_header" | "block_roots" | "state_roots" | "historical_roots" | "eth1_data_votes" | "eth1_deposit_index" | "validators" | "balances" | "randao_mixes" | "slashings" | "previous_epoch_participation" | "current_epoch_participation" | "justification_bits" | "previous_justified_checkpoint" | "current_justified_checkpoint" | "finalized_checkpoint" | "inactivity_scores" | "current_sync_committee" | "next_sync_committee" | "latest_execution_payload_header" | "next_withdrawal_index" | "next_withdrawal_validator_index" | "historical_summaries" | "deposit_requests_start_index" | "deposit_balance_to_consume" | "exit_balance_to_consume" | "earliest_exit_epoch" | "consolidation_balance_to_consume" | "earliest_consolidation_epoch" | "pending_balance_deposits" | "pending_partial_withdrawals" | "pending_consolidations">; }; }; /** Capella Types */ export declare const CapellaExecutionPayloadHeader: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; withdrawals_root: ByteVectorType; }>; export declare const CapellaBeaconBlock: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body: ContainerCoder<{ randao_reveal: ByteVectorType; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; graffiti: ByteVectorType; proposer_slashings: ListType<{ signed_header_1: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; signed_header_2: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; }>; attester_slashings: ListType<{ attestation_1: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; attestation_2: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; }>; attestations: ListType<{ aggregation_bits: boolean[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }>; deposits: ListType<{ proof: Uint8Array[]; data: { pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; }; }>; voluntary_exits: ListType<{ message: { epoch: number | bigint; validator_index: number | bigint; }; signature: Uint8Array; }>; sync_aggregate: ContainerCoder<{ sync_committee_bits: BitVectorType; sync_committee_signature: ByteVectorType; }>; execution_payload: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; withdrawals_root: ByteVectorType; }>; bls_to_execution_changes: ListType<{ message: { validator_index: number | bigint; from_bls_pubkey: Uint8Array; to_execution_address: Uint8Array; }; signature: Uint8Array; }>; }>; }>; export declare const CapellaSignedBeaconBlock: ContainerCoder<{ message: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body: ContainerCoder<{ randao_reveal: ByteVectorType; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; graffiti: ByteVectorType; proposer_slashings: ListType<{ signed_header_1: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; signed_header_2: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; }>; attester_slashings: ListType<{ attestation_1: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; attestation_2: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; }>; attestations: ListType<{ aggregation_bits: boolean[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }>; deposits: ListType<{ proof: Uint8Array[]; data: { pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; }; }>; voluntary_exits: ListType<{ message: { epoch: number | bigint; validator_index: number | bigint; }; signature: Uint8Array; }>; sync_aggregate: ContainerCoder<{ sync_committee_bits: BitVectorType; sync_committee_signature: ByteVectorType; }>; execution_payload: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; withdrawals_root: ByteVectorType; }>; bls_to_execution_changes: ListType<{ message: { validator_index: number | bigint; from_bls_pubkey: Uint8Array; to_execution_address: Uint8Array; }; signature: Uint8Array; }>; }>; }>; signature: ByteVectorType; }>; export declare const CapellaBeaconState: ContainerCoder<{ genesis_time: SSZCoder; genesis_validators_root: ByteVectorType; slot: SSZCoder; fork: ContainerCoder<{ previous_version: ByteVectorType; current_version: ByteVectorType; epoch: SSZCoder; }>; latest_block_header: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body_root: ByteVectorType; }>; block_roots: VectorType>; state_roots: VectorType>; historical_roots: ListType>; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; eth1_data_votes: ListType<{ deposit_root: Uint8Array; deposit_count: number | bigint; block_hash: Uint8Array; }>; eth1_deposit_index: SSZCoder; validators: ListType<{ pubkey: Uint8Array; withdrawal_credentials: Uint8Array; effective_balance: number | bigint; slashed: boolean; activation_eligibility_epoch: number | bigint; activation_epoch: number | bigint; exit_epoch: number | bigint; withdrawable_epoch: number | bigint; }>; balances: ListType; randao_mixes: VectorType>; slashings: VectorType; previous_epoch_participation: ListType; current_epoch_participation: ListType; justification_bits: BitVectorType; previous_justified_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; current_justified_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; finalized_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; inactivity_scores: ListType; current_sync_committee: ContainerCoder<{ pubkeys: VectorType>; aggregate_pubkey: ByteVectorType; }>; next_sync_committee: ContainerCoder<{ pubkeys: VectorType>; aggregate_pubkey: ByteVectorType; }>; latest_execution_payload_header: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; withdrawals_root: ByteVectorType; }>; next_withdrawal_index: SSZCoder; next_withdrawal_validator_index: SSZCoder; historical_summaries: ListType<{ block_summary_root: Uint8Array; state_summary_root: Uint8Array; }>; }>; /** Bellatrix Types */ export declare const BellatrixExecutionPayloadHeader: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; }>; export declare const BellatrixBeaconBlock: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body: ContainerCoder<{ randao_reveal: ByteVectorType; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; graffiti: ByteVectorType; proposer_slashings: ListType<{ signed_header_1: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; signed_header_2: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; }>; attester_slashings: ListType<{ attestation_1: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; attestation_2: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; }>; attestations: ListType<{ aggregation_bits: boolean[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }>; deposits: ListType<{ proof: Uint8Array[]; data: { pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; }; }>; voluntary_exits: ListType<{ message: { epoch: number | bigint; validator_index: number | bigint; }; signature: Uint8Array; }>; sync_aggregate: ContainerCoder<{ sync_committee_bits: BitVectorType; sync_committee_signature: ByteVectorType; }>; execution_payload: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; }>; bls_to_execution_changes: ListType<{ message: { validator_index: number | bigint; from_bls_pubkey: Uint8Array; to_execution_address: Uint8Array; }; signature: Uint8Array; }>; }>; }>; export declare const BellatrixSignedBeaconBlock: ContainerCoder<{ message: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body: ContainerCoder<{ randao_reveal: ByteVectorType; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; graffiti: ByteVectorType; proposer_slashings: ListType<{ signed_header_1: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; signed_header_2: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; }>; attester_slashings: ListType<{ attestation_1: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; attestation_2: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; }>; attestations: ListType<{ aggregation_bits: boolean[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }>; deposits: ListType<{ proof: Uint8Array[]; data: { pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; }; }>; voluntary_exits: ListType<{ message: { epoch: number | bigint; validator_index: number | bigint; }; signature: Uint8Array; }>; sync_aggregate: ContainerCoder<{ sync_committee_bits: BitVectorType; sync_committee_signature: ByteVectorType; }>; execution_payload: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; }>; bls_to_execution_changes: ListType<{ message: { validator_index: number | bigint; from_bls_pubkey: Uint8Array; to_execution_address: Uint8Array; }; signature: Uint8Array; }>; }>; }>; signature: ByteVectorType; }>; export declare const BellatrixBeaconState: ContainerCoder<{ genesis_time: SSZCoder; genesis_validators_root: ByteVectorType; slot: SSZCoder; fork: ContainerCoder<{ previous_version: ByteVectorType; current_version: ByteVectorType; epoch: SSZCoder; }>; latest_block_header: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body_root: ByteVectorType; }>; block_roots: VectorType>; state_roots: VectorType>; historical_roots: ListType>; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; eth1_data_votes: ListType<{ deposit_root: Uint8Array; deposit_count: number | bigint; block_hash: Uint8Array; }>; eth1_deposit_index: SSZCoder; validators: ListType<{ pubkey: Uint8Array; withdrawal_credentials: Uint8Array; effective_balance: number | bigint; slashed: boolean; activation_eligibility_epoch: number | bigint; activation_epoch: number | bigint; exit_epoch: number | bigint; withdrawable_epoch: number | bigint; }>; balances: ListType; randao_mixes: VectorType>; slashings: VectorType; previous_epoch_participation: ListType; current_epoch_participation: ListType; justification_bits: BitVectorType; previous_justified_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; current_justified_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; finalized_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; inactivity_scores: ListType; current_sync_committee: ContainerCoder<{ pubkeys: VectorType>; aggregate_pubkey: ByteVectorType; }>; next_sync_committee: ContainerCoder<{ pubkeys: VectorType>; aggregate_pubkey: ByteVectorType; }>; latest_execution_payload_header: ContainerCoder<{ parent_hash: ByteVectorType; fee_recipient: ByteVectorType; state_root: ByteVectorType; receipts_root: ByteVectorType; logs_bloom: ByteVectorType; prev_randao: ByteVectorType; block_number: SSZCoder; gas_limit: SSZCoder; gas_used: SSZCoder; timestamp: SSZCoder; extra_data: ByteListType; base_fee_per_gas: SSZCoder; block_hash: ByteVectorType; transactions_root: ByteVectorType; }>; }>; export declare const AltairBeaconBlock: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body: ContainerCoder<{ randao_reveal: ByteVectorType; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; graffiti: ByteVectorType; proposer_slashings: ListType<{ signed_header_1: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; signed_header_2: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; }>; attester_slashings: ListType<{ attestation_1: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; attestation_2: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; }>; attestations: ListType<{ aggregation_bits: boolean[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }>; deposits: ListType<{ proof: Uint8Array[]; data: { pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; }; }>; voluntary_exits: ListType<{ message: { epoch: number | bigint; validator_index: number | bigint; }; signature: Uint8Array; }>; sync_aggregate: ContainerCoder<{ sync_committee_bits: BitVectorType; sync_committee_signature: ByteVectorType; }>; }>; }>; export declare const AltairSignedBeaconBlock: ContainerCoder<{ message: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body: ContainerCoder<{ randao_reveal: ByteVectorType; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; graffiti: ByteVectorType; proposer_slashings: ListType<{ signed_header_1: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; signed_header_2: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; }>; attester_slashings: ListType<{ attestation_1: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; attestation_2: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; }>; attestations: ListType<{ aggregation_bits: boolean[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }>; deposits: ListType<{ proof: Uint8Array[]; data: { pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; }; }>; voluntary_exits: ListType<{ message: { epoch: number | bigint; validator_index: number | bigint; }; signature: Uint8Array; }>; sync_aggregate: ContainerCoder<{ sync_committee_bits: BitVectorType; sync_committee_signature: ByteVectorType; }>; }>; }>; signature: ByteVectorType; }>; export declare const AltairBeaconState: ContainerCoder<{ genesis_time: SSZCoder; genesis_validators_root: ByteVectorType; slot: SSZCoder; fork: ContainerCoder<{ previous_version: ByteVectorType; current_version: ByteVectorType; epoch: SSZCoder; }>; latest_block_header: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body_root: ByteVectorType; }>; block_roots: VectorType>; state_roots: VectorType>; historical_roots: ListType>; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; eth1_data_votes: ListType<{ deposit_root: Uint8Array; deposit_count: number | bigint; block_hash: Uint8Array; }>; eth1_deposit_index: SSZCoder; validators: ListType<{ pubkey: Uint8Array; withdrawal_credentials: Uint8Array; effective_balance: number | bigint; slashed: boolean; activation_eligibility_epoch: number | bigint; activation_epoch: number | bigint; exit_epoch: number | bigint; withdrawable_epoch: number | bigint; }>; balances: ListType; randao_mixes: VectorType>; slashings: VectorType; previous_epoch_participation: ListType; current_epoch_participation: ListType; justification_bits: BitVectorType; previous_justified_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; current_justified_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; finalized_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; inactivity_scores: ListType; current_sync_committee: ContainerCoder<{ pubkeys: VectorType>; aggregate_pubkey: ByteVectorType; }>; next_sync_committee: ContainerCoder<{ pubkeys: VectorType>; aggregate_pubkey: ByteVectorType; }>; }>; export declare const Phase0BeaconBlock: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body: ContainerCoder<{ randao_reveal: ByteVectorType; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; graffiti: ByteVectorType; proposer_slashings: ListType<{ signed_header_1: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; signed_header_2: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; }>; attester_slashings: ListType<{ attestation_1: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; attestation_2: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; }>; attestations: ListType<{ aggregation_bits: boolean[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }>; deposits: ListType<{ proof: Uint8Array[]; data: { pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; }; }>; voluntary_exits: ListType<{ message: { epoch: number | bigint; validator_index: number | bigint; }; signature: Uint8Array; }>; }>; }>; export declare const Phase0SignedBeaconBlock: ContainerCoder<{ message: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body: ContainerCoder<{ randao_reveal: ByteVectorType; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; graffiti: ByteVectorType; proposer_slashings: ListType<{ signed_header_1: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; signed_header_2: { message: { slot: number | bigint; proposer_index: number | bigint; parent_root: Uint8Array; state_root: Uint8Array; body_root: Uint8Array; }; signature: Uint8Array; }; }>; attester_slashings: ListType<{ attestation_1: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; attestation_2: { attesting_indices: (number | bigint)[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }; }>; attestations: ListType<{ aggregation_bits: boolean[]; data: { slot: number | bigint; index: number | bigint; beacon_block_root: Uint8Array; source: { epoch: number | bigint; root: Uint8Array; }; target: { epoch: number | bigint; root: Uint8Array; }; }; signature: Uint8Array; }>; deposits: ListType<{ proof: Uint8Array[]; data: { pubkey: Uint8Array; withdrawal_credentials: Uint8Array; amount: number | bigint; signature: Uint8Array; }; }>; voluntary_exits: ListType<{ message: { epoch: number | bigint; validator_index: number | bigint; }; signature: Uint8Array; }>; }>; }>; signature: ByteVectorType; }>; export declare const Phase0BeaconState: ContainerCoder<{ genesis_time: SSZCoder; genesis_validators_root: ByteVectorType; slot: SSZCoder; fork: ContainerCoder<{ previous_version: ByteVectorType; current_version: ByteVectorType; epoch: SSZCoder; }>; latest_block_header: ContainerCoder<{ slot: SSZCoder; proposer_index: SSZCoder; parent_root: ByteVectorType; state_root: ByteVectorType; body_root: ByteVectorType; }>; block_roots: VectorType>; state_roots: VectorType>; historical_roots: ListType>; eth1_data: ContainerCoder<{ deposit_root: ByteVectorType; deposit_count: SSZCoder; block_hash: ByteVectorType; }>; eth1_data_votes: ListType<{ deposit_root: Uint8Array; deposit_count: number | bigint; block_hash: Uint8Array; }>; eth1_deposit_index: SSZCoder; validators: ListType<{ pubkey: Uint8Array; withdrawal_credentials: Uint8Array; effective_balance: number | bigint; slashed: boolean; activation_eligibility_epoch: number | bigint; activation_epoch: number | bigint; exit_epoch: number | bigint; withdrawable_epoch: number | bigint; }>; balances: ListType; randao_mixes: VectorType>; slashings: VectorType; previous_epoch_participation: ListType; current_epoch_participation: ListType; justification_bits: BitVectorType; previous_justified_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; current_justified_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; finalized_checkpoint: ContainerCoder<{ epoch: SSZCoder; root: ByteVectorType; }>; }>; export {}; //# sourceMappingURL=ssz.d.ts.map