Closed mootz12 closed 3 years ago
There is a new function to help Sign a transaction. This function, Sign(string publicKey, string signature) is modeled after the following JS version: https://github.com/stellar/js-stellar-base/blob/master/src/transaction_base.js#L129
Sign(string publicKey, string signature)
This function is extremely useful for Stellar Turrets, since they return a Base64 encoded signature and public key, and expect users to be able to apply those signatures to a given XDR.
Looks good to me!
LGTM, thank you!
Types of changes
Change
There is a new function to help Sign a transaction. This function,
Sign(string publicKey, string signature)
is modeled after the following JS version: https://github.com/stellar/js-stellar-base/blob/master/src/transaction_base.js#L129This function is extremely useful for Stellar Turrets, since they return a Base64 encoded signature and public key, and expect users to be able to apply those signatures to a given XDR.