-
Notifications
You must be signed in to change notification settings - Fork 438
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fflonk files test moved * fflonk SC verification added to test suite * add again length proof check to smart contract * fix tests.yml for continous integration * add hardhat dependencies to github action * add more options to launch.json file * remove hardhat-toolbox * add missed packages * skip smart contract testing in node version < 14 * fix smart contract tests * fix typo and move variables inside function * add plonk&groth16 smart contract tests * add setup and prove on smart contracts tests
- Loading branch information
1 parent
614c350
commit 96b7d27
Showing
26 changed files
with
14,569 additions
and
2,544 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
require("@nomiclabs/hardhat-waffle"); | ||
|
||
/** @type import('hardhat/config').HardhatUserConfig */ | ||
module.exports = { | ||
solidity: { | ||
compilers: [ | ||
{ | ||
version: "0.8.17", | ||
settings: { | ||
optimizer: { | ||
enabled: true, | ||
runs: 999999 | ||
} | ||
} | ||
}, | ||
{ | ||
version: "0.6.11", | ||
settings: { | ||
optimizer: { | ||
enabled: true, | ||
runs: 999999 | ||
} | ||
} | ||
}, | ||
] | ||
}, | ||
paths: { | ||
sources: "./test/smart_contracts/contracts", | ||
tests: "./test", | ||
cache: "./test/smart_contracts/cache", | ||
artifacts: "./test/smart_contracts/artifacts" | ||
}, | ||
// gasReporter: { | ||
// enabled: !!process.env.REPORT_GAS, | ||
// outputFile: process.env.REPORT_GAS_FILE ? "./gas_report.md" : null, | ||
// noColors: process.env.REPORT_GAS_FILE ? true : false | ||
// }, | ||
|
||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.