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
Original file line number Diff line number Diff line change
Expand Up @@ -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 <a href="https://forms.gle/6syh43t7WjMGqdTA6" target="_blank">this Google Form</a>.
2. Once you have deployed the above contract on Kovan, please send us the following details on <a href="mailto: [email protected]" target="_blank">[email protected]</a>.
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.
Expand Down Expand Up @@ -121,5 +121,4 @@ interface KeeperCompatibleInterface {
}
```

- The contract & other code is undergoing audit & reviews and will be shared once completed.
- Chainlink Keeper Registry Contract: <a href="https://kovan.etherscan.io/address/0x42dD7716721ba279dA2f1F06F97025d739BD79a8#code" target="_blank">`0x42dD7716721ba279dA2f1F06F97025d739BD79a8`</a>