Applications
interface IApplication {
function onExecuteJob(uint256 _index, address _owner) external;
function onCreatedJob(uint256 _index, bytes1 _executionModule, address _owner, bytes calldata _inputs) external;
function onDeletedJob(uint256 _index, address _owner) external;
}Last updated