ISubmitHooks
Last updated
Last updated
Interface for hooks that execute before and after submit calls
Called before a submit
function beforeSubmit(bytes memory data, address guardian) external;
Parameters
data
bytes
Encoded data of the submit
guardian
address
Address of the guardian that submitted
Called after a submit
function afterSubmit(bytes memory data, address guardian) external;
Parameters
data
bytes
Encoded data of the submit
guardian
address
Address of the guardian that submitted