Modifiers
Last updated
function myFunction(address token) public onlyWhitelistedToken(token) {
// Only executable with a whitelisted token.
}function myFunction() public lock() {
// Only executable if no other function is currently executing.
}function myFunction() public inExec() {
// Only executable if called from within the execution scope.
}function myFunction(address token) public poke(token) {
// Only executable if the interest rate of the token has been accrued.
}