Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion contracts/script/foundry/DeployDOSTestnet.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import {LibLabel} from "~src/utils/LibLabel.sol";
/// @notice Deploys a standard wrapped-native WDOS token and the complete `.dos` ENSv2 stack.
contract DeployDOSTestnet is DeployDOS {
uint256 internal constant EXPECTED_CHAIN_ID = 3939;
address internal constant EXPECTED_DEPLOYER = 0x310Bc061214ee89aF5CfB28a6ebF96c5436fa3CD;
address internal constant EXPECTED_DEPLOYER = 0x99999e454138f6be73E2bE82c890bc5765749999;
address internal constant EXPECTED_OWNER = 0x310Bc061214ee89aF5CfB28a6ebF96c5436fa3CD;
uint256 internal constant MIN_DEPLOYMENT_BALANCE = 1 ether;
string internal constant BENS_SMOKE_LABEL = "bens-smoke";
Expand Down
2 changes: 1 addition & 1 deletion contracts/script/foundry/Invoke-DeployDOSTestnet.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ $ErrorActionPreference = "Stop"
$expectedRpcUrl = "https://test.doschain.com"
$expectedChainId = 3939
$expectedGenesisHash = "0x1f6dd88694681d79a3a56313f59de56b1b6555c8e06a2ef377084f1e897feef4"
$expectedDeployer = "0x310bc061214ee89af5cfb28a6ebf96c5436fa3cd"
$expectedDeployer = "0x99999e454138f6be73e2be82c890bc5765749999"
$expectedOwner = "0x310bc061214ee89af5cfb28a6ebf96c5436fa3cd"
$minimumBalanceWei = [System.Numerics.BigInteger]::Parse("1000000000000000000")

Expand Down
2 changes: 1 addition & 1 deletion contracts/test/unit/testnet/WrappedDOS.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ contract WrappedDOSTest is Test {
bytes32 internal constant ADDR_CHANGED_TOPIC = keccak256("AddrChanged(bytes32,address)");
bytes32 internal constant ADDRESS_CHANGED_TOPIC =
keccak256("AddressChanged(bytes32,uint256,bytes)");
address internal constant TESTNET_DEPLOYER = 0x310Bc061214ee89aF5CfB28a6ebF96c5436fa3CD;
address internal constant TESTNET_DEPLOYER = 0x99999e454138f6be73E2bE82c890bc5765749999;
address internal constant PROTOCOL_OWNER = 0x310Bc061214ee89aF5CfB28a6ebF96c5436fa3CD;
WrappedDOS internal wdos;
address internal holder = makeAddr("holder");
Expand Down
Loading