Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dappnode_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"upstream": [
{
"repo": "AztecProtocol/aztec-packages",
"version": "1.2.1",
"version": "2.0.2",
"arg": "UPSTREAM_VERSION"
}
],
Expand Down
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ services:
build:
context: sequencer
args:
UPSTREAM_VERSION: 1.2.1
UPSTREAM_VERSION: 2.0.2
DATA_DIRECTORY: /data
volumes:
- sequencer-data:/data
environment:
COINBASE: ""
VALIDATOR_PRIVATE_KEYS: ""
BLOB_SINK_URL: ""
SYNC_SNAPSHOTS_URL: ""
LOG_LEVEL: "info"
restart: unless-stopped
volumes:
Expand Down
2 changes: 1 addition & 1 deletion package_variants/sepolia/dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "aztec-sepolia.dnp.dappnode.eth",
"version": "0.1.1"
"version": "0.1.3"
}
3 changes: 2 additions & 1 deletion package_variants/sepolia/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ services:
sequencer:
build:
args:
NETWORK: "alpha-testnet"
NETWORK: "testnet"
environment:
ETHEREUM_HOSTS: http://geth.sepolia-geth.dappnode:8545
L1_CONSENSUS_HOST_URLS: http://prysm-sepolia.dappnode:3500
SYNC_SNAPSHOTS_URL: https://aztec.denodes.xyz/snapshot/
ports:
- 40400:40400/tcp
- 40400:40400/udp
12 changes: 12 additions & 0 deletions package_variants/sepolia/releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,17 @@
"uploadedTo": {
"remote": "Thu, 07 Aug 2025 14:04:05 GMT"
}
},
"0.1.2": {
"hash": "/ipfs/QmS3c8EyvVSFGLsAuTU4e7cRkpDtGZVA46fThqxdhKAKQg",
"uploadedTo": {
"dappnode": "Wed, 17 Sep 2025 22:43:48 GMT"
}
},
"0.1.3": {
"hash": "/ipfs/QmTEaPpAagSYGN4eTdBNYuUZZGJYov9UwhqLvNumJm727u",
"uploadedTo": {
"dappnode": "Wed, 17 Sep 2025 22:59:04 GMT"
}
}
}
2 changes: 2 additions & 0 deletions sequencer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,6 @@ ENV NETWORK=${NETWORK} \
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh

RUN apt-get update && apt-get install -y lz4 wget

ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
12 changes: 12 additions & 0 deletions sequencer/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,18 @@ FLAGS=(
--network "$NETWORK"
)

# — Download snapshot only if empty
if [ -z "$(ls -A /data/aztec-alpha-testnet.tar.lz4)" ]; then
echo "[INFO - entrypoint] Target folder is empty, downloading snapshot..."
wget https://files5.blacknodes.net/aztec/aztec-alpha-testnet.tar.lz4 -O /data/aztec-alpha-testnet.tar.lz4
lz4 -d /data/aztec-alpha-testnet.tar.lz4 /data/aztec-alpha-testnet.tar
tar -xvf /data/aztec-alpha-testnet.tar -C /
rm /data/aztec-alpha-testnet.tar
echo "[INFO - entrypoint] Snapshot download and extraction completed"
else
echo "[INFO - entrypoint] Target folder is not empty, skipping snapshot download"
fi

# — Append fixed mode flags
FLAGS+=(--archiver --node --sequencer)

Expand Down