Chain Contexts for PyCardano library
Project description
PyCardano Chain Contexts
This library contains the various Chain Contexts to use with the PyCardano library as well as a few helper functions for working with and building certain types of transactions.
Chain Context Usage
The library supports multiple blockchain data providers and local node interfaces. Choose the appropriate chain context based on your setup and requirements.
Blockfrost
from pccontext import BlockFrostChainContext, Network
chain_context = BlockFrostChainContext(
project_id="your_project_id",
network=Network.MAINNET,
)
Cardano-CLI
from pccontext import CardanoCliChainContext, Network
from pathlib import Path
chain_context = CardanoCliChainContext(
binary=Path("cardano-cli"),
socket=Path("node.socket"),
config_file=Path("config.json"),
network=Network.MAINNET,
)
Koios
from pccontext import KoiosChainContext
chain_context = KoiosChainContext(api_key="api_key")
Ogmios
from pccontext import OgmiosChainContext
chain_context = OgmiosChainContext(host="localhost", port=1337)
Kupo
from pccontext import OgmiosChainContext, KupoChainContextExtension
ogmios_chain_context = OgmiosChainContext(host="localhost", port=1337)
chain_context = KupoChainContextExtension(wrapped_backend=ogmios_chain_context)
Offline Transfer File
from pathlib import Path
from pccontext import OfflineTransferFileContext
chain_context = OfflineTransferFileContext(offline_transfer_file=Path("offline-transfer.json"))
Yaci Devkit
from pccontext import YaciDevkitChainContext
chain_context = YaciDevkitChainContext(api_url="http://localhost:8080")
Transactions Usage
The library provides various transaction helper functions for common Cardano operations. All transaction functions can optionally sign the transaction if signing keys are provided.
Common Setup for Transaction Examples
from pycardano import (
Address,
DRepKind,
StakeSigningKey,
StakeVerificationKey,
PaymentSigningKey,
PaymentVerificationKey,
)
from pccontext import BlockFrostChainContext, Network
import os
# Setup chain context
network = Network.PREPROD
blockfrost_api_key = os.getenv("BLOCKFROST_API_KEY_PREPROD")
chain_context = BlockFrostChainContext(
project_id=blockfrost_api_key, network=network
)
# Generate keys
payment_signing_key = PaymentSigningKey.generate()
payment_verification_key = PaymentVerificationKey.from_signing_key(
payment_signing_key
)
stake_signing_key = StakeSigningKey.generate()
stake_verification_key = StakeVerificationKey.from_signing_key(stake_signing_key)
address = Address(
payment_part=payment_verification_key.hash(),
staking_part=stake_verification_key.hash(),
network=network.get_network(),
)
Transaction Assembly and Signing Utilities
assemble_transaction
from pccontext.transactions import assemble_transaction
from pycardano import Transaction, VerificationKeyWitness
# Create an unsigned transaction (example using stake registration)
from pccontext.transactions import stake_address_registration
unsigned_transaction = stake_address_registration(
context=chain_context,
stake_vkey=stake_verification_key,
send_from_addr=address,
signing_keys=None # Don't sign yet
)
# Create verification key witnesses manually
verification_key_witnesses = [
VerificationKeyWitness(
vkey=payment_verification_key,
signature=payment_signing_key.sign(unsigned_transaction.transaction_body.hash())
),
VerificationKeyWitness(
vkey=stake_verification_key,
signature=stake_signing_key.sign(unsigned_transaction.transaction_body.hash())
)
]
# Assemble a transaction with witnesses
assembled_tx = assemble_transaction(
transaction=unsigned_transaction,
vkey_witnesses=verification_key_witnesses
)
sign_transaction
from pccontext.transactions import sign_transaction, stake_address_registration
# Create an unsigned transaction
unsigned_transaction = stake_address_registration(
context=chain_context,
stake_vkey=stake_verification_key,
send_from_addr=address,
signing_keys=None # Don't sign yet
)
# Sign a transaction with provided keys
signed_tx = sign_transaction(
transaction=unsigned_transaction,
keys=[payment_signing_key, stake_signing_key],
)
witness
from pccontext.transactions import witness, stake_address_registration
# Create an unsigned transaction
transaction = stake_address_registration(
context=chain_context,
stake_vkey=stake_verification_key,
send_from_addr=address,
signing_keys=None # Don't sign yet
)
# Generate verification key witnesses for a transaction
witnesses = witness(
transaction=transaction,
keys=[payment_signing_key, stake_signing_key],
)
Stake Address Registration
from pccontext.transactions import stake_address_registration
# Register a stake address
signed_stake_address_registration_tx = stake_address_registration(
context=chain_context,
stake_vkey=stake_verification_key,
send_from_addr=address,
signing_keys=[payment_signing_key, stake_signing_key],
)
print(f"Transaction ID: {signed_stake_address_registration_tx.id}")
chain_context.submit_tx(signed_stake_address_registration_tx)
Stake Address Deregistration
from pccontext.transactions import stake_address_deregistration
# Deregister a stake address
signed_stake_address_deregistration_tx = stake_address_deregistration(
context=chain_context,
stake_vkey=stake_verification_key,
send_from_addr=address,
signing_keys=[payment_signing_key, stake_signing_key],
)
print(f"Transaction ID: {signed_stake_address_deregistration_tx.id}")
chain_context.submit_tx(signed_stake_address_deregistration_tx)
Stake Delegation
from pccontext.transactions import stake_delegation
# Delegate stake to a pool (requires already registered stake address)
pool_id = "abcd1234567890abcdef1234567890abcdef123456789012345678901234"
signed_stake_delegation_tx = stake_delegation(
context=chain_context,
stake_vkey=stake_verification_key,
pool_id=pool_id,
send_from_addr=address,
signing_keys=[payment_signing_key, stake_signing_key],
)
print(f"Transaction ID: {signed_stake_delegation_tx.id}")
chain_context.submit_tx(signed_stake_delegation_tx)
Stake Address Registration and Delegation
from pccontext.transactions import stake_address_registration_and_delegation
# Register stake address and delegate in one transaction
pool_id = "abcd1234567890abcdef1234567890abcdef123456789012345678901234"
signed_registration_and_delegation_tx = stake_address_registration_and_delegation(
context=chain_context,
stake_vkey=stake_verification_key,
pool_id=pool_id,
send_from_addr=address,
signing_keys=[payment_signing_key, stake_signing_key],
)
print(f"Transaction ID: {signed_registration_and_delegation_tx.id}")
chain_context.submit_tx(signed_registration_and_delegation_tx)
Vote Delegation
from pccontext.transactions import vote_delegation
from pycardano import DRepKind
# Delegate voting power to a DRep
drep_id = "drep1abcd1234567890abcdef1234567890abcdef123456789012345678"
signed_vote_delegation_tx = vote_delegation(
context=chain_context,
stake_vkey=stake_verification_key,
send_from_addr=address,
drep_kind=DRepKind.KEY_HASH,
drep_id=drep_id,
signing_keys=[payment_signing_key, stake_signing_key],
)
print(f"Transaction ID: {signed_vote_delegation_tx.id}")
chain_context.submit_tx(signed_vote_delegation_tx)
# Delegate to "Always Abstain"
signed_vote_abstain_tx = vote_delegation(
context=chain_context,
stake_vkey=stake_verification_key,
send_from_addr=address,
drep_kind=DRepKind.ALWAYS_ABSTAIN,
drep_id=None,
signing_keys=[payment_signing_key, stake_signing_key],
)
# Delegate to "Always No Confidence"
signed_vote_no_confidence_tx = vote_delegation(
context=chain_context,
stake_vkey=stake_verification_key,
send_from_addr=address,
drep_kind=DRepKind.ALWAYS_NO_CONFIDENCE,
drep_id=None,
signing_keys=[payment_signing_key, stake_signing_key],
)
Stake Address Registration and Vote Delegation
from pccontext.transactions import stake_address_registration_and_vote_delegation
from pycardano import DRepKind
# Register stake address and delegate voting power in one transaction
drep_id = "drep1abcd1234567890abcdef1234567890abcdef123456789012345678"
signed_registration_and_vote_delegation_tx = stake_address_registration_and_vote_delegation(
context=chain_context,
stake_vkey=stake_verification_key,
send_from_addr=address,
drep_kind=DRepKind.KEY_HASH,
drep_id=drep_id,
signing_keys=[payment_signing_key, stake_signing_key],
)
print(f"Transaction ID: {signed_registration_and_vote_delegation_tx.id}")
chain_context.submit_tx(signed_registration_and_vote_delegation_tx)
Stake and Vote Delegation
from pccontext.transactions import stake_and_vote_delegation
from pycardano import DRepKind
# Delegate both stake and voting power (requires already registered stake address)
pool_id = "abcd1234567890abcdef1234567890abcdef123456789012345678901234"
drep_id = "drep1abcd1234567890abcdef1234567890abcdef123456789012345678"
signed_stake_and_vote_delegation_tx = stake_and_vote_delegation(
context=chain_context,
stake_vkey=stake_verification_key,
pool_id=pool_id,
send_from_addr=address,
drep_kind=DRepKind.KEY_HASH,
drep_id=drep_id,
signing_keys=[payment_signing_key, stake_signing_key],
)
print(f"Transaction ID: {signed_stake_and_vote_delegation_tx.id}")
chain_context.submit_tx(signed_stake_and_vote_delegation_tx)
Stake Address Registration, Delegation and Vote Delegation
from pccontext.transactions import stake_address_registration_delegation_and_vote_delegation
from pycardano import DRepKind
# Register stake address, delegate to pool, and delegate voting power in one transaction
pool_id = "abcd1234567890abcdef1234567890abcdef123456789012345678901234"
drep_id = "drep1abcd1234567890abcdef1234567890abcdef123456789012345678"
signed_full_registration_tx = stake_address_registration_delegation_and_vote_delegation(
context=chain_context,
stake_vkey=stake_verification_key,
pool_id=pool_id,
send_from_addr=address,
drep_kind=DRepKind.KEY_HASH,
drep_id=drep_id,
signing_keys=[payment_signing_key, stake_signing_key],
)
print(f"Transaction ID: {signed_full_registration_tx.id}")
chain_context.submit_tx(signed_full_registration_tx)
Withdraw Rewards
from pccontext.transactions import withdraw_rewards
# Withdraw rewards from a stake address
signed_withdraw_rewards_tx = withdraw_rewards(
context=chain_context,
stake_vkey=stake_verification_key,
send_from_addr=address,
signing_keys=[payment_signing_key, stake_signing_key],
)
print(f"Transaction ID: {signed_withdraw_rewards_tx.id}")
chain_context.submit_tx(signed_withdraw_rewards_tx)
Notes
- All transaction functions return a
Transactionobject - When
signing_keysare provided, the transaction is automatically signed - When
signing_keysare not provided, you get an unsigned transaction that needs to be signed separately - Pool IDs should be provided as hex strings without the "pool" prefix
- DRep IDs should be provided as hex strings or you can use the special DRep kinds (ALWAYS_ABSTAIN, ALWAYS_NO_CONFIDENCE)
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 Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pccontext-0.5.6.tar.gz.
File metadata
- Download URL: pccontext-0.5.6.tar.gz
- Upload date:
- Size: 38.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.10.10 Darwin/25.1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b5746d584d7d967139eab86ae5f19ee237dc70f50f619bc073554047e205a10
|
|
| MD5 |
337482c666ff6679e529df6a811b074b
|
|
| BLAKE2b-256 |
372b1de1a10c790641d43d35dbf2dbf591119cb43ba201bd35370195f12dcf30
|
File details
Details for the file pccontext-0.5.6-py3-none-any.whl.
File metadata
- Download URL: pccontext-0.5.6-py3-none-any.whl
- Upload date:
- Size: 59.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.10.10 Darwin/25.1.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e333715d7cfeff495b9719e5b48eb78e3925e5716de513e998cab6a6f6122366
|
|
| MD5 |
9dd104051fa5d23f3c511ec30924cdb6
|
|
| BLAKE2b-256 |
d0ab8bfb0e2653731ae18caa567fe5bdc09a818218d68c5fa07556c6a488092a
|