@ethereumjs/binarytree
Version:
Implementation of binary trees as used in Ethereum.
11 lines • 361 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NODE_WIDTH = exports.BinaryNodeType = void 0;
/** Node kind constants: internal branch vs stem leaf bucket. */
exports.BinaryNodeType = {
Internal: 0,
Stem: 1,
};
/** Number of suffix slots in a stem node. */
exports.NODE_WIDTH = 256;
//# sourceMappingURL=types.js.map