nimbus-eth2/beacon_chain/version.nim

29 lines
749 B
Nim

type
NetworkBackendType* = enum
libp2pBackend
rlpxBackend
const
network_type {.strdefine.} = "libp2p"
networkBackend* = when network_type == "rlpx": rlpxBackend
elif network_type == "libp2p": libp2pBackend
else: {.fatal: "The 'network_type' should be either 'libp2p' or 'rlpx'" .}
const
versionMajor* = 0
versionMinor* = 3
versionBuild* = 0
semanticVersion* = 2
# Bump this up every time a breaking change is introduced
# Clients having different semantic versions won't be able
# to join the same testnets.
template versionAsStr*: string =
$versionMajor & "." & $versionMinor & "." & $versionBuild
proc fullVersionStr*: string =
versionAsStr & "_" & network_type