> 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/functions/functions.with_modifier_signature.md).

# Functions.with\_modifier\_signature()

`with_modifier_signature(`*`signature: str`*`) →` [`Functions`](/glider-ide/api/functions.md)

Adds a filter to get functions that have a modifier with the given signature.

## Example

```python
from glider import *

def query():
  
  # Fetch a list of functions with specific modifier signature
  functions = Functions().with_modifier_signature('onlyOwner(address)').exec(2)

  return functions
```

## Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FzrrUjqsl3tin9gQfbDeF%2Fimage.png?alt=media&amp;token=eb743af8-c2e5-4e14-af5f-23652c779859" alt=""><figcaption></figcaption></figure>
