TheDocumentation Index
Fetch the complete documentation index at: https://developers.particle.network/llms.txt
Use this file to discover all available pages before exploring further.
Universal Accounts SDK lets you send tokens to any address across supported chains using the createTransferTransaction() method. Like other transactions, transfers don’t require the user to hold assets or gas tokens on the destination chain—liquidity and gas are abstracted behind the scenes.
Once you construct the transfer, the SDK returns a rootHash to sign. You sign it with the connected EOA (e.g., from Particle Auth), then call sendTransaction() to broadcast:
For native assets like
ETH, the token address will be 0x0000000000000000000000000000000000000000.TransactionResult will include the transaction ID, as well as metadata like token movements and fee breakdowns. You can find more details about this in the sendTransaction() Response Structure page.
View a Sample Transfer Transaction
See how to send cross-chain transfers in a demo Next.js app leveraging Universal Accounts and Particle Auth.
Next steps
Custom Payable Transaction
Call any contract —
createUniversalTransaction().sendTransaction() Response
Full breakdown of the
TransactionResult object.