mirror of
https://github.com/status-im/dagger-contracts.git
synced 2025-01-30 00:05:01 +00:00
12 lines
228 B
JavaScript
12 lines
228 B
JavaScript
|
const config = require("./hardhat.config")
|
||
|
|
||
|
config.solidity.settings.modelChecker = {
|
||
|
engine: "chc",
|
||
|
showUnproved: true,
|
||
|
contracts: {
|
||
|
"contracts/TestCollateral.sol": ["TestCollateral"],
|
||
|
},
|
||
|
}
|
||
|
|
||
|
module.exports = config
|