> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/filters/globalfilters/globalfilters.tx_origin.md).

# GlobalFilters.TX\_ORIGIN

The TX\_ORIGIN property is used to add a filter to include or exclude functions that calls `tx.origin`.&#x20;

### Query Example

```python
from glider import *


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

### Example Output

<figure><img src="/files/tq3YeFcClgbSBaLhMyps" alt=""><figcaption></figcaption></figure>
