Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
c6c5ac5
fix: user can't deposit in last 24 hours
parth-15 Aug 9, 2023
cd94b44
bugfix: remove refundfacetTest due to ci issues
parth-15 Aug 17, 2023
31092d0
Merge pull request #59 from VaporFi/DEV-427-Implement-refund-mechanis…
Aug 17, 2023
fc75fb4
feat: automated claim single
Aug 31, 2023
9620b00
release: season 3
Sep 3, 2023
87c39cc
chore: rerun automated claim for season 2
Sep 5, 2023
9df08ed
chore: cleanup
Sep 8, 2023
e657da2
feat: add mining pass fee decay(discount)
parth-15 Sep 13, 2023
83506b5
fix: use depositPoints
Sep 18, 2023
9923c0d
chore: polish logic
royvardhan Sep 25, 2023
0a01e6c
rm: datagrapher
royvardhan Sep 25, 2023
e72b638
feat: add tests for coverage
royvardhan Sep 25, 2023
aff6bca
fix: update tier state of user after payment
royvardhan Sep 25, 2023
9ca65ec
Merge pull request #61 from VaporFi/DEV-467-Mining-passes-decay-Smart…
Sep 25, 2023
7231f47
release: start season 3
Oct 1, 2023
b4d29e0
Merge branch 'staging' of github.com:VaporFi/liquid-staking into staging
Oct 1, 2023
9df2981
feat: add gelato resolver for seasons
Oct 6, 2023
97981c1
chore: cleanup
Oct 6, 2023
a5d4315
Merge pull request #62 from VaporFi/DEV-446-implement-automation-of-e…
Oct 11, 2023
633ccb9
release: start season 4
Nov 1, 2023
02f0206
Merge pull request #63 from VaporFi/DEV-446-implement-automation-of-e…
Nov 29, 2023
8054e21
release: season 6 and mining pass decay
Dec 4, 2023
94099f9
release:season 7
Jan 1, 2024
b7cab6b
chore: add depositors season 7
Feb 7, 2024
f465ae5
feat: update boost fee prices
Feb 7, 2024
c265358
fix: update boost fee price level 3
Feb 7, 2024
52ea38c
chore: season 8 claim
Mar 31, 2024
39c0e3d
feat: add automation
Apr 1, 2024
5174d47
chore: cleamup
Jun 18, 2024
d8fb6db
feat: add setter for mining pass receivers and update access control
Jul 3, 2024
f02faeb
feat: introduce dynamic mining pass price DEV-1084
iHiteshAgrawal Feb 11, 2026
4622bf9
fix: storage collision in fuji
iHiteshAgrawal Feb 16, 2026
eedfadb
fix: sync fuji slots to prod
iHiteshAgrawal Feb 18, 2026
e3c5ff4
feat: update contract deployments and add migration script for Fuji
iHiteshAgrawal Feb 25, 2026
0194c6c
chore: clean tests
iHiteshAgrawal Feb 25, 2026
6b463e4
fix: event emition for single-tier mutates
iHiteshAgrawal Feb 25, 2026
f5dffa2
chore: add prod fork test
iHiteshAgrawal Feb 26, 2026
d7f8ba8
Merge pull request #65 from VaporFi/task/DEV-1084
mejiasd3v Feb 26, 2026
2c81d69
feat: refactor mining pass fee tasks and replace updateMiningPassFees…
iHiteshAgrawal Mar 2, 2026
1e1fcb5
fix: correct logging order and validate VAPE price input in mining pa…
iHiteshAgrawal Mar 2, 2026
801b1b7
Merge pull request #66 from VaporFi/task/DEV-1084
mejiasd3v Mar 2, 2026
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
5 changes: 1 addition & 4 deletions .github/workflows/automated_claim_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,4 @@ jobs:
run: yarn hardhat compile

- name: Execute Automated Claim task
run: yarn hardhat automatedClaim --network avalanche --load-from-subgraph true

- name: Start a new season
run: yarn hardhat run scripts/startSeason.ts --network avalanche
run: yarn hardhat automated-claim:all --network avalanche --load-from-subgraph true
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,8 @@ node_modules/

# IDE
.idea

# Misc
.DS_Store
.archive/

5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"python-envs.defaultEnvManager": "ms-python.python:conda",
"python-envs.defaultPackageManager": "ms-python.python:conda",
"python-envs.pythonProjects": []
}
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,8 @@ For each Deposit and Unlock action, we update the total points accumulated in a

- [] Get `seasonMintAllowance` from EmissionsManager
- [] Execute `startSeason` in LiquidStaking, using `seasonMintAllowance` as the argument

### Commands

❯ yarn hardhat automated-claim:all --network avalanche --load-from-subgraph true
❯ yarn hardhat run --network avalanche scripts/startSeason.ts
Loading
Loading