# LockMultiplierMath

This library provides logic to compute  multipliers based on how long a user locks their staked tokens (stETH). The longer the lock duration, the higher the multiplier — encouraging users to stake for longer periods and reinforcing long-term alignment with the protocol.

## Read functions

### getLockPeriodMultiplier

The function to calculate the lock period multiplier (power factor).

```solidity
function getLockPeriodMultiplier(
  uint128 start_,
  uint128 end_
) external pure returns (uint256)
```

| Name     | Description                                              |
| -------- | -------------------------------------------------------- |
| `start_` | The unix timestamp. Start calculate from this timestamp. |
| `end_`   | The unix timestamp. End calculate to this timestamp.     |


---

# 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://gitbook.mor.org/smart-contracts/documentation/distribution-protocol/v7-protocol/contracts/libs/lockmultipliermath.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.
