Adds a filter to get functions that have modifiers with all the given names.
Example
from glider import*defquery(): functions =Functions().with_all_modifier_names(['lock', 'onlyOwner']).exec(1)return functions
Output
"root":{3 items"contract":string"0xde2d96e1dd54ee638c7570601eaa4bd264beee21""contract_name":string"MonoMigrator""sol_function":solidityfunctionrefund(address accountAddress,address tokenAddress)externallockonlyOwner {// Fetch amount of tokens to returnuint256 amountToReturn = tokensMigratedByAccount[tokenAddress][ accountAddress ]; tokensMigratedByAccount[tokenAddress][accountAddress] =0; // Set user token balance to zero tokensMigratedByToken[tokenAddress] -= amountToReturn; // Decrement global token amount migrated for this tokenIERC20(tokenAddress).transfer(accountAddress, amountToReturn); // Return tokens to user }}