Gathering detailed insights and metrics for @openzeppelin/hardhat-upgrades
Gathering detailed insights and metrics for @openzeppelin/hardhat-upgrades
Gathering detailed insights and metrics for @openzeppelin/hardhat-upgrades
Gathering detailed insights and metrics for @openzeppelin/hardhat-upgrades
Plugins for Hardhat and Foundry to deploy and manage upgradeable contracts on Ethereum.
npm install @openzeppelin/hardhat-upgrades
@openzeppelin/hardhat-upgrades@3.6.0
Published on 25 Nov 2024
@openzeppelin/upgrades-core@1.41.0
Published on 25 Nov 2024
@openzeppelin/hardhat-upgrades@3.5.0
Published on 10 Oct 2024
@openzeppelin/upgrades-core@1.40.0
Published on 10 Oct 2024
@openzeppelin/upgrades-core@1.39.0
Published on 02 Oct 2024
@openzeppelin/hardhat-upgrades@3.4.0
Published on 23 Sept 2024
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
629 Stars
847 Commits
270 Forks
22 Watching
18 Branches
84 Contributors
Updated on 25 Nov 2024
TypeScript (61.24%)
JavaScript (26.29%)
Solidity (12.26%)
Shell (0.21%)
Cumulative downloads
Total Downloads
Last day
-19.1%
6,808
Compared to previous day
Last week
9.5%
41,833
Compared to previous week
Last month
5.4%
162,693
Compared to previous month
Last year
12.4%
1,923,440
Compared to previous year
9
Integrate upgrades into your existing workflow. Plugins for Hardhat and Foundry to deploy and manage upgradeable contracts on Ethereum.
See the documentation for each plugin:
Hardhat | Foundry |
---|
The plugins provide functions which take care of managing upgradeable deployments of your contracts.
For example, deployProxy
does the following:
Validates that the implementation is upgrade safe.
Deploys the implementation contract. Note that the Hardhat plugin first checks if there is an implementation contract deployed with the same bytecode, and skips this step if one is already deployed.
Creates and initializes the proxy contract, along with a proxy admin (if needed).
And when you call upgradeProxy
:
Validates that the new implementation is upgrade safe and is compatible with the previous one.
Deploys the new implementation contract. Note that the Hardhat plugin first checks if there is an implementation contract deployed with the same bytecode, and skips this step if one is already deployed.
Upgrades the proxy to use the new implementation contract.
The Hardhat plugin keeps track of all the implementation contracts you have deployed in an .openzeppelin
folder in the project root. You will find one file per network there. It is advised that you commit to source control the files for all networks except the development ones (you may see them as .openzeppelin/unknown-*.json
).
The Foundry plugin does not keep track of implementation contracts, but requires you to define reference contracts in order to validate new versions of implementations for upgrade safety.
The plugins support the UUPS, transparent, and beacon proxy patterns. UUPS and transparent proxies are upgraded individually, whereas any number of beacon proxies can be upgraded atomically at the same time by upgrading the beacon that they point to. For more details on the different proxy patterns available, see the documentation for Proxies.
For UUPS and transparent proxies, use deployProxy
and upgradeProxy
. For beacon proxies, use deployBeacon
, deployBeaconProxy
, and upgradeBeacon
. See the documentation for Hardhat Upgrades and Foundry Upgrades for examples.
Transparent proxies have an admin address which has the rights to upgrade them. By default, the admin is a proxy admin contract deployed behind the scenes. Keep in mind that the admin of a proxy can only upgrade it, but not interact with the implementation contract. Read here for more info on this restriction.
The proxy admin contract also defines an owner address which has the rights to operate it. By default, the proxy admin's owner is the initialOwner
address used during deployment of the transparent proxy if provided, otherwise it is the externally owned account used during deployment. You can change the proxy admin owner by calling the admin.transferProxyAdminOwnership
function in the Hardhat plugin, or the transferOwnership
function of the proxy admin contract if using Foundry.
[!WARNING] Do not reuse an already deployed
ProxyAdmin
. Before@openzeppelin/contracts
version 5.x, the address provided to transparent proxies was aninitialAdmin
as opposed to aninitialOwner
of a newly deployedProxyAdmin
. Reusing aProxyAdmin
will disable upgradeability in your contract.
UUPS and beacon proxies do not use admin addresses. UUPS proxies rely on an _authorizeUpgrade
function to be overridden to include access restriction to the upgrade mechanism, whereas beacon proxies are upgradable only by the owner of their corresponding beacon.
Once you have transferred the rights to upgrade a proxy or beacon to another address, you can still use your local setup to validate and deploy the implementation contract. The plugins include a prepareUpgrade
function that will validate that the new implementation is upgrade-safe and compatible with the previous one, and deploy it using your local Ethereum account. You can then execute the upgrade itself from the admin or owner address. You can also use the defender.proposeUpgrade
or defender.proposeUpgradeWithApproval
functions to automatically set up the upgrade in OpenZeppelin Defender.
Join the OpenZeppelin forum to ask questions or discuss about these plugins, smart contracts upgrades, or anything related to Ethereum development!
OpenZeppelin Upgrade plugins are released under the MIT License.
No vulnerabilities found.
No security vulnerabilities found.