feat: integration of erc-20 tokens

This commit is contained in:
Sérgio Salgado 2021-02-05 18:18:23 +00:00 committed by Josh Harvey
parent 0b5da0b78f
commit dfca785ed0
7 changed files with 127 additions and 29 deletions

View file

@ -0,0 +1,32 @@
const PAIRS = {
BTC: {
USD: 'XXBTZUSD',
EUR: 'XXBTZEUR'
},
ETH: {
USD: 'XETHZUSD',
EUR: 'XETHZEUR'
},
ZEC: {
USD: 'XZECZUSD',
EUR: 'XZECZEUR'
},
LTC: {
USD: 'XLTCZUSD',
EUR: 'XLTCZEUR'
},
DASH: {
USD: 'DASHUSD',
EUR: 'DASHEUR'
},
BCH: {
USD: 'BCHUSD',
EUR: 'BCHEUR'
},
USDT: {
USD: 'USDTZUSD',
EUR: 'USDTEUR'
}
}
module.exports = {PAIRS}