Skip to content

VoidAI Bridge SDK

The VoidAI Bridge SDK enables seamless cross-chain bridging between Bittensor, EVM chains (Ethereum, Arbitrum, etc.), and Solana networks. It provides a unified interface for both frontend (browser) and backend (server) applications.


The VoidAI Bridge ecosystem is built around three core capabilities:

ComponentDescription
BridgeBidirectional asset transfers between Bittensor (TAO / Alpha) and EVM chains (Ethereum).
SwapOn-chain swapping of wrapped tokens (e.g. wTAOwALPHA) on Ethereum.
CCIPCross-chain transfers from Ethereum to supported chains — currently Base, with Solana and others planned.

import { BridgeSDK } from '@voidaisdk/bridge-sdk';
const sdk = new BridgeSDK({
apiKey: 'YOUR_API_KEY',
environment: 'mainnet',
});
await sdk.ready;
console.log('SDK Ready!');


The VoidAI Bridge SDK is continuously evolving. Planned features include:

FeatureStatusDescription
Automated Fee Claiming🔜 PlannedProgrammatic claiming of accumulated tenant fees. Currently manual via Admin Portal.
Enhanced Swap Engine🔜 PlannedA more efficient version of the swap routing logic.
Expanded CCIP Support🔜 PlannedAdditional destination chains including Solana, plus route optimizations.
Advanced Route Optimization🔜 PlannedSmarter routing for complex multi-hop cross-chain paths.