Functions.with_declarer_contract_name()

with_declarer_contract_name(name: str, sensitivity: bool = True) → Functions

Adds a filter to get functions that have direct declarer contract with the given name.

Example

from glider import *

def query():
  
  # Fetch a list of functions with declarer contract name 'Vault'
  functions = Functions().with_declarer_contract_name('Vault').exec(5)

  return functions

Output

Last updated