Skip to content

Commit

Permalink
light-node: cli (#430)
Browse files Browse the repository at this point in the history
* Add an `initialize` subcommand and update some of the existing config fields

* delete a bunch of legacy code and update config

* Almost working init command

* Working init command

* use header hash for subjective init instead of validators' hash

* add From impl to translate between abscissa config and `light_client::Options`

* capture all rpc rel. things in RpcConfig and add example config (toml)

* Fix example config and minor cleanup

* make rpc server addr overridable via cli argument

* Check if store was initialized

* Start command almost working

 - increase request timeout

* add todo

* Delete example (thanks @xla that was very useful 👍)

* remove broken absicca acceptance tests

* add todo

* catch up with latest changes from master

* Update Readme with instructions

* Improve README.md

* Add documentation for JSONRPC endpoint

* Add link to tendermint repo

* Minor improvement

* language

* Minor changes

* Add explanatory comments in the example config

* Reference explanatory comments in example conf in README.md

* refactor run to be more readable

* add 2 todos ...

* Minor fix in README.md

* rename binary from ligth_node to light-node and minor improvement to README.md

* unindent example config to please the @xla

* disambiguate cl flag

* use abscissa cargo-like status logging instead of println!

* use latest_trusted_or_verified instead
  • Loading branch information
liamsi committed Jul 13, 2020
1 parent 2ea453b commit 0158a3a
Show file tree
Hide file tree
Showing 10 changed files with 599 additions and 326 deletions.
1 change: 1 addition & 0 deletions light-node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jsonrpc-http-server = "14.2"
jsonrpc-derive = "14.2"
serde = { version = "1", features = ["serde_derive"] }
serde_json = "1.0"
sled = "0.31.0"
tendermint = { version = "0.14.0", path = "../tendermint" }
tendermint-light-client = { version = "0.14.0", path = "../light-client" }
tendermint-rpc = { version = "0.14.0", path = "../rpc", features = [ "client" ] }
Expand Down
209 changes: 202 additions & 7 deletions light-node/README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,209 @@
# LightNode
# Light-Node

Tendermint light client node.
The [Tendermint] light-node wraps the [light-client] crate into a command-line interface tool.
It can be used as a standalone light client daemon and exposes a JSONRPC endpoint
from which you can query the current state of the light node.

## Getting Started

This application is authored using [Abscissa], a Rust application framework.
### Prerequisites

For more information, see:
This short tutorial assumes that you are familiar with how to run a Tendermint fullnode on your machine. To learn how to do this, you can consult the [quick start] section of the tendermint documentation.

[Documentation]
This tutorial further assumes you have `git` and the latest stable rust tool-chain installed (see https://rustup.rs/).
Additionally, the `jq` tool will make your life easier when dealing with JSON output.

[Abscissa]: https://github.com/iqlusioninc/abscissa
[Documentation]: https://docs.rs/abscissa_core/
#### Cloning the repository

To run the light node from source you have to clone this repository first:
```
$ git clone https://github.com/informalsystems/tendermint-rs.git
```

Then navigate to the light node crate:
```
$ cd tendermint-rs/light-node
```

### Configuration

You can configure all aspects of light node via a configuration file.
An example cofigartion can be found under [light_node.toml.example](light_node.toml.example).

If you are running a Tendermint fullnode on your machine, you can simply copy and use it to get started:
```
$ cp light_node.toml.example light_node.toml
```
Please, take a look into the config file and edit it according to your needs.
The provided example configuration file comes with a lot of explanatory comments
which hopefully provide enough guidance to configure your light node.

### Subjective initialization
Assuming that you are running a Tendermint fullnode that exposes an RPC endpoint on your loopback interface, you can intialize the light-node subjectively following th following steps:

First, you have to obtain a header hash and height you want to trust (subjectively). For our purposes you can obtain one via querying the Tendermint fullnode you are running.
Here we are obtaining the header hash of height 2:
```
$ curl -X GET "http://localhost:26657/block?height=2" -H "accept: application/json" | jq .result.block_id.hash 1515:15:26
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 2155 0 2155 0 0 161k 0 --:--:-- --:--:-- --:--:-- 161k
"76F85BEF1133114482FC8F78C5E78D2B1C1875DD8422A0394B175DD694A7FBA1"
```

You can now use this header hash to subjectively initialize your light node via:
```
$ cargo run -- initialize 2 76F85BEF1133114482FC8F78C5E78D2B1C1875DD8422A0394B175DD694A7FBA1
```

Note that calling `cargo run` for the first time might take a while as this command will also compile the light node and all its dependencies.

### Running the light node daemon

Now you can start your light node by simply running:
```
$ cargo run -- start
```

If everything worked the output will look sth like:
```
cargo run -- start 17:56:31
Finished dev [unoptimized + debuginfo] target(s) in 0.42s
Running `/redacted/tendermint-rs/target/debug/light_node start`
[info] synced to block 20041
[info] synced to block 20042
[info] synced to block 20044
[info] synced to block 20046
[info] synced to block 20048
[info] synced to block 20049
[info] synced to block 20051
[info] synced to block 20053
[info] synced to block 20054
[...]
```

You can stop the light node by pressing Ctrl+c.

### Help

You will notice that some config parameters can be overwritten via command line arguments.

To get a full overview and commandline parameters and available sub-commands, run:

```
$ cargo run -- help
```
Or on a specific sub-command, e.g.:
```shell script
$ cargo run -- help start
```

### JSONRPC Endpoint(s)

When you have a light-node running you can query its current state via:
```
$ curl localhost:8888 -X POST -H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "state", "id": 1}' | jq
```

<details>
<summary><b>Click here</b> to see an example for expected output:</summary>

Command:
```
$ curl localhost:8888 -X POST -H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "state", "id": 1}' | jq
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 1902 100 1856 100 46 164k 4181 --:--:-- --:--:-- --:--:-- 168k
```
Example output:
```json
{
"jsonrpc": "2.0",
"result": {
"next_validator_set": {
"validators": [
{
"address": "AD358F20C8CE80889E0F0248FDDC454595D632AE",
"proposer_priority": "0",
"pub_key": {
"type": "tendermint/PubKeyEd25519",
"value": "uo9rbgR5J0kuED0C529bTa6mcHZ4uXDjJRdg1k8proY="
},
"voting_power": "10"
}
]
},
"provider": "BADFADAD0BEFEEDC0C0ADEADBEEFC0FFEEFACADE",
"signed_header": {
"commit": {
"block_id": {
"hash": "76F85BEF1133114482FC8F78C5E78D2B1C1875DD8422A0394B175DD694A7FBA1",
"parts": {
"hash": "568F279E3F59FBE3CABEACE7A3C028C15CA6A902F9D77DDEBA3BFCB9514E2881",
"total": "1"
}
},
"height": "2",
"round": "0",
"signatures": [
{
"block_id_flag": 2,
"signature": "sN3e6bzKLeIFNRptQ4SytBDLZJA53e92D6FWTll5Lq8Wdg4fVzxya6qx3SHFU82ukuj8jKmBMkwTTJsb8xThCQ==",
"timestamp": "2020-07-10T12:39:06.977628900Z",
"validator_address": "AD358F20C8CE80889E0F0248FDDC454595D632AE"
}
]
},
"header": {
"app_hash": "0000000000000000",
"chain_id": "dockerchain",
"consensus_hash": "048091BC7DDC283F77BFBF91D73C44DA58C3DF8A9CBC867405D8B7F3DAADA22F",
"data_hash": null,
"evidence_hash": null,
"height": "2",
"last_block_id": {
"hash": "F008EACA817CF6A3918CF7A6FD44F1F2464BB24D25A7EDB45A03E8783E9AB438",
"parts": {
"hash": "BF5130E879A02AC4BB83E392732ED4A37BE2F01304A615467EE7960858774E57",
"total": "1"
}
},
"last_commit_hash": "474496740A2EAA967EED02B239DA302BAF696AE36AEA78F7FEFCE4A77CCA5B33",
"last_results_hash": null,
"next_validators_hash": "74F2AC2B6622504D08DD2509E28CE731985CFE4D133C9DB0CB85763EDCA95AA3",
"proposer_address": "AD358F20C8CE80889E0F0248FDDC454595D632AE",
"time": "2020-07-10T12:39:05.977628900Z",
"validators_hash": "74F2AC2B6622504D08DD2509E28CE731985CFE4D133C9DB0CB85763EDCA95AA3",
"version": {
"app": "1",
"block": "10"
}
}
},
"validator_set": {
"validators": [
{
"address": "AD358F20C8CE80889E0F0248FDDC454595D632AE",
"proposer_priority": "0",
"pub_key": {
"type": "tendermint/PubKeyEd25519",
"value": "uo9rbgR5J0kuED0C529bTa6mcHZ4uXDjJRdg1k8proY="
},
"voting_power": "10"
}
]
}
},
"id": 1
}

```

</details>


[quick start]: https://github.com/tendermint/tendermint/blob/master/docs/introduction/quick-start.md
[Tendermint]: https://github.com/tendermint/tendermint
[light-client]: https://github.com/informalsystems/tendermint-rs/tree/master/light-client
146 changes: 0 additions & 146 deletions light-node/examples/rpc.rs

This file was deleted.

Loading

0 comments on commit 0158a3a

Please sign in to comment.