Explore our growing ecosystem of DeAI applications in the awesome-aiforge repository.
Deploy AI agents that operate seamlessly across 8+ blockchains. Access unified liquidity, execute cross-chain arbitrage, and manage multi-chain portfolios with enterprise-grade infrastructure.
ETH
MATIC
ARB
OP
AVAX
0G
Manage assets across all chains from a single interface
Exploit price differences across different blockchains
Access liquidity from multiple chains simultaneously
Comprehensive risk assessment across all positions
Fast and trustless cross-chain transfers
Optimistic bridge with instant transfers
Omnichain liquidity protocol
Native bridge for 0G Chain ecosystem
import { AIForge } from '@aiforge/sdk'
const aiforge = new AIForge({
apiKey: 'your-api-key',
chains: ['ethereum', 'polygon', 'arbitrum', '0g-chain']
})
// Create multi-chain agent
const agent = await aiforge.createAgent({
name: 'Cross-Chain Arbitrage Bot',
type: 'multi-chain-trading',
config: {
supportedChains: ['ethereum', 'polygon', 'arbitrum'],
bridgeProtocols: ['hop', 'across', 'stargate'],
maxSlippage: 0.5, // 0.5%
minProfitThreshold: 0.3 // 0.3%
}
})
// Execute cross-chain swap
const swapResult = await agent.executeCrossChainSwap({
fromChain: 'ethereum',
toChain: 'polygon',
fromToken: 'USDC',
toToken: 'USDC',
amount: '1000',
slippageTolerance: 0.1 // 0.1%
})
console.log('Swap executed:', swapResult.txHash)
console.log('Bridge time estimate:', swapResult.estimatedTime)
// Monitor cross-chain arbitrage opportunities
agent.on('arbitrageOpportunity', async (opportunity) => {
console.log(`Found arbitrage: ${opportunity.profitPercent}% profit`)
console.log(`Token: ${opportunity.token}`)
console.log(`Buy on ${opportunity.buyChain} at ${opportunity.buyPrice}`)
console.log(`Sell on ${opportunity.sellChain} at ${opportunity.sellPrice}`)
if (opportunity.profitPercent > 0.5) { // 0.5% minimum
await agent.executeArbitrage(opportunity)
}
})
Access $65B+ in total value locked across all major blockchains
Exploit price differences across chains for guaranteed profits
Spread risk across multiple chains and ecosystems