Tooling
ModuleKit
Reference
Building
Hooks
Onpostcheck

⚠️ Deprecation Notice

ModuleKit was developed by Rhinestone and is no longer actively supported. If you're building modules and need assistance, reach out to Rhinestone at gm@rhinestone.dev


title: "onPostCheck"

A virtual function called after executions have occured on the account. Overwrites from ERC7579HookDestruct.

Usage

function onPostCheck(address account, bytes calldata hookData) internal virtual override {
    return;
}

Parameters

account

  • Type: address

The address of the account that the executions were executed from.

hookData

  • Type: bytes

The data from the pre-execution check.

Returns

None