> 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/value/call/call.get_contract_name.md).

# Call.get\_contract\_name()

`get_contract_name() -> str`

## Query Example

```python
from glider import *

def query():
    instructions = (
        Instructions()
        .exec(1,98)
        .filter(lambda x: x.is_call())
    )

    for ins in instructions:
        print(ins.get_value().get_contract_name())

    return instructions
```

## Output Example

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