Returns True if the instruction is an assembly instruction, otherwise returns False. Assembly instructions are written in Yul in an assembly block in a solidity contract
Query
from glider import*defquery(): assembly = []#fetch a list of instructions instructions =Instructions().exec(150)for instruction in instructions:#check if an instruction is an assembly instructionif(instruction.is_assembly()): assembly.append(instruction)return assembly