Skip to content
/ pyrchain Public
forked from rchain/pyrchain

Python 3 interface to RChain RNode RPC

License

Notifications You must be signed in to change notification settings

nzpr/pyrchain

This branch is 17 commits ahead of rchain/pyrchain:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ff762b8 · Feb 11, 2024
Nov 19, 2021
Apr 1, 2020
Mar 17, 2022
Feb 11, 2024
Feb 11, 2024
Mar 8, 2020
Jul 7, 2019
Mar 8, 2020
Jul 10, 2019
Mar 8, 2020
Jul 15, 2020
May 13, 2022
Mar 8, 2020
Jun 29, 2019

Repository files navigation

pyrchain

Interface to RChain RNode RPC.

Install

Pyrchain is Python 3 library for interfacing with RChain RNode gRPC API. The library is distributed via PyPI (https://pypi.org/project/pyrchain/). You can install it for current user by running:

pip3 install -U pyrchain

See setup.py for information about 3rd party library dependencies.

Examples

The features below are provided in pyrchain.

  1. generate private key and public key
  2. sign a deploy with the private key
  3. use grpc api to interact with rnode
  4. Vault Api of rchain to do transfer and check balance

Development

To install the development package:

pip install -e .[dev]

To update protocol buffers from upstream run:

./update-protobufs
./update-generated

This first command will fetch latest RChain *.proto files from dev branch into ./protobuf directory. The second command will generate gRPC Python code corresponding to the protcol buffers into rchain.pb package (./rchain/pb).

To run integration tests run:

python -m pytest rchain/tests
python -m mypy rchain
isort --recursive --check-only rchain

About

Python 3 interface to RChain RNode RPC

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.7%
  • Shell 0.3%