Skip to content

💥xdeployer v3.0.0💥

Compare
Choose a tag to compare
@pcaversaccio pcaversaccio released this 24 Dec 13:40
· 153 commits to main since this release
ac2fd54

🫡 Summary (❗️Breaking Changes)

xdeployer v3.0.0 replaces the Create2Deployer with the recently deployed CreateX factory contract (#220). Consequently, your local file Create2DeployerLocal.sol must look like this:

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.23;

import { CreateX } from "xdeployer/src/contracts/CreateX.sol";

contract Create2DeployerLocal is CreateX {}

Otherwise, nothing will change for you 😄 !

Furthermore, on 1 January 2024, the Goerli test network will be officially moved to EOL (End of Life) status (see here). This means that the Ethereum Foundation will not actively maintain it any longer. Thus, I deprecate all Goerli-based test networks (#221):

  • goerli,
  • optimismTestnet,
  • baseTestnet,
  • scrollTestnet,
  • zoraTestnet.

Additionally, I add filecoinTestnet, scrollSepolia, zoraSepolia, frameTestnet, baseMain, and filecoinMain as newly supported networks. Note that arbitrumMain is renamed to arbitrumOne, and artheraTestnet & hecoMain are not anymore supported as well.

I wish everyone a Merry Grindmas 🫡!

image

🕓 Full Changelog