import type { CommitBlockResponse } from './CommitBlockResponse'; import type { L1TransactionInfoResponse } from './L1TransactionInfoResponse'; export type BlockInformationSimpleResponse = { blockNumber: number; blockHash: string; L1TransactionInfo: L1TransactionInfoResponse; verifiedAt: string; operatorAddress: string; proofCallData: any; blockStatus: BlockInformationSimpleResponse.blockStatus; blockStatusCode: number; currentTime: number; lastCommittedBlock: any; commitBlock: CommitBlockResponse; metadata: any; blockSize?: number; createdAt: string; updatedAt: string; }; export declare namespace BlockInformationSimpleResponse { enum blockStatus { PENDING = "PENDING", PROCESSING = "PROCESSING", L2EXECUTED = "L2EXECUTED", L2CONFIRMED = "L2CONFIRMED", L1CONFIRMED = "L1CONFIRMED", ERROR = "ERROR" } }