Returns true if the function is payable, otherwise returns false.
Last updated 6 days ago
is_payable() β bool
from glider import * def query(): payable_functions = ( Functions() .exec(1000) .filter(lambda x: x.is_payable()) ) return payable_functions