feat: integration of erc-20 tokens
This commit is contained in:
parent
0b5da0b78f
commit
dfca785ed0
7 changed files with 127 additions and 29 deletions
32
lib/plugins/common/kraken.js
Normal file
32
lib/plugins/common/kraken.js
Normal 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}
|
||||
Loading…
Add table
Add a link
Reference in a new issue