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