Zamanı manipüle etmek ve sistem değişkenlerine erişmek için yöntemler.
Sysvar yöntemlerine erişmeden önce client.svm.withSysvars() ile sysvar'ları
etkinleştirin.
Saat Manipülasyonu
warpToSlot
warpToSlot(slot: bigint): LiteSVM
Saati belirli bir slot'a ilerletin.
client.svm.withSysvars();// Check current slotconst before = client.svm.getClock();console.log("Current slot:", before.slot);// Warp forwardclient.svm.warpToSlot(10000n);const after = client.svm.getClock();console.log("New slot:", after.slot);
getClock
getClock(): Clock
Mevcut saat sysvar değerlerini alın.
const clock = client.svm.getClock();console.log("Slot:", clock.slot);console.log("Epoch:", clock.epoch);console.log("Unix timestamp:", clock.unixTimestamp);console.log("Epoch start timestamp:", clock.epochStartTimestamp);console.log("Leader schedule epoch:", clock.leaderScheduleEpoch);
setClock
setClock(clock: Clock): LiteSVM
Saat sysvar'ını üzerine yazın. Saati alın, alanlarını değiştirin, ardından geri
yazın. Bunu, birden fazla saat alanı üzerinde hassas kontrole ihtiyaç
duyduğunuzda kullanın — örneğin, epoch veya unix zaman damgasını ayarlarken;
warpToSlot bunları güncellemez.
const clock = client.svm.getClock();clock.slot = 1000n;clock.epoch = 10n;clock.unixTimestamp = 1735689600n;client.svm.setClock(clock);
warpToSlot yalnızca slot değerini günceller. Programınız Clock
sysvar'ından epoch veya unix_timestamp okuduğunda setClock kullanın.
Saat Özellikleri
| Özellik | Tür | Açıklama |
|---|---|---|
slot | bigint | Mevcut slot numarası |
epoch | bigint | Mevcut epoch numarası |
unixTimestamp | bigint | Saniye cinsinden Unix zaman damgası |
epochStartTimestamp | bigint | Mevcut epoch'un başlangıcı |
leaderScheduleEpoch | bigint | Lider çizelgesi epoch'u |
Rent
getRent
getRent(): Rent
rent sysvar'ını alın.
const rent = client.svm.getRent();console.log("Lamports per byte-year:", rent.lamportsPerByteYear);console.log("Exemption threshold:", rent.exemptionThreshold);console.log("Burn percent:", rent.burnPercent);
minimumBalanceForRentExemption
minimumBalanceForRentExemption(dataLen: bigint): bigint
rent muafiyeti için gereken minimum lamport miktarını hesaplayın.
// Calculate for different data sizesfor (const size of [0n, 100n, 1000n]) {const min = client.svm.minimumBalanceForRentExemption(size);console.log(`${size} bytes: ${min} lamports`);}
Epoch Takvimi
getEpochSchedule
getEpochSchedule(): EpochSchedule
epoch takvimi sysvar'ını alın.
const epochSchedule = client.svm.getEpochSchedule();console.log("Slots per epoch:", epochSchedule.slotsPerEpoch);console.log("Leader schedule slot offset:",epochSchedule.leaderScheduleSlotOffset);console.log("Warmup:", epochSchedule.warmup);console.log("First normal epoch:", epochSchedule.firstNormalEpoch);console.log("First normal slot:", epochSchedule.firstNormalSlot);
Epoch Ödülleri
getEpochRewards
getEpochRewards(): EpochRewards
epoch ödülleri sysvar'ını alın.
const rewards = client.svm.getEpochRewards();console.log("Active:", rewards.active);console.log("Total rewards:", rewards.totalRewards);console.log("Distributed rewards:", rewards.distributedRewards);console.log("Total points:", rewards.totalPoints);console.log("Num partitions:", rewards.numPartitions);console.log("Distribution starting block height:",rewards.distributionStartingBlockHeight);
Slot Bilgisi
getSlotHashes
getSlotHashes(): SlotHash[]
Son slot hash'lerini alın.
const slotHashes = client.svm.getSlotHashes();console.log("Slot hashes count:", slotHashes.length);if (slotHashes.length > 0) {console.log("First hash:", {slot: slotHashes[0].slot,hash: slotHashes[0].hash});}
getSlotHistory
getSlotHistory(): SlotHistory
slot geçmişini alın.
const slotHistory = client.svm.getSlotHistory();console.log("Next slot:", slotHistory.nextSlot);
getLastRestartSlot / setLastRestartSlot
getLastRestartSlot(): bigintsetLastRestartSlot(slot: bigint): LiteSVM
Son yeniden başlatma slot'unu alın veya ayarlayın.
const lastRestart = client.svm.getLastRestartSlot();console.log("Last restart slot:", lastRestart);client.svm.setLastRestartSlot(500n);
Stake Geçmişi
getStakeHistory
getStakeHistory(): StakeHistory
Stake geçmişini alın.
const stakeHistory = client.svm.getStakeHistory();// Returns array of { epoch, entry: { effective, activating, deactivating } }
Zamana Bağlı Mantığı Test Etme
Zamana bağlı program davranışını test etmek için warpToSlot kullanın:
import { createClient, generateKeyPairSigner } from "@solana/kit";import { litesvm } from "@solana/kit-plugin-litesvm";import { signer } from "@solana/kit-plugin-signer";async function testTimeLockedVault() {const mySigner = await generateKeyPairSigner();const client = createClient().use(signer(mySigner)).use(litesvm());client.svm.withSysvars();const unlockSlot = 10000n;// Setup: Create time-locked account// ... set up your account state ...// Test 1: Try to withdraw before unlock (should fail)const beforeClock = client.svm.getClock();console.log("Current slot:", beforeClock.slot);// ... attempt withdrawal, expect failure ...// Warp time forward past unlock slotclient.svm.warpToSlot(unlockSlot + 1n);// Test 2: Try to withdraw after unlock (should succeed)const afterClock = client.svm.getClock();console.log("New slot:", afterClock.slot);// ... attempt withdrawal, expect success ...}
Is this page helpful?