Python SDK
The official async Python SDK for the Crypto Chief crypto processing API — accept payments, send payouts, sign transactions, and verify webhooks across 25+ chains.
Requirements
Installation
pip install cryptochief-crypto-processing-pythonfrom cryptochief import CryptoChiefClient, ChainQuickstart
import asyncio
from cryptochief import CryptoChiefClient, Chain, EstimatePayoutRequest
async def main():
async with CryptoChiefClient(
merchant_id="MERCHANT_ID",
api_key="API_KEY",
) as client:
est = await client.payouts.estimate(EstimatePayoutRequest(
network=Chain.ETH_SEPOLIA,
coin="ETH",
amount="0.0001",
to_address="0xRecipient...",
))
print("amount to receive:", est.amount_to_receive)
asyncio.run(main())What you can do
Domain
Service
Key methods
Explore the guides
Last updated