Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/interfaces/IValidation.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {PackedUserOperation} from "@eth-infinitism/account-abstraction/interface

import {IPlugin} from "./IPlugin.sol";

interface IValidation is IPlugin {
interface IValidation {
/// @notice Run the user operation validationFunction specified by the `functionId`.
/// @param functionId An identifier that routes the call to different internal implementations, should there be
/// more than one.
Expand Down Expand Up @@ -53,4 +53,7 @@ interface IValidation is IPlugin {
bytes32 hash,
bytes calldata signature
) external view returns (bytes4);

function onInstall(bytes32 validationId, bytes calldata data) external;
function onUninstall(bytes32 validationId, bytes calldata data) external;
}