refactor: rm callback verifier dispatcher
This commit is contained in:
10
foundry/interfaces/ICallback.sol
Normal file
10
foundry/interfaces/ICallback.sol
Normal file
@@ -0,0 +1,10 @@
|
||||
// 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);
|
||||
}
|
||||
Reference in New Issue
Block a user