hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
17 lines (14 loc) • 382 B
text/typescript
import type { SensitiveString } from "../../../../types/config.js";
export interface DefaultHDAccountsConfigParams {
initialIndex: number;
count: number;
path: string;
passphrase: SensitiveString;
}
export const DEFAULT_HD_ACCOUNTS_CONFIG_PARAMS: DefaultHDAccountsConfigParams =
{
initialIndex: 0,
count: 20,
path: "m/44'/60'/0'/0",
passphrase: "",
};