Bundling Actions
Bundle several DeFi actions into a single transaction using the bundle
API.
The POST shortcuts/bundle
API converts specifications of DeFi actions into efficient calldata. This API allows chaining actions together by referencing outputs from previous operations.
The Bundle API requires a smart wallet supporting delegatecall
for most functionality. Standard EOAs (Externally Owned Accounts) will have limited functionality. Learn more about routing strategies.
In this guide, we’ll create a bundle transaction that performs a complete DeFi strategy composed out of following actions:
- convert ETH to wstETH,
- deposit it into Aave V3
- transfer the resulting aTokens to another address.
For more examples, explore the Shortcuts Library and check out the Actions Reference for all available actions.
Authentication
- Create an API key using Enso Dashboard.
- Securely store your API key and make it available in your environment:
Define your bundle actions
For our DeFi strategy, we’ll define three actions:
- Convert ETH to wstETH using the route action
- Deposit wstETH into Aave V3
- Transfer the resulting aTokens to a specified address
Explore the Actions Reference for all available actions.
Chain individual actions’ results by using useOutputOfCallAt
. This parameter references the output from a prior action by its zero-based index.
Send the bundle request
Submit the bundle to the API to get the transaction data.
The API will return a response containing:
bundle
: The bundle actions exactly as submittedtx
: A transaction object with calldata—the executable form of the calculated routeamountOut
: Expected output amountgas
: Estimated gas for the transactioncreatedAt
: Block number when the response was generated
Execute the transaction
Use the response tx
field to send the transaction on-chain.
Next steps
- Explore DeFi and Swap Routing for automated routing of DeFi strategies.
- Explore Shortcuts Library for more examples.
- Check the Actions Reference for all available actions.