-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmarkets.js
126 lines (123 loc) · 2.96 KB
/
markets.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/**
* markets.js
*
* This is the main configuration file for setting which issuers and markets to
* track and list.
*
* WARNING: The ordering of entries here is used for the database IDs, so
* anything other than appending new entries will invalidate the database.
*/
// Curated list of named issuers
// *APPEND ONLY*
exports.issuers = [{
name: "WeExchange",
url: "https://weexchange.co/",
domain: "weexchange.co",
disabled: true,
currencies: {
"AUD": "rBcYpuDT1aXNo4jnqczWJTytKGdBGufsre",
"BTC": "rpvfJ4mR6QQAeogpXEKnuyGBx8mYCSnYZi",
"CAD": "r47RkFi1Ew3LvCNKT6ufw3ZCyj5AJiLHi9",
"USD": "r9vbV3EHvXWjSkeQ6CAcYVPGeq7TuiXY2X"
}
}, {
name: "Bitstamp",
url: "https://www.bitstamp.net/",
domain: "bitstamp.net",
currencies: {
"USD": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B",
"BTC": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B",
"EUR": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B",
"GBP": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B",
"JPY": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B",
"CHF": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B",
"AUD": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B"
},
hotwallets: {
'rrpNnNLKrartuEqfJGpqyDwPj1AFPg9vn1': true
}
}, {
name: "TheRock",
url: "https://www.therocktrading.com/",
domain: "therocktrading.com",
currencies: {
"USD": "rLEsXccBGNR3UPuPu2hUXPjziKC3qKSBun",
"EUR": "rLEsXccBGNR3UPuPu2hUXPjziKC3qKSBun",
"BTC": "rLEsXccBGNR3UPuPu2hUXPjziKC3qKSBun",
"LTC": "rLEsXccBGNR3UPuPu2hUXPjziKC3qKSBun",
"SLL": "rLEsXccBGNR3UPuPu2hUXPjziKC3qKSBun"
}
}, {
name: "RippleUnion",
url: "http://rippleunion.com/",
currencies: {
"CAD": "r3ADD8kXSUKHd6zTCKfnKT3zV9EZHjzp1S"
}
}, {
name: "chriswen",
url: "https://bitcointalk.org/index.php?topic=155124.0",
currencies: {
"LTC": "rDihBcUrrfDwUBZWBcuP2z5n47KVLQFNQH"
}
}, {
name: "RippleCN",
url: "http://ripplecn.com",
currencies: {
"CNY": "rnuF96W4SZoCJmbHYBFoJZpR8eCaxNvekK",
"BTC": "rnuF96W4SZoCJmbHYBFoJZpR8eCaxNvekK",
"LTC": "rnuF96W4SZoCJmbHYBFoJZpR8eCaxNvekK"
}
}, {
name: "SnapSwap",
url: "https://www.snapswap.us/",
domain: "snapswap.us",
currencies: {
"USD": "rMwjYedjc7qqtKYVLiAccJSmCwih4LnE2q"
},
hotwallets: {
"rhasPLL5GaXzBh5amQkN7Dr1SNF4Whb2ZT": true
}
}, {
name: "Justcoin",
url: "https://justcoin.com",
domain: "justcoin.com",
currencies: {
"BTC": "rJHygWcTLVpSXkowott6kzgZU6viQSVYM1"
}
}, {
name: "RippleChina",
url: "http://www.ripplechina.net/",
domain: "trade.ripplechina.net",
currencies: {
"CNY": "razqQKzJRdB4UxFPWf5NEpEG3WMkmwgcXA",
"BTC": "razqQKzJRdB4UxFPWf5NEpEG3WMkmwgcXA",
"USD": "razqQKzJRdB4UxFPWf5NEpEG3WMkmwgcXA"
}
}];
// Curated list of currencies
// *APPEND ONLY*
exports.currencies = [
'XRP',
'BTC',
'USD',
'EUR',
'JPY',
'GBP',
'CHF',
'CAD',
'AUD',
'NZD',
'ZAR',
'SLL',
'LTC',
'CNY',
'NOK'
];
// Highlighted XRP markets
exports.xrp = [
"USD:Bitstamp",
"BTC:Bitstamp",
"USD:SnapSwap",
"CNY:RippleCN",
"CNY:RippleChina"
];