Skip to content

Commit

Permalink
SOV-4497: Fix FastBTC fee (#2611)
Browse files Browse the repository at this point in the history
Fix FastBTC fee
  • Loading branch information
tiltom committed Oct 8, 2024
1 parent b266a7b commit 1d1628d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/pages/FastBtcPage/constants.ts
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 1d1628d

Please sign in to comment.