diff --git a/Cargo.lock b/Cargo.lock index 0133b24..d6b0a70 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1579,7 +1579,7 @@ dependencies = [ [[package]] name = "movement_rp_wasm" version = "0.0.0" -source = "git+https://github.com/moveindustries/confidential-asset-wasm-bindings?branch=main#527d22312a71c10c53344bdd802ce1e1ce684d80" +source = "git+https://github.com/movement-network/confidential-asset-wasm-bindings?branch=main#527d22312a71c10c53344bdd802ce1e1ce684d80" dependencies = [ "bulletproofs", "curve25519-dalek-ng", diff --git a/Cargo.toml b/Cargo.toml index 4294c73..df51b80 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ edition = "2024" homepage = "https://movementnetwork.xyz" license = "Apache-2.0" publish = false -repository = "https://github.com/moveindustries/rust-sdk" +repository = "https://github.com/movement-network/rust-sdk" rust-version = "1.90.0" [workspace.dependencies] diff --git a/MIGRATION.md b/MIGRATION.md index adea20a..820d41b 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -680,4 +680,4 @@ movement.transfer_apt(&account, recipient, amount).await?; - [SDK Documentation](https://docs.rs/movement-sdk) - [Examples](./crates/movement-sdk/examples/) -- [GitHub Issues](https://github.com/moveindustries/rust-sdk/issues) +- [GitHub Issues](https://github.com/movement-network/rust-sdk/issues) diff --git a/README.md b/README.md index 3021303..c19ce04 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ # Movement Rust SDK -[![CI](https://github.com/moveindustries/rust-sdk/actions/workflows/ci.yml/badge.svg)](https://github.com/moveindustries/rust-sdk/actions/workflows/ci.yml) -[![codecov](https://codecov.io/gh/moveindustries/rust-sdk/graph/badge.svg)](https://codecov.io/gh/moveindustries/rust-sdk) +[![CI](https://github.com/movement-network/rust-sdk/actions/workflows/ci.yml/badge.svg)](https://github.com/movement-network/rust-sdk/actions/workflows/ci.yml) +[![codecov](https://codecov.io/gh/movement-network/rust-sdk/graph/badge.svg)](https://codecov.io/gh/movement-network/rust-sdk) [![License](https://img.shields.io/badge/license-Apache--2.0-blue.svg)](LICENSE) [![Rust](https://img.shields.io/badge/rust-1.90%2B-orange.svg)](rust-toolchain.toml) -[![API Docs](https://img.shields.io/badge/docs-moveindustries.github.io-blue)](https://moveindustries.github.io/rust-sdk/movement_sdk/index.html) +[![API Docs](https://img.shields.io/badge/docs-movement-network.github.io-blue)](https://movement-network.github.io/rust-sdk/movement_sdk/index.html) A user-friendly, idiomatic Rust SDK for [Movement Network](https://docs.movementnetwork.xyz). @@ -39,7 +39,7 @@ Add the SDK to your `Cargo.toml`: ```toml [dependencies] -movement-sdk = { git = "https://github.com/moveindustries/rust-sdk", package = "movement-sdk" } +movement-sdk = { git = "https://github.com/movement-network/rust-sdk", package = "movement-sdk" } ``` Then use it: @@ -86,7 +86,7 @@ Include only the signature scheme you need: ```toml [dependencies] -movement-sdk = { git = "https://github.com/moveindustries/rust-sdk", package = "movement-sdk", default-features = false, features = ["ed25519"] } +movement-sdk = { git = "https://github.com/movement-network/rust-sdk", package = "movement-sdk", default-features = false, features = ["ed25519"] } ``` ### Full Build @@ -95,7 +95,7 @@ Enable everything: ```toml [dependencies] -movement-sdk = { git = "https://github.com/moveindustries/rust-sdk", package = "movement-sdk", features = ["full"] } +movement-sdk = { git = "https://github.com/movement-network/rust-sdk", package = "movement-sdk", features = ["full"] } ``` ## Examples @@ -204,7 +204,7 @@ cargo fmt -- --check ## Resources - [Movement Developer Documentation](https://docs.movementnetwork.xyz) -- [API Reference (GitHub Pages)](https://moveindustries.github.io/rust-sdk/movement_sdk/index.html) +- [API Reference (GitHub Pages)](https://movement-network.github.io/rust-sdk/movement_sdk/index.html) ## License diff --git a/crates/confidential-assets/Cargo.toml b/crates/confidential-assets/Cargo.toml index 57a9101..bc8b130 100644 --- a/crates/confidential-assets/Cargo.toml +++ b/crates/confidential-assets/Cargo.toml @@ -42,7 +42,7 @@ num-traits = "0.2" # Upstream range-proof prover/verifier shared with the TS SDK (built as WASM there, linked as # rlib here). Both prove and verify go through this crate's native `rp` module. -movement_rp_wasm = { git = "https://github.com/moveindustries/confidential-asset-wasm-bindings", branch = "main" } +movement_rp_wasm = { git = "https://github.com/movement-network/confidential-asset-wasm-bindings", branch = "main" } # curve25519-dalek-ng: kangaroo-decryption point conversion in `twisted_el_gamal`. # (Range-proof prove + verify both go through `movement_rp_wasm`'s native `rp` module.) curve25519-dalek-ng = "4" diff --git a/crates/confidential-assets/README.md b/crates/confidential-assets/README.md index f1c8888..0d4cab1 100644 --- a/crates/confidential-assets/README.md +++ b/crates/confidential-assets/README.md @@ -277,7 +277,7 @@ Cryptography: Movement-specific (shared with the TS SDK): -- [`movement_rp_wasm`](https://github.com/moveindustries/confidential-asset-wasm-bindings) — +- [`movement_rp_wasm`](https://github.com/movement-network/confidential-asset-wasm-bindings) — bulletproofs prover and verifier (native `rp` module). Same Rust source the TS SDK builds as WASM; consumed here as an `rlib`. - [`pollard-kangaroo`](https://github.com/distributed-lab/pollard-kangaroo) — Pollard kangaroo diff --git a/crates/movement-sdk-macros/CHANGELOG.md b/crates/movement-sdk-macros/CHANGELOG.md index f7928d5..eed5cf0 100644 --- a/crates/movement-sdk-macros/CHANGELOG.md +++ b/crates/movement-sdk-macros/CHANGELOG.md @@ -33,5 +33,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Support for entry functions, view functions, and struct definitions - Move-to-Rust type mapping (primitives, vectors, options, objects) -[0.2.0]: https://github.com/moveindustries/rust-sdk/releases/tag/macros-v0.2.0 -[0.1.0]: https://github.com/moveindustries/rust-sdk/releases/tag/macros-v0.1.0 +[0.2.0]: https://github.com/movement-network/rust-sdk/releases/tag/macros-v0.2.0 +[0.1.0]: https://github.com/movement-network/rust-sdk/releases/tag/macros-v0.1.0 diff --git a/crates/movement-sdk/CHANGELOG.md b/crates/movement-sdk/CHANGELOG.md index e84f5b7..15fe150 100644 --- a/crates/movement-sdk/CHANGELOG.md +++ b/crates/movement-sdk/CHANGELOG.md @@ -118,6 +118,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - This SDK is independent of `aptos-core` for faster compilation - Minimum Supported Rust Version (MSRV): 1.90 -[0.4.0]: https://github.com/moveindustries/rust-sdk/releases/tag/sdk-v0.4.0 -[0.1.0]: https://github.com/moveindustries/rust-sdk/releases/tag/sdk-v0.1.0 +[0.4.0]: https://github.com/movement-network/rust-sdk/releases/tag/sdk-v0.4.0 +[0.1.0]: https://github.com/movement-network/rust-sdk/releases/tag/sdk-v0.1.0 diff --git a/crates/movement-sdk/README.md b/crates/movement-sdk/README.md index e367c9b..e7e1b43 100644 --- a/crates/movement-sdk/README.md +++ b/crates/movement-sdk/README.md @@ -155,7 +155,7 @@ cargo tarpaulin -p movement-sdk --features "full" --skip-clean ## Resources - [Movement Developer Documentation](https://docs.movementnetwork.xyz) -- [API reference (rustdoc on GitHub Pages)](https://moveindustries.github.io/rust-sdk/movement_sdk/index.html) +- [API reference (rustdoc on GitHub Pages)](https://movement-network.github.io/rust-sdk/movement_sdk/index.html) ## License