File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ It support 4 steps to operate OP Stack node
2626| op-sepolia | ✅ | ✅ | ✅ |
2727| base-mainnet | ✅ | ✅ | ✅ |
2828| base-sepolia | ✅ | ✅ | ✅ |
29- | worldchain-mainnet | ❌ | ❌ | ❌ |
29+ | worldchain-mainnet | ✅ | ❌ | ❌ |
3030| worldchain-sepolia | ✅ | ❌ | ❌ |
3131| unichain-mainnet | ❌ | ❌ | ❌ |
32- | unichain-sepolia | ❌ | ❌ | ❌ |
32+ | unichain-sepolia | ✅ | ❌ | ❌ |
3333
3434## Frequently Asked Questions
3535** Q. I don`t have enough fee for faucet**
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ RUN chmod +x /script/*.sh
3030WORKDIR /app
3131
3232RUN apt-get update && \
33- apt-get install -y sudo jq curl aria2 && \
33+ apt-get install -y sudo jq curl wget && \
3434 rm -rf /var/lib/apt/lists
3535
3636COPY --from=op /app/op-node/bin/op-node ./
Original file line number Diff line number Diff line change @@ -11,7 +11,9 @@ if [ -z "$URLS" ]; then
1111 exit 1
1212fi
1313
14- echo " $URLS " | xargs -n 1 -P 2 aria2c -x 4 -s 4 -d /data --retry-wait=10 --max-tries=3
14+ echo " $URLS " | xargs -n 1 -P 2 wget --retry-connrefused --waitretry=10 \
15+ --timeout=60 --tries=5 -P /data
16+
1517echo " Download snapshot completed. Unpacking..."
1618
1719for FILE in /data/* .tar.lz4; do
You can’t perform that action at this time.
0 commit comments