UNPKG

@nomicfoundation/hardhat-keystore

Version:

A module for managing keystore files that store a map from IDs to encrypted string values.

10 lines 542 B
import type { KeystoreConsoleLog, KeystoreLoader, KeystoreRequestSecretInput } from "../types.js"; import type { NewTaskActionFunction } from "hardhat/types/tasks"; interface TaskGetArguments { dev: boolean; key: string; } declare const taskGet: NewTaskActionFunction<TaskGetArguments>; export declare const get: ({ dev, key }: TaskGetArguments, keystoreLoader: KeystoreLoader, requestSecretInput: KeystoreRequestSecretInput, consoleLog?: KeystoreConsoleLog) => Promise<void>; export default taskGet; //# sourceMappingURL=get.d.ts.map