trident-svm 0.2.0

Trident SVM implementation by Ackee Blockchain Security
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use solana_account::AccountSharedData;
use solana_pubkey::Pubkey;

pub struct TridentAccountSharedData {
    pub address: Pubkey,
    pub account: AccountSharedData,
}
impl TridentAccountSharedData {
    pub fn new(address: Pubkey, account: AccountSharedData) -> TridentAccountSharedData {
        Self { address, account }
    }
}