@ganache/ethereum-utils
Version:
17 lines • 433 B
TypeScript
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