decode static method
- XdrDataInputStream stream
Implementation
static XdrSorobanTransactionData decode(XdrDataInputStream stream) {
XdrExtensionPoint ext = XdrExtensionPoint.decode(stream);
XdrSorobanResources resources = XdrSorobanResources.decode(stream);
XdrInt64 refundableFee = XdrInt64.decode(stream);
return XdrSorobanTransactionData(ext, resources, refundableFee);
}