As some types of calls can have, a special parameter set representing the ether value to send in the call), this function can be used to retrieve that value.
The special parameter value is being set: {value: address(this).balance}
and the function will return the Value representing the:
address(this).balance
Query Example
from glider import*defquery(): instructions =Instructions().external_calls().exec(30) results = []for instruction in instructions:for call in instruction.get_callee_values():for value in call.get_call_value():print(value.expression, value) results.append(instruction)return results