generated from Kwenta/foundry-scaffold
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from Kwenta/deploy-base-multicollateral
🚀 deploy multicollateral with updated pdao
- Loading branch information
Showing
5 changed files
with
21 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,8 @@ pragma solidity 0.8.27; | |
/// @title Contract for defining constants used in testing | ||
/// @author JaredBorders ([email protected]) | ||
contract Constants { | ||
/// @dev Dec-13-2024 07:33:47 PM +UTC | ||
uint256 public constant BASE_BLOCK_NUMBER = 23_805_461; | ||
/// @dev Dec-19-2024 07:22:05 PM +UTC | ||
uint256 public constant BASE_BLOCK_NUMBER = 23_923_389; | ||
|
||
address internal constant OWNER = address(0x01); | ||
|
||
|
@@ -62,14 +62,14 @@ contract Constants { | |
|
||
uint128 constant WSTETH_SYNTH_MARKET_ID = 7; | ||
|
||
/// @dev this is the ETH price in USD at the block number 23_805_461 | ||
uint256 internal constant ETH_PRICE = 4000; | ||
/// @dev this is the ETH price in USD at the block number 23_923_389 | ||
uint256 internal constant ETH_PRICE = 3500; | ||
|
||
uint256 internal constant BTC_PRICE = 106_000; | ||
uint256 internal constant BTC_PRICE = 98_240; | ||
|
||
uint256 internal constant CBETH_PRICE = 4351; | ||
uint256 internal constant CBETH_PRICE = 3800; | ||
|
||
uint256 internal constant WSTETH_PRICE = 4735; | ||
uint256 internal constant WSTETH_PRICE = 4134; | ||
|
||
uint256 internal constant AMOUNT = 10_000 ether; | ||
|
||
|