The function adds a filter for the functions to be declared in a contract with a specific name.
Example
from glider import *
def query():
# lets say we want to take transferFrom functions, but only from ERC721 contracts and not ERC20
functions = Functions()\
.with_name('transferFrom')\
.with_declarer_contract_name('ERC721')\
.exec(3)
return functions
Example Output
As can be seen, the output consists of the same function deployed under the same address but with different contract names, two of which are not ERC721.In fact, the query worked correctly, and the last two functions are included in the result as the function that is declared in ERC721 is, in fact, being inherited by those contracts.