Coreum
Coreum is the first EGB. A new generation of blockchains that is geared towards enterprise needs in compliance with ISO20022. Launch DeFi applications and protocols for businesses of any size
Chain ID: coreum-mainnet-1
Website: www.coreum.com
Public Endpoints:
✅ RPC
rpc.coreum.ppnv.space:43657
✅ API / REST
api.coreum.ppnv.space
✅ gRPC
grpc.coreum.ppnv.space:43090
✅ gRPC Web
grpc.coreum.ppnv.space:43091
Genesis:
curl -Ls https://service.ppnv.space/coreum/genesis.json > $HOME/.core/coreum-mainnet-1/config/genesis.json
Peering:
✅ Seed Node
✅ Live Peers
✅ Addrbook #update every hour
curl -Ls https://service.ppnv.space/coreum/addrbook.json > $HOME/.core/coreum-mainnet-1/config/addrbook.json
✅ State Sync #snapshot-interval = 1000
sudo systemctl stop cored
cp $HOME/.core/coreum-testnet-1/data/priv_validator_state.json $HOME/.core/coreum-testnet-1/priv_validator_state.json.backup
cored tendermint unsafe-reset-all --home $HOME/.core/coreum-testnet-1
STATE_SYNC_RPC=http://rpc.coreum.ppnv.space:43657
STATE_SYNC_PEER=a366aa963dbad60ca8311090faa41a10662d5106@rpc.coreum.ppnv.space:43656
LATEST_HEIGHT=$(curl -s $STATE_SYNC_RPC/block | jq -r .result.block.header.height)
SYNC_BLOCK_HEIGHT=$(($LATEST_HEIGHT - 1000))
SYNC_BLOCK_HASH=$(curl -s "$STATE_SYNC_RPC/block?height=$SYNC_BLOCK_HEIGHT" | jq -r .result.block_id.hash)
sed -i.bak -e "s|^enable *=.*|enable = true|" $HOME/.core/coreum-testnet-1/config/config.toml
sed -i.bak -e "s|^rpc_servers *=.*|rpc_servers = \"$STATE_SYNC_RPC,$STATE_SYNC_RPC\"|" \
$HOME/.core/coreum-testnet-1/config/config.toml
sed -i.bak -e "s|^trust_height *=.*|trust_height = $SYNC_BLOCK_HEIGHT|" \
$HOME/.core/coreum-testnet-1/config/config.toml
sed -i.bak -e "s|^trust_hash *=.*|trust_hash = \"$SYNC_BLOCK_HASH\"|" \
$HOME/.core/coreum-testnet-1/config/config.toml
sed -i.bak -e "s|^persistent_peers *=.*|persistent_peers = \"$STATE_SYNC_PEER\"|" \
$HOME/.core/coreum-testnet-1/config/config.toml
mv $HOME/.core/coreum-testnet-1/priv_validator_state.json.backup $HOME/.core/coreum-testnet-1/data/priv_validator_state.json
sudo systemctl restart cored && journalctl -u cored -f --no-hostname -o cat