Releases: pcaversaccio/xdeployer
xdeployer v3.0.4
🫡 Summary
xdeployer
v3.0.4
adds support for two additional EVM networks:
enduranceTestnet
(block explorer),enduranceMain
(block explorer).
🕓 Full Changelog
xdeployer v3.0.3
🫡 Summary
xdeployer
v3.0.3
is a dependency maintenance and general code chore release. Furthermore, we add support for three additional EVM networks:
dosTestnet
(block explorer),dosMain
(block explorer),fraxtalTestnet
(block explorer).
Please note that the block explorer link for the polygonZkEVMTestnet
test network now points to the recently released cardona
network.
🕓 Full Changelog
xdeployer v3.0.2
🫡 Summary
xdeployer
v3.0.2
is a dependency maintenance and general code chore release. Furthermore, we add support for two additional EVM networks:
blastTestnet
(block explorer)blastMain
(block explorer)
🕓 Full Changelog
xdeployer v3.0.1
🫡 Summary
xdeployer
v3.0.1
is a dependency maintenance and general code chore release. Furthermore, we now allow >0.8.23
-compiled, local deployment testing (#234).
🕓 Full Changelog
💥xdeployer v3.0.0💥
🫡 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 🫡!
🕓 Full Changelog
xdeployer v2.2.2
🫡 Summary
xdeployer
v2.2.2
is a dependency maintenance and general code chore release. Furthermore, we deprecate the arbitrumTestnet
(a.k.a. Arbitrum Goerli) test network, since Arbitrum has already stopped operating the block explorer today. You can continue deploying on Arbitrum's Sepolia test network via arbitrumSepolia
.
🕓 Full Changelog
xdeployer v2.2.1
🫡 Summary
xdeployer
v2.2.1
is a dependency maintenance and general code chore release. Furthermore, we deprecate the sokol
test network as there have been no validators for over a year.
🕓 Full Changelog
xdeployer v2.2.0
🫡 Summary
xdeployer
v2.2.0
is a dependency maintenance and general code chore release:
❗️Breaking Change
We deprecate hecoTestnet
(since it's offline) and update the hecoMain
block explorer link (#211).
🕓 Full Changelog
xdeployer v2.1.13
🫡 Summary
xdeployer
v2.1.13
is a dependency maintenance and general code chore release:
- Switch from
yarn
topnpm
(#208), - Use Hardhat configuration variables instead of
.env
files (#208).
🕓 Full Changelog
xdeployer v2.1.12
🫡 Summary
xdeployer
v2.1.12
is a dependency maintenance and general code chore release:
- The contract name is now included in the deployment file name (#201; 🙏🏽 thanks @asghaier76!),
and adds support for one additional EVM network:
optimismSepolia
(block explorer)