From 2874f6514fa3631b122394420f39d6c124ddf9bb Mon Sep 17 00:00:00 2001 From: Avneet Singh Date: Wed, 2 Jun 2021 18:59:23 -0700 Subject: [PATCH] Update doc --- .../hackathon-resources/kovan-keeper-network-beta.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/Developer Reference/hackathon-resources/kovan-keeper-network-beta.md b/docs/Developer Reference/hackathon-resources/kovan-keeper-network-beta.md index 04823bcb509..6c6d9501b3b 100644 --- a/docs/Developer Reference/hackathon-resources/kovan-keeper-network-beta.md +++ b/docs/Developer Reference/hackathon-resources/kovan-keeper-network-beta.md @@ -52,7 +52,7 @@ Below are the steps to register upkeep on the Chainlink registry that registered 1. First of all, create a contract that implements the interface as defined below. There are two main functions. 1. `checkUpKeep`: This function will be called at regular intervals & the boolean return value decides if the contract needs to be serviced at this time or not. If the upkeep is required, you can also return bytes that will be passed to `performUpkeep` function. 2. `performUpkeep`: This function is the actual upkeep that the contract wants servicing. This function is called only if `checkUpKeep` has returned true. -2. Once you have deployed the above contract on Kovan, please send us the following details using this Google Form. +2. Once you have deployed the above contract on Kovan, please send us the following details on keeper@chain.link. 1. Contract address implementing the upkeep interface 2. Admin address - to cancel upkeep and withdraw remaining funds 3. Gas limit needed for `performUpkeep`. Currently, there is a minimum limit of 2300 & a maximum limit of 2500000. @@ -121,5 +121,4 @@ interface KeeperCompatibleInterface { } ``` -- The contract & other code is undergoing audit & reviews and will be shared once completed. - Chainlink Keeper Registry Contract: `0x42dD7716721ba279dA2f1F06F97025d739BD79a8`