File tree Expand file tree Collapse file tree 7 files changed +38
-12
lines changed
Expand file tree Collapse file tree 7 files changed +38
-12
lines changed Original file line number Diff line number Diff line change 22 "upstream" : [
33 {
44 "repo" : " AztecProtocol/aztec-packages" ,
5- "version" : " v2.1.2 " ,
5+ "version" : " v2.1.3 " ,
66 "arg" : " UPSTREAM_VERSION"
77 }
88 ],
4545 " sequencer"
4646 ]
4747 }
48+ ],
49+ "backup" : [
50+ {
51+ "name" : " keystore" ,
52+ "path" : " /keystore" ,
53+ "service" : " sequencer"
54+ }
4855 ]
4956}
Original file line number Diff line number Diff line change @@ -4,14 +4,18 @@ services:
44 build :
55 context : sequencer
66 args :
7- UPSTREAM_VERSION : v2.1.2
7+ UPSTREAM_VERSION : v2.1.3
88 DATA_DIRECTORY : /data
99 volumes :
1010 - sequencer-data:/data
11+ - keystore-data:/keystore
1112 environment :
13+ KEY_STORE_DIRECTORY : /keystore
14+ DATA_DIRECTORY : /data
1215 COINBASE : " "
1316 VALIDATOR_PRIVATE_KEYS : " "
1417 LOG_LEVEL : info
1518 restart : unless-stopped
1619volumes :
1720 sequencer-data : {}
21+ keystore-data : {}
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " aztec.dnp.dappnode.eth" ,
3+ "version" : " 0.1.0"
4+ }
Original file line number Diff line number Diff line change 1+ version : " 3.5"
2+ services :
3+ sequencer :
4+ build :
5+ args :
6+ NETWORK : " mainnet"
7+ environment :
8+ ETHEREUM_HOSTS : http://execution.mainnet.dncore.dappnode:8545
9+ L1_CONSENSUS_HOST_URLS : http://beacon-chain.mainnet.dncore.dappnode:3500
10+ ports :
11+ - 40400:40400/tcp
12+ - 40400:40400/udp
Original file line number Diff line number Diff line change @@ -5,8 +5,9 @@ services:
55 args :
66 NETWORK : " testnet"
77 environment :
8- ETHEREUM_HOSTS : http://geth.sepolia-geth.dappnode:8545
9- L1_CONSENSUS_HOST_URLS : http://prysm-sepolia.dappnode:3500
8+ ETHEREUM_HOSTS : http://execution.sepolia.dncore.dappnode:8545
9+ L1_CONSENSUS_HOST_URLS : http://beacon-chain.sepolia.dncore.dappnode:3500
10+ P2P_PORT : 40401
1011 ports :
11- - 40400:40400 /tcp
12- - 40400:40400 /udp
12+ - 40401:40401 /tcp
13+ - 40401:40401 /udp
Original file line number Diff line number Diff line change @@ -4,8 +4,6 @@ set -euo pipefail
44# — Required environment variables
55: " ${ETHEREUM_HOSTS?Need to set ETHEREUM_HOSTS} "
66: " ${L1_CONSENSUS_HOST_URLS?Need to set L1_CONSENSUS_HOST_URLS} "
7- : " ${VALIDATOR_PRIVATE_KEYS?Need to set VALIDATOR_PRIVATE_KEYS} "
8- : " ${COINBASE?Need to set COINBASE} "
97: " ${_DAPPNODE_GLOBAL_PUBLIC_IP?Need to set _DAPPNODE_GLOBAL_PUBLIC_IP (your public IP)} "
108: " ${NETWORK?Need to set NETWORK (build arg)} "
119: " ${LOG_LEVEL:= info} "
Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ fields:
2828 type : environment
2929 name : VALIDATOR_PRIVATE_KEYS
3030 service : [sequencer]
31- title : Validator Private Key
31+ title : Validator Private Key - DEPRECATED, just for backup purposes
3232 description : " Private key of testnet L1 EOA that holds Sepolia ETH (0.01 Sepolia ETH can get you started)"
33- required : true
33+ required : false
3434 secret : true
3535 pattern : ' ^0x[a-fA-F0-9]{64}$'
3636 patternErrorMessage : " Please enter a valid private key (0x followed by 64 hexadecimal characters)"
@@ -40,8 +40,8 @@ fields:
4040 type : environment
4141 name : COINBASE
4242 service : [sequencer]
43- title : Coinbase Address
43+ title : Coinbase Address - DEPRECATED, just for backup purposes
4444 description : " Recipient of block rewards (for node security on mainnet, this should be a different address to the validator eoa)"
45- required : true
45+ required : false
4646 pattern : ' ^0x[a-fA-F0-9]{40}$'
4747 patternErrorMessage : " Please enter a valid Ethereum address (0x followed by 40 hexadecimal characters)"
You can’t perform that action at this time.
0 commit comments