Skip to main content

A high-performance Python wrapper for Evrmore blockchain RPC commands with a seamless API

Project description

evrmore-rpc: Python Client for Evrmore Blockchain

PyPI version License: MIT Python Versions

A high-performance, fully featured Python client for the Evrmore blockchain. Designed for both synchronous and asynchronous environments, it includes full RPC and ZMQ support, automatic decoding of blocks and transactions, intelligent asset detection, and robust configuration options.


🚀 Features

  • 🔄 Context-Aware: Automatically switches between sync and async modes
  • ⚙️ Flexible Configuration: Load settings from evrmore.conf, env vars, or manual args
  • 💡 Smart RPC Handling: Full method coverage with type hints and structured responses
  • ⚡ Fast + Efficient: Connection pooling for low-latency concurrent RPC calls
  • 🧠 Asset Intelligence: Auto-parses asset transactions with enhanced metadata
  • 📡 ZMQ Notifications: Subscribe to real-time BLOCK, TX, RAW_*, HASH_* events
  • 🧰 Fully Tested Utilities: Stress test, coverage verification, pooling demo, and more

📦 Installation

pip install evrmore-rpc

🧪 Quick Start

from evrmore_rpc import EvrmoreClient

client = EvrmoreClient()
info = client.getblockchaininfo()
print("Height:", info['blocks'])
print("Difficulty:", info['difficulty'])

🔁 Asynchronous Usage

import asyncio
from evrmore_rpc import EvrmoreClient

async def main():
    client = EvrmoreClient()
    info = await client.getblockchaininfo()
    print("Height:", info['blocks'])
    await client.close()

asyncio.run(main())

🧩 Configuration Options

# Default (evrmore.conf)
client = EvrmoreClient()

# Env vars (EVR_RPC_*)
client = EvrmoreClient()

# Manual args
client = EvrmoreClient(url="http://localhost:8819", rpcuser="user", rpcpassword="pass")

# Testnet toggle
client = EvrmoreClient(testnet=True)

Supports cookie authentication and auto-parsing of .cookie file.


💰 Asset Support

# Get asset info
info = client.getassetdata("MYTOKEN")
print(info['amount'], info['reissuable'])

# Transfer asset
txid = client.transfer("MYTOKEN", 100, "EVRAddress")

📡 ZMQ Notifications (Real-Time)

from evrmore_rpc import EvrmoreClient
from evrmore_rpc.zmq import EvrmoreZMQClient, ZMQTopic

rpc = EvrmoreClient()
zmq = EvrmoreZMQClient(rpc_client=rpc)

@zmq.on(ZMQTopic.BLOCK)
def block_handler(note):
    print(f"Block #{note.height} with {len(note.block['tx'])} txs")

@zmq.on(ZMQTopic.TX)
def tx_handler(note):
    print(f"TX {note.tx['txid']} has {note._vin_count} inputs")

zmq.start()

Supports:

  • HASH_BLOCK, HASH_TX, RAW_BLOCK, RAW_TX
  • BLOCK, TX (auto-decoded)
  • Asset metadata and event info on decoded transactions

📊 Stress Test Results

Tested on local node and remote RPC endpoint:

Mode Time RPS Avg (ms) Median Min Max
Local Async 0.01 s 10442.42 0.59 0.50 0.39 1.84
Local Sync 0.06 s 1861.26 1.52 1.42 0.43 3.40
Remote Async 1.75 s 57.31 167.77 155.93 111 324
Remote Sync 1.86 s 53.83 160.39 163.26 112 310

🔬 Examples & Utilities

  • readme_test.py — basic client usage
  • stress_test.py — performance benchmarking, concurrency tests
  • connection_pooling.py — pooled connections for sync/async
  • flexible_config.py — shows all configuration options
  • rpc_coverage.py — full method coverage checker
  • zmq_notifications.py — live decoded transaction/block stream

Run with:

python3 -m evrmore_rpc.stress_test --sync --remote

🧪 Requirements

  • Python 3.8+
  • Evrmore daemon running with RPC and optional ZMQ endpoints

🪪 License

MIT License — See LICENSE


🤝 Contributing

PRs welcome! Please lint, document, and include examples.

git clone https://github.com/youruser/evrmore-rpc
cd evrmore-rpc
python3 -m venv .venv && source .venv/bin/activate
pip install -e .[dev]

Test locally with:

python3 -m evrmore_rpc.stress_test

🧭 Summary

evrmore-rpc is not just a wrapper — it's a full developer toolkit for Evrmore blockchain apps. With context-aware clients, full RPC coverage, rich ZMQ integration, and intelligent asset decoding, it's built to power production-grade wallets, explorers, indexers, and game engines alike.

Enjoy building with it.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

evrmore_rpc-4.0.1.tar.gz (45.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

evrmore_rpc-4.0.1-py3-none-any.whl (48.7 kB view details)

Uploaded Python 3

File details

Details for the file evrmore_rpc-4.0.1.tar.gz.

File metadata

  • Download URL: evrmore_rpc-4.0.1.tar.gz
  • Upload date:
  • Size: 45.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for evrmore_rpc-4.0.1.tar.gz
Algorithm Hash digest
SHA256 9330e347a008a676a87b88f27f4435fe967da5b16d462a212fefc0690eff5da9
MD5 a63ddb4b0793bf7a63140c21b30f3660
BLAKE2b-256 6430079e94911b7d29076b27830d7ae2d74cc05b204489b077f1717ab6590938

See more details on using hashes here.

File details

Details for the file evrmore_rpc-4.0.1-py3-none-any.whl.

File metadata

  • Download URL: evrmore_rpc-4.0.1-py3-none-any.whl
  • Upload date:
  • Size: 48.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for evrmore_rpc-4.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 84eeb66350ce09a6719f5c679ecf2baa5ad66283ce3f86e837d78fdba830d5eb
MD5 003f7b0789705e5cdecf83e32cfb7720
BLAKE2b-256 474478a7ab526c9140dcde388241b005296133e1b910bdeb2b4ff46e8611ff3b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page