UNPKG

@ganache/ethereum-utils

Version:
17 lines 421 B
/// <reference types="node" /> import { Data } from "@ganache/utils"; type StorageRecord = { key: Data; value: Data; }; export type StorageRecords = Record<string, StorageRecord>; export type StorageRangeAtResult = { nextKey: Data | null; storage: StorageRecords; }; export type StorageKeys = Map<string, { key: Buffer; hashedKey: Buffer; }>; export {}; //# sourceMappingURL=debug-storage.d.ts.map