You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

537 lines
17 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. # Using Tendermint
  2. This is a guide to using the `tendermint` program from the command line.
  3. It assumes only that you have the `tendermint` binary installed and have
  4. some rudimentary idea of what Tendermint and ABCI are.
  5. You can see the help menu with `tendermint --help`, and the version
  6. number with `tendermint version`.
  7. ## Directory Root
  8. The default directory for blockchain data is `~/.tendermint`. Override
  9. this by setting the `TMHOME` environment variable.
  10. ## Initialize
  11. Initialize the root directory by running:
  12. ```
  13. tendermint init
  14. ```
  15. This will create a new private key (`priv_validator.json`), and a
  16. genesis file (`genesis.json`) containing the associated public key, in
  17. `$TMHOME/config`. This is all that's necessary to run a local testnet
  18. with one validator.
  19. For more elaborate initialization, see the tesnet command:
  20. ```
  21. tendermint testnet --help
  22. ```
  23. ### Genesis
  24. The `genesis.json` file in `$TMHOME/config/` defines the initial
  25. TendermintCore state upon genesis of the blockchain ([see
  26. definition](https://github.com/tendermint/tendermint/blob/master/types/genesis.go)).
  27. #### Fields
  28. - `genesis_time`: Official time of blockchain start.
  29. - `chain_id`: ID of the blockchain. This must be unique for
  30. every blockchain. If your testnet blockchains do not have unique
  31. chain IDs, you will have a bad time.
  32. - `validators`:
  33. - `pub_key`: The first element specifies the `pub_key` type. 1
  34. == Ed25519. The second element are the pubkey bytes.
  35. - `power`: The validator's voting power.
  36. - `name`: Name of the validator (optional).
  37. - `app_hash`: The expected application hash (as returned by the
  38. `ResponseInfo` ABCI message) upon genesis. If the app's hash does
  39. not match, Tendermint will panic.
  40. - `app_state`: The application state (e.g. initial distribution
  41. of tokens).
  42. #### Sample genesis.json
  43. ```
  44. {
  45. "genesis_time": "2018-07-09T22:43:06.255718641Z",
  46. "chain_id": "chain-IAkWsK",
  47. "validators": [
  48. {
  49. "pub_key": {
  50. "type": "tendermint/PubKeyEd25519",
  51. "value": "oX8HhKsErMluxI0QWNSR8djQMSupDvHdAYrHwP7n73k="
  52. },
  53. "power": "1",
  54. "name": "node0"
  55. },
  56. {
  57. "pub_key": {
  58. "type": "tendermint/PubKeyEd25519",
  59. "value": "UZNSJA9zmeFQj36Rs296lY+WFQ4Rt6s7snPpuKypl5I="
  60. },
  61. "power": "1",
  62. "name": "node1"
  63. },
  64. {
  65. "pub_key": {
  66. "type": "tendermint/PubKeyEd25519",
  67. "value": "i9GrM6/MHB4zjCelMZBUYHNXYIzl4n0RkDCVmmLhS/o="
  68. },
  69. "power": "1",
  70. "name": "node2"
  71. },
  72. {
  73. "pub_key": {
  74. "type": "tendermint/PubKeyEd25519",
  75. "value": "0qq7954l87trEqbQV9c7d1gurnjTGMxreXc848ZZ5aw="
  76. },
  77. "power": "1",
  78. "name": "node3"
  79. }
  80. ],
  81. "app_hash": ""
  82. }
  83. ```
  84. ## Run
  85. To run a Tendermint node, use
  86. ```
  87. tendermint node
  88. ```
  89. By default, Tendermint will try to connect to an ABCI application on
  90. [127.0.0.1:26658](127.0.0.1:26658). If you have the `kvstore` ABCI app
  91. installed, run it in another window. If you don't, kill Tendermint and
  92. run an in-process version of the `kvstore` app:
  93. ```
  94. tendermint node --proxy_app=kvstore
  95. ```
  96. After a few seconds you should see blocks start streaming in. Note that
  97. blocks are produced regularly, even if there are no transactions. See
  98. _No Empty Blocks_, below, to modify this setting.
  99. Tendermint supports in-process versions of the `counter`, `kvstore` and
  100. `nil` apps that ship as examples with `abci-cli`. It's easy to compile
  101. your own app in-process with Tendermint if it's written in Go. If your
  102. app is not written in Go, simply run it in another process, and use the
  103. `--proxy_app` flag to specify the address of the socket it is listening
  104. on, for instance:
  105. ```
  106. tendermint node --proxy_app=/var/run/abci.sock
  107. ```
  108. ## Transactions
  109. To send a transaction, use `curl` to make requests to the Tendermint RPC
  110. server, for example:
  111. ```
  112. curl http://localhost:26657/broadcast_tx_commit?tx=\"abcd\"
  113. ```
  114. We can see the chain's status at the `/status` end-point:
  115. ```
  116. curl http://localhost:26657/status | json_pp
  117. ```
  118. and the `latest_app_hash` in particular:
  119. ```
  120. curl http://localhost:26657/status | json_pp | grep latest_app_hash
  121. ```
  122. Visit http://localhost:26657 in your browser to see the list of other
  123. endpoints. Some take no arguments (like `/status`), while others specify
  124. the argument name and use `_` as a placeholder.
  125. ### Formatting
  126. The following nuances when sending/formatting transactions should be
  127. taken into account:
  128. With `GET`:
  129. To send a UTF8 string byte array, quote the value of the tx pramater:
  130. ```
  131. curl 'http://localhost:26657/broadcast_tx_commit?tx="hello"'
  132. ```
  133. which sends a 5 byte transaction: "h e l l o" \[68 65 6c 6c 6f\].
  134. Note the URL must be wrapped with single quoes, else bash will ignore
  135. the double quotes. To avoid the single quotes, escape the double quotes:
  136. ```
  137. curl http://localhost:26657/broadcast_tx_commit?tx=\"hello\"
  138. ```
  139. Using a special character:
  140. ```
  141. curl 'http://localhost:26657/broadcast_tx_commit?tx="€5"'
  142. ```
  143. sends a 4 byte transaction: "€5" (UTF8) \[e2 82 ac 35\].
  144. To send as raw hex, omit quotes AND prefix the hex string with `0x`:
  145. ```
  146. curl http://localhost:26657/broadcast_tx_commit?tx=0x01020304
  147. ```
  148. which sends a 4 byte transaction: \[01 02 03 04\].
  149. With `POST` (using `json`), the raw hex must be `base64` encoded:
  150. ```
  151. curl --data-binary '{"jsonrpc":"2.0","id":"anything","method":"broadcast_tx_commit","params": {"tx": "AQIDBA=="}}' -H 'content-type:text/plain;' http://localhost:26657
  152. ```
  153. which sends the same 4 byte transaction: \[01 02 03 04\].
  154. Note that raw hex cannot be used in `POST` transactions.
  155. ## Reset
  156. **WARNING: UNSAFE** Only do this in development and only if you can
  157. afford to lose all blockchain data!
  158. To reset a blockchain, stop the node, remove the `~/.tendermint/data`
  159. directory and run
  160. ```
  161. tendermint unsafe_reset_priv_validator
  162. ```
  163. This final step is necessary to reset the `priv_validator.json`, which
  164. otherwise prevents you from making conflicting votes in the consensus
  165. (something that could get you in trouble if you do it on a real
  166. blockchain). If you don't reset the `priv_validator.json`, your fresh
  167. new blockchain will not make any blocks.
  168. ## Configuration
  169. Tendermint uses a `config.toml` for configuration. For details, see [the
  170. config specification](./tendermint-core/configuration.md).
  171. Notable options include the socket address of the application
  172. (`proxy_app`), the listening address of the Tendermint peer
  173. (`p2p.laddr`), and the listening address of the RPC server
  174. (`rpc.laddr`).
  175. Some fields from the config file can be overwritten with flags.
  176. ## No Empty Blocks
  177. While the default behaviour of `tendermint` is still to create blocks
  178. approximately once per second, it is possible to disable empty blocks or
  179. set a block creation interval. In the former case, blocks will be
  180. created when there are new transactions or when the AppHash changes.
  181. To configure Tendermint to not produce empty blocks unless there are
  182. transactions or the app hash changes, run Tendermint with this
  183. additional flag:
  184. ```
  185. tendermint node --consensus.create_empty_blocks=false
  186. ```
  187. or set the configuration via the `config.toml` file:
  188. ```
  189. [consensus]
  190. create_empty_blocks = false
  191. ```
  192. Remember: because the default is to _create empty blocks_, avoiding
  193. empty blocks requires the config option to be set to `false`.
  194. The block interval setting allows for a delay (in seconds) between the
  195. creation of each new empty block. It is set via the `config.toml`:
  196. ```
  197. [consensus]
  198. create_empty_blocks_interval = 5
  199. ```
  200. With this setting, empty blocks will be produced every 5s if no block
  201. has been produced otherwise, regardless of the value of
  202. `create_empty_blocks`.
  203. ## Broadcast API
  204. Earlier, we used the `broadcast_tx_commit` endpoint to send a
  205. transaction. When a transaction is sent to a Tendermint node, it will
  206. run via `CheckTx` against the application. If it passes `CheckTx`, it
  207. will be included in the mempool, broadcasted to other peers, and
  208. eventually included in a block.
  209. Since there are multiple phases to processing a transaction, we offer
  210. multiple endpoints to broadcast a transaction:
  211. ```
  212. /broadcast_tx_async
  213. /broadcast_tx_sync
  214. /broadcast_tx_commit
  215. ```
  216. These correspond to no-processing, processing through the mempool, and
  217. processing through a block, respectively. That is, `broadcast_tx_async`,
  218. will return right away without waiting to hear if the transaction is
  219. even valid, while `broadcast_tx_sync` will return with the result of
  220. running the transaction through `CheckTx`. Using `broadcast_tx_commit`
  221. will wait until the transaction is committed in a block or until some
  222. timeout is reached, but will return right away if the transaction does
  223. not pass `CheckTx`. The return value for `broadcast_tx_commit` includes
  224. two fields, `check_tx` and `deliver_tx`, pertaining to the result of
  225. running the transaction through those ABCI messages.
  226. The benefit of using `broadcast_tx_commit` is that the request returns
  227. after the transaction is committed (i.e. included in a block), but that
  228. can take on the order of a second. For a quick result, use
  229. `broadcast_tx_sync`, but the transaction will not be committed until
  230. later, and by that point its effect on the state may change.
  231. ## Tendermint Networks
  232. When `tendermint init` is run, both a `genesis.json` and
  233. `priv_validator.json` are created in `~/.tendermint/config`. The
  234. `genesis.json` might look like:
  235. ```
  236. {
  237. "validators" : [
  238. {
  239. "pub_key" : {
  240. "value" : "h3hk+QE8c6QLTySp8TcfzclJw/BG79ziGB/pIA+DfPE=",
  241. "type" : "tendermint/PubKeyEd25519"
  242. },
  243. "power" : 10,
  244. "name" : ""
  245. }
  246. ],
  247. "app_hash" : "",
  248. "chain_id" : "test-chain-rDlYSN",
  249. "genesis_time" : "0001-01-01T00:00:00Z"
  250. }
  251. ```
  252. And the `priv_validator.json`:
  253. ```
  254. {
  255. "last_step" : 0,
  256. "last_round" : "0",
  257. "address" : "B788DEDE4F50AD8BC9462DE76741CCAFF87D51E2",
  258. "pub_key" : {
  259. "value" : "h3hk+QE8c6QLTySp8TcfzclJw/BG79ziGB/pIA+DfPE=",
  260. "type" : "tendermint/PubKeyEd25519"
  261. },
  262. "last_height" : "0",
  263. "priv_key" : {
  264. "value" : "JPivl82x+LfVkp8i3ztoTjY6c6GJ4pBxQexErOCyhwqHeGT5ATxzpAtPJKnxNx/NyUnD8Ebv3OIYH+kgD4N88Q==",
  265. "type" : "tendermint/PrivKeyEd25519"
  266. }
  267. }
  268. ```
  269. The `priv_validator.json` actually contains a private key, and should
  270. thus be kept absolutely secret; for now we work with the plain text.
  271. Note the `last_` fields, which are used to prevent us from signing
  272. conflicting messages.
  273. Note also that the `pub_key` (the public key) in the
  274. `priv_validator.json` is also present in the `genesis.json`.
  275. The genesis file contains the list of public keys which may participate
  276. in the consensus, and their corresponding voting power. Greater than 2/3
  277. of the voting power must be active (i.e. the corresponding private keys
  278. must be producing signatures) for the consensus to make progress. In our
  279. case, the genesis file contains the public key of our
  280. `priv_validator.json`, so a Tendermint node started with the default
  281. root directory will be able to make progress. Voting power uses an int64
  282. but must be positive, thus the range is: 0 through 9223372036854775807.
  283. Because of how the current proposer selection algorithm works, we do not
  284. recommend having voting powers greater than 10\^12 (ie. 1 trillion).
  285. If we want to add more nodes to the network, we have two choices: we can
  286. add a new validator node, who will also participate in the consensus by
  287. proposing blocks and voting on them, or we can add a new non-validator
  288. node, who will not participate directly, but will verify and keep up
  289. with the consensus protocol.
  290. ### Peers
  291. #### Seed
  292. A seed node is a node who relays the addresses of other peers which they know
  293. of. These nodes constantly crawl the network to try to get more peers. The
  294. addresses which the seed node relays get saved into a local address book. Once
  295. these are in the address book, you will connect to those addresses directly.
  296. Basically the seed nodes job is just to relay everyones addresses. You won't
  297. connect to seed nodes once you have received enough addresses, so typically you
  298. only need them on the first start. The seed node will immediately disconnect
  299. from you after sending you some addresses.
  300. #### Persistent Peer
  301. Persistent peers are people you want to be constantly connected with. If you
  302. disconnect you will try to connect directly back to them as opposed to using
  303. another address from the address book. On restarts you will always try to
  304. connect to these peers regardless of the size of your address book.
  305. All peers relay peers they know of by default. This is called the peer exchange
  306. protocol (PeX). With PeX, peers will be gossipping about known peers and forming
  307. a network, storing peer addresses in the addrbook. Because of this, you don't
  308. have to use a seed node if you have a live persistent peer.
  309. #### Connecting to Peers
  310. To connect to peers on start-up, specify them in the
  311. `$TMHOME/config/config.toml` or on the command line. Use `seeds` to
  312. specify seed nodes, and
  313. `persistent_peers` to specify peers that your node will maintain
  314. persistent connections with.
  315. For example,
  316. ```
  317. tendermint node --p2p.seeds "f9baeaa15fedf5e1ef7448dd60f46c01f1a9e9c4@1.2.3.4:26656,0491d373a8e0fcf1023aaf18c51d6a1d0d4f31bd@5.6.7.8:26656"
  318. ```
  319. Alternatively, you can use the `/dial_seeds` endpoint of the RPC to
  320. specify seeds for a running node to connect to:
  321. ```
  322. curl 'localhost:26657/dial_seeds?seeds=\["f9baeaa15fedf5e1ef7448dd60f46c01f1a9e9c4@1.2.3.4:26656","0491d373a8e0fcf1023aaf18c51d6a1d0d4f31bd@5.6.7.8:26656"\]'
  323. ```
  324. Note, with PeX enabled, you
  325. should not need seeds after the first start.
  326. If you want Tendermint to connect to specific set of addresses and
  327. maintain a persistent connection with each, you can use the
  328. `--p2p.persistent_peers` flag or the corresponding setting in the
  329. `config.toml` or the `/dial_peers` RPC endpoint to do it without
  330. stopping Tendermint core instance.
  331. ```
  332. tendermint node --p2p.persistent_peers "429fcf25974313b95673f58d77eacdd434402665@10.11.12.13:26656,96663a3dd0d7b9d17d4c8211b191af259621c693@10.11.12.14:26656"
  333. curl 'localhost:26657/dial_peers?persistent=true&peers=\["429fcf25974313b95673f58d77eacdd434402665@10.11.12.13:26656","96663a3dd0d7b9d17d4c8211b191af259621c693@10.11.12.14:26656"\]'
  334. ```
  335. ### Adding a Non-Validator
  336. Adding a non-validator is simple. Just copy the original `genesis.json`
  337. to `~/.tendermint/config` on the new machine and start the node,
  338. specifying seeds or persistent peers as necessary. If no seeds or
  339. persistent peers are specified, the node won't make any blocks, because
  340. it's not a validator, and it won't hear about any blocks, because it's
  341. not connected to the other peer.
  342. ### Adding a Validator
  343. The easiest way to add new validators is to do it in the `genesis.json`,
  344. before starting the network. For instance, we could make a new
  345. `priv_validator.json`, and copy it's `pub_key` into the above genesis.
  346. We can generate a new `priv_validator.json` with the command:
  347. ```
  348. tendermint gen_validator
  349. ```
  350. Now we can update our genesis file. For instance, if the new
  351. `priv_validator.json` looks like:
  352. ```
  353. {
  354. "address" : "5AF49D2A2D4F5AD4C7C8C4CC2FB020131E9C4902",
  355. "pub_key" : {
  356. "value" : "l9X9+fjkeBzDfPGbUM7AMIRE6uJN78zN5+lk5OYotek=",
  357. "type" : "tendermint/PubKeyEd25519"
  358. },
  359. "priv_key" : {
  360. "value" : "EDJY9W6zlAw+su6ITgTKg2nTZcHAH1NMTW5iwlgmNDuX1f35+OR4HMN88ZtQzsAwhETq4k3vzM3n6WTk5ii16Q==",
  361. "type" : "tendermint/PrivKeyEd25519"
  362. },
  363. "last_step" : 0,
  364. "last_round" : "0",
  365. "last_height" : "0"
  366. }
  367. ```
  368. then the new `genesis.json` will be:
  369. ```
  370. {
  371. "validators" : [
  372. {
  373. "pub_key" : {
  374. "value" : "h3hk+QE8c6QLTySp8TcfzclJw/BG79ziGB/pIA+DfPE=",
  375. "type" : "tendermint/PubKeyEd25519"
  376. },
  377. "power" : 10,
  378. "name" : ""
  379. },
  380. {
  381. "pub_key" : {
  382. "value" : "l9X9+fjkeBzDfPGbUM7AMIRE6uJN78zN5+lk5OYotek=",
  383. "type" : "tendermint/PubKeyEd25519"
  384. },
  385. "power" : 10,
  386. "name" : ""
  387. }
  388. ],
  389. "app_hash" : "",
  390. "chain_id" : "test-chain-rDlYSN",
  391. "genesis_time" : "0001-01-01T00:00:00Z"
  392. }
  393. ```
  394. Update the `genesis.json` in `~/.tendermint/config`. Copy the genesis
  395. file and the new `priv_validator.json` to the `~/.tendermint/config` on
  396. a new machine.
  397. Now run `tendermint node` on both machines, and use either
  398. `--p2p.persistent_peers` or the `/dial_peers` to get them to peer up.
  399. They should start making blocks, and will only continue to do so as long
  400. as both of them are online.
  401. To make a Tendermint network that can tolerate one of the validators
  402. failing, you need at least four validator nodes (e.g., 2/3).
  403. Updating validators in a live network is supported but must be
  404. explicitly programmed by the application developer. See the [application
  405. developers guide](../app-dev/app-development.md) for more details.
  406. ### Local Network
  407. To run a network locally, say on a single machine, you must change the
  408. `_laddr` fields in the `config.toml` (or using the flags) so that the
  409. listening addresses of the various sockets don't conflict. Additionally,
  410. you must set `addr_book_strict=false` in the `config.toml`, otherwise
  411. Tendermint's p2p library will deny making connections to peers with the
  412. same IP address.
  413. ### Upgrading
  414. The Tendermint development cycle currently includes a lot of breaking changes.
  415. Upgrading from an old version to a new version usually means throwing
  416. away the chain data. Try out the
  417. [tm-migrate](https://github.com/hxzqlh/tm-tools) tool written by
  418. [@hxzqlh](https://github.com/hxzqlh) if you are keen to preserve the
  419. state of your chain when upgrading to newer versions.