-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
tuimf
committed
Nov 16, 2022
1 parent
2252158
commit 747ce1f
Showing
7 changed files
with
329 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,14 @@ | ||
# exosama-basic-node | ||
Basic exosama node setup | ||
|
||
Requirements: | ||
|
||
Docker 18.06.0+ | ||
|
||
Docker-compose v2.12.2 | ||
|
||
2 CPU cores | ||
|
||
8 gb RAM | ||
|
||
300 gb SSD/NVME |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"Init": { | ||
"ChainSpecPath": "chainspec/exosama.json", | ||
"BaseDbPath": "db/exosama", | ||
"LogFileName": "exosama.logs.txt", | ||
"MemoryHint": 2048000000, | ||
"WebSocketsEnabled": true, | ||
"StoreReceipts" : true | ||
}, | ||
"Network": { | ||
"DiscoveryPort": 30303, | ||
"P2PPort": 30303, | ||
"ActivePeersMaxCount": 50, | ||
}, | ||
"TxPool": { | ||
"Size": 2048 | ||
}, | ||
"JsonRpc": { | ||
"Enabled": true, | ||
"Host": "0.0.0.0", | ||
"EnabledModules": ["Eth", "Web3", "Net","Subscribe"], | ||
"Port": 8545 | ||
}, | ||
"Db": { | ||
"CacheIndexAndFilterBlocks": false | ||
}, | ||
"Sync": { | ||
"FastSync": false | ||
}, | ||
"KeyStore": { | ||
}, | ||
"Pruning": { | ||
"Mode": "None" | ||
}, | ||
"Merge": { | ||
"Enabled": false | ||
} | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
version: '3.7' | ||
services: | ||
nethermind: | ||
image: nethermind/nethermind:1.14.3 | ||
restart: on-failure | ||
command: | ||
--config exosama | ||
volumes: | ||
- ./chainspec:/nethermind/chainspec:ro | ||
- ./configs:/nethermind/configs:ro | ||
- ./db:/nethermind/db | ||
- ./keystore:/nethermind/keystore | ||
- ./logs:/nethermind/logs | ||
ports: | ||
- 30303:30303 | ||
- 30303:30303/udp | ||
- 127.0.0.1:8545:8545 |
Empty file.
Empty file.