From 421dd8a09e22089a55bf3a8c65ed9e34a9674529 Mon Sep 17 00:00:00 2001 From: primata Date: Fri, 31 Jul 2026 15:25:51 -0300 Subject: [PATCH] chore: point movementlabsxyz aptos-core references at movement-network aptos-core was transferred to movement-network. Includes the actions/checkout repository input in .github/workflows/ca-e2e.yml, which is functional rather than documentation. The confidential-asset-prod branch name is unchanged. --- .github/workflows/ca-e2e.yml | 4 ++-- README.md | 2 +- crates/confidential-assets/MAINTAINERS.md | 2 +- crates/confidential-assets/README.md | 8 ++++---- crates/confidential-assets/tests/README.md | 6 +++--- scripts/run-ca-e2e.sh | 6 +++--- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ca-e2e.yml b/.github/workflows/ca-e2e.yml index 4f41c1f..80c5021 100644 --- a/.github/workflows/ca-e2e.yml +++ b/.github/workflows/ca-e2e.yml @@ -13,7 +13,7 @@ on: env: CARGO_TERM_COLOR: always RUST_BACKTRACE: 1 - # Pinned to a commit on movementlabsxyz/aptos-core's confidential-asset-prod + # Pinned to a commit on movement-network/aptos-core's confidential-asset-prod # branch so CI is reproducible and won't drift if the branch advances. # Bump when intentional changes to the localnet/module setup are needed. # @@ -40,7 +40,7 @@ jobs: - name: Checkout aptos-core (pinned) uses: actions/checkout@v6 with: - repository: movementlabsxyz/aptos-core + repository: movement-network/aptos-core ref: ${{ env.APTOS_CORE_COMMIT }} path: aptos-core diff --git a/README.md b/README.md index 3021303..81f34b1 100644 --- a/README.md +++ b/README.md @@ -188,7 +188,7 @@ cargo test -p movement-sdk --features "e2e,full" -- --ignored cargo test -p confidential-assets # Unit + integration (47 tests, no network) # E2E tests — needs a localnet started by start-localnet-confidential-assets.sh -# from the confidential-asset-prod branch of movementlabsxyz/aptos-core. See +# from the confidential-asset-prod branch of movement-network/aptos-core. See # crates/confidential-assets/tests/README.md for full setup. export CONFIDENTIAL_MODULE_ADDRESS=0x<64 hex> ./scripts/run-ca-e2e.sh diff --git a/crates/confidential-assets/MAINTAINERS.md b/crates/confidential-assets/MAINTAINERS.md index d2ab0cb..a299371 100644 --- a/crates/confidential-assets/MAINTAINERS.md +++ b/crates/confidential-assets/MAINTAINERS.md @@ -98,7 +98,7 @@ verifier. There is one source of truth: the `APTOS_CORE_COMMIT` env var in [`.github/workflows/ca-e2e.yml`](../../.github/workflows/ca-e2e.yml). That commit is on the `confidential-asset-prod` branch of -[`movementlabsxyz/aptos-core`](https://github.com/movementlabsxyz/aptos-core) +[`movement-network/aptos-core`](https://github.com/movement-network/aptos-core) and is what every CI run of confidential-assets e2e tests publishes into a localnet via `scripts/start-localnet-confidential-assets.sh`. diff --git a/crates/confidential-assets/README.md b/crates/confidential-assets/README.md index f1c8888..52500fb 100644 --- a/crates/confidential-assets/README.md +++ b/crates/confidential-assets/README.md @@ -18,7 +18,7 @@ port). Kangaroo decryption uses the upstream `pollard-kangaroo` crate directly. total-balance variants, plus negative paths): **passing**. See [`tests/README.md`](tests/README.md) for how to run the e2e suite (requires -[`scripts/start-localnet-confidential-assets.sh`](https://github.com/movementlabsxyz/aptos-core/blob/confidential-asset-prod/scripts/start-localnet-confidential-assets.sh) +[`scripts/start-localnet-confidential-assets.sh`](https://github.com/movement-network/aptos-core/blob/confidential-asset-prod/scripts/start-localnet-confidential-assets.sh) from the `confidential-asset-prod` branch of our `aptos-core` repo). ## Concepts @@ -332,16 +332,16 @@ normalize → key rotation → total-balance variants, plus negative paths (froz unregistered recipient, over-withdraw, etc.). **1. Start the localnet.** The required helper script lives at -[`scripts/start-localnet-confidential-assets.sh`](https://github.com/movementlabsxyz/aptos-core/blob/confidential-asset-prod/scripts/start-localnet-confidential-assets.sh) +[`scripts/start-localnet-confidential-assets.sh`](https://github.com/movement-network/aptos-core/blob/confidential-asset-prod/scripts/start-localnet-confidential-assets.sh) in the **`confidential-asset-prod` branch** of -[`movementlabsxyz/aptos-core`](https://github.com/movementlabsxyz/aptos-core). Clone that +[`movement-network/aptos-core`](https://github.com/movement-network/aptos-core). Clone that branch locally — the script depends on sibling Move sources and helper files in the same repo, so a remote `curl | bash` won't work: ```bash # In a separate directory, NOT inside the rust-sdk repo git clone --branch confidential-asset-prod --depth 1 \ - https://github.com/movementlabsxyz/aptos-core.git + https://github.com/movement-network/aptos-core.git cd aptos-core ./scripts/start-localnet-confidential-assets.sh ``` diff --git a/crates/confidential-assets/tests/README.md b/crates/confidential-assets/tests/README.md index cec1210..afedd30 100644 --- a/crates/confidential-assets/tests/README.md +++ b/crates/confidential-assets/tests/README.md @@ -18,16 +18,16 @@ Two layers: **1. Start a localnet** with feature flag 87 (`BULLETPROOFS_BATCH_NATIVES`) enabled and the `confidential_asset` Move module published. The required helper script lives at -[`scripts/start-localnet-confidential-assets.sh`](https://github.com/movementlabsxyz/aptos-core/blob/confidential-asset-prod/scripts/start-localnet-confidential-assets.sh) +[`scripts/start-localnet-confidential-assets.sh`](https://github.com/movement-network/aptos-core/blob/confidential-asset-prod/scripts/start-localnet-confidential-assets.sh) in the **`confidential-asset-prod` branch** of -[`movementlabsxyz/aptos-core`](https://github.com/movementlabsxyz/aptos-core). The script +[`movement-network/aptos-core`](https://github.com/movement-network/aptos-core). The script depends on sibling Move sources in that repo, so clone the branch locally — a remote `curl | bash` won't work: ```bash # In a separate directory, NOT inside the rust-sdk repo git clone --branch confidential-asset-prod --depth 1 \ - https://github.com/movementlabsxyz/aptos-core.git + https://github.com/movement-network/aptos-core.git cd aptos-core ./scripts/start-localnet-confidential-assets.sh ``` diff --git a/scripts/run-ca-e2e.sh b/scripts/run-ca-e2e.sh index 38ed4e1..3d18d3a 100755 --- a/scripts/run-ca-e2e.sh +++ b/scripts/run-ca-e2e.sh @@ -4,11 +4,11 @@ # # The localnet must be started by `scripts/start-localnet-confidential-assets.sh` # from the `confidential-asset-prod` branch of -# https://github.com/movementlabsxyz/aptos-core +# https://github.com/movement-network/aptos-core # # Setup (one-time, in a separate directory): # git clone --branch confidential-asset-prod --depth 1 \ -# https://github.com/movementlabsxyz/aptos-core.git +# https://github.com/movement-network/aptos-core.git # cd aptos-core # ./scripts/start-localnet-confidential-assets.sh # @@ -27,7 +27,7 @@ if [[ -z "${CONFIDENTIAL_MODULE_ADDRESS:-}" ]]; then echo "" >&2 echo " Run scripts/start-localnet-confidential-assets.sh from the" >&2 echo " confidential-asset-prod branch of" >&2 - echo " https://github.com/movementlabsxyz/aptos-core, then export" >&2 + echo " https://github.com/movement-network/aptos-core, then export" >&2 echo " the address it prints." >&2 exit 1 fi