> ## Documentation Index
> Fetch the complete documentation index at: https://docs.aeon.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Bridge Transaction

> Learn how to simulate cross-chain bridge transactions with the Aeon SDK.

# Bridge Transaction

Define and simulate transactions for bridging transactions across chains using the Aeon SDK’s AeonClient.

## `AeonClient.requestSimulatedTransaction("bridge", params)` (Conceptual)

```typescript theme={null}
// 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();
```
