Skip to content

Commit

Permalink
update with IImmutableOwnerCreate2Factory
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Lima committed Nov 8, 2023
1 parent 4b2b4d1 commit 3400bd4
Show file tree
Hide file tree
Showing 7 changed files with 3,157 additions and 2,942 deletions.
4 changes: 2 additions & 2 deletions config/index.ts
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 contracts/RolesRegistry/interfaces/IImmutableCreate2Factory.sol

This file was deleted.

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);
}
Loading

0 comments on commit 3400bd4

Please sign in to comment.