hardhat-zksync-deploy
Guide on using the hardhat-zksync-deploy plugin.
Last updated
Guide on using the hardhat-zksync-deploy plugin.
Last updated
This plugin provides utilities for deploying smart contracts on ZKsync Era with artifacts built by the @matterlabs/hardhat-zksync-solc
or @matterlabs/hardhat-zksync-vyper
plugins.
To use the hardhat-zksync-deploy
in your project, we recommend that:
You have a Node installation and yarn
or npm
package manager.
You are already familiar with deploying smart contracts on ZKsync Era.
If not, please refer to the first section of the .
A wallet with sufficient Sepolia ETH
on Ethereum and ZKsync Sepolia Testnet to pay for deploying smart contracts on testnet.
You can get Sepolia ETH from the .
Get testnet ETH
for ZKsync Era using to bridge funds to ZKsync.
You know .
Local ZKsync Testing with zksync-cli: Skip the hassle for test ETH by using zksync-cli
for local testing. Simply execute npx zksync-cli dev start
to initialize a local ZKsync development environment, which includes local Ethereum and ZKsync nodes. This method allows you to test contracts without requesting external testnet funds. Explore more in the .
Version Compatibility Warning
Ensure you are using the correct version of the plugin with ethers:
For plugin version <1.0.0:
Compatible with ethers v5.
For plugin version ≥1.0.0:
Compatible with ethers v6 (⭐ Recommended)
Deployer extension inside Hardhat Runtime Environment (HRE): To use new features like the deployer extension inside Hardhat Runtime Environment (HRE), caching mechanism, and support for script paths, tags, dependencies, and priority, the plugin versions should be as follows:
For v6, the version should be 1.2.0 or higher.
For v5, the version should be 0.8.0 or higher.
Add the latest version of this plugin to your project with the following command:
In the hardhat.config.ts
file, specify ZKsync Era and Ethereum networks in the networks
object.
zkTestnet
is an arbitrary ZKsync Era network name. You can select this as the default network using the defaultNetwork
property.
url
is a field containing the URL of the ZKsync Era node in case of the ZKsync Era network (with zksync
flag set to true
), or the URL of the Ethereum node. This field is required for all ZKsync Era and Ethereum networks used by this plugin.
ethNetwork
is a field with the URL of the Ethereum node. You can also provide network name (e.g. sepolia
) as the value of this field. In this case, the plugin will either use the URL of the appropriate Ethereum network configuration (from the networks
section), or the default ethers
provider for the network if the configuration is not provided. This field is required for all ZKsync networks used by this plugin.
zksync
is a flag that indicates if the network is ZKsync Era. This field needs to be set to true
for all ZKsync Era networks; it is false
by default.
Deployer
exportThe main export of this plugin is the Deployer
class. It is used to wrap a zksync-ethers
Wallet instance and provides a convenient interface to deploy smart contracts and account abstractions. It's main methods are:
contractNameOrArtifact parameter within the deploy methodIn the method description, it's evident that contractNameOrArtifact
can accept two types of objects. One type represents a loaded artifact, while the other type is a string representing a contract name, which the deploy
method will internally convert to the corresponding artifact.
The plugin adds a deployer extension object to the Hardhat Runtime Environment (HRE), which allows us to access it using hre.deployer
.
To extend the configuration to support automatic deployment inside scripts without the need for manually creating a wallet, you can add an accounts
field to the specific network configuration in the networks
section of the hardhat.config.ts
file. This accounts field can support an array of private keys or a mnemonic object.
If the accounts
section contains an array of private keys, the deploy method will use index 0
by default unless another wallet is explicitly set in the script.
accounts
represents a list of the private keys or mnemonic object for the account used in the deployment process.
Accounts on ZKsync Era Test Node or zksync-cli Local Node: accounts
object will be automatically be populated with rich accounts if used network is ZKsync Era Test Node or zksync-cli Local Node
To establish a default index per network, which is by default 0
, you can include a deployerAccounts
section in your hardhat.config.ts
file. This enables the plugin to utilize the designated default indexes when accessing deploy
method in deployment scripts, thereby granting greater control over the selection of the deployment account for each network.
deployerAccounts
represents an object where the default index of the accounts is provided and automatically used in the deployment scripts. If the network name is not specified inside the object, the default index of the account will be 0
. We can change and deafult index for not specified networks if we override default
name with index that we want.
The described objects work together to provide users with a better deployment experience, eliminating the need for manual wallet initialization.
Deployer
object to the hre.deployer
The deployment logic remains the same, but instead of instantiating a Deployer
class, you directly access the deployer object provided by hre.deployer
. This simplifies the deployment process and enhances the developer experience.
To simplify and improve the user experience, you can use the getWallet
and setWallet
methods provided by hre.deployer
to generate a new wallet for deployment if that is needed and to change current wallet.
The hardhat-zksync-deploy
plugin supports a caching mechanism for contracts deployed on the same network, and by default, this feature is enabled for every deployment with specific network unless specified otherwise. For each deployment within your project, a new deployments-zk
folder is created. Inside this folder, you can find subfolders for each network specified in the hardhat.config.ts
file. Each network folder contains JSON files named after deployed contracts where caching purposes information are stored, and additionally, a .chainId
file contains the chainId specific to that network.
To explicitly use a cache mechanism or force deploy for a specific network in your hardhat.config.ts
file, you would indeed need to set the forceDeploy
flag for that network in the networks section.
If the forceDeploy
flag is set to true
for a specific network in your hardhat.config.ts file, it indicates that the deployment process will force deploy contracts to that network, bypassing any cache mechanism.
Conversely, if the forceDeploy
flag is set to false
or not specified for a network, hardhat-zksync-deploy
will use caching mechanism during deployment. This means it will check whether the contracts have changed since the last deployment, and if not, it will reuse the already deployed contracts instead of redeploying them.
default value for forceDeploy: If a value isn't explicitly defined, it automatically defaults to true
.
Scripts used for deployments have additional features that can provide the better experience and efficiency of the deployment process.
Configuring a scripts path can be achieved in two ways:
setting up global paths used for all networks.
configuring network-specific paths used exclusively for each network. This kind of paths overrides a global paths.
Global Deployment Paths
To enable the plugin's usage of global custom deploy scripts, specify the directory path containing these scripts within the deployPaths
section nested inside the paths
section of your hardhat.config.ts
file.
deployPaths
Specify deployment directories, you can use either a single object or an array structure.
The default path, if not explicitly set, is the deploy
folder inside the project's root directory.
Network-Specific Deployment Paths
To configure network-specific paths, the hardhat.config.ts
configuration needs to be extended with a deployPaths
property inside the network object inside networks
section.
Network-specific paths will override a global path, ensuring that only scripts within the directories configured for the specific network are executed.
Deployment scripts can be tagged, allowing for easy categorization and organization. Dependencies between scripts can be specified to ensure proper execution order, and priority levels can be assigned to determine the sequence in which scripts are run.
tags
An array of strings representing lables that can be assigned to scripts for categorization and organization.
dependencies
An array of script tags specifying the dependencies of a script, ensuring proper execution order based on their dependencies.
priority
An integer value indicating the priority level of a script, determining the sequence in which scripts are executed. If a script has a higher value for priority field, it will be executed first unless it depends on another script.
Examples:
For the specific scripts, we observe that 001_deploy.ts
and 002_deploys.ts
are tagged, and 001_deploy.ts
depends on deployment scripts with the tag second
. Additionally, a priority is set for all three scripts. As a result, when starting the deployment process (running scripts), the order of script execution will be as follows:
003_deploys.ts
: This script has the highest priority and is not dependent on any other script.
002_deploy.ts
: This script needs to be executed second because it is tagged with second
, and 001_deploy.ts
depends on that script.
001_deploy.ts
: Although this script has a higher priority than 002_deploy.ts
, it depends on the latter, so it will be executed last.
The default value for tags is default
, and the default value for priority is 0
.
Starting from version 1.13.14, the zksolc compiler has been enhanced to identify missing libraries.
Complex library dependency tree is also supported. It ensures libraries are compiled and deployed in a structured manner, starting from the most foundational library to the topmost dependent one.
Example:
The feature to automatically update the Hardhat user configuration with deployed addresses of libraries in the zksolc
object is supported as well.
For a step-by-step guide on how to deploy missing libraries, see the deploy-zksync:libraries
command below.
yarn hardhat deploy-zksync
-- runs through all the scripts.
To run a specific script, add the --script
argument, e.g. hardhat deploy-zksync --script 001_deploy.ts
. Runs script with name 001_deploy.ts
.
To run a scripts with specific tags add the --tags
argument, e.g hardhat deploy-zksync --tags all
. Run all scripts with tag all
.
To run on a specific ZKsync Era network, use the standard Hardhat --network
argument, e.g. --network zkTestnet
. The network with the name zkTestnet
needs to be configured in the hardhat.config.ts
file, with all required fields stated above, or specify defaultNetwork
in hardhat.config.ts
file.
yarn hardhat deploy-zksync:contract --contract-name <contract name or FQN>
Provides an easy and fast way to deploy the given contract on the specified network. If the provided command for deploying a single contract is insufficient and you require additional flexibility, such as incorporating additional dependencies or overrides, it would be advisable to utilize a script-based approach.
--contract-name <contract name or FQN>
- contract name or FQN, required argument in all tasks, e.g. hardhat deploy-zksync:proxy --contract-name SomeContract
.
<constructor arguments>
- list of constructor arguments, e.g. hardhat deploy-zksync:proxy --contract-name Greeter 'Hello'
.
--constructor-args <module name>
- name of javascript module containing complex constructor arguments. Works only if <constructor arguments>
are not provided e.g. hardhat deploy-zksync:contract --contract-name ComplexContract --constructor-args args.js
. Example of args.js
:
--no-compile
- skip the compilation process, e.g. hardhat deploy-zksync:beacon --contract-name Contract --no-compile
.
--deployment-type
- specify which deployer smart contract function will be called. Permissible values for this parameter include create
, create2
, createAccount
, and create2Account
. If this parameter is omitted, the default value will be create
, e.g. hardhat deploy-zksync:beacon --contract-name Greeter 'Hello' --deployment-type create2
.
The account used for deployment will be the one specified by the deployerAccount
configuration within the hardhat.config.ts
file. If no such configuration is present, the account with index 0
will be used.
yarn hardhat deploy-zksync:libraries
-- runs compilation and deployment of missing libraries (the list of all missing libraries is provided by the output of @matterlabs/hardhat-zksync-solc
plugin).
The account used for deployment will be the one specified by the deployerAccount
configuration within the hardhat.config.ts
file. If no such configuration is present, the account with index 0
will be used.
--private-key-or-index <PRIVATE_KEY_OR_INDEX>
- An optional argument, libraries are deployed either using the provided private key or by default using the account specified by its index in the accounts array for the specified network.
--no-auto-populate-config
- Flag which disables the auto-population of the hardhat config file. Enabled by default.
--external-config-object-path <file path>
- Specifies the path to the file containing the zksolc configuration. If not set, it defaults to the Hardhat configuration file path. Works only if auto-population is enabled.
--exported-config-object <object name>
- Specifies the name of the user's Hardhat config object within the Hardhat configuration file. Primarily for auto-population. Defaults to config
.
--compile-all-contracts
- Compile all contracts with deployed libraries. Disabled by default.
Example of using the --exported-config-object <object name>
argument:
In Typescript projects --exported-config-object <object name>
argument can be provided optionally. Plugin will try to resolve config by HardhatUserConfig
type.
To see an example script of how to use a Deployer
class to deploy a contract, check out the .
Methods available for use in hre.deployer
are the same as those available in the Deployer
class object, as described Additionally, hre.deployer
is extended with specific methods to facilitate the deployment process, making it more straightforward.
This plugin facilitates the compilation and deployment of missing libraries for users. By leveraging the @matterlabs/hardhat-zksync-solc
plugin, users can obtain a file that not only contains specifics about the missing libraries for compilation but also showcases how they interlink with other dependent libraries. For more information about missing libraries during the compilation process, please refer to .
If network argument --network
or defaultNetwork
configuration are not specified, local setup with http://localhost:8545
(Ethereum RPC URL) and http://localhost:3050
(ZKsync Era RPC URL), will be used. In this case ZKsync Era network will not need to be configured in hardhat.config.ts
file.For more details about a dockerized local setup, check out .