From d10e13862c8807c1be2587d1f27fc9cb5cd9c238 Mon Sep 17 00:00:00 2001 From: hu55a1n1 Date: Tue, 7 Nov 2023 05:08:45 -0800 Subject: [PATCH] Add README.md --- utils/tm-prover/README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 utils/tm-prover/README.md diff --git a/utils/tm-prover/README.md b/utils/tm-prover/README.md new file mode 100644 index 0000000..340e6df --- /dev/null +++ b/utils/tm-prover/README.md @@ -0,0 +1,16 @@ +# The Tendermint light client prover + +Enables stateless light client verification by generating a light client proof (AKA verification trace) for a given +block height and trusted height/hash. + +## Usage + +```bash +cargo run -- --chain-id osmosis-1 \ + --primary https://rpc.osmosis.zone \ + --witnesses https://rpc.osmosis.zone \ + --trusted-height 12230413 \ + --trusted-hash D3742DD1573436AF972472135A24B31D5ACE9A2C04791A76196F875955B90F1D \ + --height 12230423 \ + --trace-file light-client-proof.json +```