What are Hooks?

Hooks are functions triggered at specific stages of a transaction, allowing for the integration of bespoke logic and actions before or after transfers.

These enable the customization of SuperBridge and SuperToken to meet specific requirements, such as token investments or state variable updates, by executing custom logic at predetermined points in the transaction process.

A hook can be written by following the IHook interface. It should contain the 6 functions that are called at various stages of bridging.

<aside> 💡 Hooks are part of our modular approach and allow for customizable and extendable functionality within smart contracts. Create your own hooks to change how the contract behaves in response to specific events or conditions.

</aside>

Available Hook Contracts

Some frequently used hooks are included in the core project. Developers can also write custom hooks tailored to their use case. Available hooks contracts include:

Hook Lifecycle

Different hooks are called at different times in the flow of a bridging transaction. Here is the lifecycle of the hooks:

  1. srcPreHookCall: Executes before initiating a transfer from the source. It allows for custom logic to be applied to the source asset before the transfer begins.
  2. srcPostHookCall: Executes after a transfer from the source has been completed. This hook enables additional actions or checks to be performed after the source asset has been transferred.
  3. dstPreHookCall: Executes before initiating a transfer to the destination. Similar to srcPreHookCall, but for the destination asset, allowing for pre-transfer custom logic on the receiving end.
  4. dstPostHookCall: Executes after a transfer to the destination is completed. It allows for post-transfer actions or validations on the destination asset.
  5. preRetryHook: Executes before retrying a failed transaction. This hook provides a chance to adjust parameters or perform cleanup before attempting the transaction again.
  6. postRetryHook: Executes after retrying a failed transaction. It allows for handling the outcomes of the retry attempt, whether successful or not, and to cache or clean up data accordingly.

<aside> ⚠️ For any contracts functioning as hooks, they need to follow the interface of the IHook contract.

</aside>