Skip to content

VoidAI SDK

The VoidAI SDK enables seamless cross-chain bridging between Bittensor, EVM chains (Ethereum & Base), 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.

Fill in the Tenant Request Form: Once admin approves you can get your VoidAI Bridge API key from the SDK Tenant Utility.

NPM Package: https://www.npmjs.com/package/@voidaisdk/bridge-sdk; Once the package is installed follow the below steps to initialize the SDK.

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 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.