The old version is archived in byron branch, current development is for shelley era.
Python implementation of Cardano project, including network protocol, crypto primitives, wallet logic, and more.
Python is still one of the most cleanly designed, developer friendly programming language out there, has a reputation of executable pseudocode. And lightweight thread provided by gevent makes it suitable to write networking software, and easy interoperability with C thanks to Cython enables us to improve performance incrementally.
With python, we can develop clean prototype very fast, with good performance. And in the future we can always move the CPU intensive code to C after we indentified the hotspot.
.. code-block:: shell
$ virtualenv -p python3 .env
$ source .env/bin/activate
$ pip install -r requirements.txt
$ python setup.py build_ext --inplace
$ mkdir ./test_db
$ python scripts/pycardano.py run
sync block data from mainnet and subscribing for new blocks automatically.
$ python scripts/pycardano.py wallet create default
generate wallet
pycardano.py sign
sign a message with wallet, prove an wallet address belongs to you.pycardano.py verify
verify a signed message.pycardano.py utxo stat
Some statistics of global UTxOs.cardano.address
Implement Cardano HD address derivation and encoding, and wallet recovering for lagacy address format.
cardano.transport
Implement Haskell's network-transport-tcp, multiplex multiple lightweight unidirectional connections on a single tcp connection.
cardano.node
Implement cardano-sl's Node
, allow bidirectional conversation between endpoints.
cardano.storage
Storage api of block and wallet's data.
cardano.block
Block data structures.
cardano.logic
Workers and listeners of default node.
cardano.retrieve
Retrieve block data with cardano-sl mainnet.
cardano.wallet
Implement wallet logic according to formal specification.