You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New optional field in SimulateTransactionResponse which indicates how the state (ledger entries) will change as a result of the transaction execution.
StateDiff []LedgerEntryDiff `json:"stateDiff,omitempty"`
type LedgerEntryDiff struct {
Before string `json:"before,omitempty"` // LedgerEntry XDR in base64
After string `json:"after,omitempty"` // LedgerEntry XDR in base64
}
New Ledger Range and Ledger Retention Window in getHealth Response
type HealthCheckResult struct {
Status string `json:"status"`
LatestLedger uint32 `json:"latestLedger"` // New
OldestLedger uint32 `json:"oldestLedger"` // New
LedgerRetentionWindow uint32 `json:"ledgerRetentionWindow"` // New
}
The text was updated successfully, but these errors were encountered:
Protocol 21 SDK Support
Once voted in, the release of Protocol 21 will introduce following new CAPs:
XDR changes:
XDR update stellar/stellar-xdr#184 - stellar/stellar-xdr@1a04392
Reference Implementations:
js-sdk - stellar/js-stellar-base#738
Soroban API Changes:
Breaking Changes:
Non Breaking changes:
New optional field in SimulateTransactionResponse which indicates how the state (ledger entries) will change as a result of the transaction execution.
New Ledger Range and Ledger Retention Window in getHealth Response
The text was updated successfully, but these errors were encountered: