Empower is a blockchain for the Circular Economy. Decentralizing the new (circular) economy so everyone can get a fair share of the upside of making the world a cleaner and better place.
Official Site: https://www.empowerchain.io
Other links: https://linktr.ee/empowerchain
Chain ID: empowerchain-1
Endpoints
- Api: https://api-empower.sr20de.xyz
- RPC: https://rpc-empower.sr20de.xyz
- GRPC: https://grpc-empower.sr20de.xyz
Explorer
Peers
1 |
74dee215186545556d52d1d50b5ba8aa7e62e09d@84.46.240.208:26656,18e02e73422b08d56289f29de0dd31225e1e2eb8@62.210.173.13:26656,6ad8949e0751119b70a9549a802e134608d134e5@135.181.213.177:28656,68a19508f6bab46aeee349cf30e09ca82b142b15@167.235.180.97:17356,40ca7a00bc633ba83a2bbc01c15876e546adccce@141.95.157.139:17456,d363c61e28adabc85a25139682900df8054f059e@65.109.116.151:14656,de5ba72dbdee3462ec565a35ed3a571033e17a29@185.246.87.174:46656,d3dc1fc7e35b6de534352c76cd335769a00757ee@65.108.238.166:17456,54433b4c4876e04a5dc278d551f9afed3bf77f3c@142.44.213.82:1440,7252b0c875b5d67d8da351b6e3c54cd1db958817@51.158.37.244:26656,7c7fd3b2d79388b9a114a430693ebba030a3bec3@46.166.172.236:26656,4b5c01fb2d6e259a33f2dd99ace562e5267c8393@136.243.67.189:17456,06ef64008146e37e7178d8160ad022fad558becd@46.4.81.216:26656,3f476ae0f0aa684d0ee827705e2c4190278e3d2f@194.36.147.29:26656,9dae3cb60dbfa4c088557593402dfc100fb1cc08@188.40.85.150:26656,0b6be13bf604b7840f3842f1a4a5fbd1d12fbaa7@57.128.82.197:26656,dc8743dfedd9cca27362b9f5c41ca0752923fab6@65.109.30.116:4000,884310fc75a03ea4cf8c36cca8bb6c5b2023bb9a@38.146.3.145:17456,9dffa8874a4615af585980128e686f98e351f857@213.239.218.218:17456,6455b0d2cb13b37901b03e8d138b835a6ed61e4d@65.108.230.113:22056,9c2aaafb8b9be8cb74705aaf95f4d51506244e3f@65.109.96.189:26656,6eb7a8b29b5ff5e030f63ba963b5bca8c905fded@149.50.96.36:26356,d61e5f676895604134aa2e368a092f3a09fd3a0a@65.109.97.249:17456,13f977b94c131dfd712f88c71bf60de139599418@44.200.234.213:26656,e197d8569cfaac2395f77488dfed791355069ce8@168.119.64.20:17356,a5c0a01254c397ca9d92375d2156890beff4ae1a@5.78.79.198:26656,5829dc9a40e471a939032c0ae1e7d509557d5efa@185.119.118.114:4000,422817bcc2a4546a05ef95ec1aa678d33e1f3105@161.97.82.203:31656,cd8fb693e54d766d83ec03dc48aabe0c24fa0255@51.159.221.31:26656,192d6c396fe0f9da1b1b700aab8bdd1ce6a49490@65.109.92.240:22056,074640d8f2bc981fd201badd19c5b6dba38e00be@65.108.238.219:17456,abd3ba54b77372d22621c4bce452f5394bad9a56@142.132.194.157:26356,a2ed6f01e454d3469a95edee6580e750d79d4297@142.132.199.236:22656,ee0973d050e077a2f8cb7e90969560b0fe255929@148.113.159.22:17456,eb0bf2f731aa3b08a6810b0addc0e1c4e262a957@52.6.223.177:26656,0ce543ab8a58e0e32401b8aa03d25cccc85312d2@135.181.58.28:22356,f2ed98cf518b501b6d1c10c4a16d0dfbc4a9cc98@195.201.222.82:27001,ebc272824924ea1a27ea3183dd0b9ba713494f83@195.3.220.140:27326 |
State sync
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
sudo systemctl stop empowerd empowerd tendermint unsafe-reset-all --home $HOME/.empowerchain --keep-addr-book SNAP_RPC="https://rpc-empower.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/.empowerchain/config/config.toml sed -i 's|^rpc_servers *=.*|rpc_servers = "'$SNAP_RPC,$SNAP_RPC'"|' $HOME/.empowerchain/config/config.toml sed -i 's|^trust_height *=.*|trust_height = '$BLOCK_HEIGHT'|' $HOME/.empowerchain/config/config.toml sed -i 's|^trust_hash *=.*|trust_hash = "'$TRUST_HASH'"|' $HOME/.empowerchain/config/config.toml |
Download wasm
1 |
curl -o - -L https://sr20de.xyz/wp-content/uploads/empower-testnet/sr20de_empower_wasm.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.empowerchain/ |
Restart node
1 |
sudo systemctl restart empowerd && sudo journalctl -u empowerd -f --no-hostname -o cat |