* consolidate intro * start anatomy of sdk app * wokring * working * querier * working * workiiiing * finish * add dep and makefile * Apply suggestions from code review Co-Authored-By: Alessio Treglia <quadrispro@ubuntu.com> * typo * typo * Apply suggestions from code review Co-Authored-By: Alexander Bezobchuk <alexanderbez@users.noreply.github.com> Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com> Co-Authored-By: Alessio Treglia <quadrispro@ubuntu.com> Co-Authored-By: frog power 4000 <rigel.rozanski@gmail.com> * refactor for new module interface * karoly review * Apply suggestions from code review Co-Authored-By: Karoly Albert Szabo <szabo.karoly.a@gmail.com> Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * encoding * working on baseapp doc * baseapp work * reorg * almost there * finish first draft * remove old files * hans review' * jack review + clarification on ABCI methods
27 lines
860 B
Markdown
27 lines
860 B
Markdown
# Clients
|
|
|
|
This section explains contains information on clients for SDK based blockchain.
|
|
|
|
>*NOTE*: This section is a WIP.
|
|
|
|
## Light-client
|
|
|
|
Light-clients enable users to interact with your application without having to download the entire state history but with a good level of security.
|
|
|
|
- [Overview of light clients](./lite/README.md)
|
|
- [Starting a light-client server](./lite/getting_started.md)
|
|
- [Light-client specification](./lite/specification.md)
|
|
|
|
## Other clients
|
|
|
|
- [Command-Line interface for SDK-based blockchain](./cli.md)
|
|
- [Service provider doc](./service-providers.md)
|
|
|
|
## Genesis upgrade
|
|
|
|
If you need to upgrade your node you could export the genesis and migrate it to the new version through this script:
|
|
|
|
```bash
|
|
<appbinary> migrate v0.36 genesis_0_34.json [--time "2019-04-22T17:00:11Z"] [--chain-id test] > ~/.gaiad/genesis.json
|
|
```
|