Files
tycho-execution/foundry/interfaces/ICallback.sol
2025-02-14 23:11:01 +05:30

11 lines
256 B
Solidity

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.26;
interface ICallback {
error UnauthorizedCaller(string exchange, address sender);
function handleCallback(
bytes calldata data
) external returns (bytes memory result);
}