UNPKG

@nomicfoundation/ethereumjs-statemanager

Version:
10 lines (8 loc) 137 B
export enum CacheType { LRU = 'lru', ORDERED_MAP = 'ordered_map', } export interface CacheOpts { size: number type: CacheType }