What tasks can be automated?
Functions that can be automated should follow these properties:
- They need to be functions that are usually called by the development team or external keepers, not "user facing" functions called by users directly
- They need to be either
public
orexternal
- They do not have access restrictions like an
onlyOwner
modifier, unless the Automate contract is a whitelisted address - They do not require
msg.sender
to betx.origin
Last modified 6mo ago