Call.get_call_qualifier()
Returns the call's qualifier (target) is exists
(bool success_, ) = feeCollector_.call{ value: feeAmount_, gas: 1000 }("");feeCollector_Query Example
from glider import *
def query():
instructions = (
Instructions()
.low_level_external_calls()
.exec(1000)
.filter(lambda instruction : instruction.get_parent().get_contract().name == "PoolEth")
)
for ins in instructions:
print(ins.get_value().get_callee_values()[0].get_call_qualifier())
print(ins.get_value().get_callee_values()[0].get_call_qualifier().expression)
return instructionsExample Output

Last updated