UNPKG

merkle-patricia-tree

Version:

This is an implementation of the modified merkle patricia tree as specified in Ethereum's yellow paper.

10 lines (9 loc) 245 B
import { Trie as BaseTrie } from './baseTrie'; declare const Readable: any; export declare class TrieReadStream extends Readable { private trie; private _started; constructor(trie: BaseTrie); _read(): Promise<void>; } export {};