2025-05-14
AI

AI Assistant Launch

  • Released AI Assistant for docs.zbdpay.com documentation
    • Ask questions about any aspect of ZBD’s documentation and integrations
    • Get instant answers about SDK implementations and code examples
    • Learn about country coverage and supported regions
    • Understand integration options and best practices
    • Explore product capabilities and features
    • Get help troubleshooting common issues
    • Available 24/7 to assist with documentation queries
2025-05-13
Docs

Improved Documentation

  • Comprehensive rewrite of ZBD documentation with expanded content and guides
    • Enhanced Payments documentation with detailed Lightning Network and Lightning Address explanations
    • New Rewards SDK documentation and integration guides
    • Added complete ZBD Onramp documentation and quickstart
    • Expanded voucher system documentation with implementation examples
    • Streamlined navigation and improved documentation structure
    • Added more context and real-world examples throughout
2025-05-01
docs.zbdpay.com

docs.zbdpay.com Updated

  • ZBD Payments Documentation site with divided section for each business vertical
2025-04-15
SDK

TypeScript SDK

pnpm install @zbddev/payments-sdk
import ZbdPayments from '@zbddev/payments-sdk';

const client = new ZbdPayments({
  apikey: process.env['ZBD_PAYMENTS_API_KEY'],
});

async function main() {
  await client.lightningAddress.sendPayment({
    amount: '500000',
    comment: 'Instant global payments',
    lnAddress: 'andreneves@zbd.gg',
  });
}

main();