> 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/instructions/instructions.with_callee_signature.md).

# Instructions.with\_callee\_signature()

Adds a filter to get instructions that call a function with the given signature.

`with_callee_signature(signature: str) →` [`Instructions`](/glider-ide/api/instructions.md)

## Query Example

```python
from glider import *


def query():
  return (
    Instructions()
    .with_callee_signature("deposit(uint256)")
    .exec(2,12)
  )
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FzMBdTAi5d4f0CTfQFRIC%2Fimage.png?alt=media&amp;token=8daa9613-c507-4ae5-b57d-ab1ce472df16" alt=""><figcaption></figcaption></figure>

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FiyfICT286iVbnNhsQavy%2Fimage.png?alt=media&amp;token=7a021430-95e2-4dc3-8a99-fd66ee75270e" alt=""><figcaption></figcaption></figure>
