mirror of
https://github.com/tendermint/tendermint.git
synced 2026-02-03 18:42:14 +00:00
* docs theme * vuepress-theme-cosmos * version bump * changes to docs * more code changes * sidebar order fix * moar changes * fixed dev sessions title * fixed dev sessions title, again * specs should show up in sidebar * contents cards * version bump * sidebar, rpc * version bump * custom footer and super naive search * version * minor change to vuepress * move swagger file * pre and post scripts * build * changed docs build process * added deployment config * updated versions file and added deployment filters
17 lines
663 B
Markdown
17 lines
663 B
Markdown
---
|
|
order: 8
|
|
---
|
|
|
|
# Block Structure
|
|
|
|
The tendermint consensus engine records all agreements by a
|
|
supermajority of nodes into a blockchain, which is replicated among all
|
|
nodes. This blockchain is accessible via various rpc endpoints, mainly
|
|
`/block?height=` to get the full block, as well as
|
|
`/blockchain?minHeight=_&maxHeight=_` to get a list of headers. But what
|
|
exactly is stored in these blocks?
|
|
|
|
The [specification](../spec/blockchain/blockchain.md) contains a detailed description of each component - that's the best place to get started.
|
|
|
|
To dig deeper, check out the [types package documentation](https://godoc.org/github.com/tendermint/tendermint/types).
|