Skip to content

Commit bb18b65

Browse files
authored
Added new ENVs and removed the deprecated ones (#34)
1 parent 2189766 commit bb18b65

2 files changed

Lines changed: 6 additions & 26 deletions

File tree

docker-compose.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,11 @@ services:
1212
environment:
1313
KEY_STORE_DIRECTORY: /keystore
1414
DATA_DIRECTORY: /data
15-
COINBASE: ""
16-
VALIDATOR_PRIVATE_KEYS: ""
15+
P2P_MAX_PEERS: ""
16+
L1_GAS_PRICE_MAX: ""
17+
L1_BLOB_FEE_PER_GAS_MAX: ""
18+
L1_PRIORITY_FEE_BUMP_PERCENTAGE: ""
19+
L1_FIXED_PRIORITY_FEE_PER_GAS: ""
1720
LOG_LEVEL: info
1821
restart: unless-stopped
1922
volumes:

setup-wizard.yml

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -21,27 +21,4 @@ fields:
2121
description: "One or more comma-separated public rpc provider url(s) that supports consensus client requests"
2222
required: true
2323
pattern: '^https?://[\w\-]+(\.[\w\-]+)+([\w\-.,@?^=%&:/~+#]*[\w\-@?^=%&/~+#])?(,https?://[\w\-]+(\.[\w\-]+)+([\w\-.,@?^=%&:/~+#]*[\w\-@?^=%&/~+#])?)*$'
24-
patternErrorMessage: "Please enter one or more valid comma-separated URLs (e.g., http://prysm-sepolia.dappnode:3500)"
25-
26-
- id: VALIDATOR_PRIVATE_KEYS
27-
target:
28-
type: environment
29-
name: VALIDATOR_PRIVATE_KEYS
30-
service: [sequencer]
31-
title: Validator Private Key - DEPRECATED, just for backup purposes
32-
description: "Private key of testnet L1 EOA that holds Sepolia ETH (0.01 Sepolia ETH can get you started)"
33-
required: false
34-
secret: true
35-
pattern: '^0x[a-fA-F0-9]{64}$'
36-
patternErrorMessage: "Please enter a valid private key (0x followed by 64 hexadecimal characters)"
37-
38-
- id: coinbase
39-
target:
40-
type: environment
41-
name: COINBASE
42-
service: [sequencer]
43-
title: Coinbase Address - DEPRECATED, just for backup purposes
44-
description: "Recipient of block rewards (for node security on mainnet, this should be a different address to the validator eoa)"
45-
required: false
46-
pattern: '^0x[a-fA-F0-9]{40}$'
47-
patternErrorMessage: "Please enter a valid Ethereum address (0x followed by 40 hexadecimal characters)"
24+
patternErrorMessage: "Please enter one or more valid comma-separated URLs (e.g., http://prysm-sepolia.dappnode:3500)"

0 commit comments

Comments
 (0)