Skip to main content

TransferChain ABCI Read Client

Project description

tcabci-read-python-client

It is used to listen to the read nodes of TransferChain and send requests to the Block Explorer.

Installation

This client requires python>=3.8

pip install tcabci-read-client
pip install git+https://github.com/TransferChain/tcabci-read-python-client@main

Constants

Read node websocket url
wss://read-node-01.transferchain.io/ws
Read node http url
https://read-node-01.transferchain.io

Examples

read-node event listener and subscribe example
from tcabci_read_client import WsClient
def message_callback(message):
    print(f"Received message: {message}")

def error_callback(error):
    print(f"Error: {error}")

client = WsClient("wss://read-node-01.transferchain.io/ws",
        message_callback=message_callback,
        error_callback=error_callback)
client.start()
client.subscribe(['addresses'])
client.unsubscribe(['addresses'])
client.get_subscribe_addresses()
Http client example
from tcabci_read_client import HttpClient
client = HttpClient("https://read-node-01.transferchain.io")
client.get_last_block()
'''
client.tx_search params;
limit, order_field,offset,order_by,hashes,typ,sender_addrs,recipient_addrs
'''
client.tx_search(sender_addrs='test_address', recipient_addrs='test_address2')
client.broadcast(tx_id="", version=1, fee=0, data="", sign="", tx_type="", sender_address="from", recipient_address="to")

License

MIT

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

tcabci_read_client-0.1.10.tar.gz (5.3 kB view hashes)

Uploaded Source

Supported by

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