Actions
Actions are interactions with DeFi protocols Enso supports.
The Bundle API supports a variety of actions to build complex DeFi strategies. This reference guide explains all available actions and their parameters.
To get the up-to date list of available actions and parameters, use the Metadata API endpoint: GET /standards/actions
.
Chaining Actions
Bundle API allows using output of one action as the input for another.
To reference outputs from previous actions use the useOutputOfCallAt
syntax, specifying the index of the action in the bundle.
Core Actions
route
The route action determines the optimal path to swap one token for another across multiple DeFi protocols supported by Enso.
Parameter | Description |
---|---|
tokenIn | Address of the token to send. For ETH, use 0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee |
tokenOut | Address of the token to receive |
amountIn | Amount of tokenIn to send in wei |
slippage | (Optional) Slippage tolerance in basis points (100 = 1%) |
deposit
Deposits tokens into a protocol to receive a position token or add liquidity.
Parameter | Description |
---|---|
tokenIn | Address of token to deposit. Can be an array for multiple tokens |
tokenOut | Address of token to receive. Can be an array for multiple tokens |
amountIn | Amount of tokenIn to deposit in wei |
primaryAddress | Address of the protocol contract to interact with |
recipient | (Optional) Address to receive the output tokens if not the caller |
withdraw
Withdraws tokens from a DeFi position.
Parameter | Description |
---|---|
primaryAddress | Address of the protocol contract to interact with |
tokenIn | Address of the token to withdraw from |
tokenOut | Address of the token to receive |
amountOut | Amount to withdraw in wei |
borrow
Borrows a token from a lending protocol using a deposited token as collateral.
Parameter | Description |
---|---|
collateral | Address of the token used as collateral |
tokenOut | Address of the token to borrow |
amountOut | Amount to borrow in wei |
primaryAddress | Address of the lending pool |
repay
Repays a loan on a lending protocol.
Parameter | Description |
---|---|
tokenIn | Address of token to repay |
amountIn | Amount to repay in wei |
primaryAddress | Address of the lending pool |
harvest
Harvests rewards from yield-generating positions.
Parameter | Description |
---|---|
token | Address of token to harvest rewards for |
primaryAddress | Address of the contract to interact with (e.g., gauge) |
redeem
Redeems underlying assets from a protocol by exchanging shares or tokens. Use it to exit a position and retrieve the desired tokens.
Parameter | Description |
---|---|
tokenOut | Address of token to receive upon redemption |
amountIn | Amount of shares/tokens to redeem |
primaryAddress | Address of the contract to interact with |
recipient | (Optional) Address to receive the output tokens if not the caller |
Token Management Actions
transfer
Transfers tokens to a specified address.
Parameter | Description |
---|---|
token | Address of the token to transfer |
receiver | Address of the recipient |
amount | Amount to transfer in wei |
transferFrom
Transfers tokens from a specified address to another address.
Parameter | Description |
---|---|
token | Address of the token to transfer |
sender | Address of the sender |
receiver | Address of the recipient |
amount | Amount to transfer in wei |
approve
Approves a spender to use tokens.
Parameter | Description |
---|---|
token | Address of the token to approve |
spender | Address of the spender |
amount | Amount to approve in wei |
permitTransferFrom
Approves and transfers a token that supports permit in a single step using a signature. A permit signature needs to be generated offchain and passed to the API.
Parameter | Description |
---|---|
token | Address of the token to transfer |
amount | Amount to transfer in wei |
sender | Address of the sender |
receiver | Address of the recipient |
nonce | Nonce value to prevent signature replay |
deadline | Timestamp after which the signature is invalid |
signature | The EIP-2612 permit signature |
Advanced Actions
call
Makes an arbitrary call to any contract, allowing for custom interactions. This is useful for executing complex logic or interacting with contracts that are not directly supported by the Enso API.
Parameter | Description |
---|---|
address | Address of the contract to call |
method | Name of the method to call |
abi | ABI signature of the method |
args | Array of arguments to pass to the method |
The sample below routes USDC to ETH and then calls a custom method on a contract to calculate a 70% (7000
) of the output amount before transfering to the first receiver, and then does the same for the remaining 30% (3000
).
Protocol Support
The Bundle API supports a wide range of protocols. Some common ones include:
aave-v2
,aave-v3
: Aave lending/borrowingbalancer-v2
: Balancer liquidity poolscurve
: Curve Finance stable swaps and gaugescurve-gauge
: Curve gauges for stakingerc20
: Standard token operationserc4626
: ERC4626 vaultsenso
: General Enso operations including route and arbitrary callspermit2
: Uniswap’s Permit2 operations
For a complete list of supported protocols, use the Projects API endpoint: GET /projects/protocols
.