๐Ÿš€ AirSign SDK Integration Demo

Add Web3 AirDrop functionality to any website with just 2 lines of code!

๐Ÿ”— Drop-in Integration

Works with any website or web app

๐Ÿ’ฐ Multi-Currency

BTC, ETH, USDC, SOL support

๐Ÿ” End-to-End Encrypted

Real X25519 ECDH + ChaCha20

๐Ÿ“ฑ Cross-Platform

Desktop, mobile, any device

๐Ÿš€ Quick Start (Auto-Init)

Add to any HTML page:

<!-- Add this anywhere in your page -->
<div data-airsign-auto 
     data-airsign-api-key="your-key"
     data-airsign-position="bottom-right"></div>

<script src="airsign-embed.js"></script>

โš™๏ธ JavaScript API

Programmatic control:

const airsign = new AirSignEmbed({
  apiKey: 'your-api-key',
  network: 'mainnet',
  position: 'bottom-right'
});

await airsign.enable();

๐ŸŽจ Custom Integration

For React, Vue, Angular:

import AirSignEmbed from 'airsign-embed';

// In your component
useEffect(() => {
  const airsign = new AirSignEmbed(config);
  airsign.enable();
  
  return () => airsign.disable();
}, []);

๐Ÿ”ง WordPress Plugin

Easy CMS integration:

// Add to functions.php
wp_enqueue_script('airsign', 
  'airsign-embed.js');

// Shortcode: [airsign position="bottom-left"]

๐Ÿงช Live Demo

Try the embeddable SDK right on this page!

๐Ÿ’ก Integration Use Cases

๐Ÿ›’ E-commerce: Let customers pay with crypto by scanning nearby devices

๐ŸŽฎ Gaming: Trade items and currency between players in proximity

๐Ÿ’ผ Business: B2B payments and invoicing via device discovery

๐Ÿช Retail: Point-of-sale crypto payments without QR codes

๐Ÿ“ฑ DApps: Enhanced UX for wallet connections and payments

๐ŸŽช Events: Peer-to-peer payments at conferences and meetups

๐Ÿ”— Ready to Integrate?

Get your API key and start building the future of Web3 payments!

SDK Size: ~15KB gzipped | Dependencies: None | License: MIT