@lodestar/beacon-node
Version:
A Typescript implementation of the beacon chain
20 lines • 1.07 kB
JavaScript
export var GossipType;
(function (GossipType) {
GossipType["beacon_block"] = "beacon_block";
GossipType["blob_sidecar"] = "blob_sidecar";
GossipType["beacon_aggregate_and_proof"] = "beacon_aggregate_and_proof";
GossipType["beacon_attestation"] = "beacon_attestation";
GossipType["voluntary_exit"] = "voluntary_exit";
GossipType["proposer_slashing"] = "proposer_slashing";
GossipType["attester_slashing"] = "attester_slashing";
GossipType["sync_committee_contribution_and_proof"] = "sync_committee_contribution_and_proof";
GossipType["sync_committee"] = "sync_committee";
GossipType["light_client_finality_update"] = "light_client_finality_update";
GossipType["light_client_optimistic_update"] = "light_client_optimistic_update";
GossipType["bls_to_execution_change"] = "bls_to_execution_change";
})(GossipType || (GossipType = {}));
export var GossipEncoding;
(function (GossipEncoding) {
GossipEncoding["ssz_snappy"] = "ssz_snappy";
})(GossipEncoding || (GossipEncoding = {}));
//# sourceMappingURL=interface.js.map