UNPKG

@j0nnyboi/amman

Version:

A modern mandatory toolbelt to help test solana SDK libraries and apps on a locally running validator.

14 lines (13 loc) 494 B
import { PersistedAccountInfo } from '@j0nnyboi/amman-client'; import { Keypair } from '@safecoin/web3.js'; import { SnapshotConfig } from '../assets'; import { Account } from './types'; export declare function processSnapshot(snapshotConfig: SnapshotConfig): Promise<{ snapshotArgs: string[]; persistedSnapshotAccountInfos: (PersistedAccountInfo & { label: string; accountPath: string; })[]; snapshotAccounts: Account[]; keypairs: Map<string, Keypair>; }>;