diff --git a/relay/internal/service_fee/fee/fee_bridge.go b/relay/internal/service_fee/fee/fee_bridge.go index 6aa3e386..9878fd86 100644 --- a/relay/internal/service_fee/fee/fee_bridge.go +++ b/relay/internal/service_fee/fee/fee_bridge.go @@ -6,7 +6,8 @@ import ( ) var percentFromAmount = map[uint64]int64{ - 0: 0.0 * 100, // 0.. ...$ => 0% + 0: 0.3 * 100, // 0 .. 100_000 $ => 0.3% + 100_000: 0.1 * 100, // 100_000 .. * $ => 0.1% } func getBridgeFee(nativeUsdPrice, tokenUsdPrice, amount, minBridgeFee decimal.Decimal) (decimal.Decimal, error) {