Skip to content
Merged
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
128 changes: 81 additions & 47 deletions Cargo.lock

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

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,34 +47,34 @@ path = "cmd/crates/stellar-ledger"

# Dependencies from the rs-stellar-xdr repo:
[workspace.dependencies.stellar-xdr]
version = "23.0.0"
version = "25.0.0"

# Dependencies from the rs-soroban-sdk repo:
[workspace.dependencies.soroban-spec]
version = "23.0.1"
version = "25.0.0-rc.2"

[workspace.dependencies.soroban-spec-rust]
version = "23.0.1"
version = "25.0.0-rc.2"

[workspace.dependencies.soroban-sdk]
version = "23.0.1"
version = "25.0.0-rc.2"

[workspace.dependencies.soroban-env-host]
version = "23.0.1"
version = "25.0.1"

[workspace.dependencies.soroban-token-sdk]
version = "23.0.1"
version = "25.0.0-rc.2"

[workspace.dependencies.stellar-asset-spec]
version = "23.0.1"
version = "25.0.0-rc.2"

[workspace.dependencies.soroban-ledger-snapshot]
version = "23.0.1"
version = "25.0.0-rc.2"

# Dependencies from the rs-stellar-rpc-client repo:
[workspace.dependencies.soroban-rpc]
package = "stellar-rpc-client"
version = "23.2.1"
version = "25.0.0"

# Dependencies from elsewhere shared by crates:
[workspace.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion FULL_HELP_DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4525,7 +4525,7 @@ Verify a SEP-53 signed message

Verifies that a signature was produced by the holder of the private key corresponding to the given account public key, following the SEP-53 specification. The provided message will get prefixed with "Stellar Signed Message:\n" before verification.

Example: stellar message verify "Hello, World!" --signature <BASE64_SIG> --public-key GABC...
Example: stellar message verify "Hello, World!" --signature BASE64_SIG --public-key GABC...

**Usage:** `stellar message verify [OPTIONS] --signature <SIGNATURE> --public-key <PUBLIC_KEY> [MESSAGE]`

Expand Down
2 changes: 1 addition & 1 deletion cmd/crates/soroban-spec-typescript/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ pub fn generate_from_file(

pub fn generate_from_wasm(wasm: &[u8]) -> Result<String, FromWasmError> {
let spec = from_wasm(wasm)?;
let json = generate(&spec);
let json = generate(spec.as_slice());
Ok(json)
}

Expand Down
2 changes: 1 addition & 1 deletion cmd/soroban-cli/src/commands/message/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ pub enum Cmd {
/// corresponding to the given account public key, following the SEP-53 specification. The
/// provided message will get prefixed with "Stellar Signed Message:\n" before verification.
///
/// Example: stellar message verify "Hello, World!" --signature <BASE64_SIG> --public-key GABC...
/// Example: stellar message verify "Hello, World!" --signature BASE64_SIG --public-key GABC...
Verify(verify::Cmd),
}

Expand Down