Skip to content

Commit

Permalink
refactor: renamed wormhole-omni-prover-proxy to wormhole-omni-prover
Browse files Browse the repository at this point in the history
  • Loading branch information
frolvanya committed Feb 1, 2025
1 parent 0bcc11b commit 2aaffc7
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ OMNI_TOKEN_MANIFEST := $(MAKEFILE_DIR)/near/omni-token/Cargo.toml
TOKEN_DEPLOYER := $(MAKEFILE_DIR)/near/token-deployer/Cargo.toml
OMNI_PROVER_MANIFEST := $(MAKEFILE_DIR)/near/omni-prover/omni-prover/Cargo.toml
EVM_PROVER_MANIFEST := $(MAKEFILE_DIR)/near/omni-prover/evm-prover/Cargo.toml
WORMHOLE_OMNI_PROVER_PROXY_MANIFEST := $(MAKEFILE_DIR)/near/omni-prover/wormhole-omni-prover-proxy/Cargo.toml
WORMHOLE_OMNI_PROVER_MANIFEST := $(MAKEFILE_DIR)/near/omni-prover/wormhole-omni-prover/Cargo.toml
MOCK_PROVER_MANIFEST := $(MAKEFILE_DIR)/near/mock/mock-prover/Cargo.toml
MOCK_TOKEN_MANIFEST := $(MAKEFILE_DIR)/near/mock/mock-token/Cargo.toml

Expand Down Expand Up @@ -47,16 +47,16 @@ rust-build-omni-prover:
rust-build-evm-prover:
cargo near build reproducible-wasm --manifest-path $(EVM_PROVER_MANIFEST) --out-dir $(OUT_DIR)

rust-build-wormhole-omni-prover-proxy:
cargo near build reproducible-wasm --manifest-path $(WORMHOLE_OMNI_PROVER_PROXY_MANIFEST) --out-dir $(OUT_DIR)
rust-build-wormhole-omni-prover:
cargo near build reproducible-wasm --manifest-path $(WORMHOLE_OMNI_PROVER_MANIFEST) --out-dir $(OUT_DIR)

rust-build-mock-prover:
cargo near build reproducible-wasm --manifest-path $(MOCK_PROVER_MANIFEST) --out-dir $(OUT_DIR)

rust-build-mock-token:
cargo near build reproducible-wasm --manifest-path $(MOCK_TOKEN_MANIFEST) --out-dir $(OUT_DIR)

rust-build-near: rust-build-omni-bridge rust-build-omni-token rust-build-token-deployer rust-build-omni-prover rust-build-evm-prover rust-build-wormhole-omni-prover-proxy rust-build-mock-prover rust-build-mock-token
rust-build-near: rust-build-omni-bridge rust-build-omni-token rust-build-token-deployer rust-build-omni-prover rust-build-evm-prover rust-build-wormhole-omni-prover rust-build-mock-prover rust-build-mock-token

rust-run-tests:
cargo nextest run --manifest-path $(NEAR_MANIFEST)
2 changes: 1 addition & 1 deletion near/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion near/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ members = [
"omni-bridge",
"token-deployer",
"omni-prover/omni-prover",
"omni-prover/wormhole-omni-prover-proxy",
"omni-prover/wormhole-omni-prover",
"omni-prover/evm-prover",
"omni-token",
"omni-types",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "wormhole-omni-prover-proxy"
name = "wormhole-omni-prover"
version = "2.0.0"
authors = ["Near Inc <hello@nearprotocol.com>"]
edition = "2021"
Expand Down

0 comments on commit 2aaffc7

Please sign in to comment.