Everything you need to integrate Tatau.ink into your application and start issuing NFT certificates
// Install the Tatau.ink SDK
npm install @tatau/sdk
// Initialize the client
import { TatauClient } from '@tatau/sdk'
const client = new TatauClient({
network: 'arbitrum',
apiKey: 'your-api-key'
})
// Issue a certificate
const certificate = await client.issueCertificate({
title: 'Web Development Certificate',
recipient: '0x...',
template: 'modern',
metadata: {
skills: ['React', 'Node.js'],
issuer: 'TechEd University'
}
})