Skip to content

Commit

Permalink
Merge pull request ccxt#9450 from ndubel/patch-104
Browse files Browse the repository at this point in the history
ascendex fetchMarkets fees
  • Loading branch information
kroitor committed Jun 26, 2021
2 parents 93a2875 + e6b1f58 commit 9b6b4e1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions js/ascendex.js
Expand Up @@ -431,6 +431,7 @@ module.exports = class ascendex extends Exchange {
if (!future) {
symbol = base + '/' + quote;
}
const fee = this.safeNumber (market, 'commissionReserveRate');
result.push ({
'id': id,
'symbol': symbol,
Expand All @@ -444,6 +445,8 @@ module.exports = class ascendex extends Exchange {
'future': future,
'active': active,
'precision': precision,
'taker': fee,
'maker': fee,
'limits': {
'amount': {
'min': this.safeNumber (market, 'minQty'),
Expand Down

0 comments on commit 9b6b4e1

Please sign in to comment.