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