token
EVM Integration
Implement cross-chain liquidity transfers using our optimized SDK. Supports Ethereum, Polygon, and Arbitrum.
index.ts
import { Provider } from '@stackfinder/sdk';
// Initialize the multi-chain core
const client = new Provider({
apiKey: 'sf_live_...',
network: 'mainnet'
});
async function syncAssets() {
const tx = await client.bridge(
amount: '1.5',
targetChain: 'base'
);
}
auto_awesome
AI Co-Pilot: The bridge function automatically calculates gas optimization across 4 providers.