From 7b93601f2d2cd19244cd2815c0a73f1f73088a1a Mon Sep 17 00:00:00 2001 From: tiltom Date: Tue, 8 Oct 2024 21:21:55 +0200 Subject: [PATCH] SOV-4497: Fix FastBTC fee (#2611) Fix FastBTC fee --- src/app/pages/FastBtcPage/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/pages/FastBtcPage/constants.ts b/src/app/pages/FastBtcPage/constants.ts index aa567847a4..da7a6aa33d 100644 --- a/src/app/pages/FastBtcPage/constants.ts +++ b/src/app/pages/FastBtcPage/constants.ts @@ -1,9 +1,9 @@ // https://github.com/DistributedCollective/FastBTC/blob/development/config/config-main.js#L15 -export const DEPOSIT_FEE_SATS = 6000; +export const DEPOSIT_FEE_SATS = 5000; // hardcoded 0.2% dynamic fee // https://github.com/DistributedCollective/FastBTC/blob/development/controller/rskCtrl.js#L64 -export const DEPOSIT_FEE_DYNAMIC = 20; +export const DEPOSIT_FEE_DYNAMIC = 75; // https://github.com/DistributedCollective/bidirectional-fastbtc/blob/master/packages/fastbtc-contracts/contracts/FastBTCBridge.sol#L105 export const DYNAMIC_FEE_DIVISOR = 10000;