Payments Features
- Let users pay for assets in any EVM token on any EVM chain
- Automatic cross-chain routing for seamless transactions
- Earn from day one with fee-sharing mechanism
- Access ready-made UI component for easy implementation
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Comprehensive guide on enabling onramps, swapping & bridging on Any EVM Chain on Sei. Learn key concepts, commands, and best practices.
import { createThirdwebClient } from 'thirdweb';
import { PayEmbed } from 'thirdweb/react';
import { createWallet } from 'thirdweb/wallets';
import { sei } from 'thirdweb/chains';
const client = createThirdwebClient({
clientId: '....'
});
function Example() {
return (
<PayEmbed
client={client}
payOptions={{
mode: 'fund_wallet',
prefillBuy: {
chain: sei,
amount: '0.01'
}
}}
/>
);
}