@nomicfoundation/hardhat-keystore
Version:
A module for managing keystore files that store a map from IDs to encrypted string values.
11 lines • 351 B
JavaScript
const taskPath = async (args, hre) => {
await path(args, hre);
};
export const path = async ({ dev }, hre, consoleLog = console.log) => {
const keystoreFilePath = dev
? hre.config.keystore.devFilePath
: hre.config.keystore.filePath;
consoleLog(keystoreFilePath);
};
export default taskPath;
//# sourceMappingURL=path.js.map