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.0.1.tar.gz (58.0 kB view details)

Uploaded Source

Built Distribution

conflux_web3-1.0.1-py3-none-any.whl (75.5 kB view details)

Uploaded Python 3

File details

Details for the file conflux-web3-1.0.1.tar.gz.

File metadata

  • Download URL: conflux-web3-1.0.1.tar.gz
  • Upload date:
  • Size: 58.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for conflux-web3-1.0.1.tar.gz
Algorithm Hash digest
SHA256 bb4a37cc904092796c895c884e3815f28398d74e6c3717755196d0bd07484592
MD5 023bfbd1a71a5c64818806e4535846dc
BLAKE2b-256 2ca4400cef710d4e284c60dfe9f21caa7a72263939d815640a9d0f7864edd625

See more details on using hashes here.

File details

Details for the file conflux_web3-1.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for conflux_web3-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 06d149545d6964ea5d95cc4036e4d1b476ac10ffef0f438a8f062ee19eadb612
MD5 cdca082a715781cf7144e2c3709cb2ae
BLAKE2b-256 6a7cf7d20178f1e4a1f38bfed605218ae4c726a22b4672477c44e3ffa493c9e2

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