-
Notifications
You must be signed in to change notification settings - Fork 7
/
consts.js
49 lines (49 loc) · 859 Bytes
/
consts.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/**
* Kraken has minimum order quantities that are accepted. This data is not available via API.
* Thus, ned to put minimum quantities manually to avoid making too small orders which get rejected.
* For latest reference, check below:
* https://support.kraken.com/hc/en-us/articles/205893708-Minimum-order-size-volume-for-trading
*/
module.exports.MIN_QUANTITIES = {
DOT: 1,
ALGO: 50,
REP: 0.3,
BAT: 50,
XRP: 30,
XBT: 0.001,
BTC: 0.001,
BCH: 0.025,
FIL: 0.125,
ADA: 50,
LINK: 2,
ATOM: 1,
DAI: 10,
DASH: 0.03,
XDG: 3000,
EOS: 3,
ETC: 0.3,
ETH: 0.02,
GNO: 0.02,
ICX: 50,
LSK: 10,
LTC: 0.1,
XMR: 0.1,
NANO: 10,
OMG: 10,
PAXG: 0.01,
QTUM: 5,
XPR: 30,
SC: 5000,
XLM: 30,
USDT: 5,
XTZ: 1,
TRX: 500,
USDC: 5,
MLN: 0.1,
WAVES: 10,
ZEC: 0.03,
UNI: 0.25,
EUR: 10,
USD: 10,
GBP: 10
};