GlobalFilters.TX_ORIGIN

The TX_ORIGIN property is used to add a filter to include or exclude functions that calls tx.origin.

Query Example

from glider import *


def query():
  functions = (
    Functions()
    .with_globals(GlobalFilters.TX_ORIGIN)
    .exec(1, 2)
  )
  
  return functions

Example Output

Last updated