-
Notifications
You must be signed in to change notification settings - Fork 259
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
Transaction Status: Add support for token-group
and token-metadata
interface instructions
#980
Transaction Status: Add support for token-group
and token-metadata
interface instructions
#980
Conversation
3696991
to
c842f7e
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #980 +/- ##
========================================
Coverage 81.9% 81.9%
========================================
Files 853 855 +2
Lines 231955 232251 +296
========================================
+ Hits 189984 190384 +400
+ Misses 41971 41867 -104 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks so much for taking care of this! Just a few suggestions, but this is very close
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great, thanks!
automerge label removed due to a CI failure |
652a621
to
32d3e7a
Compare
Problem
The
transaction-status
crate, used by the RPC to parse instructions withjsonParsed
encoding, supports most of the Token-2022 extensions. However, itdoesn't support the extensions that implement interfaces - such as
TokenMetadata
andTokenGroup
.Developers would benefit from being able to view parsed instructions - such as
initializeTokenMetadata
andupdateGroupMaxSize
- in RPCjsonParsed
instructions.
Summary of Changes
Add support for the Token Group and Token Metadata interface within
parse_token
to enable parsing of interface instructions.