Skip to content

Commit fc55fad

Browse files
committed
update bidding duration in deployer
1 parent c3307c7 commit fc55fad

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

script/SealedBidAuction.s.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ contract SealedBidAuctionScript is Script {
1010
function run() external {
1111
console.log("Current chain height: ", block.number);
1212

13-
uint256 biddingDurationInBlocks = block.number + 20;
13+
uint256 biddingDurationInBlocks = block.number + 10;
1414
address blocklockSenderContractAddress = 0xfF66908E1d7d23ff62791505b2eC120128918F44;
1515

1616
console.log("Bid closes at chain height: ", biddingDurationInBlocks);

utils/getBid.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ async function getBidDetails(bidID: bigint, contractAddress: string) {
6060
// Main function to handle script execution
6161
async function main() {
6262
// Define bid ID and contract address
63-
const bidId: string = "131"; // Change this as needed
64-
const contractAddress: string = "0xF3bbd8D0208b3d0B43014DF3c596dFd349d09E46"; // Change this as needed
63+
const bidId: string = "135"; // Change this as needed
64+
const contractAddress: string = "0xF9FB4cA00fd8249Ad1Db13433D94d990eD9F6F36"; // Change this as needed
6565

6666
// Convert bid ID to BigInt
6767
const bidID = BigInt(bidId);

0 commit comments

Comments
 (0)