diff --git a/docs/app-architecture.rst b/docs/app-architecture.rst index 5a8287f3..e7a0d0e7 100644 --- a/docs/app-architecture.rst +++ b/docs/app-architecture.rst @@ -58,7 +58,7 @@ Tendermint Core RPC The concept is that the ABCI app is completely hidden from the outside world and only communicated through a tested and secured `interface -exposed by the tendermint core <./rpc.html>`__. This interface +exposed by the tendermint core <./specification/rpc.html>`__. This interface exposes a lot of data on the block header and consensus process, which is quite useful for externally verifying the system. It also includes 3(!) methods to broadcast a transaction (propose it for the blockchain, diff --git a/docs/specification.rst b/docs/specification.rst index 02d84c34..2e8b3566 100644 --- a/docs/specification.rst +++ b/docs/specification.rst @@ -7,14 +7,14 @@ Here you'll find details of the Tendermint specification. See `the spec repo `__ where the commit includes a majority of signatures from the last known validator set. From there, all the application state is verifiable with `merkle -proofs <./merkle-trees#iavl-tree>`__. +proofs <./merkle.html#iavl-tree>`__. Properties ---------- diff --git a/docs/merkle.rst b/docs/specification/merkle.rst similarity index 100% rename from docs/merkle.rst rename to docs/specification/merkle.rst diff --git a/docs/rpc.rst b/docs/specification/rpc.rst similarity index 100% rename from docs/rpc.rst rename to docs/specification/rpc.rst diff --git a/docs/secure-p2p.rst b/docs/specification/secure-p2p.rst similarity index 100% rename from docs/secure-p2p.rst rename to docs/specification/secure-p2p.rst diff --git a/docs/validators.rst b/docs/specification/validators.rst similarity index 100% rename from docs/validators.rst rename to docs/specification/validators.rst diff --git a/docs/wire-protocol.rst b/docs/specification/wire-protocol.rst similarity index 100% rename from docs/wire-protocol.rst rename to docs/specification/wire-protocol.rst diff --git a/docs/using-tendermint.rst b/docs/using-tendermint.rst index 0d17db61..fb9882f6 100644 --- a/docs/using-tendermint.rst +++ b/docs/using-tendermint.rst @@ -117,7 +117,7 @@ Configuration ------------- Tendermint uses a ``config.toml`` for configutation. For details, see -`the documentation <./configuration.html>`__. +`the documentation <./specification/configuration.html>`__. Notable options include the socket address of the application (``proxy_app``), the listenting address of the tendermint peer