Feature: Solana transactions#29
Merged
Merged
Conversation
This branch introduces signing Solana transactions and adds support for decoding basic Solana instructions.
List of changes:
- created solana_signer.dart - for creating Solana-compatible digital signature using an EDDSA private key
- created solana_signature.dart - a class storing digital signature used in Solana transactions
- created a_solana_message.dart - a generic wrapper for all Solana messages
- created a_solana_transaction_message.dart - a wrapper for Solana transaction messages
- created solana_compiled_instruction.dart - responsible for reading compiled instructions within a solana transaction message and storing their data
- created solana_legacy_message.dart and solana_v0_message.dart - adding support for both legacy and versioned Solana transaction message types
- created solana_raw_message.dart - adding support for Solana raw message
- created solana_message_header.dart - dedicated to extracting the very first part of the solana message
- created solana_address_lookup_table.dart - dedicated to extracting address lookup tables in v0 transactions
- created solana_pubkey.dart - representing an account's public key
- created a_solana_instruction_decoded.dart - an abstract class representing decoded Solana instructions, with a wrapper for decoding all supported Solana instructions
- created solana_program_type.dart - an enum associating solana program id with specific types of instructions
- created classes dedicated to decoding and storing specific decoded instructions ("transactions/solana/instructions")
- created solana_utils.dart - containing a method to convert token amount into a more user-friendly form
balladyna
approved these changes
Feb 25, 2026
kronikarz
approved these changes
Feb 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This branch introduces signing Solana transactions and adds support for decoding basic Solana instructions.
List of changes: