How do the chainlink keepers call performUpkeep? #588
-
Sorry if this is a stupid question, but how exactly does the chainlink keeper call performUpkeep? I am guessing that when we inherit from the keeper contract that means it has the ability to call its inherited function? I realize I don't fully understand how inheritance works in this regard could someone please explain this to me? |
Beta Was this translation helpful? Give feedback.
Answered by
PatrickAlphaC
Jun 29, 2022
Replies: 1 comment
-
Chainlink keepers look for 2 functions:
https://docs.chain.link/docs/chainlink-keepers/introduction/ The Chainlink Keepers call |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
PatrickAlphaC
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Chainlink keepers look for 2 functions:
checkUpkeep
to see if it's time to executeperformUpkeep
to exectuehttps://docs.chain.link/docs/chainlink-keepers/introduction/
The Chainlink Keepers call
performUpkeep
the same way you'd call it