You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implementation contracts (as in ERC1967 proxy + implementation) are deployed using new
impl = address(
new DisputeModule(address(accessController), address(ipAssetRegistry), address(licenseRegistry))
);
Create3 makes easier tracking contracts and versioning across chains, testnets, etc, having consistent addresses.
We should enjoy that benefit for implementation contracts too.
Definition of done
Every contract deployed by DeployHelper, immutable, proxy and implementations alike, must have the same addresses in different chains.
The text was updated successfully, but these errors were encountered:
Description and context
Implementation contracts (as in ERC1967 proxy + implementation) are deployed using
new
Create3 makes easier tracking contracts and versioning across chains, testnets, etc, having consistent addresses.
We should enjoy that benefit for implementation contracts too.
Definition of done
Every contract deployed by DeployHelper, immutable, proxy and implementations alike, must have the same addresses in different chains.
The text was updated successfully, but these errors were encountered: