Skip to content

Commit

Permalink
chore: add mnemonic to hardhat config file
Browse files Browse the repository at this point in the history
  • Loading branch information
kittybest authored and ctrlc03 committed Jun 20, 2024
1 parent 69663ea commit 35f1d17
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions coordinator/hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,19 @@ const path = require("path");
dotenv.config();

const parentDir = __dirname.includes("build") ? ".." : "";
const TEST_MNEMONIC = "test test test test test test test test test test test junk";

module.exports = {
defaultNetwork: "localhost",
networks: {
localhost: {
url: process.env.COORDINATOR_RPC_URL,
accounts: {
mnemonic: TEST_MNEMONIC,
path: "m/44'/60'/0'/0",
initialIndex: 0,
count: 20,
},
loggingEnabled: false,
},
hardhat: {
Expand Down

0 comments on commit 35f1d17

Please sign in to comment.