Skip to content

Commit

Permalink
Revert "testing FastMSM on wasm"
Browse files Browse the repository at this point in the history
This reverts commit d7467ee.
  • Loading branch information
harshadptl committed Mar 17, 2023
1 parent d7467ee commit bcb6374
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 25 deletions.
4 changes: 2 additions & 2 deletions src/components/abciapp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ ruc = { version = "1.0.5", default-features = false, features = ["compact"] }
module-evm = { path = "../contracts/modules/evm"}
ethereum-types = { version = "0.13.1", default-features = false }

noah = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah-algebra = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }
noah-algebra = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }

abci = { git = "https://github.com/FindoraNetwork/tendermint-abci", tag = "0.7.5" }
config = { path = "../config"}
Expand Down
2 changes: 1 addition & 1 deletion src/components/contracts/modules/account/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ parking_lot = "0.12"
rand_chacha = "0.3"
storage = { git = "https://github.com/FindoraNetwork/storage.git", tag = "v1.1.4" }
fin_db = { git = "https://github.com/FindoraNetwork/storage.git", tag = "v1.1.4" }
noah = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }

[features]
web3_service = ["enterprise-web3"]
4 changes: 2 additions & 2 deletions src/components/contracts/modules/evm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ serde_json = "1.0.64"
sha3 = { version = "0.10", default-features = false }
hex = "0.4.2"
ethabi = "17.1.0"
noah = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah-algebra = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }
noah-algebra = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }

# primitives, don't depend on any modules
fp-core = { path = "../../primitives/core" }
Expand Down
2 changes: 1 addition & 1 deletion src/components/contracts/primitives/mocks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rand_chacha = "0.3"
rlp = "0.5"
serde_json = "1.0"
sha3 = "0.10"
noah = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }

# primitives
fp-traits = { path = "../traits" }
Expand Down
4 changes: 2 additions & 2 deletions src/components/contracts/primitives/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ serde = { version = "1.0.124", features = ["derive"] }
serde_json = "1.0"
serde-big-array = "0.4"
sha3 = "0.10"
noah = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah-algebra = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }
noah-algebra = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }

# primitives
fp-utils = { path = "../utils" }
Expand Down
6 changes: 3 additions & 3 deletions src/components/finutils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ tokio = "1.10.1"
wasm-bindgen = { version = "=0.2.73", features = ["serde-serialize"] }
getrandom = "0.2"

noah = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah-crypto = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah-algebra = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }
noah-crypto = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }
noah-algebra = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }

ruc = "1.0"
rucv3 = { package = "ruc", version = "3.0" }
Expand Down
4 changes: 2 additions & 2 deletions src/components/wallet_mobile/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ serde = { version = "1.0.124", features = ["derive"] }
serde_derive = "^1.0.59"
serde_json = "1.0"

noah = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah-algebra = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }
noah-algebra = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }

finutils = { path = "../finutils", default-features = false, features = []}
fp-types = { path = "../contracts/primitives/types" }
Expand Down
6 changes: 3 additions & 3 deletions src/components/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ ruc = "1.0"
# OR the compiling will fail.
getrandom = { version = "0.2", features = ["js"] }

noah = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah-algebra = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah-crypto = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }
noah-algebra = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }
noah-crypto = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }

finutils = { path = "../finutils", default-features = false }
globutils = { path = "../../libs/globutils" }
Expand Down
8 changes: 4 additions & 4 deletions src/ledger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ fp-utils = { path = "../components/contracts/primitives/utils" }
itertools = "0.10"
ruc = "1.0"

noah = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah-crypto = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah-algebra = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }
noah-crypto = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }
noah-algebra = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }
bulletproofs = { package = "noah-bulletproofs", version = "4.0.0" }

fbnc = { version = "0.2.9", default-features = false}
Expand Down Expand Up @@ -71,7 +71,7 @@ fs2 = "0.4"
storage = { git = "https://github.com/FindoraNetwork/storage.git", tag = "v1.1.4", optional = true }
fin_db = { git = "https://github.com/FindoraNetwork/storage.git", tag = "v1.1.4", optional = true }
sparse_merkle_tree = { path = "../libs/sparse_merkle_tree" }
noah-accumulators = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah-accumulators = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }

[target.'cfg(target_arch = "wasm32")'.dependencies]
parking_lot = { version = "0.11", features = ["wasm-bindgen"] }
Expand Down
2 changes: 1 addition & 1 deletion src/libs/credentials/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ linear-map = {version = "1.2.0", features = ["serde_impl"] }
serde = "1.0.124"
serde_derive = "1.0"
wasm-bindgen = { version = "=0.2.73", features = ["serde-serialize"] }
noah = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }
6 changes: 3 additions & 3 deletions src/libs/globutils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ serde_json = "1.0"
time = "0.3"
rand = "0.8"
cryptohash = { path = "../cryptohash" }
noah = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah-crypto = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah-algebra = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }
noah-crypto = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }
noah-algebra = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }
hex = "0.4.2"
bip32 = "0.3.0"

Expand Down
2 changes: 1 addition & 1 deletion src/libs/sparse_merkle_tree/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ serde_derive = "1.0"
serde_json = "1.0"
sha2 = "0.10"
storage = { git = "https://github.com/FindoraNetwork/storage.git", tag = "v1.1.4" }
noah = { git = "https://github.com/FindoraNetwork/noah", branch = "msm_wasm" }
noah = { git = "https://github.com/FindoraNetwork/noah", tag = "v0.4.3" }

[dev-dependencies]
temp_db = { git = "https://github.com/FindoraNetwork/storage.git", tag = "v1.1.4" }
Expand Down

0 comments on commit bcb6374

Please sign in to comment.