Conduit ConnectExamples
Conduit Connect · Examples

Synchronize payments as fast as physics allows.

Thirteen drop-in starters that actually work. Subscriptions, paywalls, tips, RWAs, agent pay, NFT mint and secondary, plus Solana token launch planning for SPL, Token-2022, launch profiles, vanity mints, runtime-aware checks, and P-Token tooling. Your buyers pay from any wallet, any chain; you settle on Solana in under a second.

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

Simple Token Launch

Safe Token-2022 planning: metadata, authority policy, compatibility, vanity estimate, and public API preflight.

Plan first, sign later. No private keys, no browser-side vanity secrets.

createTokenLaunchPlanToken-2022

Full Token Launch Matrix

Compare compatibility-first, extension-aware, launch curve, liquidity, airdrop, and vanity launch profiles.

A cleaner planner for agents and launch teams choosing the right route.

tokenLaunchprofilesrisk

P-Token Runtime Tools

Profile SPL runtime savings, CPI batching, wrapped SOL cleanup, rent recovery, and indexer readiness.

User-facing tooling for token-heavy Solana apps before anyone signs.

P-Tokenruntimebatch

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)}
/>

Need the product overview first? Start with Conduit Connect, then come back here for runnable checkout, token launch, and P-Token examples.