Type for input options for retrieve storage range function

interface RetrieveStorageRangeOptions {
    address?: Address;
    keyStart?: BlockId;
    maxResult?: number;
}

Properties

address?: Address

The address of the contract/ account to be traced.

keyStart?: BlockId

The start key of the storage range. Default is 0x0000000000000000000000000000000000000000000000000000000000000000.

maxResult?: number

The maximum number of results to be returned. Default is 1000.