Skip to content

Commit

Permalink
fix: defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4007 committed Sep 25, 2023
1 parent 66b3f35 commit 751e3d2
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/configs/ubiquibot-config-default.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { MergedConfig } from "../types";

export const DefaultConfig: MergedConfig = {
evmNetworkId: 100,
evmNetworkId: 1,
priceMultiplier: 1,
issueCreatorMultiplier: 2,
permitMaxPrice: 9007199254740991,
maxConcurrentAssigns: 9007199254740991,
issueCreatorMultiplier: 1,
permitMaxPrice: Number.MAX_SAFE_INTEGER,
maxConcurrentAssigns: Number.MAX_SAFE_INTEGER,
assistivePricing: false,
disableAnalytics: false,
commentIncentives: false,
Expand All @@ -18,16 +18,16 @@ export const DefaultConfig: MergedConfig = {
name: "Time: <1 Hour",
},
{
name: "Time: <1 Day",
name: "Time: <2 Hours",
},
{
name: "Time: <1 Week",
name: "Time: <4 Hours",
},
{
name: "Time: <2 Weeks",
name: "Time: <1 Day",
},
{
name: "Time: <1 Month",
name: "Time: <1 Week",
},
],
priorityLabels: [
Expand Down Expand Up @@ -99,9 +99,9 @@ export const DefaultConfig: MergedConfig = {
},
staleBountyTime: "0d",
newContributorGreeting: {
enabled: true,
enabled: false,
header:
"Thank you for contributing to UbiquiBot! Please be sure to set your wallet address before completing your first bounty so that the automatic payout upon task completion will work for you.",
"Thank you for contributing! Please be sure to set your wallet address before completing your first bounty so that the automatic payout upon task completion will work for you.",
helpMenu: true,
footer:
"###### Also please star this repository and [@ubiquity/devpool-directory](https://github.com/ubiquity/devpool-directory/) to show your support. It helps a lot!",
Expand Down

0 comments on commit 751e3d2

Please sign in to comment.