UNPKG

@ethereumjs/mpt

Version:

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

10 lines 294 B
import { ExtensionOrLeafMPTNodeBase } from "./extensionOrLeafNodeBase.js"; export class LeafMPTNode extends ExtensionOrLeafMPTNodeBase { constructor(nibbles, value) { super(nibbles, value, true); } raw() { return super.raw(); } } //# sourceMappingURL=leaf.js.map