Built on Solana Pay · Powered by AUDD

Accept Australian Dollar
Payments On-Chain

Drop one script tag into any website. Your customers pay in AUDD — the regulated AUD stablecoin — instantly via Solana.

View Code
<2s
Finality
$0.001
Tx Fee
1:1
AUD Backed
AFSL
Regulated
Live Demo
Mock Storefront
Click "Buy with AUDD" on any product to see the checkout widget in action.
🎧
Pro Wireless Headphones
Active noise cancellation, 30-hour battery, premium drivers.
💻
Mechanical Keyboard
Tactile switches, RGB backlight, aluminium frame.
📱
Fast Wireless Charger
15W Qi2 charging pad, universal compatibility.
Two Lines of Code
Drop it into any HTML page — no build step, no dependencies.
index.html
<!-- 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>
Node.js / TypeScript
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();
Features
Everything You Need
Production-ready from day one.

Instant Settlement

Solana finalises in under 2 seconds. Funds land in your wallet immediately — no bank T+2 delays.

🔒

Regulated & Audited

AUDD is issued under an Australian Financial Services Licence (AFSL) and is 1:1 backed by AUD held in a Bare Trust.

📱

Solana Pay QR

Generates a standard Solana Pay URL. Works with Phantom, Solflare, Backpack, and any compatible wallet.

🌐

Zero Dependencies

The browser widget is a single vanilla JS file. Drop it into any stack — React, Vue, plain HTML.

🔔

Webhook Ready

Built-in onSuccess / onError callbacks. Plug straight into your order management system or database.

💱

No FX Risk

AUDD is pegged to AUD — your revenue is denominated in Australian dollars, not volatile crypto.

How It Works
Simple by Design
1

Merchant embeds widget

Include one script tag and call AuddWidget.open() with your Solana wallet address and the amount in AUD.

2

Customer scans QR / taps link

A Solana Pay QR code is generated. The customer scans it with any compatible Solana wallet — Phantom, Solflare, Backpack.

3

Transaction confirms on-chain

The SDK polls the Solana network using a unique reference key. Within 2 seconds of the wallet signing, confirmation is detected.

4

onSuccess fires — AUDD in your wallet

Your callback receives the transaction signature. AUDD is in your wallet. Fulfil the order.