Skip to main content

Python SDK for interacting with comdex node

Project description

comdexpy

The comdexpy is a comprehensive Python library designed to provide developers with easy access to the Comdex blockchain and its ecosystem. This library enables developers to interact with the blockchain, query data, and perform various operations within the Comdex ecosystem.

Installation

  pip3 install comdexpy

Usage

Creating a connection

import asyncio
from comdexpy.client import Client

async def get_connection():
    grpc_url = "comdex-grpc.lavenderfive.com"
    return Client.from_endpoint(grpc_url, 443)

async def main():
    connection = await get_connection()
    connection.close()

if __name__ == "__main__":
    asyncio.run(main())

Querying on comdex node using connection

import asyncio
from comdexpy.client import Client
from comdexpy.queries.comdex.liquidity import Query as LiquidityQueries

async def get_connection():
    grpc_url = "comdex-grpc.lavenderfive.com"
    return Client.from_endpoint(grpc_url, 443)

async def sample_query(channel):
    liquidity = LiquidityQueries(channel)
    params = await liquidity.get_generic_params(1)
    print(params.to_dict())

async def main():
    connection = await get_connection()
    await sample_query(connection.channel())
    connection.close()

if __name__ == "__main__":
    asyncio.run(main())

Sending transaction on comdex node

import asyncio
from comdexpy.client import Client
from comdexpy.wallet import Wallet

from comdexpy.messages.cosmos.bank import MsgSend
from comdexpy.proto.cosmos.base.v1beta1 import Coin

from comdexpy.send_tx import SignAndBroadcastMessage

async def get_connection():
    grpc_url = "comdex-grpc.lavenderfive.com"
    return Client.from_endpoint(grpc_url, 443)

async def sample_tx(connection):
    wallet = Wallet.from_mnemonic("seeds here")
    sender = wallet.get_address().to_acc_bech32()
    msg_send = MsgSend(
        from_address=sender,
        to_address="comdex",
        amount=[Coin(amount="1000000", denom="ucmdx")],
    )
    response = await SignAndBroadcastMessage.send_tx(connection, wallet, msg_send)
    print(response)

async def main():
    connection = await get_connection()
    await sample_tx(connection)
    connection.close()


if __name__ == "__main__":
    asyncio.run(main())

Complete Usage

Documentation

You can read the documentation here.

Feedback

If you have any feedback, please reach out to us at https://forum.comdex.one/

License

This software is licensed under the GPL-3.0 license. See LICENSE for full disclosure.

GPLv3 License

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

comdexpy-0.5.tar.gz (157.3 kB view details)

Uploaded Source

Built Distribution

comdexpy-0.5-py3-none-any.whl (203.6 kB view details)

Uploaded Python 3

File details

Details for the file comdexpy-0.5.tar.gz.

File metadata

  • Download URL: comdexpy-0.5.tar.gz
  • Upload date:
  • Size: 157.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for comdexpy-0.5.tar.gz
Algorithm Hash digest
SHA256 af19b4b49e6864c4633ccd3cd5575bb1e32ec096baba5efb1832bb745aa2f73f
MD5 8514a8aa8a676686bed3083afc412c0f
BLAKE2b-256 74ad3fb588b2f2a2ca7104fdb4631432c465750ed17aaadc13594bcfe255452a

See more details on using hashes here.

File details

Details for the file comdexpy-0.5-py3-none-any.whl.

File metadata

  • Download URL: comdexpy-0.5-py3-none-any.whl
  • Upload date:
  • Size: 203.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for comdexpy-0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 d9248dffc7525a1ce2aca0ce7d1cad2a00f8baa375d98734a968729e3c3fb5b2
MD5 b930c4881dd4b01d8bea5b09f8f6ea55
BLAKE2b-256 aead0c20579ffa2a696fda1701bfd6cf4e8a360bd34e98d80a74e900c79f98c0

See more details on using hashes here.

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