-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update with IImmutableOwnerCreate2Factory
- Loading branch information
Daniel Lima
committed
Nov 8, 2023
1 parent
4b2b4d1
commit 3400bd4
Showing
7 changed files
with
3,157 additions
and
2,942 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export const DeployAddresses = { | ||
ImmutableCreate2Factory: '0x0000000000FFe8B47B3e2130213B802212439497', | ||
RolesRegistry: '0xB2aD616e84e1eF7A9ED0fA3169AAF31Ee51EA824', | ||
ImmutableOwnerCreate2Factory: '0x066f91a9Aa4C33D4ea4c12aBee6f4cb4e919F71d', | ||
RolesRegistry: '', | ||
KMSDeployer: '0x04c8c6c56dab836f8bd62cb6884371507e706806', | ||
} |
24 changes: 0 additions & 24 deletions
24
contracts/RolesRegistry/interfaces/IImmutableCreate2Factory.sol
This file was deleted.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
contracts/RolesRegistry/interfaces/IImmutableOwnerCreate2Factory.sol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// SPDX-License-Identifier: CC0-1.0 | ||
pragma solidity 0.8.9; | ||
|
||
interface IImmutableOwnerCreate2Factory { | ||
function deploy( | ||
bytes32 salt, | ||
bytes memory bytecode | ||
) external returns (address addr); | ||
|
||
function computeAddress( | ||
bytes32 salt, | ||
bytes32 bytecodeHash | ||
) external view returns (address); | ||
} |
Oops, something went wrong.