Skip to content

Commit 6fb4feb

Browse files
authored
Update to protocol 25. (#2331)
1 parent d2cb31d commit 6fb4feb

5 files changed

Lines changed: 93 additions & 59 deletions

File tree

Cargo.lock

Lines changed: 81 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,34 +47,34 @@ path = "cmd/crates/stellar-ledger"
4747

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

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

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

5959
[workspace.dependencies.soroban-sdk]
60-
version = "23.0.1"
60+
version = "25.0.0-rc.2"
6161

6262
[workspace.dependencies.soroban-env-host]
63-
version = "23.0.1"
63+
version = "25.0.1"
6464

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

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

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

7474
# Dependencies from the rs-stellar-rpc-client repo:
7575
[workspace.dependencies.soroban-rpc]
7676
package = "stellar-rpc-client"
77-
version = "23.2.1"
77+
version = "25.0.0"
7878

7979
# Dependencies from elsewhere shared by crates:
8080
[workspace.dependencies]

FULL_HELP_DOCS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4525,7 +4525,7 @@ Verify a SEP-53 signed message
45254525

45264526
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.
45274527

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

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

cmd/crates/soroban-spec-typescript/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pub fn generate_from_file(
5555

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

cmd/soroban-cli/src/commands/message/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pub enum Cmd {
2424
/// corresponding to the given account public key, following the SEP-53 specification. The
2525
/// provided message will get prefixed with "Stellar Signed Message:\n" before verification.
2626
///
27-
/// Example: stellar message verify "Hello, World!" --signature <BASE64_SIG> --public-key GABC...
27+
/// Example: stellar message verify "Hello, World!" --signature BASE64_SIG --public-key GABC...
2828
Verify(verify::Cmd),
2929
}
3030

0 commit comments

Comments
 (0)