A Python 3 MultiChain RPC client built for the Content Blockchain Project
The versioning scheme follows MultiChain and includes code generated function annotations and api documentation to support code completion and get you up to speed fast.
The RPC client is published with the package name mcrpc on Python Package Index. Install it with:
$ pip3 install mcrpc
If you have a local blockchain node with default data-dir you can do:
import mcrpc
client = mcrpc.autoconnect()
client.getinfo()
- Add autoconnect convenience function
- Switched package versioning to match multichain
- Switched to poetry based packaging
- Updated to multichain node 2.0.6
- Fix signature of appendrawexchange and completerawexchange
- Build rpc client against Multichain 2 Beta 2
- Add pretty-print support for response objects
- Sort response class properties for cleaner diffs on updates