v10.0.0-beta.0
Pre-releaseTHIS IS A PRE-RELEASE. It is NOT compatible with the current mainnet, but it IS compatible with the current testnet (which is running Preview 11, the final futurenet version with XDR at stellar/stellar-xdr@9ac0264).
v10.0.0-beta.0
: Protocol 20, Soroban!
Breaking Changes
- Node 16 is the new minimum version to use the SDKs.
- The XDR has been massively overhauled to support Soroban, the new smart contract platform on Stellar, and Protocol 20. This means new operations, data structures, and a transaction format as well as new overlay features (#538).
The core data structure of Soroban is a generic type called an ScVal
(smart contract value, which is a union of types that can basically represent anything [numbers, strings, arrays, maps, contract bytecode, etc.]). You can refer to the XDR for details, and you can utilize new APIs to make dealing with these complex values easier:
nativeToScVal
helps convert native types to their closest Soroban equivalentscValToNative
helps find the closest native JavaScript type(s) corresponding to a smart contract valuescValToBigInt
helps convert numericScVal
s into nativebigint
sScInt
andXdrLargeInt
help convert to and frombigint
s to other types and form sized integer types for smart contract usage
There are other XDR structures that have abstractions included for building out or certain types of smart contract-related structures:
buildInvocationTree
andwalkInvocationTree
are both ways to visualize invocation calling trees betterauthorizeInvocation
helps multiple parties sign invocation calling treeshumanizeEvents
helps make diagnostic events more readable
Added
The following are new APIs to deal with new Soroban constructs:
Address
, which helps manage "smart" addresses in the Soroban context. Addresses there (used for auth and identity purposes) can either be contracts (strkeyC...
) or accounts (strkeyG...
). This abstraction helps manage them and distinguish between them easily.Contract
, which helps manage contract identifiers. The primary purpose is to build invocations of its methods via the genericcall(...)
, but it also provides utilities for converting to anAddress
or calculating its minimum footprint for state expiration.- Three new operations have been added related to Soroban transactions:
invokeHostFunction
for calling contract codebumpFootprintExpiration
for extending the state lifetime of Soroban datarestoreFootprint
for restoring expired, off-chain state back onto the ledger
- The
TransactionBuilder
now takes asorobanData
parameter (and has a corresponding.setSorobanData()
builder method) which primarily describes the storage footprint of a Soroban (that is, which parts of the ledger state [in the form ofxdr.LedgerKey
s] it plans to read and write as part of the transaction).- To facilitate building this out, there's a new
SorobanDataBuilder
factory to set fields individually - It also now has a
cloneFrom(tx, opts)
constructor method to create an instance from an existing transaction, also allowing parameter overrides viaopts
.
- To facilitate building this out, there's a new
- We've added a GHA to track bundle size changes as PRs are made. This protocol upgrade adds +18% to the final, minified bundle size which is significant but acceptable given the size of the upgrade.
Fixes
- Improves the error messages when passing invalid amounts to deposit and withdraw operations (#679).
New Contributors
- @sreuland made their first contribution in #604
- @chadoh made their first contribution in #658
- @jeesunikim made their first contribution in #667
Full Changelog: v9.0.0...v10.0.0-beta.0