-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Eth-prover: replace `admin_controlled` with near plugins * Eth2-client: replace `admin_controlled` with near plugins * Eth-client: replace `admin_controlled` with near plugins * Fix prover tests * Add prover test to CI * Update wasm builds * Fix prover tests after merge * Prover: update acl plugins * Eth2Client: update acl plugins * EthClient: Update near plugins * Revert script changes * Update contracts builds * Update contracts builds * Update near plugins and it's roles * Update contracts builds * Update contract build * Clean roles for eth-client contracts * Update contract build * Fix test * Remove unused deps * Update contract build * Minor roles fixes * Update contracts builds
- Loading branch information
Showing
20 changed files
with
407 additions
and
356 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,30 @@ | ||
[package] | ||
name = "eth-prover" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Near Inc <[email protected]>"] | ||
edition = "2021" | ||
|
||
[lib] | ||
crate-type = ["cdylib", "rlib"] | ||
|
||
[dependencies] | ||
eth-types = { path = "../eth-types", default-features = false } | ||
admin-controlled = { path = "../admin-controlled" } | ||
eth-types = { path = "../eth-types", default-features = false } | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
near-sdk = "4.1.1" | ||
borsh = "0.9.3" | ||
rlp = "0.5.2" | ||
hex = "0.4.2" | ||
near-plugins = { git = "https://github.com/aurora-is-near/near-plugins", tag = "v0.1.0" } | ||
|
||
[dev-dependencies] | ||
hex = { version = "0.4.3", features = ["serde"] } | ||
indicatif = "0.14" | ||
lazy_static = "*" | ||
near-crypto = "0.16.0" | ||
near-primitives = "0.16.0" | ||
workspaces = "0.6.0" | ||
tokio = { version = "1.18.1", features = ["full"] } | ||
|
||
[features] | ||
default = [] | ||
|
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,2 +1,2 @@ | ||
[toolchain] | ||
channel = "1.68.0" | ||
channel = "1.69.0" |
Oops, something went wrong.