UNPKG

@ethereumjs/mpt

Version:

Implementation of the modified merkle patricia tree as specified in Ethereum's yellow paper.

7 lines 342 B
import { ExtensionOrLeafMPTNodeBase } from './extensionOrLeafNodeBase.ts'; import type { Nibbles, RawExtensionMPTNode } from '../types.ts'; export declare class ExtensionMPTNode extends ExtensionOrLeafMPTNodeBase { constructor(nibbles: Nibbles, value: Uint8Array); raw(): RawExtensionMPTNode; } //# sourceMappingURL=extension.d.ts.map