> 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/callable/callable.new_contract_instructions.md).

# Callable.new\_contract\_instructions()

`new_contract_instructions() →` [`Instructions`](/glider-ide/api/instructions.md)

## Query Example

```python
from glider import *

def query():
  functions = Functions().with_name("deploy").exec(20)

  deployment_instructions = []
  for func in functions:
    for inst in func.new_contract_instructions().exec():
      deployment_instructions.append(inst)
      
  return deployment_instructions
```

## Output Example

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