# Depositing EURS in the Finance app

The [EURS token contract](https://etherscan.io/address/db25f211ab05b1c97d595516f45794528a807ad8#contracts) has a fee mechanism that might not be playing nicely with how the Aragon frontend calculates token approvals.

The Finance app's `Finance.deposit()` does a `transferFrom()` under the hood. The EURS token, on `transferFrom()`, transfers:

1\. The requested amount from the holder to the finance app\
2\. A set "fee" amount from the holder to the "fee collector"

Both the requested amount and the set fee amount require approvals from the holder for the Finance app (since Finance is the contract making the `transferFrom()` call), but right now the Finance app only requests approval for the first transfer. So when a user attempts to deposit EURS using the Finance app, the fee amount hasn't been approved and the second transfer for the fee fails, reverting the entire transaction.

It should be noted this "fee" mechanism implemented by EURS is not a part of the ERC20 standard. The EURS token claims to be "ERC20-compliant", but adjusting the `transferFrom()` like it has for this mechanism makes EURS incompatible with the ERC20 standard. Under the ERC20 standard there is a 1:1 approval to transfer ratio, but the extra fee transfer implemented by EURS changes this assumption and will likely break a lot of existing token-handling contracts.

There is no way to work around this right now using just the Aragon frontend client because the Finance contract also assumes a 1:1 approval to transfer ratio. Users can send EURS directly to their organization's Vault app address and then make a withdrawal using the [aragonCLI](https://hack.aragon.org/developers/tools/aragoncli).


---

# Agent Instructions: 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:

```
GET https://legacy-docs.aragon.org/faq/products/aragon-client/depositing-eurs-in-the-finance-app.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
