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.

203 lines
9.8 KiB

8 years ago
9 years ago
8 years ago
8 years ago
8 years ago
8 years ago
9 years ago
8 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
8 years ago
7 years ago
8 years ago
7 years ago
7 years ago
8 years ago
9 years ago
7 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
7 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
7 years ago
9 years ago
7 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
7 years ago
9 years ago
7 years ago
9 years ago
9 years ago
8 years ago
7 years ago
8 years ago
8 years ago
9 years ago
9 years ago
8 years ago
7 years ago
8 years ago
8 years ago
  1. # Application BlockChain Interface (ABCI)
  2. [![CircleCI](https://circleci.com/gh/tendermint/abci.svg?style=svg)](https://circleci.com/gh/tendermint/abci)
  3. Blockchains are systems for multi-master state machine replication.
  4. **ABCI** is an interface that defines the boundary between the replication engine (the blockchain),
  5. and the state machine (the application).
  6. By using a socket protocol, we enable a consensus engine running in one process
  7. to manage an application state running in another.
  8. For background information on ABCI, motivations, and tendermint, please visit [the documentation](http://tendermint.readthedocs.io/en/master/).
  9. The two guides to focus on are the `Application Development Guide` and `Using ABCI-CLI`.
  10. Previously, the ABCI was referred to as TMSP.
  11. The community has provided a number of addtional implementations, see the `Tendermint Ecosystem` in [the documentation](http://tendermint.readthedocs.io/en/master/).
  12. ## Implementation
  13. We provide three implementations of the ABCI in Go:
  14. - Golang in-process
  15. - ABCI-socket
  16. - GRPC
  17. Note the GRPC version is maintained primarily to simplify onboarding and prototyping and is not receiving the same
  18. attention to security and performance as the others.
  19. ### In Process
  20. The simplest implementation just uses function calls within Go.
  21. This means ABCI applications written in Golang can be compiled with TendermintCore and run as a single binary.
  22. ### Socket (TSP)
  23. ABCI is best implemented as a streaming protocol.
  24. The socket implementation provides for asynchronous, ordered message passing over unix or tcp.
  25. Messages are serialized using Protobuf3 and length-prefixed.
  26. Protobuf3 doesn't have an official length-prefix standard, so we use our own. The first byte represents the length of the big-endian encoded length.
  27. For example, if the Protobuf3 encoded ABCI message is `0xDEADBEEF` (4 bytes), the length-prefixed message is `0x0104DEADBEEF`. If the Protobuf3 encoded ABCI message is 65535 bytes long, the length-prefixed message would be like `0x02FFFF...`.
  28. ### GRPC
  29. GRPC is an rpc framework native to Protocol Buffers with support in many languages.
  30. Implementing the ABCI using GRPC can allow for faster prototyping, but is expected to be much slower than
  31. the ordered, asynchronous socket protocol. The implementation has also not received as much testing or review.
  32. Note the length-prefixing used in the socket implementation does not apply for GRPC.
  33. ## Tools
  34. The `abci-cli` tool wraps an ABCI client and can be used for probing/testing an ABCI server.
  35. For instance, `abci-cli test` will run a test sequence against a listening server running the Counter application (see below).
  36. It can also be used to run some example applications.
  37. See [the documentation](http://tendermint.readthedocs.io/en/master/) for more details.
  38. ### Example Apps
  39. Multiple example apps are included:
  40. - the `abci-cli counter` application, which illustrates nonce checking in txs
  41. - the `abci-cli dummy` application, which illustrates a simple key-value merkle tree
  42. - the `abci-cli dummy --persistent` application, which augments the dummy with persistence and validator set changes
  43. ### Install
  44. ```
  45. go get github.com/tendermint/abci
  46. cd $GOPATH/src/github.com/tendermint/abci
  47. make get_vendor_deps
  48. make install
  49. ```
  50. ## Specification
  51. The [primary specification](https://github.com/tendermint/abci/blob/master/types/types.proto) is made using Protocol Buffers.
  52. To build it, run
  53. ```
  54. make protoc
  55. ```
  56. See `protoc --help` and [the Protocol Buffers site](https://developers.google.com/protocol-buffers/) for details on compiling for other languages.
  57. Note we also include a [GRPC](http://www.grpc.io/docs) service definition.
  58. For the specification as an interface in Go, see the [types/application.go file](https://github.com/tendermint/abci/blob/master/types/application.go).
  59. ### Message Types
  60. ABCI requests/responses are defined as simple Protobuf messages in [this schema file](https://github.com/tendermint/abci/blob/master/types/types.proto).
  61. TendermintCore sends the requests, and the ABCI application sends the responses.
  62. Here, we describe the requests and responses as function arguments and return values, and make some notes about usage:
  63. #### DeliverTx
  64. * __Arguments__:
  65. * `Data ([]byte)`: The request transaction bytes
  66. * __Returns__:
  67. * `Code (uint32)`: Response code
  68. * `Data ([]byte)`: Result bytes, if any
  69. * `Log (string)`: Debug or error message
  70. * `Tags ([]*KVPair)`: Optional tags for indexing
  71. * __Usage__:<br/>
  72. Append and run a transaction. If the transaction is valid, returns CodeType.OK
  73. #### CheckTx
  74. * __Arguments__:
  75. * `Data ([]byte)`: The request transaction bytes
  76. * __Returns__:
  77. * `Code (uint32)`: Response code
  78. * `Data ([]byte)`: Result bytes, if any
  79. * `Log (string)`: Debug or error message
  80. * `Gas (int64)`: Amount of gas consumed by transaction
  81. * `Fee (int64)`: Fee paid by transaction
  82. * __Usage__:<br/>
  83. Validate a mempool transaction, prior to broadcasting or proposing. This message should not mutate the main state, but application
  84. developers may want to keep a separate CheckTx state that gets reset upon Commit.
  85. CheckTx can happen interspersed with DeliverTx, but they happen on different ABCI connections - CheckTx from the mempool connection, and DeliverTx from the consensus connection. During Commit, the mempool is locked, so you can reset the mempool state to the latest state after running all those DeliverTxs, and then the mempool will re-run whatever txs it has against that latest mempool state.
  86. Transactions are first run through CheckTx before broadcast to peers in the mempool layer.
  87. You can make CheckTx semi-stateful and clear the state upon `Commit` or `BeginBlock`,
  88. to allow for dependent sequences of transactions in the same block.
  89. #### Commit
  90. * __Returns__:
  91. * `Data ([]byte)`: The Merkle root hash
  92. * `Log (string)`: Debug or error message
  93. * __Usage__:<br/>
  94. Return a Merkle root hash of the application state.
  95. #### Query
  96. * __Arguments__:
  97. * `Data ([]byte)`: Raw query bytes. Can be used with or in lieu of Path.
  98. * `Path (string)`: Path of request, like an HTTP GET path. Can be used with or in liue of Data.
  99. * Apps MUST interpret '/store' as a query by key on the underlying store. The key SHOULD be specified in the Data field.
  100. * Apps SHOULD allow queries over specific types like '/accounts/...' or '/votes/...'
  101. * `Height (int64)`: The block height for which you want the query (default=0 returns data for the latest committed block). Note that this is the height of the block containing the application's Merkle root hash, which represents the state as it was after committing the block at Height-1
  102. * `Prove (bool)`: Return Merkle proof with response if possible
  103. * __Returns__:
  104. * `Code (uint32)`: Response code
  105. * `Key ([]byte)`: The key of the matching data
  106. * `Value ([]byte)`: The value of the matching data
  107. * `Proof ([]byte)`: Proof for the data, if requested
  108. * `Height (int64)`: The block height from which data was derived. Note that this is the height of the block containing the application's Merkle root hash, which represents the state as it was after committing the block at Height-1
  109. * `Log (string)`: Debug or error message
  110. *Please note* The current implementation of go-merkle doesn't support querying proofs from past blocks, so for the present moment, any height other than 0 will return an error (recall height=0 defaults to latest block). Hopefully this will be improved soon(ish)
  111. #### Info
  112. * __Returns__:
  113. * `Data (string)`: Some arbitrary information
  114. * `Version (Version)`: Version information
  115. * `LastBlockHeight (int64)`: Latest block for which the app has called Commit
  116. * `LastBlockAppHash ([]byte)`: Latest result of Commit
  117. * __Usage__:<br/>
  118. Return information about the application state. Used to sync the app with Tendermint on crash/restart.
  119. #### SetOption
  120. * __Arguments__:
  121. * `Key (string)`: Key to set
  122. * `Value (string)`: Value to set for key
  123. * __Returns__:
  124. * `Code (uint32)`: Response code
  125. * `Log (string)`: Debug or error message
  126. * __Usage__:<br/>
  127. Set application options. E.g. Key="mode", Value="mempool" for a mempool connection, or Key="mode", Value="consensus" for a consensus connection.
  128. Other options are application specific.
  129. #### InitChain
  130. * __Arguments__:
  131. * `Validators ([]Validator)`: Initial genesis validators
  132. * __Usage__:<br/>
  133. Called once upon genesis
  134. #### BeginBlock
  135. * __Arguments__:
  136. * `Hash ([]byte)`: The block's hash. This can be derived from the block header.
  137. * `Header (struct{})`: The block header
  138. * `AbsentValidators ([]int32)`: List of indices of validators not included in the LastCommit
  139. * `ByzantineValidators ([]Evidence)`: List of evidence of validators that acted maliciously
  140. * __Usage__:<br/>
  141. Signals the beginning of a new block. Called prior to any DeliverTxs. The header is expected to at least contain the Height. The `AbsentValidators` and `ByzantineValidators` can be used to determine rewards and punishments for the validators.
  142. #### EndBlock
  143. * __Arguments__:
  144. * `Height (int64)`: The block height that ended
  145. * __Returns__:
  146. * `Diffs ([]Validator)`: Changed validators with new voting powers (0 to remove)
  147. * __Usage__:<br/>
  148. Signals the end of a block. Called prior to each Commit after all transactions. Validator set is updated with the result.
  149. #### Echo
  150. * __Arguments__:
  151. * `Message (string)`: A string to echo back
  152. * __Returns__:
  153. * `Message (string)`: The input string
  154. * __Usage__:<br/>
  155. * Echo a string to test an abci client/server implementation
  156. #### Flush
  157. * __Usage__:<br/>
  158. * Signals that messages queued on the client should be flushed to the server. It is called periodically by the client implementation to ensure asynchronous requests are actually sent, and is called immediately to make a synchronous request, which returns when the Flush response comes back.