import sys from slither.slither import Slither if len(sys.argv) != 2: print('python.py function_writing.py functions_writing.sol') exit(-1) # Init slither slither = Slither(sys.argv[1]) # Get the contract contract = slither.get_contract_from_name('Contract') # Get the variable var_a = contract.get_state_variable_from_name('a') # Get the functions writing the variable functions_writing_a = contract.get_functions_writing_variable(var_a) # Print the result print('The function writing "a" are {}'.format([f.name for f in functions_writing_a]))