State sync
curl -s <rpc-endpoint>/commit | jq "{height: .result.signed_header.header.height}"curl -s <rpc-endpoint>/commit?height=<your-height> | jq "{height: .result.signed_header.header.height, hash: .result.signed_header.commit.block_id.hash}" # Example # curl -s <rpc-endpoint>/commit?height=100000 | jq "{height: .result.signed_header.header.height, hash: .result.signed_header.commit.block_id.hash}"enable = true rpc_servers = "0.0.0.0:26657" trust_height = 100 trust_hash = "E8ED7A890A64986246EEB02D7D8C4A6D497E3B60C0CAFDDE30F2EE385204C314" trust_period = "336h0m0s"
Last updated