buffalojoec / graphql-wallet

Solana wallet built using Solana RPC-GraphQL
Apache License 2.0
1 stars 2 forks source link

Parsed Instruction Components #14

Open buffalojoec opened 5 months ago

buffalojoec commented 5 months ago

Right now we have components for Account and Transaction, but we don't have any for TransactionInstruction.

On both the Transactions and Explorer pages, we should be able to see parsed transactions, and then within those parsed transactions, parsed instructions.

For now, we can follow the same pattern as the account components (base -> parsed -> extensions) and do parsed transaction -> parsed instruction.

Later on, we'll optimize the GraphQL queries to be able to parse directly from the transaction and avoid duplicating getTransaction calls.

Hrushi20 commented 5 months ago

I'll work on this issue.