> 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/callables/callables.with_declarer_contract_name.md).

# Callables.with\_declarer\_contract\_name()

`with_declarer_contract_name(`*`name: str, sensitivity: bool = True`*`) →` [`Callables`](/glider-ide/api/callables.md)

## Function Example

### Example Query

```python
from glider import *


def query():
  # Retrieve the contracts of a list of functions
  contracts = Functions().with_declarer_contract_name("TestToken").exec(2)

  # Return the first five contracts
  return contracts[:5]
```

### Query Output&#x20;

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

## Modifier Example

### Example Query

```python
from glider import *


def query():
  # Retrieve the contracts of a list of modifiers
  contracts = Modifiers().with_declarer_contract_name("TestToken").exec(2)

  # Return the first five contracts
  return contracts[:5]
```

### Query Output

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