Instruction.is_storage_write()
Returns True if the instruction is a storage write instruction, else returns False. A storage write instruction writes to the state variable of a contract
Query Example
from glider import *
def query():
return Instructions().exec(30).filter(lambda x: x.is_storage_write())Output Example

Last updated