rpc-nodes/bsc/docker-entrypoint.sh

11 lines
336 B
Bash
Raw Normal View History

2022-03-03 10:14:26 +01:00
#!/bin/sh
set -x
if [ ! -f /root/.ethereum/setupdone ]; then
wget -O /root/mainnet.zip "https://github.com/bnb-chain/bsc/releases/download/${BSC_TAG}/mainnet.zip"
unzip -o -j /root/mainnet.zip "mainnet/genesis.json" -d /root/.ethereum/
bsc init /root/.ethereum/genesis.json
touch /root/.ethereum/setupdone
fi
exec "$@"