Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -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).

Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion crates/confidential-assets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/confidential-assets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions crates/movement-sdk-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions crates/movement-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

2 changes: 1 addition & 1 deletion crates/movement-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading