You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
xud calculates and subtracts taker_fee+maker_fee when matching & requesting a swap as taker. Maker fee needs to be calculated in base currency (using local last price) and converted into quote currency.
xud calculates and adds taker_fee+maker_fee before propagating an order to peers as maker. Taker fee needs to be calculated in quote currency (using local last price) and converted into base currency.
trading fees are recorded in separate trading fee account within xud once swap is successful
The text was updated successfully, but these errors were encountered:
Based on our technical paper, this issue implements handling trading fees for exchanges running
xud
inmatching
mode:taker_fee
&maker_fee
are defined inxud.conf
in % (e.g.taker_fee = 0.25
means taker fee is 0.25%), reminder to store consistent with datatype as per gRPCSubscribeAddedOrders
+SubscribeRemovedOrders
float issue #740xud
calculates and subtractstaker_fee
+maker_fee
when matching & requesting a swap as taker. Maker fee needs to be calculated in base currency (using local last price) and converted into quote currency.xud
calculates and addstaker_fee
+maker_fee
before propagating an order to peers as maker. Taker fee needs to be calculated in quote currency (using local last price) and converted into base currency.trading fee
account withinxud
once swap is successfulThe text was updated successfully, but these errors were encountered: