Skip to content

Commit

Permalink
chore: change contract deployer address (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
rahul0eth authored Oct 26, 2023
1 parent 2e3be14 commit 19aebf1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/PredictiveDeployer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { IERC20 } from "./dependencies/token/interfaces/IERC20.sol";

contract PredictiveDeployer is Initializable, UUPSUpgradeable, Ownable {
// Private Constants: no SLOAD to save users gas
address private constant CONTRACT_DEPLOYER = 0x76bd253e7a0FB5896b4ACA4b9ef06E9ee2b74e8E; // TODO: Update
address private constant CONTRACT_DEPLOYER = 0x3790e085cD4FC7a12270DaEedc5c208aFc35bB0F; // TODO: Update

// EIP-712 Storage
bytes32 internal domainSeparator;
Expand Down
2 changes: 1 addition & 1 deletion test/common/Constants.t.sol
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.21;

address constant CONTRACT_DEPLOYER = 0x76bd253e7a0FB5896b4ACA4b9ef06E9ee2b74e8E;
address constant CONTRACT_DEPLOYER = 0x3790e085cD4FC7a12270DaEedc5c208aFc35bB0F;

address constant TEST_ERC20_TOKEN = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48; // USDC on Ethereum

0 comments on commit 19aebf1

Please sign in to comment.