mirror of
https://github.com/semaphore-protocol/semaphore.git
synced 2026-04-28 03:00:41 -04:00
37 lines
831 B
JavaScript
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',
|
|
},
|
|
};
|