Call.get_call_value()
Returns the Value representing the "value" (ether sent) during the external call
(bool success, ) = recipient.call{value: amount}("");from glider import *
def query():
instructions = (
Instructions()
.low_level_function_calls()
.exec(1)
)
for ins in instructions:
print(ins.get_value().get_callee_values()[0].get_call_value())
print(ins.get_value().get_callee_values()[0].get_call_value().expression)
return instructions
Last updated