UNPKG

@j0nnyboi/amman

Version:

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

12 lines (11 loc) 523 B
import { AmmanConfig, DeepPartial } from '../types'; export declare const DEFAULT_STREAM_TRANSACTION_LOGS: boolean; export declare const DEFAULT_START_CONFIG: Required<AmmanConfig>; /** * Need a hand rolled version of this since tools like deep-extend don't work * with maps and classes and thus break things like account renderers * * @private */ export declare function completeConfig(config?: DeepPartial<AmmanConfig>): Required<AmmanConfig>; export declare function fullAccountsDir(assetsFolder?: string): string;