15 lines
405 B
Bash
Executable File
15 lines
405 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ! -d "/datadir/config" ]; then
|
|
exchaind init fullnode --chain-id exchain-66 --home /datadir
|
|
wget https://raw.githubusercontent.com/okex/mainnet/main/genesis.json -O /datadir/config/genesis.json
|
|
fi
|
|
|
|
exchaind start \
|
|
--chain-id exchain-66 \
|
|
--home /datadir \
|
|
--rest.laddr tcp://0.0.0.0:8545 \
|
|
--p2p.laddr=tcp://0.0.0.0:35885 \
|
|
--db_backend rocksdb
|
|
|