# Staking Reward Simulators

**Implementation Details**

**Class Names**

| Model Name              | Parameters Class          | Data Class         |
| ----------------------- | ------------------------- | ------------------ |
| StakingRewardSimulators | StakingRewardsQueryParams | StakingRewardsData |

**Import Statement**

```python
pythonCopyEditfrom satoshi_terminal.models.staking_reward_simulators import (
    StakingRewardSimulators,
    StakingRewardsQueryParams,
    StakingRewardsData,
)
```

***

**Parameters**

| Name                  | Type  | Description                                             | Default | Optional |
| --------------------- | ----- | ------------------------------------------------------- | ------- | -------- |
| staking\_protocol     | str   | Name of the staking protocol (e.g., Lido, Rocket Pool). | None    | False    |
| staked\_amount        | float | Amount of tokens to simulate staking rewards for.       | None    | False    |
| reward\_time\_horizon | int   | Time horizon (in days) for reward simulations.          | 30      | True     |

***

**Data**

| Name                  | Type     | Description                                                |
| --------------------- | -------- | ---------------------------------------------------------- |
| staking\_protocol     | str      | Name of the staking protocol analyzed.                     |
| estimated\_rewards    | float    | Projected staking rewards over the specified time horizon. |
| annual\_yield         | float    | Annual percentage yield (APY) for the protocol.            |
| protocol\_risk\_score | float    | Risk score (0-100) for the staking protocol.               |
| timestamp             | datetime | Timestamp of the simulation.                               |

***

**Key Features**

* **Reward Projections:** Provides accurate estimates of staking rewards based on user input.
* **APY Analysis:** Highlights yield rates and compares them across protocols.
* **Risk Assessment Integration:** Includes risk scores for staking protocols to aid decision-making.


---

# 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.satoshiterminal.io/resources/copy-of-defi-analytics/monitoring-and-tracking/staking-reward-simulators.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.
