@lodestar/beacon-node
Version:
A Typescript implementation of the beacon chain
24 lines • 861 B
JavaScript
export { DAType };
var DAType;
(function (DAType) {
DAType["PreData"] = "pre-data";
DAType["Blobs"] = "blobs";
DAType["Columns"] = "columns";
DAType["NoData"] = "no-data";
})(DAType || (DAType = {}));
export { BlockInputSource };
/**
* Represents were input originated. Blocks and Data can come from different
* sources so each should be labelled individually.
*/
var BlockInputSource;
(function (BlockInputSource) {
BlockInputSource["network_processor"] = "network_processor";
BlockInputSource["gossip"] = "gossip";
BlockInputSource["api"] = "api";
BlockInputSource["engine"] = "engine";
BlockInputSource["byRange"] = "req_resp_by_range";
BlockInputSource["byRoot"] = "req_resp_by_root";
BlockInputSource["recovery"] = "recovery";
})(BlockInputSource || (BlockInputSource = {}));
//# sourceMappingURL=types.js.map