|
@ -27,6 +27,7 @@ module.exports = { |
|
|
"/tendermint-core/configuration", |
|
|
"/tendermint-core/configuration", |
|
|
"/tendermint-core/rpc", |
|
|
"/tendermint-core/rpc", |
|
|
"/tendermint-core/running-in-production", |
|
|
"/tendermint-core/running-in-production", |
|
|
|
|
|
"/tendermint-core/fast-sync", |
|
|
"/tendermint-core/how-to-read-logs", |
|
|
"/tendermint-core/how-to-read-logs", |
|
|
"/tendermint-core/block-structure", |
|
|
"/tendermint-core/block-structure", |
|
|
"/tendermint-core/light-client-protocol", |
|
|
"/tendermint-core/light-client-protocol", |
|
@ -36,21 +37,23 @@ module.exports = { |
|
|
] |
|
|
] |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
title: "Tendermint Tools", |
|
|
|
|
|
|
|
|
title: "Tools", |
|
|
collapsable: false, |
|
|
collapsable: false, |
|
|
children: ["tools/benchmarking", "tools/monitoring"] |
|
|
|
|
|
|
|
|
children: [ |
|
|
|
|
|
"tools/benchmarking", |
|
|
|
|
|
"tools/monitoring" |
|
|
|
|
|
] |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
title: "Tendermint Networks", |
|
|
|
|
|
|
|
|
title: "Networks", |
|
|
collapsable: false, |
|
|
collapsable: false, |
|
|
children: [ |
|
|
children: [ |
|
|
"/networks/deploy-testnets", |
|
|
"/networks/deploy-testnets", |
|
|
"/networks/terraform-and-ansible", |
|
|
"/networks/terraform-and-ansible", |
|
|
"/networks/fast-sync" |
|
|
|
|
|
] |
|
|
] |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
title: "Application Development", |
|
|
|
|
|
|
|
|
title: "Apps", |
|
|
collapsable: false, |
|
|
collapsable: false, |
|
|
children: [ |
|
|
children: [ |
|
|
"/app-dev/getting-started", |
|
|
"/app-dev/getting-started", |
|
@ -62,6 +65,37 @@ module.exports = { |
|
|
"/app-dev/abci-spec", |
|
|
"/app-dev/abci-spec", |
|
|
"/app-dev/ecosystem" |
|
|
"/app-dev/ecosystem" |
|
|
] |
|
|
] |
|
|
|
|
|
}, |
|
|
|
|
|
title: "Tendermint Spec", |
|
|
|
|
|
collapsable: true, |
|
|
|
|
|
children: [ |
|
|
|
|
|
"/spec/README", |
|
|
|
|
|
"/spec/blockchain/blockchain", |
|
|
|
|
|
"/spec/blockchain/encoding", |
|
|
|
|
|
"/spec/blockchain/state", |
|
|
|
|
|
"/spec/consensus/abci", |
|
|
|
|
|
"/spec/consensus/bft-time", |
|
|
|
|
|
"/spec/consensus/consensus", |
|
|
|
|
|
"/spec/consensus/light-client", |
|
|
|
|
|
"/spec/consensus/wal", |
|
|
|
|
|
"/spec/p2p/config", |
|
|
|
|
|
"/spec/p2p/connection", |
|
|
|
|
|
"/spec/p2p/node", |
|
|
|
|
|
"/spec/p2p/peer", |
|
|
|
|
|
"/spec/reactors/block_sync/reactor", |
|
|
|
|
|
"/spec/reactors/block_sync/impl", |
|
|
|
|
|
"/spec/reactors/consensus/consensus", |
|
|
|
|
|
"/spec/reactors/consensus/consensus-reactor", |
|
|
|
|
|
"/spec/reactors/consensus/proposer-selection", |
|
|
|
|
|
"/spec/reactors/evidence/reactor", |
|
|
|
|
|
"/spec/reactors/mempool/concurrency", |
|
|
|
|
|
"/spec/reactors/mempool/config", |
|
|
|
|
|
"/spec/reactors/mempool/functionality", |
|
|
|
|
|
"/spec/reactors/mempool/messages", |
|
|
|
|
|
"/spec/reactors/mempool/reactor", |
|
|
|
|
|
"/spec/reactors/pex/pex", |
|
|
|
|
|
"/spec/reactors/pex/reactor", |
|
|
|
|
|
] |
|
|
}, |
|
|
}, |
|
|
{ |
|
|
{ |
|
|
title: "ABCI Specification", |
|
|
title: "ABCI Specification", |
|
@ -75,7 +109,10 @@ module.exports = { |
|
|
{ |
|
|
{ |
|
|
title: "Research", |
|
|
title: "Research", |
|
|
collapsable: false, |
|
|
collapsable: false, |
|
|
children: ["/research/determinism", "/research/transactional-semantics"] |
|
|
|
|
|
|
|
|
children: [ |
|
|
|
|
|
"/research/determinism", |
|
|
|
|
|
"/research/transactional-semantics" |
|
|
|
|
|
] |
|
|
} |
|
|
} |
|
|
] |
|
|
] |
|
|
} |
|
|
} |
|
|