stellar / js-soroban-client

Main Soroban client library for the Javascript language
https://stellar.github.io/js-soroban-client/
Apache License 2.0
22 stars 17 forks source link

Automatically parse the error result field in `sendTransaction` #157

Closed Shaptic closed 1 year ago

Shaptic commented 1 year ago

In particular,

-    errorResultXdr?: string;
+    errorResult?: xdr.TransactionResult;

The error result field, if present, will automatically be decoded.

Closes #128.