Skip to content

Commit

Permalink
Set correct contracts version, new init iface
Browse files Browse the repository at this point in the history
  • Loading branch information
Tristan-Wilson committed Nov 21, 2024
1 parent 437d8aa commit 78a369a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/ethcommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ export const deployExpressLaneAuctionContractCommand = {
console.log("ExpressLaneAuction contract deployed at address:", contract.address);

const auctioneerAddr = namedAddress(argv.auctioneer)
const initIface = new ethers.utils.Interface(["function initialize((address,address,address,(uint64,uint64,uint64,uint64),uint256,address,address,address,address,address,address,address))"])
const initIface = new ethers.utils.Interface(["function initialize((address,address,address,(int64,uint64,uint64,uint64),uint256,address,address,address,address,address,address,address))"])
const initData = initIface.encodeFunctionData("initialize", [[
auctioneerAddr, //_auctioneer
argv.biddingToken, //_biddingToken
Expand Down
2 changes: 1 addition & 1 deletion test-node.bash
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ NITRO_NODE_VERSION=offchainlabs/nitro-node:v3.2.1-d81324d-dev
BLOCKSCOUT_VERSION=offchainlabs/blockscout:v1.1.0-0e716c8

# This commit matches v2.1.0 release of nitro-contracts, with additional support to set arb owner through upgrade executor
DEFAULT_NITRO_CONTRACTS_VERSION="99c07a7db2fcce75b751c5a2bd4936e898cda065"
DEFAULT_NITRO_CONTRACTS_VERSION="bec7d629c5f4a9dc4ec786e9d6e99734a11d109b"
DEFAULT_TOKEN_BRIDGE_VERSION="v1.2.2"

# Set default versions if not overriden by provided env vars
Expand Down

0 comments on commit 78a369a

Please sign in to comment.