Source Protocol
A public, permission-less blockchain network for global payments and all things decentralized. Enterprises, developers and individuals can utilize $SOURCE’s infrastructure to create user-friendly apps, smart contracts and tools for Web 3.0, DeFi, NFTs, and more.
Links
WEBSITE https://www.sourceprotocol.io/
TWITTER https://twitter.com/SourceProtocol_
TELEGRAM https://t.me/SourceProtocol
BLOG https://www.sourceprotocol.com/blog
DOCS https://docs.sourceprotocol.io/
Explorers
Endpoints
- Api https://api-testnet-source.sr20de.xyz
- RPC https://rpc-testnet-source.sr20de.xyz
- GRPC https://grpc-testnet-source.sr20de.xyz
Peers
1 |
cc989a8d7a3d8259ddc8d1444e9353334427deab@65.108.13.154:28656,a47f3b354e75478c0dfe22ad2b937ad07c9bcf3c@65.109.89.18:24656,c5eccf228a25f979592297311bfe2cc8ef94e482@95.111.229.159:26656,e127f3f7277b76887423458d8f775e33f58ff80a@65.109.65.248:28656,8145d4d13511e7f89dbd257f51ed5d076941f12f@164.92.98.12:26656,636c7206a1a9a817768766a1f243d27398159028@144.76.97.251:36656,997ac946c345679b52afc220f440049274aa9ffc@49.12.84.248:26656,ace839c852739d1ea6e3675d30380fe085c1c23a@52.26.226.21:26656,c6010a06ea1d98fec806e9cd8ee3fabd3cc7f213@65.109.90.171:28656,06885ec73c228de552c4120ab50c78152b20fc9d@162.19.236.64:26656,c491f30afac53c66ce5ed8650591e5275fd4b42b@75.119.132.25:34656,9118a41884927f801cafb935d2c239b78f298b9b@149.102.139.49:26656,938ee378710df37f329e12a7f3d609ca4b8236c0@18.237.241.181:26656,56339d8701e3538648a97b0e815ff43325764ad6@185.219.142.216:24656,854048fcfb453297742b76cc5c6b7555eeb25110@213.239.207.175:31656,330b14f94d3bbe6c4059f31bd8fbf9960cf1387e@185.144.99.3:26656,a98484ac9cb8235bd6a65cdf7648107e3d14dab4@116.202.231.58:12856,b20497b3fb86603d04e00024766ec07dc3fe7e48@65.109.30.110:11563,3f3c0482d3d56a5f684cd0828ddf0e0fa239ca64@65.109.92.148:26656,0e03201599c8b4314b66c90639b0d776e6691ba2@164.92.98.17:26656,f3b56e584776e50c6e186d29b10aa343ee6bf135@142.132.248.253:46656,5fb7f75e3a97fa0f936020b62daf1e67281f7f16@65.109.92.240:26656,cac254555deea35a70c821abd7f3e7db47a46d55@65.109.92.241:26656,7041991335732e2ff81a9a58d134a5cc1eb56a51@165.232.144.133:26656,d5519e378247dfb61dfe90652d1fe3e2b3005a5b@65.109.68.190:12856,1107d5a5e05113d7fd4520ad0756685da387f0e8@212.23.222.220:26356,9484455da8a7aa7ce6e93a85c48de74cd739de3a@62.171.144.200:26656,941ddf2881a8c8b46e6eb563de70b9275e6c6bba@3.15.208.107:26656,eca738b67fd23381f9a72717bea757c1d291ed2b@65.108.231.124:24656 |
State Sync
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
sudo systemctl stop sourced sourced tendermint unsafe-reset-all --home $HOME/.source --keep-addr-book SNAP_RPC="https://rpc-testnet-source.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/.source/config/config.toml sed -i 's|^rpc_servers *=.*|rpc_servers = "'$SNAP_RPC,$SNAP_RPC'"|' $HOME/.source/config/config.toml sed -i 's|^trust_height *=.*|trust_height = '$BLOCK_HEIGHT'|' $HOME/.source/config/config.toml sed -i 's|^trust_hash *=.*|trust_hash = "'$TRUST_HASH'"|' $HOME/.source/config/config.toml sudo systemctl restart sourced && sudo journalctl -u sourced -f --no-hostname -o cat |