Integrate AI-powered intelligence into your BSC Chain DApps with our comprehensive SDK and developer tools
npm install @arc402/sdk
import { Arc402Client } from '@arc402/sdk';
const client = new Arc402Client({
network: 'mainnet-beta',
apiKey: process.env.ARC402_API_KEY
});
// Submit AI task
const result = await client.submitTask({
type: 'inference',
model: 'gpt-4',
prompt: 'Analyze this transaction...'
});
// Verify proof
const verified = await client.verifyProof(result.proofHash);
Complete API reference with examples and best practices
Ready-to-use code snippets and sample projects
Step-by-step guides to build with Arc402
Best practices for secure AI integration
Detailed SDK documentation and type definitions
Command-line tools for development and testing