Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typos #148

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ The protocol currently offers **7% APR** to USDC holders, on Linea and Arbitrum

You can browse our high-level public documentation at [https://docs.ledgity.finance](https://docs.ledgity.finance).

If you are interested in the technical documentaton of this codebase, please contact [@LilaRest](https://t.me/LilaRest) on Telegram or drop us an email at [[email protected]](mailto:[email protected]).
If you are interested in the technical documentation of this codebase, please contact [@LilaRest](https://t.me/LilaRest) on Telegram or drop us an email at [[email protected]](mailto:[email protected]).
2 changes: 1 addition & 1 deletion contracts/src/LDY.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {ERC20Burnable} from "@openzeppelin/contracts/token/ERC20/extensions/ERC2
* governance scenarios, and compatibility with 3rd party DApps.
*
* It is non-upgradeable, non-ownable, non-pausable, non-mintable, and non-restrictable.
* It implements nothing more than what is provided by its OpenZepellin ancestors.
* It implements nothing more than what is provided by its OpenZeppelin ancestors.
*
* Moreover, to eliminate the need for ownership and complex vesting functions, the
* entire supply is minted at deployment-time. Vesting of allocated tokens is then
Expand Down
4 changes: 2 additions & 2 deletions contracts/src/LDYStaking.sol
Original file line number Diff line number Diff line change
Expand Up @@ -405,8 +405,8 @@ contract LDYStaking is BaseUpgradeable, ReentrancyGuardUpgradeable {
}

/**
* @dev tierOf() function that always return that the given account is not
* elligible to any LDY staking tier, except if the account is in the
* @dev tierOf() function that always returns that the given account is not
* eligible to any LDY staking tier, except if the account is in the
* highTierAccounts mapping.
* @param account The account to check the tier of.
*/
Expand Down