-
Notifications
You must be signed in to change notification settings - Fork 0
/
nethermind.star
94 lines (84 loc) · 2.19 KB
/
nethermind.star
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
version = "0.0.1"
name = "nethermind"
chains = ["mainnet", "goerli", "sepolia"]
config = {
"archive": {
"type": "bool",
"description": "Enables archival node mode",
"default": False,
},
}
babel = {
"image": "ghcr.io/umbracle/babel",
"tag": "v0.0.1",
"args": [
"--plugin",
"ethereum_el",
"server",
"url=http://0.0.0.0:8545",
],
}
verbosity_levels = {
"all": "DEBUG",
"debug": "DEBUG",
"info": "INFO",
"warn": "WARN",
"error": "ERROR",
"silent": "ERROR",
}
def generate(obj):
t = {
"image": "nethermind/nethermind",
"tag": "1.17.3",
"args": [
"--datadir",
"/data",
"--config",
obj["chain"],
"--JsonRpc.Enabled",
"true",
"--JsonRpc.Host",
"0.0.0.0",
"--JsonRpc.Port",
"8545",
"--JsonRpc.EngineHost",
"0.0.0.0",
"--JsonRpc.EnginePort",
"8551",
"--JsonRpc.JwtSecretFile",
"/var/lib/jwtsecret/jwt.hex",
"--Metrics.ExposePort",
"6060",
"--log",
verbosity_levels[obj["log_level"]],
],
"data": {
"/var/lib/jwtsecret/jwt.hex": "04592280e1778419b7aa954d43871cb2cfb2ebda754fb735e8adeb293a88f9bf"
},
"volumes": {"data": {"path": "/data"}},
}
if obj["archive"]:
t["args"].extend(
[
"--Sync.DownloadBodiesInFastSync",
"false",
"--Sync.DownloadReceiptsInFastSync",
"false",
"--Sync.FastSync",
"false",
"--Sync.SnapSync",
"false",
"--Sync.FastBlocks",
"false",
"--Pruning.Mode",
"None",
"--Sync.PivotNumber",
"0",
]
)
else:
t["args"].extend(["--Sync.SnapSync", "true"])
if obj["metrics"]:
t["args"].extend(["--Metrics.Enabled", "true"])
t["telemetry"] = {"port": 6060, "path": "metrics"}
return {"node": t, "babel": babel}