Skip to content

Commit

Permalink
Fix dead link v3 (#52)
Browse files Browse the repository at this point in the history
* replace dead link in chainlink integration docs

* fix dead link + remove DS_Store

* fix dead link + remove DS_Store

* fix dead link + remove ds_store

* Update .gitignore

Co-authored-by: Santiago Palladino <spalladino@gmail.com>
  • Loading branch information
alexbehrens and spalladino authored Jun 15, 2021
1 parent 269a684 commit c5993f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
build
build
.DS_Store
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/guide-chainlink.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ You will need LINK tokens in order to pay for executions on your Upkeep contract

## Implementing the Upkeep interface

The first step for registering your contract as an Upkeep is to have it implement the required Upkeep interface, which consists of the https://docs.chain.link/docs/kovan-keeper-network-beta#how-to-register-upkeep[following two methods]:
The first step for registering your contract as an Upkeep is to have it implement the required Upkeep interface, which consists of the https://docs.chain.link/docs/chainlink-keepers/compatible-contracts/[following two methods]:

- `checkUpKeep`: This function will be called every block (about ~15 sec) & 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.
- `performUpkeep`: This function is the actual upkeep that the contract wants servicing. This function is called only if checkUpKeep has returned true.
Expand Down

0 comments on commit c5993f8

Please sign in to comment.