solana-svm-transaction 3.0.8

Solana SVM Transaction
Documentation
1
2
3
4
5
6
7
8
9
10
11
use {crate::svm_message::SVMMessage, solana_signature::Signature};

mod sanitized_transaction;

pub trait SVMTransaction: SVMMessage {
    /// Get the first signature of the message.
    fn signature(&self) -> &Signature;

    /// Get all the signatures of the message.
    fn signatures(&self) -> &[Signature];
}