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

Dev #9

Open
wants to merge 38 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
47bc7a6
add deploy script and TUPS contract
norwegianneko Sep 13, 2023
b59c6d6
delete subchain env
0xHaku Sep 13, 2023
0034269
add mock scripts
0xHaku Sep 13, 2023
30b5856
delete unused contract
0xHaku Sep 13, 2023
ff1577c
adjust for simple deployment
0xHaku Sep 14, 2023
afdb274
add readme
0xHaku Sep 14, 2023
b980ee3
fix deployment params
0xHaku Oct 13, 2023
5f0cc60
implement original reward slope
0xHaku Oct 13, 2023
74841bd
adjust deploy script for original reward slope
0xHaku Oct 13, 2023
182bdb5
apply threshold for reward
0xHaku Oct 14, 2023
cba7fa0
add interest-rate test
0xHaku Oct 14, 2023
54b8f9a
apply reward-rate test
0xHaku Oct 14, 2023
5f82a9f
deploy cjpy for goerli
0xHaku Oct 15, 2023
d878c77
add goerli deployed address
0xHaku Oct 15, 2023
9e54444
refactor contract names
0xHaku Oct 18, 2023
2370ea8
add implemention-upgrade script
0xHaku Oct 18, 2023
7f0636a
fix reward amount
0xHaku Oct 19, 2023
768cc50
set mainnet params
0xHaku Oct 26, 2023
c20d8f6
add deployed address
0xHaku Oct 26, 2023
1325093
add crvusd pool
0xHaku Nov 26, 2023
4e60479
add weth pool
0xHaku Nov 26, 2023
929bf95
add deployed address
0xHaku Nov 29, 2023
e920173
add usdc pool
0xHaku Jan 13, 2024
d8de6dd
add bulker
0xHaku Jan 13, 2024
04d77af
delete workflows
0xHaku Jan 13, 2024
2bd560c
upgrade fouceteer param
0xHaku Mar 31, 2024
e37252e
add sepolia usdc pool
0xHaku Mar 31, 2024
7603d20
add param-update1
0xHaku Sep 27, 2024
f88ba47
Merge pull request #10 from DeFiGeek-Community/param-update1
0xHaku Nov 28, 2024
7673fad
add YearnVaaultPriceFeed
0xHaku Dec 19, 2024
20fd5fa
add scrvusd pricefeed script
0xHaku Dec 19, 2024
2fcb9e1
deployed scrvusd pricefeed
0xHaku Dec 19, 2024
1427a6f
add scrvusd config
0xHaku Dec 20, 2024
8ae5d26
rename kompu deploy functions
0xHaku Dec 22, 2024
0c7321d
add deploy script
0xHaku Dec 24, 2024
d25628a
Merge pull request #11 from DeFiGeek-Community/param-update1
0xHaku Dec 24, 2024
7988ffb
add enacted state
0xHaku Dec 29, 2024
59c2867
Merge pull request #12 from DeFiGeek-Community/param-update1
0xHaku Dec 29, 2024
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
15 changes: 15 additions & 0 deletions contracts/IUniswapV3TwapPriceOracle.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.15;

/**
* @dev Interface for interacting with a Timelock
*/
interface IUniswapV3TwapPriceOracle {
/**
* @notice Get the price of an underlying asset.
* @param underlying The underlying asset to get the price of.
* @return The underlying asset price in ETH as a mantissa (scaled by 1e18).
* Zero means the price is unavailable.
*/
function price(address underlying) external view returns (uint);
}
Loading