UNPKG

@nomicfoundation/hardhat-keystore

Version:

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

9 lines 598 B
import type { KeystoreConsoleLog, KeystoreLoader, KeystoreRequestSecretInput } from "../types.js"; import type { NewTaskActionFunction } from "hardhat/types/tasks"; interface TaskChangePasswordArguments { dev: boolean; } declare const taskChangePassword: NewTaskActionFunction<TaskChangePasswordArguments>; export declare const changePassword: (oldKeystoreLoader: KeystoreLoader, newKeystoreLoader: KeystoreLoader, requestSecretInput: KeystoreRequestSecretInput, consoleLog?: KeystoreConsoleLog) => Promise<void>; export default taskChangePassword; //# sourceMappingURL=change-password.d.ts.map