From fef615bd18101477a5a259e49ad8be6e9a2415be Mon Sep 17 00:00:00 2001 From: 0xALUCARD <0xALUCARD@protonmail.com> Date: Sun, 24 Apr 2022 18:54:30 +0200 Subject: [PATCH] deploy brewboov3 --- hardhat.config.ts | 2 +- scripts/deploy_brewboo.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hardhat.config.ts b/hardhat.config.ts index 0bc53cb..97f2e51 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -51,7 +51,7 @@ const config: HardhatUserConfig = { url: "https://rpc.ftm.tools", accounts, chainId: 250, - gasPrice: 1000000000000, + gasPrice: 200000000000, }, "fantom-testnet": { url: "https://rpc.testnet.fantom.network", diff --git a/scripts/deploy_brewboo.ts b/scripts/deploy_brewboo.ts index 31cfddd..5af7241 100644 --- a/scripts/deploy_brewboo.ts +++ b/scripts/deploy_brewboo.ts @@ -8,7 +8,7 @@ const usdc = "0x04068da6c83afcfa0e13ba15a6696662335d5b75" const dai = "0x8D11eC38a3EB5E956B052f67Da8Bdc9bef8Abf3E" async function main() { - const brewBoo = await ethers.getContractFactory("BrewBooV2"); + const brewBoo = await ethers.getContractFactory("BrewBooV3"); const BrewBoo = await brewBoo.deploy(factory, xboo, boo, wftm, usdc, dai); await BrewBoo.deployed() console.log("BrewBoo deployed to:", BrewBoo.address);