A python client to interact with @cryptocom/developer-platform-service
Project description
Crypto.com Developer Platform Client.py
The Crypto.com Developer Platform Client.py is a pyton SDK designed to interact seamlessly with the Crypto.com Developer Platform Service API. This client library simplifies interactions with the Cronos blockchain, supporting native tokens, ERC20 tokens, smart contracts, transactions, blocks, and wallets.
Features
- Simple and intuitive API for interacting with Cronos blockchain networks.
- Supports token balances (native & ERC20), token transfers, wrapping, and swapping.
- Transaction queries by address or hash, and fetching transaction statuses.
- Smart contract ABI fetching by contract address.
- Wallet creation and balance management.
- Supports Cronos EVM and Cronos ZK EVM chains.
Installation
To install the package, run the following command:
pip install crypto-com-developer-platform-client
Usage
Here’s how you can use the Crypto.com Python Client for Developer Platform in your project:
Configuring the Client
from crypto-com-developer-platform-client import Block, Client
from crypto-com-developer-platform-client.interfaces.chain_interfaces import CronosZkEvm
Client.init(api_key="EXPLORER_API_KEY",
chain_id=CronosZkEvm.TESTNET,provider="YOUR_PROVIDER")
block = Block.get_by_tag("latest")
API Methods
Block
get_by_tag(tag, tx_detail)
tag
: Integer of a block number in hex, or the string "earliest", "latest" or "pending", as in https://ethereum.org/en/developers/docs/apis/json-rpc/#default-blocktx_detail
: If true it returns the full transaction objects, if false only the hashes of the transactions.
Contract
get_contract_abi(contract_address)
contract_address
: The address of the smart contract.
Token
get_native_balance(address)
address
: The address to get the balance for.
get_erc20_balance(address, contract_address, block_height)
address
: The address to get the balance for.contract_address
: The contract address to get the balance for.block_height
: The block height to get the balance for. Optional, default to "latest".
transfer_token(to, amount)
to
: The address to transfer the token to.amount
: The amount of token to transfer.
wrap_token(from_contract_address, to_contract_address, to, amount)
from_contract_address
: The address to wrap the token from.to_contract_address
: The address to wrap the token to.to
: The address to send the wrapped token toamount
: The amount of token to wrap.
swap_token(from_contract_address, to_contract_address, to, amount)
from_contract_address
: The token to swap from.to_contract_address
: The token to swap to.to
: The address to send the swapped token toamount
: The amount of token to swap.
Transaction
get_transactions_by_address(address, session, limit)
address
: The address to get the transactions for.session
: The session to get the transactions for. Optional, default to "".limit
: The limit of the transactions to get. Optional, default to "20".
get_transaction_by_hash(hash)
hash
: The hash of the transaction.
get_transaction_status(hash)
hash
: The hash of the transaction to get the status for.
Wallet
create_wallet()
get_balance(address)
address
: The address to get the balance for.
Licensing
The code in this project is licensed under the MIT license.
Contact
If you have any questions or comments about the library, please feel free to open an issue or a pull request on our GitHub repository.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file crypto_com_developer_platform_client-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: crypto_com_developer_platform_client-1.0.3-py3-none-any.whl
- Upload date:
- Size: 13.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1762b31a182404da398f9bb8fa19b07b363265e4268549f666cdff87490deed2 |
|
MD5 | bb56868f4b175e81828a0a026415b44d |
|
BLAKE2b-256 | fa95490bcdb4939efc22ae7aa5ee8ac36e9479d4125d2ad91836b68da0b9939f |