Conduit Connect · Examples

Synchronize payments as fast as physics allows.

Ten drop-in starters that actually work. Subscriptions, paywalls, tips, RWAs, agent pay, NFT mint and secondary — your buyers pay from any wallet, any chain; you settle on Solana in under a second. Copy the source, swap the merchant address, ship before the next Firedancer block.

Tip Jar

One button, any wallet, any chain. Arrives as USDC on Solana faster than you can blink.

For creators, maintainers, and the people chewing glass to ship.

<ConduitCheckout>localStorage

Paywall Article

Pay once, unlock forever. No account, no email, no newsletter trap.

Micropayments that don't need a cookie banner.

<ConduitCheckout>device receipt

Conduit Founders Pass

500 real Metaplex Core mints on Solana. Pay from any chain, mint the same block it settles. $25 USDC.

A limited-edition mint that works end-to-end — the way your NFT drop should.

<ConduitCheckout>mpl-core

SaaS Subscription

Monthly USDC billing with HMAC-signed webhook extension. Stripe-shaped, Solana-settled.

Subscriptions that clear before Stripe's ACH even wakes up.

<ConduitCheckout>webhook signing

Stream Tip Overlay

OBS-embeddable overlay. Chat tips from any wallet, you see the animation before they hit enter.

Twitch-style tipping on 400ms rails.

<ConduitCheckout>BroadcastChannel

Subscriptions

Recurring USDC billing. Weekly, monthly, yearly. Prorated first period and trial-day support built in.

Stripe-shaped, Solana-settled. New in v0.3.

useConduitSubscriptioncomputeNextRenewal

Real-World Assets

Buy XAUt, PAXG, SLVon, JupUSD from any chain. Trading-window enforcement built in — JIT tokens are gated automatically.

Tokenized gold, silver, treasuries — paid for from Bitcoin if you like. New in v0.3.

useConduitRwaBuyRWA_TOKENS

Buy any SPL token

USD-denominated buys for JUP, JTO, BONK, PYTH — or any mint you wire up. Slippage tolerance + affiliate split.

One UX for every token, not one button per pair. New in v0.3.

useConduitTokenBuyestimateTokenBuyOutput

NFT Secondary

Buy a Tensor / Magic Eden / Exchange Art listing from any chain. Built-in price guard and listing-validation pass.

Pay USDC from Base, get the NFT in your Solana wallet. New in v0.3.

useConduitNftBuyvalidateNftListing

Agent Pay (M2M)

Pre-authorized scope (budget, per-call cap, expiry) gates every charge before the wallet ever signs. Headless, no popup.

x402-style agent payments without any RPC layer. New in v0.3.

buildAgentPaymentRequestvalidateAgentScope

Test in your own app

// 1. Install (when published)
npm install @conduitexchange/connect

// 2. Wrap your app
import { ConduitConnectProvider } from "@conduitexchange/connect";

<ConduitConnectProvider config={{
  appName: "MyApp",
  features: { transactionSimulation: true, sessionPersistence: true },
}}>
  <App />
</ConduitConnectProvider>

// 3. Drop in the button — that's it.
import { ConduitCheckout } from "@conduitexchange/connect";

<ConduitCheckout
  amount="9.99"
  currency="USDC"
  merchantAddress="B2YjjQFN77aKsRNWW7eHzWwH1grHQP79MAV5jpgf3crb"
  orderId="ord_123"
  onSuccess={(paymentId) => console.log("paid:", paymentId)}
/>