> For the complete documentation index, see [llms.txt](https://yupana-finance.gitbook.io/yupana-document-portal/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://yupana-finance.gitbook.io/yupana-document-portal/developer-space/ytoken-contract-methods/updateinterest.md).

# updateInterest

Updates interest rates for passed `tokenId` by call [`InterestRate`](/yupana-document-portal/developer-space/interestrate-contract.md) contract. Expect callback to [accrueInterest](/yupana-document-portal/developer-space/ytoken-contract-methods/accrueinterest.md).

{% hint style="warning" %}
This and [PriceFeed.getPrice](/yupana-document-portal/developer-space/pricefeed-contract/getprice.md) methods should be called **before** [Lending methods](/yupana-document-portal/developer-space/ytoken-contract-methods/lending-methods.md) call in the same block.
{% endhint %}

### Types

```pascaligo
type tokenId of nat // yToken tokenId related to market
```

### Usage

{% tabs %}
{% tab title="🌮   Taquito" %}

```typescript
const tokenId = 0; // or new BigNumber(0) or "0"
const yupana = await tezos.contract.at(yTokenAddress);
const operation = await yupana.methods.updateInterest(tokenId).send();
await operation.confirmation();
```

{% endtab %}

{% tab title="🐍   Pytezos" %}

```python
token_id = 0
yupana = ContractInterface.from_michelson(code) # or client.contract(contract_address)...
call = yupana.updateInterest(token_id)
opg = call.inject()
```

{% endtab %}
{% endtabs %}

### Errors

* `yToken/yToken-undefined` - token identifier is not assigned to any known yTokens.
* `yToken/cant-get-interestRate-contract(getBorrowRate)` - couldn't find `getBorrowRate` entrypoint of `interestRate` contact address.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://yupana-finance.gitbook.io/yupana-document-portal/developer-space/ytoken-contract-methods/updateinterest.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
