Skip to content

Commit

Permalink
stellar-rpc-client: Add support for new simulateTransaction stateChan…
Browse files Browse the repository at this point in the history
…ges field
  • Loading branch information
2opremio committed Apr 4, 2024
1 parent d0c22a3 commit 1b8c70f
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 2 deletions.
35 changes: 33 additions & 2 deletions cmd/crates/stellar-rpc-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,24 @@ pub struct SimulateHostFunctionResult {
pub xdr: xdr::ScVal,
}

#[derive(serde::Deserialize, serde::Serialize, Debug, Clone, PartialEq)]
pub enum LedgerEntryChangeType {
#[serde(rename = "created")]
Created,
#[serde(rename = "deleted")]
Deleted,
#[serde(rename = "updated")]
Updated,
}
#[derive(serde::Deserialize, serde::Serialize, Debug, Clone)]
pub struct LedgerEntryChange {
#[serde(rename = "type")]
pub type_: LedgerEntryChangeType,
pub key: String,
pub before: Option<String>,
pub after: Option<String>,
}

#[derive(serde::Deserialize, serde::Serialize, Debug, Default, Clone)]
pub struct SimulateTransactionResponse {
#[serde(
Expand All @@ -305,6 +323,12 @@ pub struct SimulateTransactionResponse {
default
)]
pub restore_preamble: Option<RestorePreamble>,
#[serde(
rename = "stateChanges",
skip_serializing_if = "Option::is_none",
default
)]
pub state_changes: Option<Vec<LedgerEntryChange>>,
#[serde(rename = "latestLedger")]
pub latest_ledger: u32,
#[serde(skip_serializing_if = "Option::is_none", default)]
Expand Down Expand Up @@ -1070,10 +1094,17 @@ mod tests {
"minResourceFee": "100000000",
"cost": { "cpuInsns": "1000", "memBytes": "1000" },
"transactionData": "",
"latestLedger": 1234
}"#;
"latestLedger": 1234,
"stateChanges": [{
"type": "created",
"key": "AAAAAAAAAABuaCbVXZ2DlXWarV6UxwbW3GNJgpn3ASChIFp5bxSIWg==",
"before": null,
"after": "AAAAZAAAAAAAAAAAbmgm1V2dg5V1mq1elMcG1txjSYKZ9wEgoSBaeW8UiFoAAAAAAAAAZAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="
}]
}"#;

let resp: SimulateTransactionResponse = serde_json::from_str(s).unwrap();
assert_eq!(resp.state_changes.unwrap()[0].type_, LedgerEntryChangeType::Created);
assert_eq!(resp.min_resource_fee, 100_000_000);
}

Expand Down
4 changes: 4 additions & 0 deletions cmd/soroban-rpc/internal/methods/simulate_transaction_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package methods
import (
"encoding/base64"
"encoding/json"
"fmt"
"testing"

"github.com/stellar/go/xdr"
Expand Down Expand Up @@ -35,6 +36,9 @@ func TestLedgerEntryChange(t *testing.T) {
require.NoError(t, err)
keyB64 := base64.StdEncoding.EncodeToString(keyXDR)

fmt.Println(keyB64)
fmt.Println(entryB64)

for _, test := range []struct {
name string
input preflight.XDRDiff
Expand Down

0 comments on commit 1b8c70f

Please sign in to comment.