constants.star 334 Bytes
Newer Older
guillaume.bouvignies's avatar
guillaume.bouvignies committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
EL_CLIENT_TYPE = struct(
	geth="geth",
	erigon="erigon",
	nethermind="nethermind",
	besu="besu"
)

CL_CLIENT_TYPE = struct(
	lighthouse="lighthouse",
	teku="teku",
	nimbus="nimbus",
	prysm="prysm",
	lodestar="lodestar"
)

GLOBAL_CLIENT_LOG_LEVEL = struct(
	info="info",
	error="error",
	warn="warn",
	debug="debug",
	trace="trace",
)