-
Notifications
You must be signed in to change notification settings - Fork 7
/
dappnode_package.json
55 lines (55 loc) · 1.98 KB
/
dappnode_package.json
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
{
"name": "erigon.dnp.dappnode.eth",
"version": "0.1.43",
"shortDescription": "Ethereum client on the efficiency frontier, written in Go",
"description": "Erigon is a next generation Ethereum client that introduces several new concepts:\n\n* A modular client design, enabling parallelized development of the client\n\n* New (`flat`) model of storing Ethereum state, allowing a lower disk footprint\n\n* Preprocessing of data outside of the storage engine, making database write operations faster by a magnitude\n\n* Staged synchronization technique, allowing very fast synchronization",
"upstreamVersion": "v2.58.1",
"upstreamRepo": "ledgerwatch/erigon",
"upstreamArg": "UPSTREAM_VERSION",
"type": "service",
"chain": "ethereum",
"categories": ["Developer tools"],
"architectures": ["linux/amd64"],
"author": "DAppNode Association <[email protected]> (https://github.com/dappnode)",
"contributors": [
"Eduardo Antuña <[email protected]> (https://github.com/eduadiez)",
"Pablo Mendez <[email protected]> (https://github.com/pablomendezroyo)"
],
"links": {
"api": "http://erigon.dappnode:8545",
"apiEngine": "http://erigon.dappnode:8551",
"homepage": "https://github.com/ledgerwatch/erigon"
},
"mainService": "erigon",
"license": "GPL-3.0",
"requirements": {
"minimumDappnodeVersion": "0.2.60"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dappnode/DAppNodePackage-erigon.git"
},
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-erigon/issues"
},
"exposable": [
{
"name": "Erigon JSON RPC",
"description": "JSON RPC endpoint for Erigon mainnet",
"serviceName": "erigon",
"port": 8545
},
{
"name": "Erigon JSON RPC (WS)",
"description": "JSON RPC WebSocket endpoint for Erigon mainnet",
"serviceName": "erigon",
"port": 8545
}
],
"globalEnvs": [
{
"envs": ["CONSENSUS_CLIENT_MAINNET"],
"services": ["erigon"]
}
]
}