Skip to content

Commit

Permalink
transfer ownership
Browse files Browse the repository at this point in the history
  • Loading branch information
mantasfam committed Sep 5, 2023
1 parent 863a9ca commit dc5692a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 3 additions & 0 deletions solidity/scripts/MultichainCreateXERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ contract MultichainCreateXERC20 is Script, ScriptingLibrary {
);

address xerc20 = factory.deployXERC20(name, symbol, minterLimits[i], burnLimits[i], bridges[i]);

XERC20(xerc20).acceptOwnership();

address lockbox;
if (_erc20 != address(0) && !_isNative) {
lockbox = factory.deployLockbox(xerc20, _erc20, _isNative);
Expand Down
2 changes: 0 additions & 2 deletions solidity/scripts/MultichainDeploy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ import {ScriptingLibrary} from './ScriptingLibrary/ScriptingLibrary.sol';

contract MultichainDeploy is Script, ScriptingLibrary {
uint256 public deployer = vm.envUint('DEPLOYER_PRIVATE_KEY');
// NOTE: CHANGEABLE ?
address constant CREATE2 = 0x4e59b44847b379578588920cA78FbF26c0B4956C;
string[] public chains = ['MUMBAI_RPC'];

function run() public {
Expand Down

0 comments on commit dc5692a

Please sign in to comment.