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