Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
3b7723b
Add looped events for frontend
realsungeunchoi Feb 24, 2023
651f246
Deploy and upgrade all necessary contracts for claimAll
realsungeunchoi Feb 24, 2023
3c38146
First iteration of contract, restructuring of repo
realsungeunchoi Apr 6, 2023
f837827
Formatting
realsungeunchoi Apr 6, 2023
000f140
Fix tests, add do nothing in redistribution, iterating reductions, fe…
realsungeunchoi Apr 10, 2023
8717e84
Formatting
realsungeunchoi Apr 10, 2023
ba2df65
Revamped fee model. Tests
realsungeunchoi Apr 11, 2023
de6db2a
Add yearn compatability, incomplete tests
realsungeunchoi Apr 12, 2023
c7b315c
Full integration with Yearn. Fix bugs and 100% coverage
realsungeunchoi Apr 14, 2023
d361b1c
Remove some console logs
realsungeunchoi Apr 14, 2023
d8bc297
Remove redundant tests, add final checks, config + deployment script
realsungeunchoi Apr 14, 2023
9cf4ee0
Formatting and cleanup of files
realsungeunchoi Apr 14, 2023
9b70d5b
Deployed beta on optimism
realsungeunchoi Apr 14, 2023
db613a3
Merge branch 'main' of https://github.com/GetAlluo/yield-booster into…
realsungeunchoi Apr 17, 2023
d472243
Add new feature, swap one vault
realsungeunchoi Apr 20, 2023
37057b0
Cleanup
realsungeunchoi Apr 20, 2023
3ee6799
add two events and fix stack error
realsungeunchoi Apr 20, 2023
f604a54
Config
realsungeunchoi Apr 20, 2023
796ae52
Feature: optimism deployment tracking
alexanderem49 Apr 26, 2023
9fb907d
Fix for enumerable set bug
realsungeunchoi Apr 26, 2023
6baf8eb
Feature: optimism tracking file
alexanderem49 Apr 26, 2023
fa128a2
Deploy initial vaults and fix yield skim bug edge case
realsungeunchoi May 18, 2023
b7936dc
Deploy json
realsungeunchoi May 18, 2023
05840d8
Merge
realsungeunchoi May 18, 2023
1cdfc1b
Fix edgecase where existing yield is so small that transfers revert
realsungeunchoi May 18, 2023
01fef62
Add support for native eth + 100% coverage tests
realsungeunchoi May 25, 2023
e0b8bf8
Feature: deployment tracking file
alexanderem49 May 25, 2023
318f29f
Improve deposit and withdraw precision, fix edgecase where LP swap fa…
realsungeunchoi Jul 11, 2023
4f89ed8
Deployed implementation with oz script
realsungeunchoi Jul 12, 2023
3395065
Updated script
realsungeunchoi Jul 12, 2023
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
4 changes: 3 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
MNEMONIC =
PRIVATE_KEY=
ALLUO_DEPLOYER =
#Mainnets
MAINNET_URL =
POLYGON_URL =
Expand All @@ -14,10 +15,11 @@ SEPOLIA_URL =
#Forkings
MAINNET_FORKING_URL =
POLYGON_FORKING_URL =

OPTIMISM_URL =
#Other
ETHERSCAN_API_KEY =
POLYGONSCAN_API_KEY =
OPTIMISMSCAN_API_KEY =
FORKING_ENABLED = true
CONTRACT_SIZER = false
REPORT_GAS = yes
Expand Down
2 changes: 1 addition & 1 deletion .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx hardhat test
# npx hardhat test
Loading