Skip to content

Latest commit

 

History

History
39 lines (22 loc) · 1.09 KB

File metadata and controls

39 lines (22 loc) · 1.09 KB

@ethereumjs/common


@ethereumjs/common / StorageRange

Interface: StorageRange

Defined in: common/src/interfaces.ts:19

Object that can contain a set of storage keys associated with an account.

Properties

nextKey

nextKey: string | null

Defined in: common/src/interfaces.ts:36

The next (hashed) storage key after the greatest storage key contained in storage.


storage

storage: object

Defined in: common/src/interfaces.ts:26

A dictionary where the keys are hashed storage keys, and the values are objects containing the preimage of the hashed key (in key) and the storage key (in value). Currently, there is no way to retrieve preimages, so they are always null.

Index Signature

[key: string]: object