-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: added versioned transaction solana signature #739
Feature: added versioned transaction solana signature #739
Conversation
…ed-transaction-solana-signature
This is awesome. Thanks @kouraf ! I've made some small changes: formatting and base update, but also made BTW, if you can share some of the testing you have done that would be awesome |
Hello! Hello! @FedericoAmura I'm not entirely sure about allowing the action itself to decide based on the type of transaction it receives. A few transactions are compatible with both "legacy" and "versioned" formats, and attempting to auto-detect them based on their base64 encoding could lead to errors. However, an interesting feature to consider adding later could be multisigning. |
Thanks for the tests! Looking perfect to me What I was thinking is that they can pass the wrong Nice addition. Thanks a lot for your contribution! |
Added Support for Versioned Transactions in Solana
Summary of Changes
I have introduced a new feature to the LIT SDK and Actions to support versioned transactions for Solana. Specifically:
versionedTransaction
to enable handling of versioned transaction signatures for wrapped keys.versionedTransaction
isfalse
it uses the legacy transactionTesting
Notes
Looking forward to hearing your thoughts!