Skip to main content

Elements module for python-bitcointx

Project description

This Python3 module implements support for Elements transactions.

It builds on top, and is intended to be used along with python-bitcointx library.

Requirements

    ./configure --enable-experimental \
                --enable-module-generator \
                --enable-module-rangeproof \
                --enable-module-surjectionproof \
                --enable-module-ecdh \
                --enable-module-recovery

Usage:

With contextual switch to Elements parameters:

import os
import elementstx
from bitcointx import ChainParams, get_current_chain_params
from bitcointx.wallet import CCoinKey, CCoinExtKey, CCoinAddress, P2PKHCoinAddress

with ChainParams('elements'):
    k = CCoinExtKey.from_seed(os.urandom(32))
    a = P2PKHCoinAddress.from_pubkey(k.derive_path("m/0'/0'/1").pub)
    print('example {} address: {}'.format(get_current_chain_params().name, a))
    assert CCoinAddress(str(a)) == a

With global switch to Elements parameters:

from elementstx import ElementsParams
from bitcointx import select_chain_params

select_chain_params('elements')
# or, using the chain params class directly
select_chain_params(ElementsParams)

# To switch to Liquid Network parameters:
select_chain_params('elements/liquidv1')

Without the switch of chain parameters:

from elementstx.core import CElementsTransaction

transaction_data = read_tx_data()
tx = CElementsTransaction.deserialze(transaction_data)
print("Number of txout witnesses:", len(tx.wit.vtxoutwit))

Example Code

See examples/ directory.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

python_elementstx-0.1.5.post0-py3-none-any.whl (50.6 kB view details)

Uploaded Python 3

File details

Details for the file python_elementstx-0.1.5.post0-py3-none-any.whl.

File metadata

File hashes

Hashes for python_elementstx-0.1.5.post0-py3-none-any.whl
Algorithm Hash digest
SHA256 7f6018ad1ee19e1234215641b10a1a2278f67c60fbe15e80ed86038e0cc75799
MD5 5494b714fe148422ce20a913b681ee33
BLAKE2b-256 b1f3987fe103956eea68fc02b4da8d86a301c7ae80bc88223ef10a30bab65574

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