From 7063b6e8fc9668c3281e13a206232eebf83379c6 Mon Sep 17 00:00:00 2001 From: Peter Denev Date: Mon, 28 Mar 2022 13:04:42 +0300 Subject: [PATCH] add 19 generated account as verifier --- scripts/dev/deploy-and-seed.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/dev/deploy-and-seed.js b/scripts/dev/deploy-and-seed.js index 1cb798e..65c51bb 100644 --- a/scripts/dev/deploy-and-seed.js +++ b/scripts/dev/deploy-and-seed.js @@ -47,6 +47,8 @@ async function main() { await Pond2.connect(investor).deposit(ethers.utils.parseUnits("1000", "ether")); await VerificationRegistry.connect(owner).addVerifier(owner.address); + // GET address FROM Accounts generated from the node and use the same to connect in metamask + await VerificationRegistry.connect(owner).addVerifier("0xdd2fd4581271e230360230f9337d5c0430bf44c0"); console.log(`VerificationRegistry \t: ${VerificationRegistry.address}`); console.log(`PondFactory \t\t: ${PondFactory.address}`);