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 7e9dd6c
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .catalog-info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spec:
targets:
- ./near/omni-prover/omni-prover/.catalog-info.yaml
- ./near/omni-prover/evm-prover/.catalog-info.yaml
- ./near/omni-prover/wormhole-omni-prover-proxy/.catalog-info.yaml
- ./near/omni-prover/wormhole-omni-prover/.catalog-info.yaml
- ./near/omni-types/.catalog-info.yaml
- ./near/omni-bridge/.catalog-info.yaml
- ./near/omni-token/.catalog-info.yaml
Expand Down
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
Expand Up @@ -2,8 +2,8 @@
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: wormhole-omni-prover-proxy
title: "Wormhole Omni Prover Proxy"
name: wormhole-omni-prover
title: "Wormhole Omni Prover"
description: |-
Takes proof of a Receipt from Wormhole and checks if it's valid and included on-chain.
tags:
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 <[email protected]>"]
edition = "2021"
Expand Down

0 comments on commit 7e9dd6c

Please sign in to comment.