How to Set Up Your First Project
This guide walks you through setting up hardhat-deploy in a new project from scratch.
Prerequisites
- Node.js 18+ installed
- Basic familiarity with Hardhat
initialize a new hardhat project
First we setup an basic npm project
mkdir my-project
# set the current directory
cd my-projectJust create a new package.json file with the following content:
file:
package.json
{
"name": "my-project",
"version": "0.0.0",
"type": "module"
}We then install the basic package for a working hardhat project
pnpm add -D hardhat @types/node typescript forge-std@github:foundry-rs/forge-std#v1.9.4We then create a new directory for our solidity files.
mkdir srcand create a new solidity file in that folder.
file:
src/Counter.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.28;
contract Counter {
uint public x;
event Increment(uint by);
function inc() public {
x++;
emit Increment(1);
}
function incBy(uint by) public {
require(by > 0, "incBy: increment should be positive");
x += by;
emit Increment(by);
}
}We also need to create a new hardhat config file.
file:
hardhat.config.ts
import { defineConfig } from "hardhat/config";
import HardhatDeploy from "hardhat-deploy";
export default defineConfig({
plugins: [HardhatDeploy],
solidity: {
profiles: {
default: {
version: "0.8.28",
},
production: {
version: "0.8.28",
settings: {
optimizer: {
enabled: true,
runs: 200,
},
},
},
},
},
networks: {
hardhatMainnet: {
type: "edr-simulated",
chainType: "l1",
},
hardhatOp: {
type: "edr-simulated",
chainType: "op",
},
},
// we always prefers to name our contracts source folder "src" as this usualy sit in a contract folder itself
paths: {
sources: ["src"],
},
// Since we use typescript we also set hardhat-deploy to generate them in typescript
generateTypedArtifacts: {
destinations: [
{
mode: "typescript",
},
],
},
});install hardhat-deploy and the other packages needed
After we got hardhat project setup, it is time to install hardhat-deploy and the other packages required.
pnpm add -D hardhat-deploy rocketh @rocketh/node @rocketh/deploy @rocketh/read-executeNote that both rocketh and @rocketh/node are necessary
Then you need to add it to the plugins list of hardhat in hardhat.config.ts:
import HardhatDeploy from 'hardhat-deploy';
...
const config: HardhatUserConfig = {
plugins: [..., HardhatDeploy],
...We also recommend you add these to provide more features
pnpm add -D @rocketh/proxy @rocketh/export @rocketh/verifier @rocketh/docNote that extensions like @rocketh/proxy need to be passed into the rocketh setup function so they can be used.
The recommended way to setup rocketh for hardhat-deploy is to create a rocketh folder and add the following files inside it:
so first the folder:
mkdir rockeththen the files:
the config.ts file is used to define the config and the extensions we are interested in using in our deploy script or elsewhere
file:
rocketh/config.ts
/// ----------------------------------------------------------------------------
// Typed Config
// ----------------------------------------------------------------------------
import type { UserConfig } from "rocketh/types";
// we define our config and export it as "config"
export const config = {
accounts: {
deployer: {
default: 0,
},
admin: {
default: 1,
},
},
data: {},
} as const satisfies UserConfig;
// then we import each extensions we are interested in using in our deploy script or elsewhere
// this one provide a deploy function
import * as deployExtension from "@rocketh/deploy";
// this one provide read,execute functions
import * as readExecuteExtension from "@rocketh/read-execute";
// and export them as a unified object
const extensions = {
...deployExtension,
...readExecuteExtension,
};
export { extensions };
// then we also export the types that our config exhibits so others can use them
type Extensions = typeof extensions;
type Accounts = typeof config.accounts;
type Data = typeof config.data;
export type { Extensions, Accounts, Data };the rocketh deploy file is used to export the deploy script function and the artifacts.
file:
rocketh/deploy.ts
import {
type Accounts,
type Data,
type Extensions,
extensions,
} from "./config.js";
// ----------------------------------------------------------------------------
// we re-export the artifacts, so they are easily available from the alias
import * as artifacts from "../generated/artifacts/index.js";
export { artifacts };
// ----------------------------------------------------------------------------
// we create the rocketh functions we need by passing the extensions to the
// setup function
import { setupDeployScripts } from "rocketh";
const { deployScript } = setupDeployScripts<Extensions, Accounts, Data>(
extensions,
);
export { deployScript };the environment file is used to export the environment functions, to be used in test and scripts.
file:
rocketh/environment.ts
import {
type Accounts,
type Data,
type Extensions,
extensions,
} from "./config.js";
import { setupEnvironmentFromFiles } from "@rocketh/node";
import { setupHardhatDeploy } from "hardhat-deploy/helpers";
// useful for test and scripts, uses file-system
const { loadAndExecuteDeploymentsFromFiles } = setupEnvironmentFromFiles<
Extensions,
Accounts,
Data
>(extensions);
const { loadEnvironmentFromHardhat } = setupHardhatDeploy<
Extensions,
Accounts,
Data
>(extensions);
export { loadEnvironmentFromHardhat, loadAndExecuteDeploymentsFromFiles };adding deploy scripts
You can them create a deploy script in the deploy folder like so:
mkdir deployAnd create a deploy script file like this:
file:
deploy/deploy_Counter.ts
import { deployScript, artifacts } from "../rocketh/deploy.js";
export default deployScript(
async ({ deploy, namedAccounts }) => {
const { deployer } = namedAccounts;
await deploy("Counter", {
account: deployer,
artifact: artifacts.Counter,
});
},
{ tags: ["Counter", "Counter_deploy"] },
);And with that you are ready to go!
compile your contracts:
pnpm hardhat compileAnd then test deployment against in in-memory node by running:
pnpm hardhat deployhardhat-deploy and rocketh provides many features to help you deploy your contracts.
See a template that uses them here: https://github.com/wighawag/template-ethereum-contracts
Migrating from hardhat-deploy v1
For a complete migration guide, see Migration from v1
Below is a quick overview of the key differences:
Quick Reference
| Aspect | v1 Pattern | v2 Pattern |
|---|---|---|
| Import | require('hardhat-deploy') | import HardhatDeploy from 'hardhat-deploy' |
| Config | module.exports | export default defineConfig({...}) |
| Named accounts | namedAccounts in hardhat.config | rocketh/config.ts |
| Deploy | deployments.deploy(name, {...}) | deploy(name, {account: ..., artifact: ...}) |
Example Comparison
in v1 you would create a deploy file like this:
// deploy/00_deploy_my_contract.js
// export a function that get passed the Hardhat runtime environment
module.exports = async ({ getNamedAccounts, deployments }) => {
const { deploy } = deployments;
const { deployer } = await getNamedAccounts();
await deploy("MyContract", {
from: deployer,
args: ["Hello"],
log: true,
});
};
// add tags and dependencies
module.exports.tags = ["MyContract"];and you would have configuration in hardhat.config.ts
namedAccounts: {
deployer: 0,
...
},in v2 you will do this instead:
import { deployScript, artifacts } from "../rocketh/deploy.js";
export default deployScript(
async ({ deploy, namedAccounts }) => {
const { deployer } = namedAccounts;
await deploy("MyContract", {
account: deployer,
artifact: artifacts.MyContract,
args: ["Hello"],
});
},
// finally you can pass tags and dependencies
{ tags: ["MyContract"] },
);and you would have a rocketh/config.ts file as described above.
Migrating existing deployment to hardhat-deploy
Only needed for an existing project that already deployed contracts and has the deployment information available (at minimum, address, abi, bytecode and metadata)
If you come from hardhat-deploy v1, there is nothing you should need to do as hardhat-deploy v2 will read your deployment files as usual.
You might want to switch your current deployment process to use hardhat-deploy. In that case you probably have some deployments saved elsewhere.
In order to port them to hardhat-deploy, you'll need to create one .json file per contract in the deployments/<environment> folder.
The environment folder is simply the hardhat network name (as configured in hardhat.config.js). Such folder need to have a file named .chain containing both the chainId as decimal and the genesisHash. If coming from hardhat-deploy v1, it will also accept a .chainId file containing only the chainId but will convert it
For example for an environment named "sepolia" (for the corresponding network) the file deployments/sepolia/.chain would be
{
"chainId": "11155111",
"genesisHash": "0x25a5cc106eea7138acab33231d7160d69cb777ee0c2c553fcddf5138993e6dd9"
}Each contract file must follow this type (as defined in types.ts) :
export type Deployment<TAbi extends Abi> = {
readonly address: EIP1193Account;
readonly abi: Narrow<TAbi>;
readonly transaction?: {
readonly hash: EIP1193DATA;
readonly origin?: EIP1193Account;
readonly nonce?: EIP1193DATA;
};
readonly receipt?: {
confirmations: number;
blockHash: EIP1193DATA;
blockNumber: EIP1193QUANTITY;
transactionIndex: EIP1193QUANTITY;
};
readonly bytecode: EIP1193DATA;
readonly argsData: EIP1193DATA;
readonly metadata: string;
readonly numDeployments?: number;
readonly libraries?: Libraries;
readonly linkedData?: any; // TODO
readonly deployedBytecode?: EIP1193DATA;
readonly linkReferences?: any; // TODO
readonly deployedLinkReferences?: any; // TODO
readonly contractName?: string;
readonly sourceName?: string; // relative path
readonly devdoc?: DevDoc;
readonly evm?: {
readonly gasEstimates?: GasEstimates | null;
} & any;
readonly storageLayout?: StorageLayout;
readonly userdoc?: UserDoc;
} & Record<string, unknown>;As you can see, not all fields are mandatory. But having the other fields allow more feature. For example, metadata and args allow you to benefit from contract code verification.
Here is an example:
Let's say you have:
- 2 Contract named Greeter and Registry deployed on sepolia
- 1 contract named Greeter on mainnet
- 2 Contract named Greeter and Registry deployed on an environment named sepolia2
You would get the following folder structure:
deployments/
mainnet/
.chain
Greeter.json
sepolia/
.chain
Greeter.json
Registry.json
sepolia2/
.chain
Greeter.json
Registry.jsonThe reason why hardhat-deploy save chainId and genesisHash in the .chain file is both for
- safety: so that if you were to change the network name to point to a different chain, it would not attempt to read the wrong folder and assume that a contract has been deployed while it has not.
- ability to know the chainId without requiring to be connected to a node (and so not dependent on hardhat.config.js settings). Useful for
exporttask.