Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: added arb goerli network config #607

Draft
wants to merge 1 commit into
base: confluence
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions deploy/migrations.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -160,6 +185,7 @@ const networkConfigs: any = {
arbitrumRinkeby,
arbitrumRinkebyDevnet,
arbitrumMainnet,
arbitrumGoerli,
gethDev
}

Expand Down