44 lines
1.7 KiB
TypeScript
44 lines
1.7 KiB
TypeScript
import { HardhatRuntimeEnvironment } from "hardhat/types";
|
|
import { DeployFunction } from "hardhat-deploy/types";
|
|
// import { Contract } from "ethers";
|
|
|
|
/**
|
|
* Deploys a contract named "YourToken" using the deployer account and
|
|
* constructor arguments set to the deployer address
|
|
*
|
|
* @param hre HardhatRuntimeEnvironment object.
|
|
*/
|
|
const deployYourToken: DeployFunction = async function (hre: HardhatRuntimeEnvironment) {
|
|
/*
|
|
On localhost, the deployer account is the one that comes with Hardhat, which is already funded.
|
|
|
|
When deploying to live networks (e.g `yarn deploy --network sepolia`), the deployer account
|
|
should have sufficient balance to pay for the gas fees for contract creation.
|
|
|
|
You can generate a random account with `yarn generate` which will fill DEPLOYER_PRIVATE_KEY
|
|
with a random private key in the .env file (then used on hardhat.config.ts)
|
|
You can run the `yarn account` command to check your balance in every network.
|
|
*/
|
|
const { deployer } = await hre.getNamedAccounts();
|
|
const { deploy } = hre.deployments;
|
|
|
|
await deploy("YourToken", {
|
|
from: deployer,
|
|
// Contract constructor arguments
|
|
args: [],
|
|
log: true,
|
|
// autoMine: can be passed to the deploy function to make the deployment process faster on local networks by
|
|
// automatically mining the contract deployment transaction. There is no effect on live networks.
|
|
autoMine: true,
|
|
});
|
|
|
|
// Get the deployed contract
|
|
// const yourToken = await hre.ethers.getContract<Contract>("YourToken", deployer);
|
|
};
|
|
|
|
export default deployYourToken;
|
|
|
|
// Tags are useful if you have multiple deploy files and only want to run one of them.
|
|
// e.g. yarn deploy --tags YourToken
|
|
deployYourToken.tags = ["YourToken"];
|