@@ -80,9 +80,17 @@ public class CurrencyPair implements Comparable<CurrencyPair>, Serializable {
80
80
public static final CurrencyPair BCH_BTC = new CurrencyPair (Currency .BCH , Currency .BTC );
81
81
public static final CurrencyPair BCH_ETH = new CurrencyPair (Currency .BCH , Currency .ETH );
82
82
83
+ public static final CurrencyPair BCA_USD = new CurrencyPair (Currency .BCA , Currency .USD );
84
+ public static final CurrencyPair BCA_EUR = new CurrencyPair (Currency .BCA , Currency .EUR );
85
+ public static final CurrencyPair BCA_CNY = new CurrencyPair (Currency .BCA , Currency .CNY );
86
+ public static final CurrencyPair BCA_JPY = new CurrencyPair (Currency .BCA , Currency .JPY );
87
+ public static final CurrencyPair BCA_BTC = new CurrencyPair (Currency .BCA , Currency .BTC );
88
+ public static final CurrencyPair BCA_ETH = new CurrencyPair (Currency .BCA , Currency .ETH );
89
+
83
90
public static final CurrencyPair ETH_BTC = new CurrencyPair (Currency .ETH , Currency .BTC );
84
91
public static final CurrencyPair ETH_GBP = new CurrencyPair (Currency .ETH , Currency .GBP );
85
92
public static final CurrencyPair ETH_USD = new CurrencyPair (Currency .ETH , Currency .USD );
93
+ public static final CurrencyPair ETH_USDT = new CurrencyPair (Currency .ETH , Currency .USDT );
86
94
public static final CurrencyPair ETH_EUR = new CurrencyPair (Currency .ETH , Currency .EUR );
87
95
public static final CurrencyPair ETH_JPY = new CurrencyPair (Currency .ETH , Currency .JPY );
88
96
public static final CurrencyPair ETH_CNY = new CurrencyPair (Currency .ETH , Currency .CNY );
@@ -211,6 +219,14 @@ public class CurrencyPair implements Comparable<CurrencyPair>, Serializable {
211
219
public static final CurrencyPair OMG_USD = new CurrencyPair (Currency .OMG , Currency .USD );
212
220
public static final CurrencyPair OMG_BTC = new CurrencyPair (Currency .OMG , Currency .BTC );
213
221
public static final CurrencyPair OMG_ETH = new CurrencyPair (Currency .OMG , Currency .ETH );
222
+ // end
223
+
224
+ // NEO
225
+ public static final CurrencyPair NEO_USD = new CurrencyPair (Currency .NEO , Currency .USD );
226
+ public static final CurrencyPair NEO_USDT = new CurrencyPair (Currency .NEO , Currency .USDT );
227
+ public static final CurrencyPair NEO_BTC = new CurrencyPair (Currency .NEO , Currency .BTC );
228
+ public static final CurrencyPair NEO_ETH = new CurrencyPair (Currency .NEO , Currency .ETH );
229
+ // end
214
230
215
231
// not real currencies, but tradable commodities (GH/s)
216
232
public static final CurrencyPair GHs_BTC = new CurrencyPair (Currency .GHs , Currency .BTC );
@@ -250,6 +266,9 @@ public class CurrencyPair implements Comparable<CurrencyPair>, Serializable {
250
266
public static final CurrencyPair ZEC_USD = new CurrencyPair (Currency .ZEC , Currency .USD );
251
267
public static final CurrencyPair ZEC_BTC = new CurrencyPair (Currency .ZEC , Currency .BTC );
252
268
269
+ public static final CurrencyPair ZEN_USD = new CurrencyPair (Currency .ZEN , Currency .USD );
270
+ public static final CurrencyPair ZEN_BTC = new CurrencyPair (Currency .ZEN , Currency .BTC );
271
+
253
272
public static final CurrencyPair GNO_ETH = new CurrencyPair (Currency .GNO , Currency .ETH );
254
273
public static final CurrencyPair GNO_BTC = new CurrencyPair (Currency .GNO , Currency .BTC );
255
274
0 commit comments