Skip to content

Commit

Permalink
update parameters to reflect onchain values
Browse files Browse the repository at this point in the history
  • Loading branch information
0xSachinK committed Sep 30, 2024
1 parent ea41a6d commit 9b89709
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contracts-domain/deployments/parameters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ export const FEE_PERCENTAGE: any = {
export const BID_SETTLEMENT_PERIOD: any = {
"localhost": ONE_DAY_IN_SECONDS,
"sepolia": THREE_MINUTES_IN_SECONDS, // 3 minutes
"base": THREE_MINUTES_IN_SECONDS.mul(BigNumber.from(10)), // 30 minutes
"base_staging": ONE_DAY_IN_SECONDS,
"base_staging": THREE_MINUTES_IN_SECONDS.mul(BigNumber.from(10)), // 30 minutes
"base": ONE_DAY_IN_SECONDS,
};

export const BID_REFUND_PERIOD: any = {
"localhost": ONE_DAY_IN_SECONDS,
"sepolia": THREE_MINUTES_IN_SECONDS, // 3 minutes
"base": THREE_MINUTES_IN_SECONDS.mul(BigNumber.from(10)), // 30 minutes
"base_staging": ONE_DAY_IN_SECONDS,
"base_staging": THREE_MINUTES_IN_SECONDS.mul(BigNumber.from(10)), // 30 minutes
"base": ONE_DAY_IN_SECONDS,
};

export const VERIFY_DOMAIN_PROVIDER_HASHES: any = [
Expand Down

0 comments on commit 9b89709

Please sign in to comment.