Skip to content

Commit

Permalink
improve: Add ACX, BAL, POOL capital costs config
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholaspai committed Oct 17, 2023
1 parent ef8223d commit a56c659
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions api/_constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,24 @@ const defaultRelayerFeeCapitalCostConfig: {
cutoff: ethers.utils.parseUnits("5000").toString(),
decimals: 18,
},
ACX: {
lowerBound: ethers.utils.parseUnits("0.0001").toString(),
upperBound: ethers.utils.parseUnits("0.001").toString(),
cutoff: ethers.utils.parseUnits("1000000").toString(),
decimals: 18,
},
BAL: {
lowerBound: ethers.utils.parseUnits("0.0001").toString(),
upperBound: ethers.utils.parseUnits("0.001").toString(),
cutoff: ethers.utils.parseUnits("10000").toString(),
decimals: 18,
},
POOL: {
lowerBound: ethers.utils.parseUnits("0.0001").toString(),
upperBound: ethers.utils.parseUnits("0.001").toString(),
cutoff: ethers.utils.parseUnits("10000").toString(),
decimals: 18,
},
BOBA: {
lowerBound: ethers.utils.parseUnits("0.0003").toString(),
upperBound: ethers.utils.parseUnits("0.001").toString(),
Expand Down

0 comments on commit a56c659

Please sign in to comment.