merkle-patricia-tree
Version:
This is an implementation of the modified merkle patricia tree as specified in Ethereum's yellow paper.
12 lines • 891 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.WalkController = exports.BaseTrie = exports.SecureTrie = exports.CheckpointTrie = void 0;
var checkpointTrie_1 = require("./checkpointTrie");
Object.defineProperty(exports, "CheckpointTrie", { enumerable: true, get: function () { return checkpointTrie_1.CheckpointTrie; } });
var secure_1 = require("./secure");
Object.defineProperty(exports, "SecureTrie", { enumerable: true, get: function () { return secure_1.SecureTrie; } });
var baseTrie_1 = require("./baseTrie");
Object.defineProperty(exports, "BaseTrie", { enumerable: true, get: function () { return baseTrie_1.Trie; } });
var walkController_1 = require("./util/walkController");
Object.defineProperty(exports, "WalkController", { enumerable: true, get: function () { return walkController_1.WalkController; } });
//# sourceMappingURL=index.js.map
;