Welcome to ChenAIKit! This guide will help you get up and running with our AI-powered blockchain toolkit.
ChenAIKit is a TypeScript toolkit that makes it easy to build AI-powered blockchain applications. It provides:
- 🧠 AI model integrations for credit scoring and fraud detection
- 🔗 Blockchain connectors for Stellar and Soroban
- ⚙️ TypeScript SDK with strong typing
- 🛠 Examples and templates to jump-start your project
npm install @chenaikit/core
# or
pnpm add @chenaikit/core
# or
yarn add @chenaikit/corenpm install -g @chenaikit/cli
# or
pnpm add -g @chenaikit/cli
# or
yarn global add @chenaikit/cliimport { StellarConnector, AIService } from '@chenaikit/core';
// Initialize Stellar connection
const stellar = new StellarConnector({
network: 'testnet'
});
// Initialize AI service
const ai = new AIService({
apiKey: process.env.AI_API_KEY
});// Get account data
const account = await stellar.getAccount('G...');
console.log('Account:', account);// Calculate credit score
const score = await ai.calculateCreditScore(account);
console.log('Credit Score:', score);// Detect fraud in transaction
const isFraud = await ai.detectFraud(transactionData);
console.log('Is Fraud:', isFraud);- Check out our API Reference
- Explore Tutorials
- Look at Examples for complete applications
- Join our community for support and contributions
- 📖 Read the documentation
- 🐛 Report issues on GitHub
- 💬 Join our Discord community
- 📧 Contact us at support@chenaikit.com