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) 461 B
export declare const DEFAULT_ASSETS_FOLDER = ".amman"; export declare const ACCOUNTS_FOLDER = "accounts"; /** * Configures amman snapshots. * * @property snapshotFolder - Relative path to the folder where snapshots are stored. * @property load - Label of the snapshot to load from the snapshot folder. */ export declare type SnapshotConfig = { snapshotFolder: string; load?: string; }; export declare const DEFAULT_SNAPSHOT_CONFIG: SnapshotConfig;