Python client library for interacting with Waves blockchain platform.
Package
Installation
pip install waves-python
Usage
- Node basics:
node = Node(Profile.TESTNET)
print(f'Node version: {node.get_version()}')
- Addresses:
address = Address.from_str('your_encoded_address')
balance = node.get_balance(address)
print(f'Balance: {balance}')
Requirements
- Python >= 3.9