Skip to main content

Production-grade multi-chain stablecoin executor for Sardis

Project description

sardis-chain

PyPI version Python 3.11+ License: MIT

Production-grade multi-chain stablecoin executor for Sardis.

Overview

sardis-chain provides the blockchain execution layer for stablecoin operations:

  • Multi-Chain Support: Ethereum, Base, Polygon, Arbitrum, and more
  • MPC Custody: Integration with Turnkey and Fireblocks
  • Transaction Execution: Gas estimation, nonce management, confirmation tracking
  • Cross-Chain Routing: CCIP and Wormhole integration
  • MEV Protection: Flashbots and private mempool support
  • Deposit Monitoring: Real-time deposit detection and processing

Installation

pip install sardis-chain

Development Installation

pip install sardis-chain[dev]

Quick Start

from sardis_chain import (
    ChainExecutor,
    WalletManager,
    NonceManager,
    ConfirmationTracker,
)

# Initialize the executor
executor = ChainExecutor(
    chain="base",
    rpc_url="https://mainnet.base.org",
    mpc_provider="turnkey",
)

# Execute a stablecoin transfer
result = await executor.transfer(
    from_wallet="0x...",
    to_address="0x...",
    token="USDC",
    amount=100_000000,  # $100 in 6 decimals
)

print(f"Transaction hash: {result.tx_hash}")
print(f"Confirmations: {result.confirmations}")

Features

Chain Execution

from sardis_chain import ChainExecutor

executor = ChainExecutor(chain="ethereum")

# Transfer with automatic gas estimation
tx = await executor.transfer(
    from_wallet=wallet_id,
    to_address=recipient,
    token="USDC",
    amount=amount,
    priority="high",  # Adjusts gas price
)

# Wait for confirmation
confirmed = await executor.wait_for_confirmation(
    tx_hash=tx.tx_hash,
    confirmations=12,
)

Nonce Management

from sardis_chain import NonceManager

nonce_mgr = NonceManager(chain="base")

# Get next nonce with automatic tracking
async with nonce_mgr.acquire(wallet_address) as nonce:
    # Use nonce for transaction
    tx = build_transaction(nonce=nonce)
    await submit_transaction(tx)
# Nonce automatically released/committed on success

Deposit Monitoring

from sardis_chain import DepositMonitor

monitor = DepositMonitor(
    chain="base",
    tokens=["USDC", "USDT"],
    callback=handle_deposit,
)

# Start monitoring
await monitor.start()

async def handle_deposit(deposit):
    print(f"Received {deposit.amount} {deposit.token}")
    print(f"From: {deposit.from_address}")
    print(f"Block: {deposit.block_number}")

MEV Protection

from sardis_chain import ChainExecutor

executor = ChainExecutor(
    chain="ethereum",
    mev_protection=True,
    flashbots_relay="https://relay.flashbots.net",
)

# Transaction submitted via private mempool
tx = await executor.transfer(...)

Supported Chains

Chain Chain ID Token Support
Ethereum 1 USDC, USDT, DAI
Base 8453 USDC, USDbC
Polygon 137 USDC, USDT
Arbitrum 42161 USDC, USDT
Optimism 10 USDC

Configuration

from sardis_chain import ChainConfig

config = ChainConfig(
    chain="base",
    rpc_url="https://mainnet.base.org",
    fallback_rpcs=[
        "https://base.llamarpc.com",
        "https://base.blockpi.network/v1/rpc/public",
    ],
    confirmation_blocks=12,
    gas_price_multiplier=1.1,
    max_gas_price_gwei=100,
)

Or via environment variables:

SARDIS_CHAIN_RPC_URL=https://mainnet.base.org
SARDIS_CHAIN_CONFIRMATIONS=12
SARDIS_TURNKEY_API_KEY=your-api-key
SARDIS_TURNKEY_ORGANIZATION_ID=your-org-id

Architecture

sardis-chain/
├── executor.py       # Transaction execution
├── wallet_manager.py # MPC wallet operations
├── nonce_manager.py  # Nonce tracking and recovery
├── deposit_monitor.py # Deposit detection
├── confirmation.py   # Confirmation tracking
├── mev_protection.py # MEV protection utilities
├── simulation.py     # Transaction simulation
└── rpc_client.py     # RPC connection management

Requirements

  • Python 3.11+
  • web3 >= 6.0
  • pydantic >= 2.6
  • sardis-core >= 0.1.0
  • httpx >= 0.25.0
  • rlp >= 3.0.0
  • cryptography >= 41.0.0

Documentation

Full documentation is available at docs.sardis.sh/chain.

License

MIT License - see LICENSE for details.

Contributing

Contributions are welcome! Please see our Contributing Guide for details.

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

sardis_chain-0.3.1.tar.gz (73.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sardis_chain-0.3.1-py3-none-any.whl (77.7 kB view details)

Uploaded Python 3

File details

Details for the file sardis_chain-0.3.1.tar.gz.

File metadata

  • Download URL: sardis_chain-0.3.1.tar.gz
  • Upload date:
  • Size: 73.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for sardis_chain-0.3.1.tar.gz
Algorithm Hash digest
SHA256 cc282e1f8ab1b5a49083b487617ca5594fb7a149f282390ddce6e4888aca345f
MD5 43501fcbf69fe8d96f2d37d887786f39
BLAKE2b-256 46230d6d4da37d236e2b59d9f957786a2711c1f8c2e5f8ebfe2553d0d07d133c

See more details on using hashes here.

File details

Details for the file sardis_chain-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: sardis_chain-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 77.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for sardis_chain-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0270ffc5421dbcb63570a430aa71f3aa5b3772c2b7ec4fe62e2387d33cf0fd10
MD5 4eb9f733cfafc810209e866b68234a3d
BLAKE2b-256 65fc9828dc340ff32a52827b31eef13878230dca064546579f28d9f5eab801f4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page