🟨

EmpoorioChain JavaScript SDK

Full-featured JavaScript SDK for web3 AI applications and dApp development. Browser and Node.js support with TypeScript definitions.

Quick Start

Installation
npm install @empoorio/sdk
Complete Example
import { EmpoorioClient } from '@empoorio/sdk';

const client = new EmpoorioClient({
  apiKey: 'your-api-key',
  network: 'mainnet'
});

// AI Inference with ZK Proof
const result = await client.ai.inference({
  model: 'bert-base-uncased',
  input: 'Analyze this text',
  privacy: 'zk-proof'
});

console.log('ZK Proof:', result.proof);

Ready to build with JavaScript?

Start building AI-powered dApps with our comprehensive JavaScript SDK.