| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- .. blockchain documentation master file, created by
- sphinx-quickstart on Mon Mar 6 15:54:51 2017.
- You can adapt this file completely to your liking, but it should at least
- contain the root `toctree` directive.
- Welcome to blockchain's documentation!
- ======================================
- This project is a completely new blockchain-based coin, with P2P networking, a consensus mechanism and a wallet interface. The goal of the project is to provide a framework that is easy to modify for people who want to develop proof-of-concepts for blockchain-based technology.
- Executables
- ***********
- .. list-table::
- :stub-columns: 1
- :widths: 10 90
- * - miner
- - .. automodule:: miner
- * - wallet
- - .. automodule:: wallet
- Source Code Documentation
- *************************
- .. autosummary::
- :toctree: _autosummary
- src.blockchain
- src.block
- src.chainbuilder
- src.crypto
- src.merkle
- src.mining
- src.mining_strategy
- src.proof_of_work
- src.protocol
- src.transaction
- src.persistence
- src.rpc_client
- src.rpc_server
- Tests
- *****
- To run the tests, just run the `pytest` command.
- Indices and tables
- ==================
- * :ref:`genindex`
- * :ref:`modindex`
- * :ref:`search`
|