Request transaction
Bridge Transaction
Learn how to simulate cross-chain bridge transactions with the Aeon SDK.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Learn how to simulate cross-chain bridge transactions with the Aeon SDK.
AeonClient.requestSimulatedTransaction("bridge", params) (Conceptual)// Example: Queuing a dedicated bridge simulation operation
const aeonClient = new AeonClient({ simulationUrl: "..." });
aeonClient.requestSimulatedTransaction("bridge", {
sourceChain: "ethereum",
destinationChain: "polygon",
tokenAddressOnSource: "0xSOURCE_TOKEN_ADDR",
amount: "100000000000000000000", // 100 tokens with 18 decimals
recipientAddressOnDest: "0xRECIPIENT_ON_DESTINATION",
// ... other bridge specific params like slippage, bridge provider ID
});
// Later, to process and get the transaction for the source leg:
// const assembledBridgeTxData = await aeonClient.build();