-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Sync from aztec-packages (#6345)
Automated pull of Noir development from [aztec-packages](https://github.com/AztecProtocol/aztec-packages). BEGIN_COMMIT_OVERRIDE chore!: replace usage of vector in keccakf1600 input with array (AztecProtocol/aztec-packages#9350) chore!: remove noir_js_backend_barretenberg (AztecProtocol/aztec-packages#9338) END_COMMIT_OVERRIDE --------- Co-authored-by: Tom French <tom@tomfren.ch>
- Loading branch information
1 parent
4d87c9a
commit 3925228
Showing
38 changed files
with
114 additions
and
608 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
ab0c80d7493e6bdbc58dcd517b248de6ddd6fd67 | ||
07d6dc29db2eb04154b8f0c66bd1efa74c0e8b9d |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,34 +1,34 @@ | ||
{ | ||
"name": "integration-tests", | ||
"license": "(MIT OR Apache-2.0)", | ||
"main": "index.js", | ||
"private": true, | ||
"scripts": { | ||
"build": "echo Integration Test build step", | ||
"test": "yarn test:browser && yarn test:node", | ||
"test:node": "bash ./scripts/setup.sh && hardhat test test/node/prove_and_verify.test.ts && hardhat test test/node/smart_contract_verifier.test.ts && hardhat test test/node/onchain_recursive_verification.test.ts", | ||
"test:browser": "web-test-runner", | ||
"test:integration:browser": "web-test-runner test/browser/**/*.test.ts", | ||
"test:integration:browser:watch": "web-test-runner test/browser/**/*.test.ts --watch", | ||
"lint": "NODE_NO_WARNINGS=1 eslint . --ext .ts --ignore-path ./.eslintignore --max-warnings 0" | ||
}, | ||
"dependencies": { | ||
"@noir-lang/backend_barretenberg": "workspace:*", | ||
"@noir-lang/noir_js": "workspace:*", | ||
"@noir-lang/noir_wasm": "workspace:*", | ||
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0", | ||
"@nomicfoundation/hardhat-ethers": "^3.0.0", | ||
"@web/dev-server-esbuild": "^0.3.6", | ||
"@web/dev-server-import-maps": "^0.2.0", | ||
"@web/test-runner": "^0.18.1", | ||
"@web/test-runner-playwright": "^0.11.0", | ||
"eslint": "^8.57.0", | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"ethers": "^6.7.1", | ||
"hardhat": "^2.22.6", | ||
"prettier": "3.2.5", | ||
"smol-toml": "^1.1.2", | ||
"toml": "^3.0.0", | ||
"tslog": "^4.9.2" | ||
} | ||
"name": "integration-tests", | ||
"license": "(MIT OR Apache-2.0)", | ||
"main": "index.js", | ||
"private": true, | ||
"scripts": { | ||
"build": "echo Integration Test build step", | ||
"test": "yarn test:browser && yarn test:node", | ||
"test:node": "bash ./scripts/setup.sh && hardhat test test/node/prove_and_verify.test.ts && hardhat test test/node/smart_contract_verifier.test.ts && hardhat test test/node/onchain_recursive_verification.test.ts", | ||
"test:browser": "web-test-runner", | ||
"test:integration:browser": "web-test-runner test/browser/**/*.test.ts", | ||
"test:integration:browser:watch": "web-test-runner test/browser/**/*.test.ts --watch", | ||
"lint": "NODE_NO_WARNINGS=1 eslint . --ext .ts --ignore-path ./.eslintignore --max-warnings 0" | ||
}, | ||
"dependencies": { | ||
"@aztec/bb.js": "0.60.0", | ||
"@noir-lang/noir_js": "workspace:*", | ||
"@noir-lang/noir_wasm": "workspace:*", | ||
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0", | ||
"@nomicfoundation/hardhat-ethers": "^3.0.0", | ||
"@web/dev-server-esbuild": "^0.3.6", | ||
"@web/dev-server-import-maps": "^0.2.0", | ||
"@web/test-runner": "^0.18.1", | ||
"@web/test-runner-playwright": "^0.11.0", | ||
"eslint": "^8.57.0", | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"ethers": "^6.7.1", | ||
"hardhat": "^2.22.6", | ||
"prettier": "3.2.5", | ||
"smol-toml": "^1.1.2", | ||
"toml": "^3.0.0", | ||
"tslog": "^4.9.2" | ||
} | ||
} |
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
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
Oops, something went wrong.