开发者中心
接入 Genex 生态,构建你的应用
快速开始
// Install the Genex SDK
npm install @genex/sdk
// Initialize the client
import { GenexClient } from '@genex/sdk';
const client = new GenexClient({
apiKey: 'your-api-key',
network: 'mainnet',
});
// Query available coupons
const coupons = await client.coupons.list({
category: 'dining',
maxPrice: 100,
});
console.log(coupons);