import type { BlobJson } from '@aztec/blob-lib'; /** Interface to an blob archiving service. */ export interface BlobArchiveClient { getBlobData(id: string): Promise; getBlobsFromBlock(blockId: string): Promise; getLatestBlock(): Promise<{ hash: string; number: number; slot: number }>; getBaseUrl(): string; }