# Coupon Token

{% hint style="info" %}
**Source:** `src/fira_bonding/core/YieldContracts/CouponToken.sol`
{% endhint %}

## Token details

| Property | Value              |
| -------- | ------------------ |
| Standard | ERC-20 (FiraERC20) |
| Symbol   | CT                 |
| Decimals | 6                  |
| Permit   | No                 |

## Key view functions

| Function              | Returns                                          |
| --------------------- | ------------------------------------------------ |
| `bcIndexStored()`     | Last cached BC index                             |
| `bcIndexCurrent()`    | Current BC index (may trigger update)            |
| `isExpired()`         | Whether BT/CT have expired                       |
| `FW()`                | Associated FW token address                      |
| `BT()`                | Associated BT token address                      |
| `getPostExpiryData()` | Snapshot data from first post-expiry interaction |

## Interest tracking

Interest is distributed on every transfer via `_beforeTokenTransfer`. Users claim via `redeemDueInterestAndRewards`. The `interestFeeRate` is deducted at claim time.

## Related pages

* [CouponToken (Protocol Contract)](https://docs.fira.money/developers/protocol-contracts/yield-contracts/coupon-token)
* [Coupon Token (Feature)](https://docs.fira.money/developers/features/coupon-token-ct)


---

# 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://docs.fira.money/developers/token-contracts/coupon-token.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.
