generated from Kwenta/foundry-scaffold
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✅ 🧹 Move deployment user op into setUp func
- Loading branch information
1 parent
af8f6b0
commit 2bde7af
Showing
3 changed files
with
108 additions
and
70 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,31 @@ | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
pragma solidity 0.8.25; | ||
|
||
contract BaseParameters {} | ||
contract BaseParameters { | ||
// https://app.safe.global/home?safe=base:0x2f4004Bc32cc5D18a62fE26E35A0881d5397c549 | ||
address public constant PDAO = 0x2f4004Bc32cc5D18a62fE26E35A0881d5397c549; | ||
|
||
address public constant PERPS_MARKET_PROXY = address(0); | ||
|
||
address public constant SPOT_MARKET_PROXY = address(0); | ||
|
||
address public constant USD_PROXY = address(0); | ||
|
||
// https://usecannon.com/packages/synthetix-perps-market/3.3.5/8453-andromeda | ||
address public constant PERPS_MARKET_PROXY_ANDROMEDA = | ||
0x0A2AF931eFFd34b81ebcc57E3d3c9B1E1dE1C9Ce; | ||
|
||
// https://usecannon.com/packages/synthetix-spot-market/3.3.5/8453-andromeda | ||
address public constant SPOT_MARKET_PROXY_ANDROMEDA = | ||
0x18141523403e2595D31b22604AcB8Fc06a4CaA61; | ||
|
||
// https://usecannon.com/packages/synthetix/3.3.5/8453-andromeda | ||
address public constant USD_PROXY_ANDROMEDA = | ||
0x09d51516F38980035153a554c26Df3C6f51a23C3; | ||
|
||
// https://basescan.org/token/0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | ||
address public constant USDC = 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913; | ||
|
||
// https://usecannon.com/packages/synthetix-spot-market/3.3.5/84531-andromeda | ||
uint128 public constant SUSDC_SPOT_MARKET_ID = 1; | ||
} |
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