mirror of
https://github.com/status-im/dagger-contracts.git
synced 2025-01-14 00:30:53 +00:00
cfb70897f8
`RequestId`, `SlotId`, `LockId`, `ProofId`, `EndId` types were created to avoid confusion and enforce compiler restrictions.
24 lines
371 B
JavaScript
24 lines
371 B
JavaScript
require("@nomiclabs/hardhat-waffle")
|
|
require("hardhat-deploy")
|
|
require("hardhat-deploy-ethers")
|
|
|
|
module.exports = {
|
|
solidity: {
|
|
version: "0.8.8",
|
|
settings: {
|
|
optimizer: {
|
|
enabled: true,
|
|
runs: 1000,
|
|
},
|
|
},
|
|
},
|
|
namedAccounts: {
|
|
deployer: { default: 0 },
|
|
},
|
|
networks: {
|
|
hardhat: {
|
|
tags: ["local"],
|
|
},
|
|
},
|
|
}
|