Body
Request model for generating EIP-712 typed data for batched Safe transactions.
This endpoint accepts a list of DeFi operations and returns typed data that can be signed by the Safe owner. The signature can then be used in a subsequent call to execute the batched transaction.
arbitrum, base, ethereum The address of the transaction sender.
"0x29F20a192328eF1aD35e1564aBFf4Be9C5ce5f7B"
List of DeFi operations to batch into a single Safe transaction
[
{
"body": {
"action_type": "SET_ALLOWANCE",
"amount": "10",
"contract": "AaveV3Pool",
"token": "USDC"
}
},
{
"body": {
"action_type": "AAVE_SUPPLY",
"amount": "10",
"token": "USDC"
}
}
]Determines whether to estimate gas costs for transactions, also verifying that the transaction can be successfully executed.
Response
Successful Response