Skip to main content

Python SDK for Conflux network

Project description

Introduction

Binder Documentation Status gitlocalized codecov PyPI - Python Version

README | 中文文档

Overview

Python-conflux-sdk helps to interact with Conflux network using python. It is built over web3.py and most of its APIs are consistent with web3.py.

Quickstart

Requirements: python version >= 3.7

$ pip3 install conflux-web3
from conflux_web3 import Web3

w3 = Web3(Web3.HTTPProvider("https://test.confluxrpc.com"))

acct = w3.account.from_key("0xxxxxxxxxxxxxx")
w3.cfx.default_account = acct
w3.cfx.contract(name="Faucet").claimCfx().transact().executed()

w3.cfx.send_transaction({
    'to': w3.address.zero_address(),
    'value': 10**18,
}).executed()

Or you can also use API as you do in web3.py:

# modified from https://web3py.readthedocs.io/en/stable/middleware.html#signing
from conflux_web3 import Web3
w3 = Web3("https://test.confluxrpc.com")
from conflux_web3.middleware import construct_sign_and_send_raw_middleware
from cfx_account import Account
acct = Account.create('KEYSMASH FJAFJKLDSKF7JKFDJ 1530')
w3.middleware_onion.add(construct_sign_and_send_raw_middleware(acct))
w3.cfx.default_account = acct.address

transaction = {
    'to': w3.address.zero_address(),
    'value': 22,
}
w3.cfx.send_transaction(transaction)

Documentations

More detailed code examples are provided in the documentation.

Run Code Examples Online!

All code examples can be run online in mybinder. You can click 🚀 -> Binder on the top bar to activate the running environment. All dependencies wil be installed and the example can be run immediately.

Localization

Currently this documentation supports:

  • English version
  • Chinese version

And welcome to provide translation in GitLocalize.

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

conflux_web3-1.3.0b4.tar.gz (62.1 kB view details)

Uploaded Source

Built Distribution

conflux_web3-1.3.0b4-py3-none-any.whl (76.6 kB view details)

Uploaded Python 3

File details

Details for the file conflux_web3-1.3.0b4.tar.gz.

File metadata

  • Download URL: conflux_web3-1.3.0b4.tar.gz
  • Upload date:
  • Size: 62.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for conflux_web3-1.3.0b4.tar.gz
Algorithm Hash digest
SHA256 304556cda6436b60adac6a9b8f0075b30aeee572f8a089f02505584ba251ccda
MD5 80f9efff40ed7cae88c681b2586a78e4
BLAKE2b-256 bba9ba66d96705b0d21eb961496c4e1f206b704e1e59e6675e99aa977bf1ec47

See more details on using hashes here.

File details

Details for the file conflux_web3-1.3.0b4-py3-none-any.whl.

File metadata

File hashes

Hashes for conflux_web3-1.3.0b4-py3-none-any.whl
Algorithm Hash digest
SHA256 1bd5180e34f7f8614e1610b2185ef95ad70844ef21b645eca4b5d215639ebce5
MD5 7fd070881a9bb2d943c9d49a4bdea8a6
BLAKE2b-256 3c8a0163fe30f22153a516db3ae8f2fc7a11132491f647e77736e0a193cee533

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