The easiest way for users to fund their wallets
Onramp users with credit card & cross-chain crypto payments — and generate revenue for each user transaction.
Top Up
Inline component that allows users to buy any currency.
Customize theme, currency, amounts, payment methods and more.
import { PayEmbed } from "thirdweb/react";
function App() {
return (
<PayEmbed
client={client}
payOptions={{
mode: "fund_wallet",
metadata: {
name: "Get funds",
},
prefillBuy: {
chain: base,
amount: "0.01",
},
// ... theme, currency, amounts, payment methods, etc.
}}
/>
);
}