UNPKG

@ganache/ethereum-utils

Version:
17 lines 433 B
import { Address } from "@ganache/ethereum-address"; import { Data, Quantity } from "@ganache/utils"; export type StorageProof = { key: Data; proof: Data[]; value: Quantity; }; export type AccountProof = { address: Address; balance: Quantity; codeHash: Data; nonce: Quantity; storageHash: Data; accountProof: Data[]; storageProof: StorageProof[]; }; //# sourceMappingURL=account-proof.d.ts.map