Skip to content

Commit

Permalink
feat: factory 1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
0xShaito committed Jan 25, 2024
1 parent 128fc92 commit 18de1aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion solidity/scripts/XERC20Deploy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ contract XERC20Deploy is Script, ScriptingLibrary {
using stdJson for string;

uint256 public deployer = vm.envUint('DEPLOYER_PRIVATE_KEY');
XERC20Factory public factory = XERC20Factory(0x44b9153a9c24a7283e86C5eF6453A658Bfb982A0);
XERC20Factory public factory = XERC20Factory(0xb913bE186110B1119d5B9582F316f142c908fc25);

function run() public {
string memory _json = vm.readFile('./solidity/scripts/xerc20-deployment-config.json');
Expand Down
2 changes: 1 addition & 1 deletion solidity/scripts/XERC20FactoryDeploy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {ScriptingLibrary} from './ScriptingLibrary/ScriptingLibrary.sol';
contract XERC20FactoryDeploy is Script, ScriptingLibrary {
////////////////////////// MODIFY ////////////////////////////////
// When new factories need to be deployed, make sure to update the salt version to avoid address collition
string public constant SALT = 'xERC20-v1.3';
string public constant SALT = 'xERC20-v1.5';
//////////////////////////////////////////////////////////////////

uint256 public deployerPk = vm.envUint('DEPLOYER_PRIVATE_KEY');
Expand Down

0 comments on commit 18de1aa

Please sign in to comment.