Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
pxrl authored Dec 11, 2024
1 parent 2db4072 commit 370649a
Showing 1 changed file with 28 additions and 24 deletions.
52 changes: 28 additions & 24 deletions api/_types/exclusivity.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,43 +19,47 @@ export type RelayerFillLimit = Infer<typeof RelayerFillLimitSchema>;
// // Example config.
// export const RelayerConfigUpdate: RelayerFillLimit[] = [
// {
// originChainId: 1,
// originChainId: "1",
// inputToken: "",
// destinationChainId: 42161,
// destinationChainId: "42161",
// outputToken: "",
// minExclusivityPeriod: 20,
// minProfitThreshold: 0.0003,
// balanceMultiplier: 0.6,
// maxOutputAmount: 2500,
// minExclusivityPeriod: "20",
// minProfitThreshold: "0.0003",
// balanceMultiplier: "0.6",
// minOutputAmount: "1",
// maxOutputAmount: "250",
// },
// {
// originChainId: 10,
// originChainId: "10",
// inputToken: "",
// destinationChainId: 42161,
// destinationChainId: "42161",
// outputToken: "",
// minExclusivityPeriod: 5,
// minProfitThreshold: 0.0003,
// balanceMultiplier: 0.6,
// maxOutputAmount: 2500,
// minExclusivityPeriod: "5",
// minProfitThreshold: "0.0003",
// balanceMultiplier: "0.6",
// minOutputAmount: "251",
// maxOutputAmount: "500",
// },
// {
// originChainId: 137,
// originChainId: "137",
// inputToken: "",
// destinationChainId: 42161,
// destinationChainId: "42161",
// outputToken: "",
// minExclusivityPeriod: 5,
// minProfitThreshold: 0.0003,
// balanceMultiplier: 0.6,
// maxOutputAmount: 2500,
// minExclusivityPeriod: "5",
// minProfitThreshold: "0.0003",
// balanceMultiplier: "0.6",
// minOutputAmount: "501",
// maxOutputAmount: "1000",
// },
// {
// originChainId: 324,
// originChainId: "324",
// inputToken: "",
// destinationChainId: 42161,
// destinationChainId: "42161",
// outputToken: "",
// minExclusivityPeriod: 5,
// minProfitThreshold: 0.0003,
// balanceMultiplier: 0.6,
// maxOutputAmount: 2500,
// minExclusivityPeriod: "5",
// minProfitThreshold: "0.0003",
// balanceMultiplier: "0.6",
// minOutputAmount: "1001",
// maxOutputAmount: "2500",
// },
// ];

0 comments on commit 370649a

Please sign in to comment.