From b85343448eab15848715553714047cd82cf39a5e Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Tue, 18 Jun 2024 11:08:51 +0200 Subject: [PATCH] Update noir version in Nargo.tomls --- README.md | 2 +- ethereum/circuits/get_account/Nargo.toml | 2 +- ethereum/circuits/get_header/Nargo.toml | 2 +- ethereum/circuits/get_log/Nargo.toml | 2 +- ethereum/circuits/get_receipt/Nargo.toml | 2 +- ethereum/circuits/get_storage/Nargo.toml | 2 +- ethereum/circuits/get_storage_recursive/Nargo.toml | 2 +- ethereum/circuits/get_transaction/Nargo.toml | 2 +- ethereum/circuits/lib/Nargo.toml | 2 +- vlayer/ethereum/circuits/lib/Nargo.toml | 2 +- vlayer/examples/circuits/is_ape_owner/Nargo.toml | 2 +- vlayer/examples/circuits/is_crypto_punk_owner/Nargo.toml | 2 +- vlayer/examples/circuits/is_dao_worthy/Nargo.toml | 2 +- vlayer/examples/circuits/is_dao_worthy_recursive/Nargo.toml | 2 +- 14 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 1435c190..2c460a5b 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ This monorepo contains two sub-projects: **nargo** and **foundry** must be installed in order to compile and test code in this repository. -- [nargo installation](https://noir-lang.org/docs/getting_started/installation/) `>= 0.30.0` +- [nargo installation](https://noir-lang.org/docs/getting_started/installation/) `>= 0.31.0` - [foundry installation](https://book.getfoundry.sh/getting-started/installation) - [yarn](https://yarnpkg.com) `>= 4.1.0` diff --git a/ethereum/circuits/get_account/Nargo.toml b/ethereum/circuits/get_account/Nargo.toml index 8470519e..fd909f35 100644 --- a/ethereum/circuits/get_account/Nargo.toml +++ b/ethereum/circuits/get_account/Nargo.toml @@ -1,7 +1,7 @@ [package] name = "get_account" type = "bin" -compiler_version = ">=0.30.0" +compiler_version = ">=0.31.0" [dependencies] ethereum = { path = "../lib" } diff --git a/ethereum/circuits/get_header/Nargo.toml b/ethereum/circuits/get_header/Nargo.toml index 7326f615..5bdae956 100644 --- a/ethereum/circuits/get_header/Nargo.toml +++ b/ethereum/circuits/get_header/Nargo.toml @@ -1,7 +1,7 @@ [package] name = "get_header" type = "bin" -compiler_version = ">=0.30.0" +compiler_version = ">=0.31.0" [dependencies] ethereum = { path = "../lib" } diff --git a/ethereum/circuits/get_log/Nargo.toml b/ethereum/circuits/get_log/Nargo.toml index 36c7db54..3ea1a7fb 100644 --- a/ethereum/circuits/get_log/Nargo.toml +++ b/ethereum/circuits/get_log/Nargo.toml @@ -1,7 +1,7 @@ [package] name = "get_log" type = "bin" -compiler_version = ">=0.30.0" +compiler_version = ">=0.31.0" [dependencies] ethereum = { path = "../lib" } diff --git a/ethereum/circuits/get_receipt/Nargo.toml b/ethereum/circuits/get_receipt/Nargo.toml index 67e1d5ec..99a26258 100644 --- a/ethereum/circuits/get_receipt/Nargo.toml +++ b/ethereum/circuits/get_receipt/Nargo.toml @@ -1,7 +1,7 @@ [package] name = "get_receipt" type = "bin" -compiler_version = ">=0.30.0" +compiler_version = ">=0.31.0" [dependencies] ethereum = { path = "../lib" } diff --git a/ethereum/circuits/get_storage/Nargo.toml b/ethereum/circuits/get_storage/Nargo.toml index e29be694..3301f584 100644 --- a/ethereum/circuits/get_storage/Nargo.toml +++ b/ethereum/circuits/get_storage/Nargo.toml @@ -1,7 +1,7 @@ [package] name = "get_storage" type = "bin" -compiler_version = ">=0.30.0" +compiler_version = ">=0.31.0" [dependencies] ethereum = { path = "../lib" } diff --git a/ethereum/circuits/get_storage_recursive/Nargo.toml b/ethereum/circuits/get_storage_recursive/Nargo.toml index 84d77de2..5bc00505 100644 --- a/ethereum/circuits/get_storage_recursive/Nargo.toml +++ b/ethereum/circuits/get_storage_recursive/Nargo.toml @@ -1,7 +1,7 @@ [package] name = "get_storage_recursive" type = "bin" -compiler_version = ">=0.30.0" +compiler_version = ">=0.31.0" [dependencies] ethereum = { path = "../lib" } diff --git a/ethereum/circuits/get_transaction/Nargo.toml b/ethereum/circuits/get_transaction/Nargo.toml index b73a8c62..c809f987 100644 --- a/ethereum/circuits/get_transaction/Nargo.toml +++ b/ethereum/circuits/get_transaction/Nargo.toml @@ -1,7 +1,7 @@ [package] name = "get_transaction" type = "bin" -compiler_version = ">=0.30.0" +compiler_version = ">=0.31.0" [dependencies] ethereum = { path = "../lib" } diff --git a/ethereum/circuits/lib/Nargo.toml b/ethereum/circuits/lib/Nargo.toml index ee419255..078ceda0 100644 --- a/ethereum/circuits/lib/Nargo.toml +++ b/ethereum/circuits/lib/Nargo.toml @@ -2,7 +2,7 @@ name = "ethereum" type = "lib" authors = ["Arkadiusz Konior, Marek Kirejczyk"] -compiler_version = "0.30.0" +compiler_version = "0.31.0" [dependencies] u2b = { tag = "v0.3.4", git = "https://github.com/vlayer-xyz/noir-u2b" } diff --git a/vlayer/ethereum/circuits/lib/Nargo.toml b/vlayer/ethereum/circuits/lib/Nargo.toml index 26fc7f38..1f13bed6 100644 --- a/vlayer/ethereum/circuits/lib/Nargo.toml +++ b/vlayer/ethereum/circuits/lib/Nargo.toml @@ -1,7 +1,7 @@ [package] name = "vlayer_ethereum" type = "lib" -compiler_version = ">=0.30.0" +compiler_version = ">=0.31.0" [dependencies] ethereum = { path = "../../../../ethereum/circuits/lib" } diff --git a/vlayer/examples/circuits/is_ape_owner/Nargo.toml b/vlayer/examples/circuits/is_ape_owner/Nargo.toml index 6cf8c76e..ce05c028 100644 --- a/vlayer/examples/circuits/is_ape_owner/Nargo.toml +++ b/vlayer/examples/circuits/is_ape_owner/Nargo.toml @@ -2,7 +2,7 @@ name = "is_ape_owner" type = "bin" authors = [""] -compiler_version = ">=0.30.0" +compiler_version = ">=0.31.0" [dependencies] ethereum = { path = "../../../../ethereum/circuits/lib" } diff --git a/vlayer/examples/circuits/is_crypto_punk_owner/Nargo.toml b/vlayer/examples/circuits/is_crypto_punk_owner/Nargo.toml index cf75cdb9..b159f1f9 100644 --- a/vlayer/examples/circuits/is_crypto_punk_owner/Nargo.toml +++ b/vlayer/examples/circuits/is_crypto_punk_owner/Nargo.toml @@ -1,7 +1,7 @@ [package] name = "is_crypto_punk_owner" type = "bin" -compiler_version = ">=0.30.0" +compiler_version = ">=0.31.0" [dependencies] ethereum = { path = "../../../../ethereum/circuits/lib" } diff --git a/vlayer/examples/circuits/is_dao_worthy/Nargo.toml b/vlayer/examples/circuits/is_dao_worthy/Nargo.toml index 38ad7aee..6b28d28b 100644 --- a/vlayer/examples/circuits/is_dao_worthy/Nargo.toml +++ b/vlayer/examples/circuits/is_dao_worthy/Nargo.toml @@ -1,7 +1,7 @@ [package] name = "is_dao_worthy" type = "bin" -compiler_version = ">=0.30.0" +compiler_version = ">=0.31.0" [dependencies] ethereum = { path = "../../../../ethereum/circuits/lib" } diff --git a/vlayer/examples/circuits/is_dao_worthy_recursive/Nargo.toml b/vlayer/examples/circuits/is_dao_worthy_recursive/Nargo.toml index 502e862b..61c53b6e 100644 --- a/vlayer/examples/circuits/is_dao_worthy_recursive/Nargo.toml +++ b/vlayer/examples/circuits/is_dao_worthy_recursive/Nargo.toml @@ -1,7 +1,7 @@ [package] name = "is_dao_worthy_recursive" type = "bin" -compiler_version = ">=0.30.0" +compiler_version = ">=0.31.0" [dependencies] ethereum = { path = "../../../../ethereum/circuits/lib" }