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.
Action required: IBC assets on Sei will become inaccessible If you hold USDC.n (USDC via Noble), USDT.kava (Kava USDT), Wormhole-bridged tokens, or any other IBC asset on Sei, you must swap, migrate, or bridge out before the governance proposal to disable inbound/outbound IBC transfers passes and is activated to avoid permanent loss of access. After this, Sei will no longer support IBC bridging of assets from Cosmos-based chains to and from Sei Network. Consult the SIP-03 Migration Guide for the full list of affected assets, required actions, and supported routes. For USDC.n specifically, see: Holders of USDC.n Need to Swap or Migrate.
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'
}
}}
/>
);
}