Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pk910 committed Jun 3, 2024
1 parent 74b827c commit dfe2660
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions fundingvault/hardhat.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require("@nomicfoundation/hardhat-toolbox");
require("@nomicfoundation/hardhat-ignition");

const DEPLOYER_PRIVATE_KEY = vars.get("DEPLOYER_PRIVATE_KEY");
const DEPLOYER_PRIVATE_KEY = vars.has("DEPLOYER_PRIVATE_KEY") ? [ vars.get("DEPLOYER_PRIVATE_KEY") ] : undefined;

/** @type import('hardhat/config').HardhatUserConfig */
module.exports = {
Expand All @@ -21,16 +21,16 @@ module.exports = {
sepolia: {
chainId: 11155111,
url: `https://rpc.sepolia.ethpandaops.io/`,
accounts: [DEPLOYER_PRIVATE_KEY],
accounts: DEPLOYER_PRIVATE_KEY,
},
holesky: {
chainId: 11155111,
url: `https://rpc.sepolia.ethpandaops.io/`,
accounts: [DEPLOYER_PRIVATE_KEY],
accounts: DEPLOYER_PRIVATE_KEY,
},
ephemery: {
url: `http://10.16.72.103:8545`,
accounts: [DEPLOYER_PRIVATE_KEY],
accounts: DEPLOYER_PRIVATE_KEY,
},
},
solidity: {
Expand Down
3 changes: 2 additions & 1 deletion fundingvault/scripts/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ const fs = require('fs');

async function main() {
const [owner] = await ethers.getSigners();
console.log(owner.address)
console.log("deployer address (owner): " + owner.address)
console.log("")

// First deploy proxy
console.log("deploying FundingVaultProxy...")
Expand Down

0 comments on commit dfe2660

Please sign in to comment.