Playground

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.

Buy Crypto

Inline component that allows users to buy any currency.
Customize theme, currency, amounts, payment methods and more.

Code
import { BuyWidget } from "thirdweb/react";

function App() {
  return (
    <BuyWidget
      client={THIRDWEB_CLIENT}
      title="Get Funds"
      tokenAddress={NATIVE_TOKEN_ADDRESS}
      chain={arbitrum}
      amount={toWei("0.002")}
    />
  );
}
Preview