> 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.block_coinbase.md).

# GlobalFilters.BLOCK\_COINBASE

The BLOCK\_COINBASE property is used to add a filter to include or exclude functions that calls `block.coinbase`.&#x20;

### Query Example

```python
from glider import *


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

### Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2Fw34ds56MdX8g5Njlxepu%2FScreenshot%202025-08-28%20at%2012.28.03%E2%80%AFPM.png?alt=media&amp;token=7a265be7-6442-4cb0-8ed6-02716090422d" alt=""><figcaption></figcaption></figure>
