https://github.com/hardworking-toptal-dev/dao-lpstaking
DAO-liquild staking contract(NEAR)
https://github.com/hardworking-toptal-dev/dao-lpstaking
dao liquid-staking near-protocol
Last synced: about 1 year ago
JSON representation
DAO-liquild staking contract(NEAR)
- Host: GitHub
- URL: https://github.com/hardworking-toptal-dev/dao-lpstaking
- Owner: hardworking-toptal-dev
- License: other
- Created: 2024-04-11T17:20:24.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-08-12T05:52:33.000Z (almost 2 years ago)
- Last Synced: 2025-03-28T15:50:02.271Z (about 1 year ago)
- Topics: dao, liquid-staking, near-protocol
- Language: Rust
- Homepage: https://www.metapool.app
- Size: 1.24 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Meta Pool DAO
# NEAR Blockchain Implementation
## Overview
What is Meta-Pool and other non-Technical Documentation
* [Meta Pool Docs](https://docs.metapool.app)
## Audits
* [BlockSec Audit v1.1, March 1th, 2022](https://www.metapool.app/MetaPool_BlockSec_Audit_signed_v1.1.pdf)
* [BlockSec Audit, staking wNEAR with Meta Pool on Aurora, March 20th, 2022](https://370551154-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MkhZe3MGAhTcvTLTzJF-887967055%2Fuploads%2FXE1zBF4pyaWCoR1zlKwW%2Fmain_signed.pdf?alt=media&token=5068e60d-2905-4d4f-a1cb-9d5fa4c607a3)
## Technical Documentation
* [Technical Notes](https://narwallets.github.io/meta-pool/technical-notes)
* [NEAR Live Contract Review (video)](https://www.youtube.com/watch?v=4gB-6yoas74)
### Change Log
#### `2.0.0` - Dec 2022
- Added active rebalance, to supoprt vote.metapool.app
#### `1.2.1` - May 2022
- NEAR gas computation will change, fix gas computation on dao upgrade instruction
#### `1.2.0` - March 2022
- All audit recommendations implemented
- set all staking pools weights in a single call
#### `1.1.0` - Dec 2021
- new fn Realize_meta_massive to auto farm $META
#### `1.0.0` - Apr 2021
- Full functionality
- Simplified user flow
- Desk check testing https://github.com/Narwallets/sc-desk-check-parser
#### `0.1.0` - Nov 2020
- Initial version based on core-contracts/lockup and core-contracts/staking-pool
- Deposit, withdraw
- Distributed stake/unstake
- NEAR/stNEAR liquidity pool, Add/Remove liquidity
- META Minting with rewards
### TO DO & Help needed
#### Smart Contract
- [x] Deposit/withdraw
- [x] Buy stNEAR/Stake
- [x] Sell stNEAR/immediate unstake
- [x] Classic unstake-wait-finish-unstake
- [x] User trip-meter, measure rewards
- [x] distribute staking/unstaking
- [x] retrieve unstaked and ready
- [x] NEAR/stNEAR Liquidity Pool, Add/Remove liquidity
- [x] clearing mechanism on stake to restore liquidity in the NSLP
- [x] act as a NEP-xxx MULTI-FUN-TOK (multi-token contract). Implement for NEAR, stNEAR and META
- [ ] Dividends-pool stNEAR/META
- [x] Staking-loans to whitelisted validators
- [ ] Emergency Staking (from the nslp) to whitelisted validators
#### Test
- [x] Simulation tests
- [x] Fuzzy Testing
#### Staking pool list
- [x] List selected staking pools, getting weight, staked & unstaked
- [x] add a staking pool, set weight
#### Governing
- [x] Mint and distribute META with rewards
- [x] Phase II - Governing DAO
#### Infrastructure
- [x] External cron to call distribute()
- [x] compute remaining epoch time
- [x] whitelist pools before adding them
#### Expansions
- [x] USDNEAR MVP: Create a collateral-based stablecoin similar to Compound's DAI, using NEAR & stNEAR as collateral
## Testing
All tests are are performed in a separate project with an ad-hoc fuzzy test for metapool.
The test generates random operations. We have a list of "invariants" the contract must satisfy to guarantee the internal accounting is consistent. We use a seeded random generator to create "operations" against the metapool (deposit, liquid-unstake, delayed-unstake, add-liquidity, remove-liquidity, compute-rewards, retrieve-funds-from-pools, rebalance) in any order and amount. After each successful operation we check the contract invariants again. This is our way to tests unprepared operations combinations and make sure the internal accounting remains consistent
The tests are located in the folder metapool/test