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-1.0.0.tar.gz (127.8 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-1.0.0-py3-none-any.whl (140.9 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for sardis_chain-1.0.0.tar.gz
Algorithm Hash digest
SHA256 b2187b27195059c83383f1027c74c279b5e596a2dbf23cb79e1433459db5de30
MD5 9bb524fbb682a5a1f443e865e905e8d1
BLAKE2b-256 fa44ce0487bff5359e4ac6e6bcee40679dca165bf45c25633b5e874372a30ff7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sardis_chain-1.0.0-py3-none-any.whl
  • Upload date:
  • Size: 140.9 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-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f094f0304775c49cac149dcc5a810d5e4ed3c7ac7355002739408a4a754e8a53
MD5 ded937f11961ce141afa05c496f91ea1
BLAKE2b-256 becdfeec9154563eafb7497b6a282dcc1fbcba2e25c35186cb5964c60a3e9bd0

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