Skip to content

Commit

Permalink
Reduce maker fee, increase take fee
Browse files Browse the repository at this point in the history
- Reduce maker fee to 0,1%, increase take fee to 0,3%

As approved by proposal
bisq-network/proposals#65
  • Loading branch information
ManfredKarrer committed Jan 7, 2019
1 parent 5be4413 commit e3a17d2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions core/src/main/java/bisq/core/dao/governance/param/Param.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,16 @@ public enum Param {

// Fee in BTC satoshi for a 1 BTC trade. 200_000 Satoshi = 0.00200000 BTC = 0.2%.
// 10 USD at BTC price 5_000 USD for a 1 BTC trade;
DEFAULT_MAKER_FEE_BTC("0.002", ParamType.BTC, 5, 5),
DEFAULT_TAKER_FEE_BTC("0.002", ParamType.BTC, 5, 5), // 0.2% of trade amount
DEFAULT_MAKER_FEE_BTC("0.001", ParamType.BTC, 5, 5),
DEFAULT_TAKER_FEE_BTC("0.003", ParamType.BTC, 5, 5), // 0.2% of trade amount
MIN_MAKER_FEE_BTC("0.00005", ParamType.BTC, 5, 5), // 0.005% of trade amount
MIN_TAKER_FEE_BTC("0.00005", ParamType.BTC, 5, 5),

// Fee in BSQ satoshi for a 1 BTC trade. 100 Satoshi = 1 BSQ => about 0.02%.
// About 1 USD if 1 BSQ = 1 USD for a 1 BTC trade which is about 10% of the BTC fee.,
// Might need adjustment if BSQ/BTC rate changes.
DEFAULT_MAKER_FEE_BSQ("1.00", ParamType.BSQ, 5, 5), // ~ 0.02% of trade amount
DEFAULT_TAKER_FEE_BSQ("1", ParamType.BSQ, 5, 5),
DEFAULT_MAKER_FEE_BSQ("0.50", ParamType.BSQ, 5, 5), // ~ 0.01% of trade amount
DEFAULT_TAKER_FEE_BSQ("1.5", ParamType.BSQ, 5, 5),
// 0.03 BSQ (3 satoshi) for a 1 BTC trade. 0.05 USD if 1 BSQ = 1 USD, 10 % of the BTC fee
MIN_MAKER_FEE_BSQ("0.03", ParamType.BSQ, 5, 5), // 0.0003%.
MIN_TAKER_FEE_BSQ("0.03", ParamType.BSQ, 5, 5),
Expand Down

0 comments on commit e3a17d2

Please sign in to comment.