From da0bea85edb2a32fa7f1e8e28eb9ddf22853f323 Mon Sep 17 00:00:00 2001 From: XB Date: Tue, 8 Aug 2023 06:02:18 +0000 Subject: [PATCH] Update state-sync.md replace IP with domain name, sentry-0.mainnet.irisnet.org and sentry-1.mainnet.irisnet.org --- docs/get-started/state-sync.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/get-started/state-sync.md b/docs/get-started/state-sync.md index 4f40f83735..3ed8983970 100644 --- a/docs/get-started/state-sync.md +++ b/docs/get-started/state-sync.md @@ -12,7 +12,7 @@ If you want to quickly start the node and join IRIS Hub without historical data, 2. Check the block height of the current snapshot, and select the latest height. ```bash -curl http://34.82.96.8:26658/ +curl http://sentry-0.mainnet.irisnet.org:26658/ ``` 3. Modify the `config.toml`. @@ -20,7 +20,7 @@ curl http://34.82.96.8:26658/ ```toml [statesync] enable = true # whether enable stat_sync; set true -rpc_servers = "34.82.96.8:26657,34.77.68.145:26657" # RPC server address which the node connects to +rpc_servers = "sentry-0.mainnet.irisnet.org:26657,sentry-1.mainnet.irisnet.org:26657" # RPC server address which the node connects to trust_height = # Set to the block height of the latest snapshot trust_hash = "" #Set to the hash corresponding to the latest snapshot block height (trust height), which can be checked via https://irishub.iobscan.io/#/block/. trust_period = "168h0m0s"