Skip to content

Commit

Permalink
Merge pull request #11916 from Matoran/patch-7
Browse files Browse the repository at this point in the history
luno add default fees for maker and taker
  • Loading branch information
kroitor committed Feb 11, 2022
2 parents 640fb2b + 17d37f1 commit 2d5644e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions js/luno.js
Expand Up @@ -133,6 +133,14 @@ module.exports = class luno extends Exchange {
],
},
},
'fees': {
'trading': {
'tierBased': true, // based on volume from your primary currency (not the same for everyone)
'percentage': true,
'taker': this.parseNumber ('0.001'),
'maker': this.parseNumber ('0'),
},
},
});
}

Expand Down

0 comments on commit 2d5644e

Please sign in to comment.