⚛️
Add crypto payments to your React project in under 10 minutes.
Get Your API KeyInstall the Zateway SDK: npm install @zateway/sdk
Import the ZatewayCheckout component in your React app
Pass your API key and payment amount as props
Handle the onSuccess callback to confirm payment
Style the checkout button to match your app design
import { ZatewayCheckout } from '@zateway/sdk';
function PaymentPage() {
return (
<ZatewayCheckout
apiKey="your-api-key"
amount={25.00}
currency="USDT"
chain="polygon"
onSuccess={(txHash) => {
console.log('Payment confirmed:', txHash);
}}
/>
);
}Get your API key and start accepting crypto payments in minutes.
Get Started Free