Returns the selector (4 bytes of keccak256 hash) of the function's or modifier's signature.
Last updated 1 month ago
hashed_signature() → int
from glider import * def query(): functions = Functions().exec(3) for func in functions: print({"function": func.name, "sig": func.hashed_signature()}) return functions