top of page

DeFund

The first blockchain built for quantitative developers, asset managers, financial advisors, and financial institutions Adding support for every blockchain

Chain ID: orbit-alpha-1

Website: defund.app

Public Endpoints:

✅ RPC

rpc.defund.ppnv.space:50657

✅ API / REST

 api.defund.ppnv.space 

✅ gRPC

 grpc.defund.ppnv.space:50090 

✅ gRPC Web

 grpc.defund.ppnv.space:50091

Genesis:

curl -Ls https://service.ppnv.space/defund/genesis.json > $HOME/.defund/config/genesis.json

Peering:

✅ Seed Node

✅ Live Peers

✅ Addrbook #update every hour

curl -Ls https://service.ppnv.space/defund/addrbook.json > $HOME/.defund/config/addrbook.json

✅ State Sync #snapshot-interval = 1000

sudo systemctl stop defundd
cp $HOME/.defund/data/priv_validator_state.json $HOME/.defund/priv_validator_state.json.backup
defundd tendermint unsafe-reset-all --home $HOME/.defund
STATE_SYNC_RPC=http://rpc.defund.ppnv.space:50657
STATE_SYNC_PEER=f150fac0c5ca7e29ddc79a13ebd0fab2086189af@rpc.defund.ppnv.space:50656
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/.defund/config/config.toml
sed -i.bak -e "s|^rpc_servers *=.*|rpc_servers = \"$STATE_SYNC_RPC,$STATE_SYNC_RPC\"|" \
$HOME/.defund/config/config.toml
sed -i.bak -e "s|^trust_height *=.*|trust_height = $SYNC_BLOCK_HEIGHT|" \
$HOME/.defund/config/config.toml
sed -i.bak -e "s|^trust_hash *=.*|trust_hash = \"$SYNC_BLOCK_HASH\"|" \
$HOME/.defund/config/config.toml
sed -i.bak -e "s|^persistent_peers *=.*|persistent_peers = \"$STATE_SYNC_PEER\"|" \
$HOME/.defund/config/config.toml
mv $HOME/.defund/priv_validator_state.json.backup $HOME/.defund/data/priv_validator_state.json
sudo systemctl restart defundd && journalctl -u defundd -f --no-hostname -o cat

bottom of page