Files
semaphore/hardhat.config.js
Andrija Novakovic bc4b0acefd deploy scripts with hardhat-deploy module
Former-commit-id: 16b46efcab
2021-10-21 00:14:20 +02:00

37 lines
831 B
JavaScript

require("@nomiclabs/hardhat-waffle");
require('hardhat-deploy');
// This is a sample Hardhat task. To learn how to create your own go to
// https://hardhat.org/guides/create-task.html
task("accounts", "Prints the list of accounts", async (taskArgs, hre) => {
const accounts = await hre.ethers.getSigners();
for (const account of accounts) {
console.log(account.address);
}
});
// You need to export an object to set up your config
// Go to https://hardhat.org/config/ to learn more
/**
* @type import('hardhat/config').HardhatUserConfig
*/
module.exports = {
solidity: "0.8.4",
networks: {
hardhat: {
chainId: 1337,
allowUnlimitedContractSize: true,
},
},
namedAccounts: {
deployer: 0,
tokenOwner: 1,
},
paths: {
deploy: 'deploy',
deployments: 'deployments',
},
};