bump relayer fee to 0.01 (#458)

This commit is contained in:
noot
2023-05-03 20:55:05 -04:00
committed by GitHub
parent 3d353340dc
commit e1b51b0811
8 changed files with 24 additions and 14 deletions

View File

@@ -22,10 +22,10 @@ const (
MaxCoinPrecision = 100
)
// RelayerFeeWei and RelayerFeeETH are the fixed 0.009 ETH fee for using a swap
// RelayerFeeWei and RelayerFeeETH are the fixed 0.01 ETH fee for using a swap
// relayer to claim.
var (
RelayerFeeWei = big.NewInt(9e15)
RelayerFeeWei = big.NewInt(1e16)
RelayerFeeETH = NewWeiAmount(RelayerFeeWei).AsEther()
)