mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-17 07:01:20 +00:00
update docs links & sidebar (#2541)
* docs: fix links * docs: add readme from each section to the sidebar
This commit is contained in:
@ -14,6 +14,7 @@ module.exports = {
|
|||||||
title: "Introduction",
|
title: "Introduction",
|
||||||
collapsable: false,
|
collapsable: false,
|
||||||
children: [
|
children: [
|
||||||
|
"/introduction/",
|
||||||
"/introduction/quick-start",
|
"/introduction/quick-start",
|
||||||
"/introduction/install",
|
"/introduction/install",
|
||||||
"/introduction/what-is-tendermint"
|
"/introduction/what-is-tendermint"
|
||||||
@ -23,6 +24,7 @@ module.exports = {
|
|||||||
title: "Tendermint Core",
|
title: "Tendermint Core",
|
||||||
collapsable: false,
|
collapsable: false,
|
||||||
children: [
|
children: [
|
||||||
|
"/tendermint-core/",
|
||||||
"/tendermint-core/using-tendermint",
|
"/tendermint-core/using-tendermint",
|
||||||
"/tendermint-core/configuration",
|
"/tendermint-core/configuration",
|
||||||
"/tendermint-core/rpc",
|
"/tendermint-core/rpc",
|
||||||
@ -40,14 +42,16 @@ module.exports = {
|
|||||||
title: "Tools",
|
title: "Tools",
|
||||||
collapsable: false,
|
collapsable: false,
|
||||||
children: [
|
children: [
|
||||||
"tools/benchmarking",
|
"/tools/",
|
||||||
"tools/monitoring"
|
"/tools/benchmarking",
|
||||||
|
"/tools/monitoring"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Networks",
|
title: "Networks",
|
||||||
collapsable: false,
|
collapsable: false,
|
||||||
children: [
|
children: [
|
||||||
|
"/networks/",
|
||||||
"/networks/docker-compose",
|
"/networks/docker-compose",
|
||||||
"/networks/terraform-and-ansible",
|
"/networks/terraform-and-ansible",
|
||||||
]
|
]
|
||||||
@ -99,7 +103,7 @@ module.exports = {
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "ABCI Specification",
|
title: "ABCI Spec",
|
||||||
collapsable: false,
|
collapsable: false,
|
||||||
children: [
|
children: [
|
||||||
"/spec/abci/abci",
|
"/spec/abci/abci",
|
||||||
|
@ -7,8 +7,7 @@ application you want to run. So, to run a complete blockchain that does
|
|||||||
something useful, you must start two programs: one is Tendermint Core,
|
something useful, you must start two programs: one is Tendermint Core,
|
||||||
the other is your application, which can be written in any programming
|
the other is your application, which can be written in any programming
|
||||||
language. Recall from [the intro to
|
language. Recall from [the intro to
|
||||||
ABCI](../introduction/introduction.html#abci-overview) that Tendermint Core handles all
|
ABCI](../introduction/what-is-tendermint.md#abci-overview) that Tendermint Core handles all the p2p and consensus stuff, and just forwards transactions to the
|
||||||
the p2p and consensus stuff, and just forwards transactions to the
|
|
||||||
application when they need to be validated, or when they're ready to be
|
application when they need to be validated, or when they're ready to be
|
||||||
committed to a block.
|
committed to a block.
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ method via Websocket.
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Check out [API docs](https://tendermint.github.io/slate/#subscribe) for
|
Check out [API docs](https://tendermint.com/rpc/) for
|
||||||
more information on query syntax and other options.
|
more information on query syntax and other options.
|
||||||
|
|
||||||
You can also use tags, given you had included them into DeliverTx
|
You can also use tags, given you had included them into DeliverTx
|
||||||
@ -32,7 +32,7 @@ transactions](./indexing-transactions.md) for details.
|
|||||||
When validator set changes, ValidatorSetUpdates event is published. The
|
When validator set changes, ValidatorSetUpdates event is published. The
|
||||||
event carries a list of pubkey/power pairs. The list is the same
|
event carries a list of pubkey/power pairs. The list is the same
|
||||||
Tendermint receives from ABCI application (see [EndBlock
|
Tendermint receives from ABCI application (see [EndBlock
|
||||||
section](https://tendermint.com/docs/app-dev/abci-spec.html#endblock) in
|
section](../spec/abci/abci.md#endblock) in
|
||||||
the ABCI spec).
|
the ABCI spec).
|
||||||
|
|
||||||
Response:
|
Response:
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
# Introduction
|
# Overview
|
||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
|
|
||||||
Get Tendermint up-and-running quickly with the [quick-start guide](quick-start.md)!
|
Get Tendermint up-and-running quickly with the [quick-start guide](./quick-start.md)!
|
||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
Detailed [installation instructions](install.md).
|
Detailed [installation instructions](./install.md).
|
||||||
|
|
||||||
## What is Tendermint?
|
## What is Tendermint?
|
||||||
|
|
||||||
Dive into [what Tendermint is and why](what-is-tendermint.md)!
|
Dive into [what Tendermint is and why](./what-is-tendermint.md)!
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
# Networks
|
# Overview
|
||||||
|
|
||||||
Use [Docker Compose](docker-compose.md) to spin up Tendermint testnets on your
|
Use [Docker Compose](./docker-compose.md) to spin up Tendermint testnets on your
|
||||||
local machine.
|
local machine.
|
||||||
|
|
||||||
Use [Terraform and Ansible](terraform-and-ansible.md) to deploy Tendermint
|
Use [Terraform and Ansible](./terraform-and-ansible.md) to deploy Tendermint
|
||||||
testnets to the cloud.
|
testnets to the cloud.
|
||||||
|
|
||||||
See the `tendermint testnet --help` command for more help initializing testnets.
|
See the `tendermint testnet --help` command for more help initializing testnets.
|
||||||
|
@ -241,7 +241,7 @@ commit-set) are each justified in the JSet with no duplicitous vote
|
|||||||
signatures (by the committers).
|
signatures (by the committers).
|
||||||
|
|
||||||
- **Lemma**: When a fork is detected by the existence of two
|
- **Lemma**: When a fork is detected by the existence of two
|
||||||
conflicting [commits](./validators.html#commiting-a-block), the
|
conflicting [commits](../blockchain/blockchain.md#commit), the
|
||||||
union of the JSets for both commits (if they can be compiled) must
|
union of the JSets for both commits (if they can be compiled) must
|
||||||
include double-signing by at least 1/3+ of the validator set.
|
include double-signing by at least 1/3+ of the validator set.
|
||||||
**Proof**: The commit cannot be at the same round, because that
|
**Proof**: The commit cannot be at the same round, because that
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Tendermint Core
|
# Overview
|
||||||
|
|
||||||
See the side-bar for details on the various features of Tendermint Core.
|
See the side-bar for details on the various features of Tendermint Core.
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Tools
|
# Overview
|
||||||
|
|
||||||
Tendermint comes with some tools for [benchmarking](benchmarking.md)
|
Tendermint comes with some tools for [benchmarking](./benchmarking.md)
|
||||||
and [monitoring](monitoring.md).
|
and [monitoring](./monitoring.md).
|
||||||
|
Reference in New Issue
Block a user