Instruction.is_throw()
Returns True if the instruction is throw instruction, otherwise returns False.
Query Example
from glider import *
def query():
return (
Functions()
.with_name("BliBliToken")
.exec(1)
.instructions()
.exec()
.filter(lambda x: x.is_throw())
) Example Output

Last updated