Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/deploy_chaincode.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func (s *SmartContract) CreateAsset(ctx contractapi.TransactionContextInterface,
```

You can learn more about the Go contract API by visiting the [API documentation](https://github.com/hyperledger/fabric-contract-api-go) and the [smart contract processing topic](developapps/smartcontract.html).
You can learn more about the Go contract API by visiting the [API documentation](https://github.com/hyperledger/fabric-contract-api-go) and the [smart contract processing topic](smartcontract/smartcontract.html).

To install the smart contract dependencies, run the following command from the `asset-transfer-basic/chaincode-go` directory.

Expand Down
14 changes: 7 additions & 7 deletions docs/source/docs_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,9 @@ fabric/docs
│   ├── _templates
│   ├── commands
│   ├── create_channel
│   ├── deployorderer
│   ├── deploypeer
│   ├── dev-setup
│   ├── developapps
│   ├── diagrams
│ ...
│   ├── orderer
Expand Down Expand Up @@ -89,8 +90,9 @@ fabric/docs
│   ├── _templates
│   ├── commands
│   ├── create_channel
│   ├── deployorderer
│   ├── deploypeer
│   ├── dev-setup
│   ├── developapps
│   ├── diagrams
...
```
Expand All @@ -102,10 +104,6 @@ source files map to their corresponding published topics.

* [`/docs/source/index.rst`](https://raw.githubusercontent.com/hyperledger/fabric/main/docs/source/index.rst) maps to [Hyperledger Fabric title page](https://hyperledger-fabric.readthedocs.io/en/{RTD_TAG}/)

* [`/docs/source/developapps/developing-applications.rst`](https://raw.githubusercontent.com/hyperledger/fabric/main/docs/source/developapps/developing_applications.rst)
maps to [Developing
applications](https://hyperledger-fabric.readthedocs.io/en/{RTD_TAG}/developapps/developing_applications.html)

* [`/docs/source/peers/peers.md`](https://raw.githubusercontent.com/hyperledger/fabric/main/docs/source/peers/peers.md)
maps to
[Peers](https://hyperledger-fabric.readthedocs.io/en/{RTD_TAG}/peers/peers.html)
Expand Down Expand Up @@ -136,8 +134,10 @@ locale/ml_IN
│   ├── _static
│   ├── _templates
│   ├── commands
│   ├── create_channel
│   ├── deployorderer
│   ├── deploypeer
│   ├── dev-setup
│   ├── developapps
│   ├── diagrams
│ ...
│   ├── orderer
Expand Down
2 changes: 1 addition & 1 deletion docs/source/orderer/ordering_service.md
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ For information on how to deploy and manage the BFT orderer, be sure to check ou

The protocol used by Fabric's BFT orderer implementation is the [SmartBFT](https://arxiv.org/abs/2107.0692) protocol
heavily inspired by the [BFT-SMART](https://www.di.fc.ul.pt/~bessani/publications/dsn14-bftsmart.pdf) protocol,
which itself can be thought of as a non-pipelined(*) version of the seminal [PBFT](https://pmg.csail.mit.edu/papers/osdi99.pdf) protocol.
which itself can be thought of as a non-pipelined(*) version of the seminal [PBFT](http://pmg.csail.mit.edu/papers/osdi99.pdf) protocol.
As in Raft, the protocol designates a single leader which batches transactions into a block and sends them to the rest of the nodes, termed followers.
However, unlike Raft, the leader is not dynamically selected but is rotated in a round-robin fashion every time the previous leader is suspected of being faulty
by the follower nodes.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/status.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Status
=================

Hyperledger Fabric is in the *Graduated* state. For more information on the history of this project see our `wiki page <https://wiki.hyperledger.org/display/fabric/Hyperledger+Fabric>`__. Information on what *Graduated* entails can be found in
the Hyperledger `Project Lifecycle document <https://tsc.hyperledger.org/project-lifecycle.html>`__.
the Hyperledger `Project Lifecycle document <https://lf-decentralized-trust.github.io/governance/governing-documents/project-lifecycle/>`__.

.. Licensed under Creative Commons Attribution 4.0 International License
https://creativecommons.org/licenses/by/4.0/
2 changes: 1 addition & 1 deletion docs/source/write_first_app.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ for a up to date list of supported programming language runtimes and dependencie

Ensure you have a suitable version of your chosen runtime installed. For installation instructions, see:

- `Node.js <https://nodejs.dev/learn/how-to-install-nodejs>`_.
- `Node.js <https://nodejs.org/en/download>`_.
- `Go <https://go.dev/doc/install>`_.
- `Java <https://adoptium.net/>`_.

Expand Down