40 lines
1.5 KiB
Bash
40 lines
1.5 KiB
Bash
#!/bin/sh
|
|
|
|
# exit script on any error
|
|
set -e
|
|
|
|
# Set Bor Home Directory
|
|
ERIGON_HOME=/datadir
|
|
|
|
if [ "${BOOTSTRAP}" == 1 ] && [ -n "${SNAPSHOT_URL}" ] && [ ! -f "${ERIGON_HOME}/bootstrapped" ];
|
|
then
|
|
echo "downloading snapshot from ${SNAPSHOT_URL}"
|
|
mkdir -p ${ERIGON_HOME:-/datadir}
|
|
wget --tries=0 -O - "${SNAPSHOT_URL}" | tar -xz -C ${ERIGON_HOME:-/datadir} && touch ${ERIGON_HOME:-/datadir}/bootstrapped
|
|
fi
|
|
|
|
READY=$(curl -s ${HEIMDALLD:-http://heimdalld:26657}/status | jq '.result.sync_info.catching_up')
|
|
while [[ "${READY}" != "false" ]];
|
|
do
|
|
echo "Waiting for heimdalld to catch up."
|
|
sleep 30
|
|
READY=$(curl -s ${HEIMDALLD:-http://heimdalld:26657}/status | jq '.result.sync_info.catching_up')
|
|
done
|
|
|
|
# add snap.keepblocks=true as mentioned on https://snapshot.polygon.technology/
|
|
# add rpc.returndata.limit=1000000 to unstuck subgraphs due to "call retuned result on length 104704 exceeding limit 100000"
|
|
|
|
exec erigon \
|
|
--chain=bor-mainnet \
|
|
--bor.heimdall=${HEIMDALLR:-http://heimdallr:1317} \
|
|
--datadir=${ERIGON_HOME} \
|
|
--http --http.addr="0.0.0.0" --http.port="8545" --http.compression --http.vhosts="*" --http.corsdomain="*" --http.api="eth,debug,net,trace,web3,erigon,bor" \
|
|
--ws --ws.compression \
|
|
--port=27113 \
|
|
--snap.keepblocks=true \
|
|
--rpc.returndata.limit=1000000 \
|
|
--snapshots="true" \
|
|
--torrent.upload.rate="1250mb" --torrent.download.rate="1250mb" \
|
|
--metrics --metrics.addr=0.0.0.0 --metrics.port=6060 \
|
|
--pprof --pprof.addr=0.0.0.0 --pprof.port=6061
|