Skip to content

Commit

Permalink
script: explicit owned multicaller contract address
Browse files Browse the repository at this point in the history
  • Loading branch information
TuDo1403 committed Jul 15, 2024
1 parent d98139a commit 2047781
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { OwnedMulticallerDeploy } from "script/contracts/OwnedMulticallerDeploy.
import { ErrorHandler } from "src/libraries/ErrorHandler.sol";
import { EventRange } from "src/libraries/LibEventRange.sol";

contract Migration__02_Revoke_Roles_Mainnet is Migration {
contract Migration__02_GrantAdminRoleForMultisig_Mainnet is Migration {
using Strings for *;
using ErrorHandler for bool;
using LibRNSDomain for string;
Expand All @@ -49,7 +49,8 @@ contract Migration__02_Revoke_Roles_Mainnet is Migration {
_publicResolver = PublicResolver(loadContract(Contract.PublicResolver.key()));
_reverseRegistrar = RNSReverseRegistrar(loadContract(Contract.RNSReverseRegistrar.key()));
_ronController = RONRegistrarController(loadContract(Contract.RONRegistrarController.key()));
_ownedMulticaller = OwnedMulticaller(loadContract(Contract.OwnedMulticaller.key()));
// Verify: https://app.roninchain.com/address/0x27876429DB2cDDF017DBb63560D0366E4B4E6f8a
_ownedMulticaller = OwnedMulticaller(0x27876429DB2cDDF017DBb63560D0366E4B4E6f8a);
_batchTransfer = loadContract(Contract.ERC721BatchTransfer.key());

address[] memory contracts = new address[](5);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { RONRegistrarController } from "src/RONRegistrarController.sol";
import { OwnedMulticaller } from "src/utils/OwnedMulticaller.sol";
import { INSDomainPrice } from "src/interfaces/INSDomainPrice.sol";

contract Migration__01_Revoke_Roles_Testnet is Migration {
contract Migration__02_GrantAdminRoleForMultisig_Testnet is Migration {
using Strings for *;
using LibRNSDomain for string;

Expand All @@ -44,7 +44,8 @@ contract Migration__01_Revoke_Roles_Testnet is Migration {
_publicResolver = PublicResolver(loadContract(Contract.PublicResolver.key()));
_reverseRegistrar = RNSReverseRegistrar(loadContract(Contract.RNSReverseRegistrar.key()));
_ronController = RONRegistrarController(loadContract(Contract.RONRegistrarController.key()));
_ownedMulticaller = OwnedMulticaller(loadContract(Contract.OwnedMulticaller.key()));
// Verify: https://saigon-app.roninchain.com/address/0xAcC5b257F42A14436B8f231769E2f22E91EE39dc
_ownedMulticaller = OwnedMulticaller(0xAcC5b257F42A14436B8f231769E2f22E91EE39dc);

address[] memory contracts = new address[](5);
contracts[0] = address(_domainPrice);
Expand Down

0 comments on commit 2047781

Please sign in to comment.