Skip to content

Commit

Permalink
chore: ex lane deploy (#267)
Browse files Browse the repository at this point in the history
  • Loading branch information
gzeoneth authored Nov 21, 2024
1 parent bec7d62 commit addbc08
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions deploy/ExpressLaneAuction.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
module.exports = async hre => {
const { deployments, getNamedAccounts } = hre
const { deploy } = deployments
const { deployer } = await getNamedAccounts()

await deploy('ExpressLaneAuction', {
from: deployer,
args: [],
proxy: {
proxyContract: 'TransparentUpgradeableProxy',
execute: {
init: {
methodName: 'initialize',
args: [{
_auctioneer: "0xeee584DA928A94950E177235EcB9A99bb655c7A0",
_biddingToken: "0x980B62Da83eFf3D4576C647993b0c1D7faf17c73", // WETH
_beneficiary: "0xeee584DA928A94950E177235EcB9A99bb655c7A0",
_roundTimingInfo: {
offsetTimestamp: 1727870000,
roundDurationSeconds: 60,
auctionClosingSeconds: 15,
reserveSubmissionSeconds: 15
},
_minReservePrice: ethers.utils.parseEther("0.00001"),
_auctioneerAdmin: "0xeee584DA928A94950E177235EcB9A99bb655c7A0",
_minReservePriceSetter: "0xeee584DA928A94950E177235EcB9A99bb655c7A0",
_reservePriceSetter: "0xeee584DA928A94950E177235EcB9A99bb655c7A0",
_reservePriceSetterAdmin: "0xeee584DA928A94950E177235EcB9A99bb655c7A0",
_beneficiarySetter: "0xeee584DA928A94950E177235EcB9A99bb655c7A0",
_roundTimingSetter: "0xeee584DA928A94950E177235EcB9A99bb655c7A0",
_masterAdmin: "0xeee584DA928A94950E177235EcB9A99bb655c7A0"
}],
},
},
owner: deployer,
},
})
}

module.exports.tags = ['ExpressLaneAuction']
module.exports.dependencies = []

0 comments on commit addbc08

Please sign in to comment.