import type { Address } from 'abitype'; import type { Hash } from './misc.js'; type AccountProof = Hash; type StorageProof = { key: Hash; proof: Hash[]; value: TQuantity; }; export type Proof = { address: Address; balance: TQuantity; codeHash: Hash; nonce: TIndex; storageHash: Hash; accountProof: AccountProof[]; storageProof: StorageProof[]; }; export {}; //# sourceMappingURL=proof.d.ts.map