> For the complete documentation index, see [llms.txt](https://docs.satoshiterminal.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.satoshiterminal.io/resources/copy-of-defi-analytics/monitoring-and-tracking/staking-reward-simulators.md).

# 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.
