UNPKG

hardhat

Version:

Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.

20 lines 1.12 kB
export declare const HARDHAT_PACKAGE_NAME = "hardhat"; export declare const HARDHAT_NAME = "Hardhat"; export declare const HARDHAT_WEBSITE_URL = "https://hardhat.org/"; export declare const EDR_NETWORK_REVERT_SNAPSHOT_EVENT = "hardhatNetworkRevertSnapshot"; export declare const GENERIC_CHAIN_TYPE = "generic"; export declare const L1_CHAIN_TYPE = "l1"; export declare const OPTIMISM_CHAIN_TYPE = "op"; export declare const DEFAULT_NETWORK_NAME = "default"; export declare const DEFAULT_VERBOSITY = 2; /** * The verbosity level (`-vvvvv`) at and above which stack traces are always * collected. Below it, stack traces are produced by re-running the failing * test with tracing enabled — much cheaper, but tests with non-deterministic * side effects (impure cheatcodes, a fork pinned to `latest`) can't be * replayed and report an `UnsafeToReplay` warning instead. Always-on * collection records step traces for every test, which balloons memory on * large suites, so it's reserved for the highest verbosity. */ export declare const ALWAYS_COLLECT_STACK_TRACES_VERBOSITY = 5; //# sourceMappingURL=constants.d.ts.map