Bundle a list of actions
Returns a single transaction bundling the submitted actions. For available actions, see /actions
endpoint.
POST
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Chain ID of the network to execute the transaction on
Ethereum address of the wallet to send the transaction from
Routing strategy to use
Available options:
delegate
, router
Ethereum address of the receiver of the tokenOut
Example:
"0xd8da6bf26964af9d7eed9e03e53415d37aa96045"
Ethereum address of the spender of the tokenIn
Example:
"0xd8da6bf26964af9d7eed9e03e53415d37aa96045"
Body
application/json · object[]
Protocol to interact with
Example:
"enso"
Available options:
approve
, borrow
, bridge
, deposit
, singledeposit
, multideposit
, tokenizedsingledeposit
, tokenizedmultideposit
, multioutsingledeposit
, depositclmm
, harvest
, permittransferfrom
, redeem
, singleredeem
, multiredeem
, tokenizedsingleredeem
, tokenizedmultiredeem
, redeemclmm
, repay
, swap
, transfer
, transferfrom
, route
, call
, split
, merge
, balance
, minAmountOut
, slippage
Example:
"route"
Example:
{
"tokenIn": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
"tokenOut": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84",
"amountIn": "100000000000",
"slippage": "300",
"fee": ["100"],
"feeReceiver": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045"
}