Skip to content

Commit

Permalink
Update noir version in Nargo.tomls
Browse files Browse the repository at this point in the history
  • Loading branch information
LogvinovLeon committed Jun 18, 2024
1 parent 9838c1e commit b853434
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand Down
2 changes: 1 addition & 1 deletion ethereum/circuits/get_account/Nargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "get_account"
type = "bin"
compiler_version = ">=0.30.0"
compiler_version = ">=0.31.0"

[dependencies]
ethereum = { path = "../lib" }
2 changes: 1 addition & 1 deletion ethereum/circuits/get_header/Nargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "get_header"
type = "bin"
compiler_version = ">=0.30.0"
compiler_version = ">=0.31.0"

[dependencies]
ethereum = { path = "../lib" }
2 changes: 1 addition & 1 deletion ethereum/circuits/get_log/Nargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "get_log"
type = "bin"
compiler_version = ">=0.30.0"
compiler_version = ">=0.31.0"

[dependencies]
ethereum = { path = "../lib" }
2 changes: 1 addition & 1 deletion ethereum/circuits/get_receipt/Nargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "get_receipt"
type = "bin"
compiler_version = ">=0.30.0"
compiler_version = ">=0.31.0"

[dependencies]
ethereum = { path = "../lib" }
2 changes: 1 addition & 1 deletion ethereum/circuits/get_storage/Nargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "get_storage"
type = "bin"
compiler_version = ">=0.30.0"
compiler_version = ">=0.31.0"

[dependencies]
ethereum = { path = "../lib" }
2 changes: 1 addition & 1 deletion ethereum/circuits/get_storage_recursive/Nargo.toml
Original file line number Diff line number Diff line change
@@ -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" }
2 changes: 1 addition & 1 deletion ethereum/circuits/get_transaction/Nargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "get_transaction"
type = "bin"
compiler_version = ">=0.30.0"
compiler_version = ">=0.31.0"

[dependencies]
ethereum = { path = "../lib" }
2 changes: 1 addition & 1 deletion ethereum/circuits/lib/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion vlayer/ethereum/circuits/lib/Nargo.toml
Original file line number Diff line number Diff line change
@@ -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" }
2 changes: 1 addition & 1 deletion vlayer/examples/circuits/is_ape_owner/Nargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion vlayer/examples/circuits/is_crypto_punk_owner/Nargo.toml
Original file line number Diff line number Diff line change
@@ -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" }
Expand Down
2 changes: 1 addition & 1 deletion vlayer/examples/circuits/is_dao_worthy/Nargo.toml
Original file line number Diff line number Diff line change
@@ -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" }
Expand Down
Original file line number Diff line number Diff line change
@@ -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" }
Expand Down

0 comments on commit b853434

Please sign in to comment.