Explorers
Endpoints
- API: https://api-symphony.sr20de.xyz
- RPC: https://rpc-symphony.sr20de.xyz
- GRPC: https://grpc-symphony.sr20de.xyz
Peers
1 |
324958c3c913e4966481f265542c59f1b1edf60a@135.181.5.232:29156,4e184ebca15b82d29d50536cf9b6d87f15782d4f@65.108.232.168:17656,3fcc24674dd04e19bbd846c41b9275c10562ca56@65.108.125.237:38656,27c7c8db8071e1c482ebd47788acebda841ba7be@176.9.111.199:46656,69c99201a18d80a7cd08acd0a3e7645fbdb126ed@46.4.64.123:26656,7cfa11e4a405e21e25705b67ae07e17ce675be23@45.129.147.242:29156,cc795fd3be0ccf51295d1a5c51543ea662f8ac0a@46.232.248.39:21656,c7397fea91fb15490f1cd3fcf9f47b455c05a97f@149.50.108.112:38656,ab970d659688f7d64493a796741da8e642e0c254@51.159.78.176:31056,0a98a4883896e8f846bf3fdb1709a96b346d1bf2@23.128.116.127:29154,637077d431f618181597706810a65c826524fd74@176.9.120.85:29156,6701f15fea1fa182b02f53345a8e24c3ed39d952@195.3.223.78:35656,980925d2c1539149430b321c9c4767f67d2e6309@65.109.88.184:38656,8dee4343f5865f538768729099575737ceb3598f@57.128.22.214:29156,8fd48b8caf6a373e21d667a88368cab558149daf@5.196.197.181:26656,0d04642a315f926a005d9ffac8a63bc56594362c@65.108.238.219:29156,b14430f62b9658b866a96d79cefad95084626390@57.129.54.175:26656,f7eba9e9a11e50c68a8f324f28587f9920f51507@144.76.202.120:27656,d45190c9ce7cff612154710f22137ce7ea0096ee@185.227.135.165:12056,798fd108b9a0e696bdacd6e7ea7a3fe20c11eafd@65.21.234.111:26656,777d955ce5d5b9e7c9068bbfe4fd1d36dea2c005@144.76.108.91:38656,0f2eef4533047fd88fb14e073d6be2591de2324e@65.109.97.249:29156,bc5b13763ed38c731fe5152b1fde209b530889bb@84.32.70.15:15656,c9b70a7a6f85831f84f32e3747e334177c1274f5@95.217.62.179:12056,7c578a350de8c3794e1e8e62dbed7816d321b0dd@152.53.250.96:46656,a15ae1bc5d6b8d02e2b09ca32e86118c27f8ef5b@38.246.114.205:31656,df05ff81c798868838207ee4843c7ed60280e147@149.50.101.137:12056,86effe697cd6fd2cca3470e5b73ebe855130aba5@209.209.11.190:31656,23a0e967a5423e0163cee0041f82d8fb202a48d5@152.53.18.245:6969 |
State-sync
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
sudo systemctl stop symphonyd SNAP_RPC="https://rpc-symphony.sr20de.xyz:443" LATEST_HEIGHT=$(curl -s $SNAP_RPC/block | jq -r .result.block.header.height) BLOCK_HEIGHT=$((LATEST_HEIGHT - 2000)) TRUST_HASH=$(curl -s "$SNAP_RPC/block?height=$BLOCK_HEIGHT" | jq -r .result.block_id.hash) echo $LATEST_HEIGHT $BLOCK_HEIGHT $TRUST_HASH sed -i 's|^enable *=.*|enable = true|' $HOME/.symphonyd/config/config.toml sed -i 's|^rpc_servers *=.*|rpc_servers = "'$SNAP_RPC,$SNAP_RPC'"|' $HOME/.symphonyd/config/config.toml sed -i 's|^trust_height *=.*|trust_height = '$BLOCK_HEIGHT'|' $HOME/.symphonyd/config/config.toml sed -i 's|^trust_hash *=.*|trust_hash = "'$TRUST_HASH'"|' $HOME/.symphonyd/config/config.toml sudo systemctl restart symphonyd && journalctl -fu symphonyd -o cat |