Skip to content

Commit e23f52d

Browse files
authored
Merge pull request #27 from dappnode/hcastc00/ignition
hcastc00/ignition
2 parents aef227f + dbc28d0 commit e23f52d

File tree

7 files changed

+38
-12
lines changed

7 files changed

+38
-12
lines changed

dappnode_package.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"upstream": [
33
{
44
"repo": "AztecProtocol/aztec-packages",
5-
"version": "v2.1.2",
5+
"version": "v2.1.3",
66
"arg": "UPSTREAM_VERSION"
77
}
88
],
@@ -45,5 +45,12 @@
4545
"sequencer"
4646
]
4747
}
48+
],
49+
"backup": [
50+
{
51+
"name": "keystore",
52+
"path": "/keystore",
53+
"service": "sequencer"
54+
}
4855
]
4956
}

docker-compose.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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
1619
volumes:
1720
sequencer-data: {}
21+
keystore-data: {}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"name": "aztec.dnp.dappnode.eth",
3+
"version": "0.1.0"
4+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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

package_variants/sepolia/docker-compose.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff 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

sequencer/entrypoint.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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}"

setup-wizard.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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)"

0 commit comments

Comments
 (0)