apex-sdk 0.1.0

Unified Rust SDK for Substrate & EVM blockchain development
Documentation

Apex SDK

The industry's first unified Rust SDK for Substrate & EVM blockchain development.

Features

  • Unified Interface: Single API for both Substrate and EVM blockchains
  • Compile-Time Type Safety: Catch errors before deployment
  • Native Performance: Rust-based implementation
  • Cross-Chain Ready: Built-in cross-chain communication support

Example

use apex_sdk::prelude::*;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let sdk = ApexSDK::builder()
        .with_substrate_endpoint("wss://polkadot.api.onfinality.io/public-ws")
        .with_evm_endpoint("https://mainnet.infura.io/v3/YOUR_KEY")
        .build()
        .await?;
    
    Ok(())
}