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.
- Loading branch information
1 parent
854c1cb
commit 3c87cec
Showing
4 changed files
with
90 additions
and
99 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,10 @@ pragma solidity 0.8.27; | |
/// @title Contract for defining constants used in testing | ||
/// @author JaredBorders ([email protected]) | ||
contract Constants { | ||
/// @dev Dec-10-2024 09:34:19 PM +UTC | ||
uint256 public constant BASE_BLOCK_NUMBER = 23_538_556; | ||
// /// @dev Dec-10-2024 09:34:19 PM +UTC | ||
// uint256 public constant BASE_BLOCK_NUMBER = 23_538_556; | ||
// | ||
uint256 public constant BASE_BLOCK_NUMBER = 23_579_166; | ||
|
||
address internal constant OWNER = address(0x01); | ||
|
||
|
@@ -56,6 +58,8 @@ contract Constants { | |
|
||
uint128 constant WETH_SYNTH_MARKET_ID = 6; | ||
|
||
uint128 constant CBBTC_SYNTH_MARKET_ID = 4; | ||
|
||
/// @dev this is the ETH price in USD at the block number 23_538_556 | ||
uint256 internal constant ETH_PRICE = 3630; | ||
|
||
|