From 7f32c09bfe724c3c125ef3f5cacce60f0c98dcdb Mon Sep 17 00:00:00 2001 From: Chase Adams Date: Wed, 11 Jan 2023 08:28:14 -0700 Subject: [PATCH] feat: added arb goerli network config --- deploy/migrations.config.ts | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/deploy/migrations.config.ts b/deploy/migrations.config.ts index b2aba13c..8eb6341b 100644 --- a/deploy/migrations.config.ts +++ b/deploy/migrations.config.ts @@ -122,6 +122,31 @@ const arbitrumRinkeby = { const arbitrumRinkebyDevnet = arbitrumRinkeby +const arbitrumGoerli = { + bondingManager: { + numActiveTranscoders: 100, + unbondingPeriod: 2 + }, + broker: { + unlockPeriod: 100, + ticketValidityPeriod: 2 + }, + roundsManager: { + roundLength: 5760, + roundLockAmount: 100000 + }, + faucet: { + requestAmount: ethers.utils.parseEther("10"), + requestWait: 1, + whitelist: [] + }, + minter: { + inflation: 137, + inflationChange: 3, + targetBondingRate: 0 + } +} + const arbitrumMainnet = { governor: { // Governance multisig @@ -160,6 +185,7 @@ const networkConfigs: any = { arbitrumRinkeby, arbitrumRinkebyDevnet, arbitrumMainnet, + arbitrumGoerli, gethDev }