From 6ce38ac512ea51d09ee016546a238146d2718b71 Mon Sep 17 00:00:00 2001 From: Lawrence Forman Date: Thu, 7 Mar 2024 09:47:07 -0500 Subject: [PATCH] Update README.md Co-authored-by: Justin Schuldt --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0597f29..2aa0d0d 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Projects register bounties with the HoneyPause contract via the `add()` function 1. A bounty token and amount, but no deposit*. 2. The address of a custom **Verifier** contract which asserts onchain state invariants that would be violated in the case of an exploit. Examples could be an AMM's reserve violating the constant product formula or a lending protocol incurring bad debt. -3. The address of a custom **Pauser** contract which is authorized to pause/freeze the protocol when called by the HoneyPause contract. +3. The address of a custom [`Pauser`](./src/HoneyPause.sol#L28) contract which is authorized to pause/freeze the protocol when called by the HoneyPause contract. 4. The address of a custom [`Payer`](./src/HoneyPause.sol#L42) contract which must pay the bounty to the whitehat when called by the HoneyPause contract. 5. An operator account for the bounty, who will be able to modify the bounty.