mirror of
https://github.com/semaphore-protocol/semaphore.git
synced 2026-01-10 15:18:41 -05:00
27 lines
552 B
TypeScript
27 lines
552 B
TypeScript
import { config } from "./package.json"
|
|
import { HardhatUserConfig } from "hardhat/config"
|
|
|
|
import "@nomiclabs/hardhat-waffle"
|
|
import "@nomiclabs/hardhat-ethers"
|
|
import "hardhat-deploy"
|
|
|
|
const hardhatConfig: HardhatUserConfig = {
|
|
solidity: config.solidity,
|
|
paths: config.paths,
|
|
networks: {
|
|
hardhat: {
|
|
chainId: 1337,
|
|
allowUnlimitedContractSize: true
|
|
},
|
|
localhost: {
|
|
url: "http://localhost:8545",
|
|
allowUnlimitedContractSize: true
|
|
}
|
|
},
|
|
namedAccounts: {
|
|
deployer: 0
|
|
}
|
|
}
|
|
|
|
export default hardhatConfig
|