Drop one script tag into any website. Your customers pay in AUDD — the regulated AUD stablecoin — instantly via Solana.
<!-- 1. Include the script --> <script src="audd-widget.js"></script> <!-- 2. Add a button --> <button onclick="checkout()"> Pay with AUDD </button> <script> function checkout() { AuddWidget.open({ merchantAddress: "YourSolanaWallet", amount: 49.99, label: "My Store", message: "Order #1042", onSuccess: (sig) => { console.log("Paid!", sig); } }); } </script>
import { AuddCheckout } from 'audd-checkout'; const checkout = new AuddCheckout({ merchantAddress: "YourSolanaWallet", amount: 49.99, label: "My Store", message: "Order #1042", onSuccess: (signature) => { // update your DB, ship the order console.log("Payment confirmed:", signature); }, onError: (err) => { console.error("Payment failed:", err); } }); // Get payment URL + QR data const session = checkout.createSession(); console.log(session.url); // solana:... // Start polling for confirmation checkout.startPolling();
Solana finalises in under 2 seconds. Funds land in your wallet immediately — no bank T+2 delays.
AUDD is issued under an Australian Financial Services Licence (AFSL) and is 1:1 backed by AUD held in a Bare Trust.
Generates a standard Solana Pay URL. Works with Phantom, Solflare, Backpack, and any compatible wallet.
The browser widget is a single vanilla JS file. Drop it into any stack — React, Vue, plain HTML.
Built-in onSuccess / onError callbacks. Plug straight into your order management system or database.
AUDD is pegged to AUD — your revenue is denominated in Australian dollars, not volatile crypto.
Include one script tag and call AuddWidget.open() with your Solana wallet address and the amount in AUD.
A Solana Pay QR code is generated. The customer scans it with any compatible Solana wallet — Phantom, Solflare, Backpack.
The SDK polls the Solana network using a unique reference key. Within 2 seconds of the wallet signing, confirmation is detected.
Your callback receives the transaction signature. AUDD is in your wallet. Fulfil the order.