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.
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.
Pay once, unlock forever. No account, no email, no newsletter trap.
Micropayments that don't need a cookie banner.
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.
Monthly USDC billing with HMAC-signed webhook extension. Stripe-shaped, Solana-settled.
Subscriptions that clear before Stripe's ACH even wakes up.
OBS-embeddable overlay. Chat tips from any wallet, you see the animation before they hit enter.
Twitch-style tipping on 400ms rails.
Recurring USDC billing. Weekly, monthly, yearly. Prorated first period and trial-day support built in.
Stripe-shaped, Solana-settled. New in v0.3.
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.
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.
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.
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.
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.
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.
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.
// 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)}
/>