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.2.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.2-py3-none-any.whl (77.7 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: sardis_chain-0.3.2.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.2.tar.gz
Algorithm Hash digest
SHA256 ebf175784e0e2095de88112e40afc58683c403e0b11cfdc1a6420a0e880b560b
MD5 2e5b8ad802843a59eeeb7d5b76446f81
BLAKE2b-256 3e7ca47a5ce658c3467fe05105754487ef000922a6cca554ee0afe24b0b892a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sardis_chain-0.3.2-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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 723daf45cce259541294e48ec90cd4894cbeeb8ef86308120d696d0613b6c68a
MD5 bde5ea415cf80f6cf5d3a3702613bc31
BLAKE2b-256 1b5c3dd7bc3989d0ecf79c33198e91587980c230ca27c8eab617c944a6f3bead

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