# updateInterest

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

{% hint style="warning" %}
This and [PriceFeed.getPrice](https://yupana-finance.gitbook.io/yupana-document-portal/developer-space/pricefeed-contract/getprice) methods should be called **before** [Lending methods](https://yupana-finance.gitbook.io/yupana-document-portal/developer-space/ytoken-contract-methods/lending-methods) 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.
