3 unstable releases

new 0.3.0 Oct 12, 2024
0.2.1 Sep 27, 2024
0.2.0 Sep 11, 2024

#480 in Magic Beans

Download history 142/week @ 2024-09-11 16/week @ 2024-09-18 160/week @ 2024-09-25 11/week @ 2024-10-02 109/week @ 2024-10-09

298 downloads per month

Apache-2.0

1MB
2K SLoC

Contains (ELF lib, 21KB) tests/programs_bytes/hello_world.so


LiteSVM

github crates.io docs.rs build status

📍 Overview

litesvm is a fast and lightweight library for testing Solana programs. It works by creating an in-process Solana VM optimized for program developers. This makes it much faster to run and compile than alternatives like solana-program-test and solana-test-validator. In a further break from tradition, it has an ergonomic API with sane defaults and extensive configurability for those who want it.

🚀 Getting Started

🔧 Installation

cargo add --dev litesvm

🤖 Minimal Example

use litesvm::LiteSVM;
use solana_program::{message::Message, pubkey::Pubkey, system_instruction::transfer};
use solana_sdk::{signature::Keypair, signer::Signer, transaction::Transaction};

#[test]
fn system_transfer() {
    let from_keypair = Keypair::new();
    let from = from_keypair.pubkey();
    let to = Pubkey::new_unique();

    let mut svm = LiteSVM::new();
    svm.airdrop(&from, 10_000).unwrap();

    let instruction = transfer(&from, &to, 64);
    let tx = Transaction::new(
        &[&from_keypair],
        Message::new(&[instruction], Some(&from)),
        svm.latest_blockhash(),
    );
    let tx_res = svm.send_transaction(tx).unwrap();

    let from_account = svm.get_account(&from);
    let to_account = svm.get_account(&to);
    assert_eq!(from_account.unwrap().lamports, 4936);
    assert_eq!(to_account.unwrap().lamports, 64);
}

Development

Run the tests

The tests use some test programs you need to build first (Solana CLI >= 1.18.8 required):

cd test_programs && cargo build-sbf

Then just run cargo test.

Dependencies

~23–39MB
~701K SLoC