ISafeExecutor: Interface for the SafeExecutor contract used by SushiRouter
ISafeExecutor.sol
execute(address,bytes)
executeMultiple(tuple[])
[
{
"inputs": [
{
"internalType": "address",
"name": "executor",
"type": "address"
},
{
"internalType": "bytes",
"name": "executorData",
"type": "bytes"
}
],
"name": "execute",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [
{
"components": [
{
"internalType": "address",
"name": "executor",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"internalType": "struct ISushiRouter.Executor[]",
"name": "executors",
"type": "tuple[]"
}
],
"name": "executeMultiple",
"outputs": [],
"stateMutability": "payable",
"type": "function"
}
]
Was this page helpful?