Fiat
Bank transfer and OPay (NGN), plus card checkout - built into the modal.
The drop-in checkout SDK for Sui - one package, one modal, every major way to pay. You integrate once; customers pay how they like.
Everything merchants need to accept money and settle on Sui, without building a payment stack from scratch.
Bank transfer and OPay (NGN), plus card checkout - built into the modal.
Sui wallet and outPay in the same flow - no second integration.
Payouts and receipts on Sui when checkout completes - handled for you.
A quick look at the SDK surface you import from npm.
Add SuiOutKit to your app or storefront.
Pass the Sui address where you want to receive settlement.
import { SuiOutKit } from "suioutkit";
const sdk = new SuiOutKit({
merchantAddress: "0x...",
// mode: "local", // optional, local dev
// mode: "live", // optional, production (default)
}); Create a session and launch the modal - or use wrapButton for a one-liner.
sdk.initCheckout({
amount: 45000,
currency: "NGN",
// coinType: "0x2::sui::SUI", // optional settlement coin override
// metadata: { orderId: "..." },
});