Tworzenie PDA

Kompletny test

tests/pda_test.rs
use litesvm::LiteSVM;
use solana_account::Account;
use solana_sdk::pubkey::Pubkey;
#[test]
fn test_pda_creation() {
let mut svm = LiteSVM::new();
// Program that owns the PDA
let program_id = Pubkey::new_unique();
// Derive PDA address
let seed = b"my_pda";
let (pda, bump) = Pubkey::find_program_address(
&[seed],
&program_id
);
println!("PDA: {}", pda);
println!("Bump: {}", bump);
// Create PDA account manually (for testing)
svm.set_account(pda, Account {
lamports: 1_000_000,
data: vec![bump], // Store bump seed in data
owner: program_id,
executable: false,
rent_epoch: 0,
}).unwrap();
// Verify PDA was created
let account = svm.get_account(&pda).unwrap();
assert_eq!(account.owner, program_id);
assert_eq!(account.data[0], bump);
println!("PDA created successfully!");
}

Kluczowe punkty

  1. Wyprowadzanie PDA: Użyj Pubkey::find_program_address(), aby wyprowadzić adresy PDA
  2. Seeds: PDA są wyprowadzane z seeds i identyfikatora programu
  3. Bump seed: bump seed zapewnia, że adres znajduje się poza krzywą ed25519
  4. Tworzenie konta: Użyj set_account(), aby ręcznie tworzyć konta do testowania
  5. Własność: PDA muszą być własnością programu, który je wyprowadził

Is this page helpful?

Spis treści

Edytuj stronę