├── bin └── repl ├── .babelrc ├── secrets.env ├── package.json ├── index.js ├── .repl.js ├── .gitignore ├── README.md ├── lib ├── bot.js └── currencies.json ├── .eslintrc.js └── yarn.lock /bin/repl: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | node -r ./.repl "$@" 4 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["transform-class-properties", "transform-async-to-generator"] 3 | } 4 | -------------------------------------------------------------------------------- /secrets.env: -------------------------------------------------------------------------------- 1 | # Twitter 2 | # https://apps.twitter.com/ 3 | 4 | export TWITTER_KEY=... 5 | export TWITTER_SECRET=... 6 | export TWITTER_TOKEN=... 7 | export TWITTER_TOKEN_SECRET=... 8 | 9 | # Bittrex 10 | # https://bittrex.com/Manage#sectionApi 11 | 12 | export BITTREX_KEY=... 13 | export BITTREX_SECRET=... 14 | 15 | # If you choose to use `yarn start` instead of `bin/repl` set your price parameters here. 16 | 17 | export BTC_SPEND=0.25 18 | export ADJUSTMENT=0.05 19 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mcafee-bot", 3 | "version": "1.0.0", 4 | "description": "buy coins based on @officialmcafee tweets", 5 | "main": "index.js", 6 | "repository": "https://github.com/DimensionSoftware/mcafee-bot", 7 | "author": "John Beppu ", 8 | "license": "MIT", 9 | "private": false, 10 | "engines": { 11 | "node": ">= 7.6" 12 | }, 13 | "scripts": { 14 | "start": "node index.js" 15 | }, 16 | "dependencies": { 17 | "bluebird": "^3.5.1", 18 | "clone": "^2.1.1", 19 | "lazy.js": "^0.5.0", 20 | "node-bittrex-api": "^0.8.1", 21 | "node-tesseract": "^0.2.7", 22 | "request-promise": "^4.2.2", 23 | "twit": "^2.2.9" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | const Promise = require('bluebird') 2 | const Twit = require('twit') 3 | 4 | const Bot = require('./lib/bot') 5 | 6 | const opts = { 7 | twitter: { 8 | key: process.env.TWITTER_KEY, 9 | secret: process.env.TWITTER_SECRET, 10 | token: process.env.TWITTER_TOKEN, 11 | tokenSecret: process.env.TWITTER_TOKEN_SECRET 12 | }, 13 | bittrex: { 14 | key: process.env.BITTREX_KEY, 15 | secret: process.env.BITTREX_SECRET 16 | } 17 | } 18 | 19 | const bot = new Bot(opts); 20 | 21 | if (process.env.BTC_SPEND) { 22 | bot.btcSpend = parseFloat(process.env.BTC_SPEND) 23 | } 24 | 25 | if (process.env.ADJUSTMENT) { 26 | bot.adjustment = parseFloat(process.env.ADJUSTMENT) 27 | } 28 | 29 | ;(async function() { 30 | let result = await bot.init(); 31 | })(); 32 | -------------------------------------------------------------------------------- /.repl.js: -------------------------------------------------------------------------------- 1 | function reload(module){ 2 | delete require.cache[require.resolve(module)] 3 | return require(module) 4 | } 5 | 6 | global.reload = reload 7 | global.rl = reload 8 | global.cl = console.log 9 | 10 | global.Promise = require('bluebird') 11 | global.Bot = require('./lib/bot') 12 | 13 | global.bot = new Bot({ 14 | twitter: { 15 | key: process.env.TWITTER_KEY, 16 | secret: process.env.TWITTER_SECRET, 17 | token: process.env.TWITTER_TOKEN, 18 | tokenSecret: process.env.TWITTER_TOKEN_SECRET 19 | }, 20 | bittrex: { 21 | key: process.env.BITTREX_KEY, 22 | secret: process.env.BITTREX_SECRET 23 | } 24 | }) 25 | 26 | if (process.env.BTC_SPEND) { 27 | global.bot.btcSpend = parseFloat(process.env.BTC_SPEND) 28 | } 29 | if (process.env.ADJUSTMENT) { 30 | global.bot.adjustment = parseFloat(process.env.ADJUSTMENT) 31 | } 32 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Runtime data 9 | pids 10 | *.pid 11 | *.seed 12 | *.pid.lock 13 | .#* 14 | 15 | # Directory for instrumented libs generated by jscoverage/JSCover 16 | lib-cov 17 | 18 | # Coverage directory used by tools like istanbul 19 | coverage 20 | 21 | # nyc test coverage 22 | .nyc_output 23 | 24 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 25 | .grunt 26 | 27 | # Bower dependency directory (https://bower.io/) 28 | bower_components 29 | 30 | # node-waf configuration 31 | .lock-wscript 32 | 33 | # Compiled binary addons (http://nodejs.org/api/addons.html) 34 | build/Release 35 | 36 | # Dependency directories 37 | node_modules/ 38 | jspm_packages/ 39 | 40 | # Typescript v1 declaration files 41 | typings/ 42 | 43 | # Optional npm cache directory 44 | .npm 45 | 46 | # Optional eslint cache 47 | .eslintcache 48 | 49 | # Optional REPL history 50 | .node_repl_history 51 | 52 | # Output of 'npm pack' 53 | *.tgz 54 | 55 | # Yarn Integrity file 56 | .yarn-integrity 57 | 58 | # dotenv environment variables file 59 | .env 60 | 61 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # mcafee-bot 2 | 3 | When [@officialmcafee](https://twitter.com/officialmcafee) posts his coin of the day, buy it ASAP. 4 | 5 | # How it works 6 | 7 | * Read @officialmcafee's tweets in real time. 8 | * Determine whether the tweet is a coin of the day announcement. 9 | * If so, determine what coin it is. 10 | * If it's on bittrex, buy it. 11 | 12 | ## IT DOES NOT SELL! 13 | 14 | That is left as an exercise for you. 15 | 16 | # Installation 17 | 18 | ## Prerequisites 19 | 20 | Before you even try to install this, you need to have the following things installed: 21 | 22 | * [git](https://git-scm.com/) 23 | * [node.js](https://nodejs.org/en/) 24 | * [yarn](https://yarnpkg.com/en/) 25 | * libtesseract-dev (NEW) 26 | 27 | ```sh 28 | # OSX 29 | brew install tesseract --with-all-languages 30 | 31 | # Linux (Ubuntu) 32 | apt-get install libtesseract-dev tesseract-ocr 33 | ``` 34 | 35 | I don't know what to tell you Windows people. Perhaps consider running [Ubuntu under VirtualBox](https://www.lifewire.com/run-ubuntu-within-windows-virtualbox-2202098). 36 | 37 | ## Cloning 38 | 39 | ```sh 40 | git clone git@github.com:DimensionSoftware/mcafee-bot.git 41 | cd mcafee-bot 42 | yarn 43 | ``` 44 | 45 | ## API Keys 46 | 47 | You have to go to both twitter and bittrex to get your own API keys. 48 | Once acquired, I recommend putting them in `secrets.env`. 49 | 50 | * Twitter: https://apps.twitter.com/ 51 | * Create an application. 52 | * You can leave callback URL blank. 53 | * After that's done go to **Keys and Access Tokens** and make some access tokens. 54 | * Bittrex: https://bittrex.com/Manage#sectionApi 55 | * **Read Info** should be **ON**. 56 | * **Trade Limit** should be **ON**. 57 | * **Trade Market** doesn't matter. 58 | * **Withdraw** should be **OFF** for your safety. 59 | * Binance: https://www.binance.com/userCenter/createApi.html (Coming Soon) 60 | * **Read Info** should be **ON** 61 | * **Enable Trading** should be **ON** 62 | * **Enable Withdrawals** should be **OFF** 63 | 64 | # Usage 65 | 66 | ```sh 67 | source secrets.env # You have to get your own API keys from twitter and bittrex! 68 | bin/repl 69 | ``` 70 | 71 | This will drop you into a node.js repl with an instantiated bot you can command interactively. 72 | 73 | ```javascript 74 | // The bot. 75 | bot 76 | 77 | // How much BTC are you willing to spend per purchase? 78 | bot.btcSpend = 0.25 79 | 80 | // To get ahead of the pump, 81 | // what multiplier do you want to add to the current price when putting in the buy order? 82 | // bid == price + (price * bot.adjustment) 83 | bot.adjustment = 0.20 84 | 85 | // If you want to see it read tweets: 86 | bot.verbose = true 87 | 88 | // If you want it to shut up (which is the default): 89 | bot.verbose = false 90 | 91 | // Make the bot connect to twitter and monitor tweets. VERY IMPORTANT! 92 | bot.init() 93 | ``` 94 | 95 | It is now waiting for @officialmcafee to tweet his coin of the day. 96 | 97 | # Tweets 98 | 99 | * https://twitter.com/officialmcafee/status/947845669213147136 100 | * https://twitter.com/officialmcafee/status/945655402276024320 101 | * https://twitter.com/officialmcafee/status/945293044252905472 102 | * https://twitter.com/officialmcafee/status/944929837671690241 103 | * https://twitter.com/officialmcafee/status/944555048880746497 104 | * https://twitter.com/officialmcafee/status/944206175100424193 105 | -------------------------------------------------------------------------------- /lib/bot.js: -------------------------------------------------------------------------------- 1 | const Promise = require('bluebird') 2 | const Twit = require('twit') 3 | const bittrex = require('node-bittrex-api') 4 | const Lazy = require('lazy.js') 5 | const clone = require('clone') 6 | const tesseract = Promise.promisifyAll(require('node-tesseract')) 7 | const request = require('request-promise') 8 | const path = require('path') 9 | const fs = Promise.promisifyAll(require('fs')) 10 | 11 | const currencies = require('./currencies') 12 | const coinPattern = 'Coin of the (week|day)' 13 | 14 | module.exports = class Bot { 15 | 16 | constructor(opts) { 17 | this.verbose = false 18 | this.btcSpend = opts.btcSpend || 0.001 19 | this.adjustment = 0.20 20 | this.T = new Twit({ 21 | consumer_key: opts.twitter.key, 22 | consumer_secret: opts.twitter.secret, 23 | access_token: opts.twitter.token, 24 | access_token_secret: opts.twitter.tokenSecret 25 | }) 26 | 27 | this.bittrex = Promise.promisifyAll(clone(bittrex)) 28 | this.bittrex.options({ 29 | apikey: opts.bittrex.key, 30 | apisecret: opts.bittrex.secret, 31 | inverse_callback_arguments: true 32 | }) 33 | 34 | this.mcafeeId = '961445378' 35 | 36 | this.follow = [ 37 | // @officialmcafee 38 | '961445378' 39 | // @mbb777_ (dummy account for testing tweets) 40 | ,'944877775705464832' 41 | ] 42 | } 43 | 44 | /** 45 | * Perform the asynchronous part of bot initialization and start listening for tweets. 46 | */ 47 | async init() { 48 | // Twitter 49 | // https://stackoverflow.com/questions/15652361/can-not-use-follow-in-the-streaming-api-in-ntwitter-recieving-unspecified-er 50 | // https://stackoverflow.com/questions/47384200/how-to-stream-tweets-of-one-user-using-follow 51 | this.stream = this.T.stream('statuses/filter', { follow: this.follow }) 52 | this.stream.on('tweet', this.handleTweet.bind(this)) 53 | this.stream.on('connect', () => console.warn('connect')) 54 | this.stream.on('error', (err) => { console.warn('error', err) }) 55 | } 56 | 57 | /** 58 | * Use OCR to read text from images posted in a tweet 59 | * 60 | * @param {Tweet} tweet - entire tweet data from Twitter API 61 | * @returns {String} text content from image 62 | */ 63 | async textFromTweet(tweet) { 64 | const 65 | media = tweet.entities.media, 66 | photos = media.filter(m => m.type === 'photo'), 67 | text = await photos.reduce(async (accp, cur) => { 68 | const 69 | acc = await accp, 70 | fileName = `bot-${cur.id}`, 71 | bytes = await request(cur.media_url, {encoding: null}) 72 | 73 | // spool to disk 74 | await fs.writeFileAsync(fileName, bytes) 75 | 76 | // tesseract 'em 77 | const text = await tesseract.processAsync(fileName, {l: 'eng'}) 78 | return acc + text 79 | }, Promise.resolve('')) 80 | return text 81 | } 82 | 83 | /** 84 | * Analyze a tweet and try to buy if it's a coin of the day announcement. 85 | * 86 | * @param {Object} tweet tweet data + metadata 87 | */ 88 | async handleTweet(tweet) { 89 | if (this.verbose) console.warn(`${tweet.created_at} | ${tweet.user.screen_name} ${tweet.user.id_str} | ${tweet.text}`) 90 | if (this.isCoinOfTheWeek(tweet)) { 91 | const coin = await this.identifyCoin(tweet) 92 | console.warn('COIN OF THE DAY!', tweet.text, coin) 93 | if (coin.found) { 94 | console.warn(`attempting to buy ${coin.symbol}`) 95 | let result = await this.buy(coin.symbol, this.btcSpend, this.adjustment) 96 | console.warn(result) 97 | } else { 98 | console.warn(coin) 99 | } 100 | } 101 | } 102 | 103 | /** 104 | * Is this tweet a coin of the day announcement from officialmcafee 105 | * (and not a retweet from someone else)? 106 | * 107 | * @param {Object} tweet tweet data + metadata 108 | * @returns {Boolean} 109 | */ 110 | isCoinOfTheWeek(tweet) { 111 | if (tweet.user.id_str == this.mcafeeId) { 112 | if (tweet.text.match(new RegExp(coinPattern, 'i'))) { 113 | return true; 114 | } 115 | return false; 116 | } else { 117 | return false; 118 | } 119 | } 120 | 121 | /** 122 | * Guess what coin he's talking about. 123 | * 124 | * @param {Object} tweet tweet data + metadata 125 | * @returns {Object} coin metadata 126 | */ 127 | async identifyCoin(tweet) { 128 | const imageText = tweet.entities.media 129 | ? await this.textFromTweet(tweet) 130 | : '' 131 | const text = tweet.entities.media 132 | ? `${tweet.text} ${imageText}` 133 | : tweet.text 134 | 135 | if (text.match(new RegExp(coinPattern, 'i'))) { 136 | 137 | // different strategies for finding a coin name 138 | const possibleNames = [ 139 | // similar to original regexp 140 | (function() { 141 | const match = text.match(new RegExp(`${coinPattern}\\W*([A-Za-z ]*)`, 'i')) 142 | if (match) { 143 | return match[2].trim() 144 | } else { 145 | return '' 146 | } 147 | })(), 148 | 149 | // only look at image text in case the original failed 150 | (function() { 151 | const match = imageText.match(/([A-Za-z ]*)/i) 152 | if (match) { 153 | return match[1].trim() 154 | } else { 155 | return '' 156 | } 157 | })() 158 | ] 159 | 160 | let longName = '' 161 | let c = null 162 | for (let i = 0; i < possibleNames.length; i++) { 163 | longName = possibleNames[i] 164 | c = this.findInCurrencies(longName) 165 | if (c) break; 166 | } 167 | if (c) { 168 | return { found: true, symbol: c.Currency, name: c.CurrencyLong } 169 | } else { 170 | return { found: false, reason: `Couldn't find ${longName} in currencies list.` } 171 | } 172 | } else { 173 | return { found: false, reason: 'Tweet could not be parsed.' } 174 | } 175 | } 176 | 177 | /** 178 | * Find info on a currency based on its name 179 | * 180 | * @param {String} name 181 | * @returns {Object} bittrex currency object 182 | */ 183 | findInCurrencies(name) { 184 | const pattern = new RegExp(`^${name}$`, 'i') 185 | return currencies.find((c) => { 186 | if (c.CurrencyLong.match(pattern)) { 187 | return true 188 | } else if (c.Currency.match(pattern)) { 189 | return true 190 | } else { 191 | return false; 192 | } 193 | }) 194 | } 195 | 196 | /** 197 | * Buy a coin 198 | * 199 | * @param {String} symbol symbol for coin 200 | * @param {Number} btcSpend maximum BTC you are willing to spend 201 | * @param {Number} adjustment multiplier to apply to price to get ahead of the pump 202 | * @returns {Object} result of bittrex.tradebuy 203 | */ 204 | async buy(symbol, btcSpend, adjustment) { 205 | const market = `BTC-${symbol}` 206 | const res0 = await this.bittrex.gettickerAsync({ market }) 207 | const ticker = res0.result 208 | const rate = ticker.Ask + (ticker.Ask * adjustment) 209 | const quantity = btcSpend / rate 210 | const opts = { 211 | MarketName: market, 212 | OrderType: 'LIMIT', 213 | Quantity: quantity, 214 | Rate: rate, 215 | TimeInEffect: 'IMMEDIATE_OR_CANCEL', 216 | ConditionType: 'NONE', 217 | Target: 0 218 | } 219 | const res1 = await this.bittrex.tradebuyAsync(opts) 220 | return res1 221 | } 222 | } 223 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "env": { 3 | "browser": true, 4 | "commonjs": true, 5 | "es6": true 6 | }, 7 | "extends": "eslint:recommended", 8 | "rules": { 9 | "accessor-pairs": "error", 10 | "array-bracket-newline": "off", 11 | "array-bracket-spacing": "error", 12 | "array-callback-return": "error", 13 | "array-element-newline": "error", 14 | "arrow-body-style": "error", 15 | "arrow-parens": [ 16 | "error", 17 | "always" 18 | ], 19 | "arrow-spacing": [ 20 | "error", 21 | { 22 | "after": true, 23 | "before": true 24 | } 25 | ], 26 | "block-scoped-var": "error", 27 | "block-spacing": [ 28 | "error", 29 | "always" 30 | ], 31 | "callback-return": "error", 32 | "camelcase": "error", 33 | "capitalized-comments": [ 34 | "error", 35 | "never" 36 | ], 37 | "class-methods-use-this": "error", 38 | "comma-dangle": "error", 39 | "comma-spacing": [ 40 | "error", 41 | { 42 | "after": true, 43 | "before": false 44 | } 45 | ], 46 | "comma-style": [ 47 | "error", 48 | "last" 49 | ], 50 | "complexity": "error", 51 | "computed-property-spacing": [ 52 | "error", 53 | "never" 54 | ], 55 | "consistent-return": "error", 56 | "consistent-this": "error", 57 | "curly": "error", 58 | "default-case": "error", 59 | "dot-location": "error", 60 | "dot-notation": [ 61 | "error", 62 | { 63 | "allowKeywords": true 64 | } 65 | ], 66 | "eol-last": "error", 67 | "eqeqeq": "error", 68 | "for-direction": "error", 69 | "func-call-spacing": "error", 70 | "func-name-matching": "error", 71 | "func-names": [ 72 | "error", 73 | "never" 74 | ], 75 | "func-style": [ 76 | "error", 77 | "declaration" 78 | ], 79 | "generator-star-spacing": "error", 80 | "getter-return": "error", 81 | "global-require": "error", 82 | "guard-for-in": "error", 83 | "handle-callback-err": "error", 84 | "id-blacklist": "error", 85 | "id-length": "off", 86 | "id-match": "error", 87 | "indent": "off", 88 | "indent-legacy": "off", 89 | "init-declarations": "error", 90 | "jsx-quotes": "error", 91 | "key-spacing": "off", 92 | "keyword-spacing": "error", 93 | "line-comment-position": "error", 94 | "linebreak-style": [ 95 | "error", 96 | "unix" 97 | ], 98 | "lines-around-comment": "error", 99 | "lines-around-directive": "error", 100 | "max-depth": "error", 101 | "max-len": "off", 102 | "max-lines": "error", 103 | "max-nested-callbacks": "error", 104 | "max-params": "error", 105 | "max-statements": "error", 106 | "max-statements-per-line": "off", 107 | "multiline-ternary": "error", 108 | "new-cap": "error", 109 | "new-parens": "error", 110 | "newline-after-var": "off", 111 | "newline-before-return": "error", 112 | "newline-per-chained-call": "error", 113 | "no-alert": "error", 114 | "no-array-constructor": "error", 115 | "no-await-in-loop": "error", 116 | "no-bitwise": "error", 117 | "no-buffer-constructor": "error", 118 | "no-caller": "error", 119 | "no-catch-shadow": "error", 120 | "no-confusing-arrow": "error", 121 | "no-continue": "error", 122 | "no-div-regex": "error", 123 | "no-duplicate-imports": "error", 124 | "no-else-return": "error", 125 | "no-empty-function": "error", 126 | "no-eq-null": "error", 127 | "no-eval": "error", 128 | "no-extend-native": "error", 129 | "no-extra-bind": "error", 130 | "no-extra-label": "error", 131 | "no-extra-parens": "error", 132 | "no-floating-decimal": "error", 133 | "no-implicit-coercion": "error", 134 | "no-implicit-globals": "error", 135 | "no-implied-eval": "error", 136 | "no-inline-comments": "error", 137 | "no-invalid-this": "error", 138 | "no-iterator": "error", 139 | "no-label-var": "error", 140 | "no-labels": "error", 141 | "no-lone-blocks": "error", 142 | "no-lonely-if": "error", 143 | "no-loop-func": "error", 144 | "no-mixed-operators": "error", 145 | "no-mixed-requires": "error", 146 | "no-multi-assign": "error", 147 | "no-multi-spaces": "off", 148 | "no-multi-str": "error", 149 | "no-multiple-empty-lines": "error", 150 | "no-native-reassign": "error", 151 | "no-negated-condition": "error", 152 | "no-negated-in-lhs": "error", 153 | "no-nested-ternary": "error", 154 | "no-new": "error", 155 | "no-new-func": "error", 156 | "no-new-object": "error", 157 | "no-new-require": "error", 158 | "no-new-wrappers": "error", 159 | "no-octal-escape": "error", 160 | "no-param-reassign": "error", 161 | "no-path-concat": "error", 162 | "no-plusplus": "error", 163 | "no-process-env": "error", 164 | "no-process-exit": "error", 165 | "no-proto": "error", 166 | "no-prototype-builtins": "error", 167 | "no-restricted-globals": "error", 168 | "no-restricted-imports": "error", 169 | "no-restricted-modules": "error", 170 | "no-restricted-properties": "error", 171 | "no-restricted-syntax": "error", 172 | "no-return-assign": "error", 173 | "no-return-await": "error", 174 | "no-script-url": "error", 175 | "no-self-compare": "error", 176 | "no-sequences": "error", 177 | "no-shadow": "error", 178 | "no-shadow-restricted-names": "error", 179 | "no-spaced-func": "error", 180 | "no-sync": "error", 181 | "no-tabs": "error", 182 | "no-template-curly-in-string": "error", 183 | "no-ternary": "error", 184 | "no-throw-literal": "error", 185 | "no-trailing-spaces": "error", 186 | "no-undef-init": "error", 187 | "no-undefined": "error", 188 | "no-underscore-dangle": "error", 189 | "no-unmodified-loop-condition": "error", 190 | "no-unneeded-ternary": "error", 191 | "no-unused-expressions": "error", 192 | "no-use-before-define": "off", 193 | "no-useless-call": "error", 194 | "no-useless-computed-key": "error", 195 | "no-useless-concat": "error", 196 | "no-useless-constructor": "error", 197 | "no-useless-rename": "error", 198 | "no-useless-return": "error", 199 | "no-var": "off", 200 | "no-void": "error", 201 | "no-warning-comments": "error", 202 | "no-whitespace-before-property": "error", 203 | "no-with": "error", 204 | "nonblock-statement-body-position": "error", 205 | "object-curly-newline": "error", 206 | "object-curly-spacing": [ 207 | "error", 208 | "always" 209 | ], 210 | "object-property-newline": [ 211 | "error", 212 | { 213 | "allowMultiplePropertiesPerLine": true 214 | } 215 | ], 216 | "object-shorthand": "error", 217 | "one-var": "off", 218 | "one-var-declaration-per-line": "error", 219 | "operator-assignment": "error", 220 | "operator-linebreak": "error", 221 | "padded-blocks": "off", 222 | "padding-line-between-statements": "error", 223 | "prefer-arrow-callback": "error", 224 | "prefer-const": "error", 225 | "prefer-destructuring": "error", 226 | "prefer-numeric-literals": "error", 227 | "prefer-promise-reject-errors": "error", 228 | "prefer-reflect": "error", 229 | "prefer-rest-params": "error", 230 | "prefer-spread": "error", 231 | "prefer-template": "error", 232 | "quote-props": "off", 233 | "quotes": "off", 234 | "radix": "error", 235 | "require-await": "error", 236 | "require-jsdoc": "off", 237 | "rest-spread-spacing": "error", 238 | "semi": "off", 239 | "semi-spacing": "error", 240 | "semi-style": [ 241 | "error", 242 | "last" 243 | ], 244 | "sort-imports": "error", 245 | "sort-keys": "off", 246 | "sort-vars": "off", 247 | "space-before-blocks": "error", 248 | "space-before-function-paren": "off", 249 | "space-in-parens": [ 250 | "error", 251 | "never" 252 | ], 253 | "space-infix-ops": "error", 254 | "space-unary-ops": "error", 255 | "spaced-comment": [ 256 | "error", 257 | "always" 258 | ], 259 | "strict": [ 260 | "error", 261 | "never" 262 | ], 263 | "switch-colon-spacing": "error", 264 | "symbol-description": "error", 265 | "template-curly-spacing": "error", 266 | "template-tag-spacing": "error", 267 | "unicode-bom": [ 268 | "error", 269 | "never" 270 | ], 271 | "valid-jsdoc": "error", 272 | "vars-on-top": "error", 273 | "wrap-iife": "error", 274 | "wrap-regex": "error", 275 | "yield-star-spacing": "error", 276 | "yoda": "error" 277 | } 278 | }; 279 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | ajv@^5.1.0: 6 | version "5.5.2" 7 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" 8 | dependencies: 9 | co "^4.6.0" 10 | fast-deep-equal "^1.0.0" 11 | fast-json-stable-stringify "^2.0.0" 12 | json-schema-traverse "^0.3.0" 13 | 14 | asn1@~0.2.3: 15 | version "0.2.3" 16 | resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 17 | 18 | assert-plus@1.0.0, assert-plus@^1.0.0: 19 | version "1.0.0" 20 | resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" 21 | 22 | asynckit@^0.4.0: 23 | version "0.4.0" 24 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 25 | 26 | aws-sign2@~0.7.0: 27 | version "0.7.0" 28 | resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" 29 | 30 | aws4@^1.6.0: 31 | version "1.6.0" 32 | resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.6.0.tgz#83ef5ca860b2b32e4a0deedee8c771b9db57471e" 33 | 34 | balanced-match@^1.0.0: 35 | version "1.0.0" 36 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 37 | 38 | bcrypt-pbkdf@^1.0.0: 39 | version "1.0.1" 40 | resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz#63bc5dcb61331b92bc05fd528953c33462a06f8d" 41 | dependencies: 42 | tweetnacl "^0.14.3" 43 | 44 | bluebird@^3.1.5, bluebird@^3.5.0, bluebird@^3.5.1: 45 | version "3.5.1" 46 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.1.tgz#d9551f9de98f1fcda1e683d17ee91a0602ee2eb9" 47 | 48 | boom@4.x.x: 49 | version "4.3.1" 50 | resolved "https://registry.yarnpkg.com/boom/-/boom-4.3.1.tgz#4f8a3005cb4a7e3889f749030fd25b96e01d2e31" 51 | dependencies: 52 | hoek "4.x.x" 53 | 54 | boom@5.x.x: 55 | version "5.2.0" 56 | resolved "https://registry.yarnpkg.com/boom/-/boom-5.2.0.tgz#5dd9da6ee3a5f302077436290cb717d3f4a54e02" 57 | dependencies: 58 | hoek "4.x.x" 59 | 60 | brace-expansion@^1.1.7: 61 | version "1.1.8" 62 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 63 | dependencies: 64 | balanced-match "^1.0.0" 65 | concat-map "0.0.1" 66 | 67 | caseless@~0.12.0: 68 | version "0.12.0" 69 | resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 70 | 71 | clone@^2.1.1: 72 | version "2.1.1" 73 | resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.1.tgz#d217d1e961118e3ac9a4b8bba3285553bf647cdb" 74 | 75 | cloudscraper@^1.4.1: 76 | version "1.4.1" 77 | resolved "https://registry.yarnpkg.com/cloudscraper/-/cloudscraper-1.4.1.tgz#f2b4431f317286d819b1357266ca3463b112ebca" 78 | dependencies: 79 | request "^2.49.0" 80 | 81 | co@^4.6.0: 82 | version "4.6.0" 83 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 84 | 85 | combined-stream@^1.0.5, combined-stream@~1.0.5: 86 | version "1.0.5" 87 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.5.tgz#938370a57b4a51dea2c77c15d5c5fdf895164009" 88 | dependencies: 89 | delayed-stream "~1.0.0" 90 | 91 | concat-map@0.0.1: 92 | version "0.0.1" 93 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 94 | 95 | core-util-is@1.0.2: 96 | version "1.0.2" 97 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 98 | 99 | cryptiles@3.x.x: 100 | version "3.1.2" 101 | resolved "https://registry.yarnpkg.com/cryptiles/-/cryptiles-3.1.2.tgz#a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe" 102 | dependencies: 103 | boom "5.x.x" 104 | 105 | dashdash@^1.12.0: 106 | version "1.14.1" 107 | resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 108 | dependencies: 109 | assert-plus "^1.0.0" 110 | 111 | debug@^2.2.0: 112 | version "2.6.9" 113 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 114 | dependencies: 115 | ms "2.0.0" 116 | 117 | delayed-stream@~1.0.0: 118 | version "1.0.0" 119 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 120 | 121 | ecc-jsbn@~0.1.1: 122 | version "0.1.1" 123 | resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz#0fc73a9ed5f0d53c38193398523ef7e543777505" 124 | dependencies: 125 | jsbn "~0.1.0" 126 | 127 | extend@~3.0.1: 128 | version "3.0.1" 129 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 130 | 131 | extsprintf@1.3.0: 132 | version "1.3.0" 133 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" 134 | 135 | extsprintf@^1.2.0: 136 | version "1.4.0" 137 | resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" 138 | 139 | fast-deep-equal@^1.0.0: 140 | version "1.0.0" 141 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff" 142 | 143 | fast-json-stable-stringify@^2.0.0: 144 | version "2.0.0" 145 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" 146 | 147 | forever-agent@~0.6.1: 148 | version "0.6.1" 149 | resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" 150 | 151 | form-data@~2.3.1: 152 | version "2.3.1" 153 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.1.tgz#6fb94fbd71885306d73d15cc497fe4cc4ecd44bf" 154 | dependencies: 155 | asynckit "^0.4.0" 156 | combined-stream "^1.0.5" 157 | mime-types "^2.1.12" 158 | 159 | getpass@^0.1.1: 160 | version "0.1.7" 161 | resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" 162 | dependencies: 163 | assert-plus "^1.0.0" 164 | 165 | glob@^5.0.10: 166 | version "5.0.15" 167 | resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1" 168 | dependencies: 169 | inflight "^1.0.4" 170 | inherits "2" 171 | minimatch "2 || 3" 172 | once "^1.3.0" 173 | path-is-absolute "^1.0.0" 174 | 175 | har-schema@^2.0.0: 176 | version "2.0.0" 177 | resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" 178 | 179 | har-validator@~5.0.3: 180 | version "5.0.3" 181 | resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.0.3.tgz#ba402c266194f15956ef15e0fcf242993f6a7dfd" 182 | dependencies: 183 | ajv "^5.1.0" 184 | har-schema "^2.0.0" 185 | 186 | hawk@~6.0.2: 187 | version "6.0.2" 188 | resolved "https://registry.yarnpkg.com/hawk/-/hawk-6.0.2.tgz#af4d914eb065f9b5ce4d9d11c1cb2126eecc3038" 189 | dependencies: 190 | boom "4.x.x" 191 | cryptiles "3.x.x" 192 | hoek "4.x.x" 193 | sntp "2.x.x" 194 | 195 | hoek@4.x.x: 196 | version "4.2.0" 197 | resolved "https://registry.yarnpkg.com/hoek/-/hoek-4.2.0.tgz#72d9d0754f7fe25ca2d01ad8f8f9a9449a89526d" 198 | 199 | http-signature@~1.2.0: 200 | version "1.2.0" 201 | resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" 202 | dependencies: 203 | assert-plus "^1.0.0" 204 | jsprim "^1.2.2" 205 | sshpk "^1.7.0" 206 | 207 | inflight@^1.0.4: 208 | version "1.0.6" 209 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 210 | dependencies: 211 | once "^1.3.0" 212 | wrappy "1" 213 | 214 | inherits@2: 215 | version "2.0.3" 216 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 217 | 218 | is-typedarray@^1.0.0, is-typedarray@~1.0.0: 219 | version "1.0.0" 220 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 221 | 222 | isstream@~0.1.2: 223 | version "0.1.2" 224 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 225 | 226 | jsbn@~0.1.0: 227 | version "0.1.1" 228 | resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 229 | 230 | json-schema-traverse@^0.3.0: 231 | version "0.3.1" 232 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" 233 | 234 | json-schema@0.2.3: 235 | version "0.2.3" 236 | resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" 237 | 238 | json-stringify-safe@~5.0.1: 239 | version "5.0.1" 240 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 241 | 242 | jsonic@^0.3.0: 243 | version "0.3.0" 244 | resolved "https://registry.yarnpkg.com/jsonic/-/jsonic-0.3.0.tgz#b545da95f54392e58b3dda05f5f2e377a6c9d1bf" 245 | 246 | jsprim@^1.2.2: 247 | version "1.4.1" 248 | resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" 249 | dependencies: 250 | assert-plus "1.0.0" 251 | extsprintf "1.3.0" 252 | json-schema "0.2.3" 253 | verror "1.10.0" 254 | 255 | lazy.js@^0.5.0: 256 | version "0.5.0" 257 | resolved "https://registry.yarnpkg.com/lazy.js/-/lazy.js-0.5.0.tgz#d8a02be135806fcbbcd7999513d8b6faf9857550" 258 | 259 | lodash@^4.13.1: 260 | version "4.17.4" 261 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 262 | 263 | mime-db@~1.30.0: 264 | version "1.30.0" 265 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.30.0.tgz#74c643da2dd9d6a45399963465b26d5ca7d71f01" 266 | 267 | mime-types@^2.1.12, mime-types@~2.1.17: 268 | version "2.1.17" 269 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.17.tgz#09d7a393f03e995a79f8af857b70a9e0ab16557a" 270 | dependencies: 271 | mime-db "~1.30.0" 272 | 273 | mime@^1.3.4: 274 | version "1.6.0" 275 | resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 276 | 277 | "minimatch@2 || 3": 278 | version "3.0.4" 279 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 280 | dependencies: 281 | brace-expansion "^1.1.7" 282 | 283 | ms@2.0.0: 284 | version "2.0.0" 285 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 286 | 287 | nan@^2.3.3: 288 | version "2.8.0" 289 | resolved "https://registry.yarnpkg.com/nan/-/nan-2.8.0.tgz#ed715f3fe9de02b57a5e6252d90a96675e1f085a" 290 | 291 | node-bittrex-api@^0.8.1: 292 | version "0.8.1" 293 | resolved "https://registry.yarnpkg.com/node-bittrex-api/-/node-bittrex-api-0.8.1.tgz#49c69de881e985ef63adaa95ec9148326d45a998" 294 | dependencies: 295 | cloudscraper "^1.4.1" 296 | jsonic "^0.3.0" 297 | object-assign "^4.1.1" 298 | request ">= 2.35.0" 299 | signalr-client "0.0.17" 300 | 301 | node-tesseract@^0.2.7: 302 | version "0.2.7" 303 | resolved "https://registry.yarnpkg.com/node-tesseract/-/node-tesseract-0.2.7.tgz#c8f02fb8351a427072735778c0519823f2601b84" 304 | dependencies: 305 | glob "^5.0.10" 306 | node-uuid "^1.4.1" 307 | 308 | node-uuid@^1.4.1: 309 | version "1.4.8" 310 | resolved "https://registry.yarnpkg.com/node-uuid/-/node-uuid-1.4.8.tgz#b040eb0923968afabf8d32fb1f17f1167fdab907" 311 | 312 | oauth-sign@~0.8.2: 313 | version "0.8.2" 314 | resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.8.2.tgz#46a6ab7f0aead8deae9ec0565780b7d4efeb9d43" 315 | 316 | object-assign@^4.1.1: 317 | version "4.1.1" 318 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 319 | 320 | once@^1.3.0: 321 | version "1.4.0" 322 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 323 | dependencies: 324 | wrappy "1" 325 | 326 | path-is-absolute@^1.0.0: 327 | version "1.0.1" 328 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 329 | 330 | performance-now@^2.1.0: 331 | version "2.1.0" 332 | resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 333 | 334 | punycode@^1.4.1: 335 | version "1.4.1" 336 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" 337 | 338 | qs@~6.5.1: 339 | version "6.5.1" 340 | resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8" 341 | 342 | request-promise-core@1.1.1: 343 | version "1.1.1" 344 | resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.1.tgz#3eee00b2c5aa83239cfb04c5700da36f81cd08b6" 345 | dependencies: 346 | lodash "^4.13.1" 347 | 348 | request-promise@^4.2.2: 349 | version "4.2.2" 350 | resolved "https://registry.yarnpkg.com/request-promise/-/request-promise-4.2.2.tgz#d1ea46d654a6ee4f8ee6a4fea1018c22911904b4" 351 | dependencies: 352 | bluebird "^3.5.0" 353 | request-promise-core "1.1.1" 354 | stealthy-require "^1.1.0" 355 | tough-cookie ">=2.3.3" 356 | 357 | "request@>= 2.35.0", request@^2.49.0, request@^2.68.0: 358 | version "2.83.0" 359 | resolved "https://registry.yarnpkg.com/request/-/request-2.83.0.tgz#ca0b65da02ed62935887808e6f510381034e3356" 360 | dependencies: 361 | aws-sign2 "~0.7.0" 362 | aws4 "^1.6.0" 363 | caseless "~0.12.0" 364 | combined-stream "~1.0.5" 365 | extend "~3.0.1" 366 | forever-agent "~0.6.1" 367 | form-data "~2.3.1" 368 | har-validator "~5.0.3" 369 | hawk "~6.0.2" 370 | http-signature "~1.2.0" 371 | is-typedarray "~1.0.0" 372 | isstream "~0.1.2" 373 | json-stringify-safe "~5.0.1" 374 | mime-types "~2.1.17" 375 | oauth-sign "~0.8.2" 376 | performance-now "^2.1.0" 377 | qs "~6.5.1" 378 | safe-buffer "^5.1.1" 379 | stringstream "~0.0.5" 380 | tough-cookie "~2.3.3" 381 | tunnel-agent "^0.6.0" 382 | uuid "^3.1.0" 383 | 384 | safe-buffer@^5.0.1, safe-buffer@^5.1.1: 385 | version "5.1.1" 386 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 387 | 388 | signalr-client@0.0.17: 389 | version "0.0.17" 390 | resolved "https://registry.yarnpkg.com/signalr-client/-/signalr-client-0.0.17.tgz#a52177f37ce248ecc87226dd103c41ff70c829b1" 391 | dependencies: 392 | websocket "^1.0.17" 393 | 394 | sntp@2.x.x: 395 | version "2.1.0" 396 | resolved "https://registry.yarnpkg.com/sntp/-/sntp-2.1.0.tgz#2c6cec14fedc2222739caf9b5c3d85d1cc5a2cc8" 397 | dependencies: 398 | hoek "4.x.x" 399 | 400 | sshpk@^1.7.0: 401 | version "1.13.1" 402 | resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.13.1.tgz#512df6da6287144316dc4c18fe1cf1d940739be3" 403 | dependencies: 404 | asn1 "~0.2.3" 405 | assert-plus "^1.0.0" 406 | dashdash "^1.12.0" 407 | getpass "^0.1.1" 408 | optionalDependencies: 409 | bcrypt-pbkdf "^1.0.0" 410 | ecc-jsbn "~0.1.1" 411 | jsbn "~0.1.0" 412 | tweetnacl "~0.14.0" 413 | 414 | stealthy-require@^1.1.0: 415 | version "1.1.1" 416 | resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 417 | 418 | stringstream@~0.0.5: 419 | version "0.0.5" 420 | resolved "https://registry.yarnpkg.com/stringstream/-/stringstream-0.0.5.tgz#4e484cd4de5a0bbbee18e46307710a8a81621878" 421 | 422 | tough-cookie@>=2.3.3, tough-cookie@~2.3.3: 423 | version "2.3.3" 424 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561" 425 | dependencies: 426 | punycode "^1.4.1" 427 | 428 | tunnel-agent@^0.6.0: 429 | version "0.6.0" 430 | resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" 431 | dependencies: 432 | safe-buffer "^5.0.1" 433 | 434 | tweetnacl@^0.14.3, tweetnacl@~0.14.0: 435 | version "0.14.5" 436 | resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 437 | 438 | twit@^2.2.9: 439 | version "2.2.9" 440 | resolved "https://registry.yarnpkg.com/twit/-/twit-2.2.9.tgz#6710574f81641daa03796a1b4b8e7b78d3d75676" 441 | dependencies: 442 | bluebird "^3.1.5" 443 | mime "^1.3.4" 444 | request "^2.68.0" 445 | 446 | typedarray-to-buffer@^3.1.2: 447 | version "3.1.2" 448 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.2.tgz#1017b32d984ff556eba100f501589aba1ace2e04" 449 | dependencies: 450 | is-typedarray "^1.0.0" 451 | 452 | uuid@^3.1.0: 453 | version "3.1.0" 454 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.1.0.tgz#3dd3d3e790abc24d7b0d3a034ffababe28ebbc04" 455 | 456 | verror@1.10.0: 457 | version "1.10.0" 458 | resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" 459 | dependencies: 460 | assert-plus "^1.0.0" 461 | core-util-is "1.0.2" 462 | extsprintf "^1.2.0" 463 | 464 | websocket@^1.0.17: 465 | version "1.0.25" 466 | resolved "https://registry.yarnpkg.com/websocket/-/websocket-1.0.25.tgz#998ec790f0a3eacb8b08b50a4350026692a11958" 467 | dependencies: 468 | debug "^2.2.0" 469 | nan "^2.3.3" 470 | typedarray-to-buffer "^3.1.2" 471 | yaeti "^0.0.6" 472 | 473 | wrappy@1: 474 | version "1.0.2" 475 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 476 | 477 | yaeti@^0.0.6: 478 | version "0.0.6" 479 | resolved "https://registry.yarnpkg.com/yaeti/-/yaeti-0.0.6.tgz#f26f484d72684cf42bedfb76970aa1608fbf9577" 480 | -------------------------------------------------------------------------------- /lib/currencies.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "Currency": "BTC", 4 | "CurrencyLong": "Bitcoin", 5 | "MinConfirmation": 2, 6 | "TxFee": 0.001, 7 | "IsActive": true, 8 | "CoinType": "BITCOIN", 9 | "BaseAddress": "1N52wHoVR79PMDishab2XmRHsbekCdGquK", 10 | "Notice": null 11 | }, 12 | { 13 | "Currency": "LTC", 14 | "CurrencyLong": "Litecoin", 15 | "MinConfirmation": 6, 16 | "TxFee": 0.01, 17 | "IsActive": true, 18 | "CoinType": "BITCOIN", 19 | "BaseAddress": "LhyLNfBkoKshT7R8Pce6vkB9T2cP2o84hx", 20 | "Notice": null 21 | }, 22 | { 23 | "Currency": "DOGE", 24 | "CurrencyLong": "Dogecoin", 25 | "MinConfirmation": 6, 26 | "TxFee": 2, 27 | "IsActive": true, 28 | "CoinType": "BITCOIN", 29 | "BaseAddress": "D9GqmkGCpgtnXP7xMD78v9xfqeDkqBZBMT", 30 | "Notice": null 31 | }, 32 | { 33 | "Currency": "VTC", 34 | "CurrencyLong": "Vertcoin", 35 | "MinConfirmation": 6, 36 | "TxFee": 0.02, 37 | "IsActive": true, 38 | "CoinType": "BITCOIN", 39 | "BaseAddress": "VfukW89WKT9h3YjHZdSAAuGNVGELY31wyj", 40 | "Notice": null 41 | }, 42 | { 43 | "Currency": "PPC", 44 | "CurrencyLong": "Peercoin", 45 | "MinConfirmation": 6, 46 | "TxFee": 0.02, 47 | "IsActive": true, 48 | "CoinType": "BITCOIN", 49 | "BaseAddress": null, 50 | "Notice": null 51 | }, 52 | { 53 | "Currency": "FTC", 54 | "CurrencyLong": "Feathercoin", 55 | "MinConfirmation": 20, 56 | "TxFee": 0.2, 57 | "IsActive": true, 58 | "CoinType": "BITCOIN", 59 | "BaseAddress": null, 60 | "Notice": null 61 | }, 62 | { 63 | "Currency": "RDD", 64 | "CurrencyLong": "ReddCoin", 65 | "MinConfirmation": 20, 66 | "TxFee": 2, 67 | "IsActive": true, 68 | "CoinType": "BITCOIN", 69 | "BaseAddress": null, 70 | "Notice": null 71 | }, 72 | { 73 | "Currency": "NXT", 74 | "CurrencyLong": "NXT", 75 | "MinConfirmation": 8, 76 | "TxFee": 2, 77 | "IsActive": true, 78 | "CoinType": "NXT", 79 | "BaseAddress": "NXT-97H4-KRWL-A53G-7GVRG", 80 | "Notice": null 81 | }, 82 | { 83 | "Currency": "DASH", 84 | "CurrencyLong": "Dash", 85 | "MinConfirmation": 6, 86 | "TxFee": 0.002, 87 | "IsActive": true, 88 | "CoinType": "BITCOIN", 89 | "BaseAddress": "XxsTca1ATYAuZdCo6E8ePQQovGG5bvayeN", 90 | "Notice": null 91 | }, 92 | { 93 | "Currency": "POT", 94 | "CurrencyLong": "PotCoin", 95 | "MinConfirmation": 20, 96 | "TxFee": 0.002, 97 | "IsActive": true, 98 | "CoinType": "BITCOIN", 99 | "BaseAddress": null, 100 | "Notice": null 101 | }, 102 | { 103 | "Currency": "BLK", 104 | "CurrencyLong": "BlackCoin", 105 | "MinConfirmation": 6, 106 | "TxFee": 0.02, 107 | "IsActive": true, 108 | "CoinType": "BITCOIN", 109 | "BaseAddress": null, 110 | "Notice": null 111 | }, 112 | { 113 | "Currency": "EMC2", 114 | "CurrencyLong": "Einsteinium", 115 | "MinConfirmation": 128, 116 | "TxFee": 0.2, 117 | "IsActive": true, 118 | "CoinType": "BITCOIN", 119 | "BaseAddress": null, 120 | "Notice": null 121 | }, 122 | { 123 | "Currency": "XMY", 124 | "CurrencyLong": "Myriad", 125 | "MinConfirmation": 20, 126 | "TxFee": 0.2, 127 | "IsActive": true, 128 | "CoinType": "BITCOIN", 129 | "BaseAddress": null, 130 | "Notice": null 131 | }, 132 | { 133 | "Currency": "AUR", 134 | "CurrencyLong": "AuroraCoin", 135 | "MinConfirmation": 5, 136 | "TxFee": 0.002, 137 | "IsActive": true, 138 | "CoinType": "BITCOIN", 139 | "BaseAddress": null, 140 | "Notice": null 141 | }, 142 | { 143 | "Currency": "UTC", 144 | "CurrencyLong": "UltraCoin", 145 | "MinConfirmation": 5, 146 | "TxFee": 0.02, 147 | "IsActive": true, 148 | "CoinType": "BITCOIN", 149 | "BaseAddress": null, 150 | "Notice": null 151 | }, 152 | { 153 | "Currency": "MZC", 154 | "CurrencyLong": "MazaCoin", 155 | "MinConfirmation": 6, 156 | "TxFee": 0.2, 157 | "IsActive": true, 158 | "CoinType": "BITCOIN", 159 | "BaseAddress": null, 160 | "Notice": null 161 | }, 162 | { 163 | "Currency": "EFL", 164 | "CurrencyLong": "ElectronicGulden", 165 | "MinConfirmation": 256, 166 | "TxFee": 0.2, 167 | "IsActive": true, 168 | "CoinType": "BITCOIN", 169 | "BaseAddress": null, 170 | "Notice": null 171 | }, 172 | { 173 | "Currency": "GLD", 174 | "CurrencyLong": "GoldCoin", 175 | "MinConfirmation": 20, 176 | "TxFee": 0.0002, 177 | "IsActive": true, 178 | "CoinType": "BITCOIN", 179 | "BaseAddress": null, 180 | "Notice": null 181 | }, 182 | { 183 | "Currency": "FAIR", 184 | "CurrencyLong": "FairCoin", 185 | "MinConfirmation": 10, 186 | "TxFee": 0.02, 187 | "IsActive": true, 188 | "CoinType": "BITCOIN", 189 | "BaseAddress": null, 190 | "Notice": null 191 | }, 192 | { 193 | "Currency": "SLR", 194 | "CurrencyLong": "SolarCoin", 195 | "MinConfirmation": 20, 196 | "TxFee": 0.2, 197 | "IsActive": true, 198 | "CoinType": "BITCOIN", 199 | "BaseAddress": null, 200 | "Notice": null 201 | }, 202 | { 203 | "Currency": "PTC", 204 | "CurrencyLong": "PesetaCoin ", 205 | "MinConfirmation": 40, 206 | "TxFee": 0.002, 207 | "IsActive": true, 208 | "CoinType": "BITCOIN", 209 | "BaseAddress": null, 210 | "Notice": null 211 | }, 212 | { 213 | "Currency": "GRS", 214 | "CurrencyLong": "Groestlcoin", 215 | "MinConfirmation": 20, 216 | "TxFee": 0.2, 217 | "IsActive": true, 218 | "CoinType": "BITCOIN", 219 | "BaseAddress": null, 220 | "Notice": null 221 | }, 222 | { 223 | "Currency": "NLG", 224 | "CurrencyLong": "Gulden", 225 | "MinConfirmation": 10, 226 | "TxFee": 0.2, 227 | "IsActive": true, 228 | "CoinType": "BITCOINEX", 229 | "BaseAddress": null, 230 | "Notice": null 231 | }, 232 | { 233 | "Currency": "RBY", 234 | "CurrencyLong": "RubyCoin", 235 | "MinConfirmation": 10, 236 | "TxFee": 0.02, 237 | "IsActive": true, 238 | "CoinType": "BITCOIN", 239 | "BaseAddress": null, 240 | "Notice": null 241 | }, 242 | { 243 | "Currency": "XWC", 244 | "CurrencyLong": "WhiteCoin", 245 | "MinConfirmation": 20, 246 | "TxFee": 0.2, 247 | "IsActive": true, 248 | "CoinType": "BITCOIN", 249 | "BaseAddress": null, 250 | "Notice": null 251 | }, 252 | { 253 | "Currency": "MONA", 254 | "CurrencyLong": "MonaCoin", 255 | "MinConfirmation": 5, 256 | "TxFee": 0.2, 257 | "IsActive": true, 258 | "CoinType": "BITCOIN", 259 | "BaseAddress": "MVPVmbbm7g3f9PF2xRV6RSoSnw8xfr8kNj", 260 | "Notice": null 261 | }, 262 | { 263 | "Currency": "BITS", 264 | "CurrencyLong": "BitStarCoin", 265 | "MinConfirmation": 20, 266 | "TxFee": 0.002, 267 | "IsActive": true, 268 | "CoinType": "BITCOIN", 269 | "BaseAddress": null, 270 | "Notice": null 271 | }, 272 | { 273 | "Currency": "OC", 274 | "CurrencyLong": "OrangeCoin", 275 | "MinConfirmation": 20, 276 | "TxFee": 0.2, 277 | "IsActive": false, 278 | "CoinType": "BITCOIN", 279 | "BaseAddress": null, 280 | "Notice": "Wallet Offline - Wallet no longer operational - withdrawals/deposits cannot be processed" 281 | }, 282 | { 283 | "Currency": "THC", 284 | "CurrencyLong": "HempCoin", 285 | "MinConfirmation": 14, 286 | "TxFee": 0.2, 287 | "IsActive": true, 288 | "CoinType": "BITCOIN", 289 | "BaseAddress": "HCt5LgCkUX39ekrQdEHaN8Rp5AHZP3MKTj", 290 | "Notice": null 291 | }, 292 | { 293 | "Currency": "ENRG", 294 | "CurrencyLong": "EnergyCoin", 295 | "MinConfirmation": 20, 296 | "TxFee": 0.2, 297 | "IsActive": true, 298 | "CoinType": "BITCOIN", 299 | "BaseAddress": null, 300 | "Notice": null 301 | }, 302 | { 303 | "Currency": "SFR", 304 | "CurrencyLong": "SaffronCoin", 305 | "MinConfirmation": 20, 306 | "TxFee": 0.2, 307 | "IsActive": true, 308 | "CoinType": "BITCOIN", 309 | "BaseAddress": null, 310 | "Notice": null 311 | }, 312 | { 313 | "Currency": "ERC", 314 | "CurrencyLong": "EuropeCoin", 315 | "MinConfirmation": 20, 316 | "TxFee": 0.2, 317 | "IsActive": true, 318 | "CoinType": "BITCOIN", 319 | "BaseAddress": null, 320 | "Notice": null 321 | }, 322 | { 323 | "Currency": "NAUT", 324 | "CurrencyLong": "NautilusCoin", 325 | "MinConfirmation": 10, 326 | "TxFee": 2, 327 | "IsActive": true, 328 | "CoinType": "NXT_MS", 329 | "BaseAddress": "NXT-5BDK-RF4B-TAXN-92836", 330 | "Notice": null 331 | }, 332 | { 333 | "Currency": "VRC", 334 | "CurrencyLong": "VeriCoin", 335 | "MinConfirmation": 5, 336 | "TxFee": 0.0002, 337 | "IsActive": true, 338 | "CoinType": "BITCOIN", 339 | "BaseAddress": null, 340 | "Notice": null 341 | }, 342 | { 343 | "Currency": "CURE", 344 | "CurrencyLong": "CureCoin", 345 | "MinConfirmation": 6, 346 | "TxFee": 0.0002, 347 | "IsActive": true, 348 | "CoinType": "BITCOIN", 349 | "BaseAddress": null, 350 | "Notice": null 351 | }, 352 | { 353 | "Currency": "BLC", 354 | "CurrencyLong": "BlakeCoin", 355 | "MinConfirmation": 20, 356 | "TxFee": 0.2, 357 | "IsActive": true, 358 | "CoinType": "BITCOIN", 359 | "BaseAddress": null, 360 | "Notice": null 361 | }, 362 | { 363 | "Currency": "XC", 364 | "CurrencyLong": "XCurrency", 365 | "MinConfirmation": 20, 366 | "TxFee": 2e-05, 367 | "IsActive": true, 368 | "CoinType": "BITCOIN", 369 | "BaseAddress": null, 370 | "Notice": null 371 | }, 372 | { 373 | "Currency": "XDQ", 374 | "CurrencyLong": "Dirac", 375 | "MinConfirmation": 6, 376 | "TxFee": 0.02, 377 | "IsActive": true, 378 | "CoinType": "BITCOIN", 379 | "BaseAddress": null, 380 | "Notice": null 381 | }, 382 | { 383 | "Currency": "XBB", 384 | "CurrencyLong": "Boolberry", 385 | "MinConfirmation": 15, 386 | "TxFee": 0.0002, 387 | "IsActive": true, 388 | "CoinType": "CRYPTO_NOTE_PAYMENTID", 389 | "BaseAddress": "1AxQp4KrZbETL4HHgh5PksNsdcUregZoSEsWvYWgUaMAMayq1ddWdFrQEg5DfUod4Ud6Sz2z6vQMAcMWRdLDTSmy2Conhvk", 390 | "Notice": null 391 | }, 392 | { 393 | "Currency": "HYPER", 394 | "CurrencyLong": "Hyper", 395 | "MinConfirmation": 20, 396 | "TxFee": 0.02, 397 | "IsActive": true, 398 | "CoinType": "BITCOIN", 399 | "BaseAddress": null, 400 | "Notice": null 401 | }, 402 | { 403 | "Currency": "CCN", 404 | "CurrencyLong": "CannaCoin", 405 | "MinConfirmation": 10, 406 | "TxFee": 0.02, 407 | "IsActive": true, 408 | "CoinType": "BITCOIN", 409 | "BaseAddress": null, 410 | "Notice": null 411 | }, 412 | { 413 | "Currency": "XMR", 414 | "CurrencyLong": "Monero", 415 | "MinConfirmation": 8, 416 | "TxFee": 0.04, 417 | "IsActive": true, 418 | "CoinType": "CRYPTO_NOTE_PAYMENTID", 419 | "BaseAddress": "463tWEBn5XZJSxLU6uLQnQ2iY9xuNcDbjLSjkn3XAXHCbLrTTErJrBWYgHJQyrCwkNgYvyV3z8zctJLPCZy24jvb3NiTcTJ", 420 | "Notice": null 421 | }, 422 | { 423 | "Currency": "CLOAK", 424 | "CurrencyLong": "CloakCoin", 425 | "MinConfirmation": 5, 426 | "TxFee": 0.02, 427 | "IsActive": true, 428 | "CoinType": "BITCOIN", 429 | "BaseAddress": null, 430 | "Notice": null 431 | }, 432 | { 433 | "Currency": "BSD", 434 | "CurrencyLong": "BitSend", 435 | "MinConfirmation": 100, 436 | "TxFee": 0.002, 437 | "IsActive": true, 438 | "CoinType": "BITCOIN", 439 | "BaseAddress": null, 440 | "Notice": null 441 | }, 442 | { 443 | "Currency": "CRYPT", 444 | "CurrencyLong": "CryptCoin", 445 | "MinConfirmation": 15, 446 | "TxFee": 0.02, 447 | "IsActive": false, 448 | "CoinType": "BITCOIN", 449 | "BaseAddress": null, 450 | "Notice": "Wallet Offline - Wallet no longer operational - withdrawals/deposits cannot be processed" 451 | }, 452 | { 453 | "Currency": "START", 454 | "CurrencyLong": "StartCoin", 455 | "MinConfirmation": 120, 456 | "TxFee": 0.02, 457 | "IsActive": true, 458 | "CoinType": "BITCOIN", 459 | "BaseAddress": null, 460 | "Notice": null 461 | }, 462 | { 463 | "Currency": "KORE", 464 | "CurrencyLong": "Kore", 465 | "MinConfirmation": 6, 466 | "TxFee": 0.02, 467 | "IsActive": true, 468 | "CoinType": "BITCOIN", 469 | "BaseAddress": null, 470 | "Notice": null 471 | }, 472 | { 473 | "Currency": "XDN", 474 | "CurrencyLong": "DigitalNote", 475 | "MinConfirmation": 15, 476 | "TxFee": 0.01, 477 | "IsActive": true, 478 | "CoinType": "CRYPTO_NOTE_PAYMENTID", 479 | "BaseAddress": "dddpmAwrXsaHVTBMMpsHfERfBsJ348x77QR6wpQFJ4zqDoXdF4vxJEK6ar8rmvrL6AZRWMh8AE1pDbWvY9EdpXN638mpYCJ62", 480 | "Notice": null 481 | }, 482 | { 483 | "Currency": "TRK", 484 | "CurrencyLong": "TruckCoin", 485 | "MinConfirmation": 20, 486 | "TxFee": 0.02, 487 | "IsActive": true, 488 | "CoinType": "BITCOIN", 489 | "BaseAddress": null, 490 | "Notice": null 491 | }, 492 | { 493 | "Currency": "TRUST", 494 | "CurrencyLong": "TrustPlus", 495 | "MinConfirmation": 20, 496 | "TxFee": 0.02, 497 | "IsActive": true, 498 | "CoinType": "BITCOIN", 499 | "BaseAddress": null, 500 | "Notice": null 501 | }, 502 | { 503 | "Currency": "NAV", 504 | "CurrencyLong": "NAVCoin", 505 | "MinConfirmation": 150, 506 | "TxFee": 0.2, 507 | "IsActive": true, 508 | "CoinType": "BITCOIN", 509 | "BaseAddress": null, 510 | "Notice": null 511 | }, 512 | { 513 | "Currency": "XST", 514 | "CurrencyLong": "StealthCoin", 515 | "MinConfirmation": 20, 516 | "TxFee": 0.02, 517 | "IsActive": true, 518 | "CoinType": "BITCOIN", 519 | "BaseAddress": null, 520 | "Notice": null 521 | }, 522 | { 523 | "Currency": "APEX", 524 | "CurrencyLong": "ApexCoin", 525 | "MinConfirmation": 20, 526 | "TxFee": 0.02, 527 | "IsActive": true, 528 | "CoinType": "BITCOIN", 529 | "BaseAddress": null, 530 | "Notice": null 531 | }, 532 | { 533 | "Currency": "BTCD", 534 | "CurrencyLong": "BitcoinDark", 535 | "MinConfirmation": 20, 536 | "TxFee": 0.02, 537 | "IsActive": true, 538 | "CoinType": "BITCOIN", 539 | "BaseAddress": null, 540 | "Notice": null 541 | }, 542 | { 543 | "Currency": "VIA", 544 | "CurrencyLong": "ViaCoin", 545 | "MinConfirmation": 20, 546 | "TxFee": 0.2, 547 | "IsActive": true, 548 | "CoinType": "BITCOIN", 549 | "BaseAddress": null, 550 | "Notice": null 551 | }, 552 | { 553 | "Currency": "TRI", 554 | "CurrencyLong": "Triangles", 555 | "MinConfirmation": 6, 556 | "TxFee": 0.0002, 557 | "IsActive": true, 558 | "CoinType": "BITCOIN", 559 | "BaseAddress": null, 560 | "Notice": null 561 | }, 562 | { 563 | "Currency": "UNO", 564 | "CurrencyLong": "Unobtanium", 565 | "MinConfirmation": 300, 566 | "TxFee": 0.0002, 567 | "IsActive": true, 568 | "CoinType": "BITCOIN", 569 | "BaseAddress": null, 570 | "Notice": null 571 | }, 572 | { 573 | "Currency": "PINK", 574 | "CurrencyLong": "PinkCoin", 575 | "MinConfirmation": 6, 576 | "TxFee": 0.2, 577 | "IsActive": false, 578 | "CoinType": "BITCOIN", 579 | "BaseAddress": null, 580 | "Notice": "Wallet Offline - Routine Maintenance" 581 | }, 582 | { 583 | "Currency": "IOC", 584 | "CurrencyLong": "I/OCoin", 585 | "MinConfirmation": 6, 586 | "TxFee": 0.2, 587 | "IsActive": false, 588 | "CoinType": "BITCOIN", 589 | "BaseAddress": null, 590 | "Notice": "Wallet Offline - Routine Maintenance" 591 | }, 592 | { 593 | "Currency": "MAX", 594 | "CurrencyLong": "MaxCoin", 595 | "MinConfirmation": 6, 596 | "TxFee": 0.2, 597 | "IsActive": true, 598 | "CoinType": "BITCOIN", 599 | "BaseAddress": null, 600 | "Notice": null 601 | }, 602 | { 603 | "Currency": "LXC", 604 | "CurrencyLong": "LibrexCoin", 605 | "MinConfirmation": 20, 606 | "TxFee": 0.02, 607 | "IsActive": true, 608 | "CoinType": "BITCOIN", 609 | "BaseAddress": null, 610 | "Notice": null 611 | }, 612 | { 613 | "Currency": "BOB", 614 | "CurrencyLong": "DobbsCoin", 615 | "MinConfirmation": 6, 616 | "TxFee": 0.02, 617 | "IsActive": true, 618 | "CoinType": "BITCOIN", 619 | "BaseAddress": null, 620 | "Notice": null 621 | }, 622 | { 623 | "Currency": "CANN", 624 | "CurrencyLong": "CannabisCoin", 625 | "MinConfirmation": 100, 626 | "TxFee": 0.2, 627 | "IsActive": true, 628 | "CoinType": "BITCOIN", 629 | "BaseAddress": null, 630 | "Notice": null 631 | }, 632 | { 633 | "Currency": "FC2", 634 | "CurrencyLong": "FuelCoin", 635 | "MinConfirmation": 6, 636 | "TxFee": 0.02, 637 | "IsActive": true, 638 | "CoinType": "BITCOIN", 639 | "BaseAddress": null, 640 | "Notice": null 641 | }, 642 | { 643 | "Currency": "SSD", 644 | "CurrencyLong": "SonicCoin", 645 | "MinConfirmation": 6, 646 | "TxFee": 0.02, 647 | "IsActive": true, 648 | "CoinType": "BITCOIN", 649 | "BaseAddress": null, 650 | "Notice": null 651 | }, 652 | { 653 | "Currency": "J", 654 | "CurrencyLong": "JoinCoin", 655 | "MinConfirmation": 6, 656 | "TxFee": 0.02, 657 | "IsActive": true, 658 | "CoinType": "BITCOIN", 659 | "BaseAddress": null, 660 | "Notice": null 661 | }, 662 | { 663 | "Currency": "SYS", 664 | "CurrencyLong": "SysCoin", 665 | "MinConfirmation": 20, 666 | "TxFee": 0.0002, 667 | "IsActive": true, 668 | "CoinType": "BITCOIN", 669 | "BaseAddress": null, 670 | "Notice": null 671 | }, 672 | { 673 | "Currency": "NEOS", 674 | "CurrencyLong": "NeosCoin", 675 | "MinConfirmation": 3, 676 | "TxFee": 0.02, 677 | "IsActive": true, 678 | "CoinType": "BITCOIN", 679 | "BaseAddress": null, 680 | "Notice": null 681 | }, 682 | { 683 | "Currency": "DGB", 684 | "CurrencyLong": "Digibyte", 685 | "MinConfirmation": 6, 686 | "TxFee": 0.2, 687 | "IsActive": true, 688 | "CoinType": "BITCOIN", 689 | "BaseAddress": "DBF4pdn7CGZMkxFUvdMbfxyJ8cRqfwsurj", 690 | "Notice": null 691 | }, 692 | { 693 | "Currency": "ROOT", 694 | "CurrencyLong": "RootCoin", 695 | "MinConfirmation": 6, 696 | "TxFee": 0.2, 697 | "IsActive": true, 698 | "CoinType": "BITCOIN", 699 | "BaseAddress": null, 700 | "Notice": null 701 | }, 702 | { 703 | "Currency": "BTS", 704 | "CurrencyLong": "BitShares", 705 | "MinConfirmation": 2, 706 | "TxFee": 5, 707 | "IsActive": true, 708 | "CoinType": "BITSHAREX", 709 | "BaseAddress": "bittrex-deposit", 710 | "Notice": null 711 | }, 712 | { 713 | "Currency": "BURST", 714 | "CurrencyLong": "BURST", 715 | "MinConfirmation": 10, 716 | "TxFee": 2, 717 | "IsActive": true, 718 | "CoinType": "NXT", 719 | "BaseAddress": "BURST-HK9D-P74Q-XDEJ-D6PGM", 720 | "Notice": null 721 | }, 722 | { 723 | "Currency": "TIT", 724 | "CurrencyLong": "TitCoin", 725 | "MinConfirmation": 6, 726 | "TxFee": 0.2, 727 | "IsActive": true, 728 | "CoinType": "BITCOIN", 729 | "BaseAddress": null, 730 | "Notice": null 731 | }, 732 | { 733 | "Currency": "BSTY", 734 | "CurrencyLong": "GlobalBoost-Y", 735 | "MinConfirmation": 6, 736 | "TxFee": 0.2, 737 | "IsActive": true, 738 | "CoinType": "BITCOIN", 739 | "BaseAddress": null, 740 | "Notice": null 741 | }, 742 | { 743 | "Currency": "PXI", 744 | "CurrencyLong": "Prime-XI", 745 | "MinConfirmation": 6, 746 | "TxFee": 0.2, 747 | "IsActive": true, 748 | "CoinType": "BITCOIN", 749 | "BaseAddress": null, 750 | "Notice": null 751 | }, 752 | { 753 | "Currency": "DGC", 754 | "CurrencyLong": "DigitalCoin", 755 | "MinConfirmation": 6, 756 | "TxFee": 0.2, 757 | "IsActive": true, 758 | "CoinType": "BITCOIN", 759 | "BaseAddress": null, 760 | "Notice": null 761 | }, 762 | { 763 | "Currency": "SLG", 764 | "CurrencyLong": "Sterlingcoin", 765 | "MinConfirmation": 6, 766 | "TxFee": 0.2, 767 | "IsActive": true, 768 | "CoinType": "BITCOIN", 769 | "BaseAddress": null, 770 | "Notice": null 771 | }, 772 | { 773 | "Currency": "STV", 774 | "CurrencyLong": "SativaCoin", 775 | "MinConfirmation": 6, 776 | "TxFee": 0.2, 777 | "IsActive": true, 778 | "CoinType": "BITCOIN", 779 | "BaseAddress": null, 780 | "Notice": null 781 | }, 782 | { 783 | "Currency": "EXCL", 784 | "CurrencyLong": "ExclusiveCoin", 785 | "MinConfirmation": 6, 786 | "TxFee": 0.2, 787 | "IsActive": true, 788 | "CoinType": "BITCOIN", 789 | "BaseAddress": null, 790 | "Notice": null 791 | }, 792 | { 793 | "Currency": "SWIFT", 794 | "CurrencyLong": "Bitswift", 795 | "MinConfirmation": 10, 796 | "TxFee": 2, 797 | "IsActive": true, 798 | "CoinType": "NXT_ASSET", 799 | "BaseAddress": "NXT-S42Z-ERET-QLMX-4JR77", 800 | "Notice": null 801 | }, 802 | { 803 | "Currency": "NET", 804 | "CurrencyLong": "NetCoin", 805 | "MinConfirmation": 6, 806 | "TxFee": 0.2, 807 | "IsActive": true, 808 | "CoinType": "BITCOIN", 809 | "BaseAddress": null, 810 | "Notice": null 811 | }, 812 | { 813 | "Currency": "GHC", 814 | "CurrencyLong": "GamerholicCoin", 815 | "MinConfirmation": 6, 816 | "TxFee": 0.2, 817 | "IsActive": true, 818 | "CoinType": "BITCOIN", 819 | "BaseAddress": null, 820 | "Notice": null 821 | }, 822 | { 823 | "Currency": "DOPE", 824 | "CurrencyLong": "DopeCoin", 825 | "MinConfirmation": 6, 826 | "TxFee": 0.002, 827 | "IsActive": true, 828 | "CoinType": "BITCOIN", 829 | "BaseAddress": null, 830 | "Notice": null 831 | }, 832 | { 833 | "Currency": "BLOCK", 834 | "CurrencyLong": "BlockNet", 835 | "MinConfirmation": 6, 836 | "TxFee": 0.02, 837 | "IsActive": true, 838 | "CoinType": "BITCOIN", 839 | "BaseAddress": null, 840 | "Notice": null 841 | }, 842 | { 843 | "Currency": "ABY", 844 | "CurrencyLong": "ArtByte", 845 | "MinConfirmation": 6, 846 | "TxFee": 0.2, 847 | "IsActive": true, 848 | "CoinType": "BITCOIN", 849 | "BaseAddress": null, 850 | "Notice": null 851 | }, 852 | { 853 | "Currency": "VIOR", 854 | "CurrencyLong": "ViorCoin", 855 | "MinConfirmation": 6, 856 | "TxFee": 0.2, 857 | "IsActive": true, 858 | "CoinType": "BITCOIN", 859 | "BaseAddress": null, 860 | "Notice": null 861 | }, 862 | { 863 | "Currency": "BYC", 864 | "CurrencyLong": "Bytecent", 865 | "MinConfirmation": 20, 866 | "TxFee": 0.02, 867 | "IsActive": true, 868 | "CoinType": "BITCOIN", 869 | "BaseAddress": null, 870 | "Notice": null 871 | }, 872 | { 873 | "Currency": "UFO", 874 | "CurrencyLong": "UFOCoin", 875 | "MinConfirmation": 6, 876 | "TxFee": 0.2, 877 | "IsActive": true, 878 | "CoinType": "BITCOIN", 879 | "BaseAddress": null, 880 | "Notice": null 881 | }, 882 | { 883 | "Currency": "XMG", 884 | "CurrencyLong": "Magi", 885 | "MinConfirmation": 30, 886 | "TxFee": 0.0002, 887 | "IsActive": true, 888 | "CoinType": "BITCOIN", 889 | "BaseAddress": null, 890 | "Notice": null 891 | }, 892 | { 893 | "Currency": "XQN", 894 | "CurrencyLong": "Quotient", 895 | "MinConfirmation": 6, 896 | "TxFee": 0.02, 897 | "IsActive": true, 898 | "CoinType": "BITCOIN", 899 | "BaseAddress": null, 900 | "Notice": null 901 | }, 902 | { 903 | "Currency": "BLITZ", 904 | "CurrencyLong": "Blitzcash", 905 | "MinConfirmation": 6, 906 | "TxFee": 0.02, 907 | "IsActive": true, 908 | "CoinType": "BITCOIN", 909 | "BaseAddress": null, 910 | "Notice": null 911 | }, 912 | { 913 | "Currency": "VPN", 914 | "CurrencyLong": "VPNCoin", 915 | "MinConfirmation": 6, 916 | "TxFee": 0.2, 917 | "IsActive": true, 918 | "CoinType": "BITCOIN", 919 | "BaseAddress": null, 920 | "Notice": null 921 | }, 922 | { 923 | "Currency": "BAY", 924 | "CurrencyLong": "BitBay", 925 | "MinConfirmation": 6, 926 | "TxFee": 0.2, 927 | "IsActive": true, 928 | "CoinType": "BITCOIN", 929 | "BaseAddress": null, 930 | "Notice": null 931 | }, 932 | { 933 | "Currency": "DTC", 934 | "CurrencyLong": "DayTraderCoin", 935 | "MinConfirmation": 6, 936 | "TxFee": 0.2, 937 | "IsActive": true, 938 | "CoinType": "BITCOIN", 939 | "BaseAddress": null, 940 | "Notice": null 941 | }, 942 | { 943 | "Currency": "AM", 944 | "CurrencyLong": "AeroME", 945 | "MinConfirmation": 6, 946 | "TxFee": 0.2, 947 | "IsActive": true, 948 | "CoinType": "BITCOIN", 949 | "BaseAddress": null, 950 | "Notice": null 951 | }, 952 | { 953 | "Currency": "METAL", 954 | "CurrencyLong": "MetalCoin", 955 | "MinConfirmation": 6, 956 | "TxFee": 20, 957 | "IsActive": true, 958 | "CoinType": "COUNTERPARTY", 959 | "BaseAddress": "1AeqgtHedfA2yVXH6GiKLS2JGkfWfgyTC6", 960 | "Notice": null 961 | }, 962 | { 963 | "Currency": "SPR", 964 | "CurrencyLong": "SpreadCoin", 965 | "MinConfirmation": 6, 966 | "TxFee": 0.2, 967 | "IsActive": true, 968 | "CoinType": "BITCOIN", 969 | "BaseAddress": null, 970 | "Notice": null 971 | }, 972 | { 973 | "Currency": "VTR", 974 | "CurrencyLong": "vTorrent", 975 | "MinConfirmation": 6, 976 | "TxFee": 0.02, 977 | "IsActive": true, 978 | "CoinType": "BITCOIN_STEALTH", 979 | "BaseAddress": null, 980 | "Notice": null 981 | }, 982 | { 983 | "Currency": "XPY", 984 | "CurrencyLong": "Paycoin", 985 | "MinConfirmation": 6, 986 | "TxFee": 0.002, 987 | "IsActive": false, 988 | "CoinType": "BITCOIN", 989 | "BaseAddress": null, 990 | "Notice": "Wallet Offline - Wallet no longer operational - withdrawals/deposits cannot be processed" 991 | }, 992 | { 993 | "Currency": "XRP", 994 | "CurrencyLong": "Ripple", 995 | "MinConfirmation": 10, 996 | "TxFee": 5, 997 | "IsActive": false, 998 | "CoinType": "RIPPLE", 999 | "BaseAddress": "rPVMhWBsfF9iMXYj3aAzJVkPDTFNSyWdKy", 1000 | "Notice": "Wallet Disabled - performing routine maintenance" 1001 | }, 1002 | { 1003 | "Currency": "GAME", 1004 | "CurrencyLong": "GameCredits", 1005 | "MinConfirmation": 6, 1006 | "TxFee": 0.2, 1007 | "IsActive": true, 1008 | "CoinType": "BITCOIN", 1009 | "BaseAddress": null, 1010 | "Notice": null 1011 | }, 1012 | { 1013 | "Currency": "GP", 1014 | "CurrencyLong": "GoldPieces", 1015 | "MinConfirmation": 6, 1016 | "TxFee": 0.2, 1017 | "IsActive": true, 1018 | "CoinType": "BITCOIN", 1019 | "BaseAddress": null, 1020 | "Notice": null 1021 | }, 1022 | { 1023 | "Currency": "NXS", 1024 | "CurrencyLong": "Nexus", 1025 | "MinConfirmation": 6, 1026 | "TxFee": 0.2, 1027 | "IsActive": true, 1028 | "CoinType": "BITCOIN", 1029 | "BaseAddress": null, 1030 | "Notice": null 1031 | }, 1032 | { 1033 | "Currency": "COVAL", 1034 | "CurrencyLong": "Circuits of Value", 1035 | "MinConfirmation": 6, 1036 | "TxFee": 200, 1037 | "IsActive": true, 1038 | "CoinType": "COUNTERPARTY", 1039 | "BaseAddress": "1AeqgtHedfA2yVXH6GiKLS2JGkfWfgyTC6", 1040 | "Notice": null 1041 | }, 1042 | { 1043 | "Currency": "FSC2", 1044 | "CurrencyLong": "FriendshipCoin2", 1045 | "MinConfirmation": 6, 1046 | "TxFee": 0.2, 1047 | "IsActive": true, 1048 | "CoinType": "BITCOIN", 1049 | "BaseAddress": null, 1050 | "Notice": null 1051 | }, 1052 | { 1053 | "Currency": "SOON", 1054 | "CurrencyLong": "SoonCoin", 1055 | "MinConfirmation": 6, 1056 | "TxFee": 0.2, 1057 | "IsActive": true, 1058 | "CoinType": "BITCOIN", 1059 | "BaseAddress": null, 1060 | "Notice": null 1061 | }, 1062 | { 1063 | "Currency": "HZ", 1064 | "CurrencyLong": "Horizon", 1065 | "MinConfirmation": 10, 1066 | "TxFee": 2, 1067 | "IsActive": true, 1068 | "CoinType": "NXT", 1069 | "BaseAddress": "NHZ-7ANN-LUFR-CCZU-6K44J", 1070 | "Notice": null 1071 | }, 1072 | { 1073 | "Currency": "XCP", 1074 | "CurrencyLong": "Counterparty", 1075 | "MinConfirmation": 6, 1076 | "TxFee": 0.2, 1077 | "IsActive": true, 1078 | "CoinType": "COUNTERPARTY", 1079 | "BaseAddress": "1AeqgtHedfA2yVXH6GiKLS2JGkfWfgyTC6", 1080 | "Notice": null 1081 | }, 1082 | { 1083 | "Currency": "BITB", 1084 | "CurrencyLong": "BitBean", 1085 | "MinConfirmation": 6, 1086 | "TxFee": 0.2, 1087 | "IsActive": true, 1088 | "CoinType": "BITCOIN", 1089 | "BaseAddress": null, 1090 | "Notice": null 1091 | }, 1092 | { 1093 | "Currency": "XTC", 1094 | "CurrencyLong": "TileCoin", 1095 | "MinConfirmation": 6, 1096 | "TxFee": 100, 1097 | "IsActive": true, 1098 | "CoinType": "COUNTERPARTY", 1099 | "BaseAddress": "1AeqgtHedfA2yVXH6GiKLS2JGkfWfgyTC6", 1100 | "Notice": null 1101 | }, 1102 | { 1103 | "Currency": "XVG", 1104 | "CurrencyLong": "Verge", 1105 | "MinConfirmation": 30, 1106 | "TxFee": 0.2, 1107 | "IsActive": true, 1108 | "CoinType": "BITCOIN", 1109 | "BaseAddress": "DCUWt5ctZcPdPMYPV2o1xK1kqv7jNwxu4h", 1110 | "Notice": null 1111 | }, 1112 | { 1113 | "Currency": "GEO", 1114 | "CurrencyLong": "GeoCoin", 1115 | "MinConfirmation": 120, 1116 | "TxFee": 0.002, 1117 | "IsActive": true, 1118 | "CoinType": "BITCOIN", 1119 | "BaseAddress": null, 1120 | "Notice": null 1121 | }, 1122 | { 1123 | "Currency": "FLDC", 1124 | "CurrencyLong": "FoldingCoin", 1125 | "MinConfirmation": 6, 1126 | "TxFee": 150, 1127 | "IsActive": true, 1128 | "CoinType": "COUNTERPARTY", 1129 | "BaseAddress": "1AeqgtHedfA2yVXH6GiKLS2JGkfWfgyTC6", 1130 | "Notice": null 1131 | }, 1132 | { 1133 | "Currency": "GEMZ", 1134 | "CurrencyLong": "Gemz", 1135 | "MinConfirmation": 6, 1136 | "TxFee": 5, 1137 | "IsActive": true, 1138 | "CoinType": "COUNTERPARTY", 1139 | "BaseAddress": "1AeqgtHedfA2yVXH6GiKLS2JGkfWfgyTC6", 1140 | "Notice": null 1141 | }, 1142 | { 1143 | "Currency": "GRC", 1144 | "CurrencyLong": "GridCoin", 1145 | "MinConfirmation": 120, 1146 | "TxFee": 0.2, 1147 | "IsActive": true, 1148 | "CoinType": "BITCOIN", 1149 | "BaseAddress": null, 1150 | "Notice": null 1151 | }, 1152 | { 1153 | "Currency": "XCO", 1154 | "CurrencyLong": "X-Coin", 1155 | "MinConfirmation": 6, 1156 | "TxFee": 0.02, 1157 | "IsActive": true, 1158 | "CoinType": "BITCOIN", 1159 | "BaseAddress": null, 1160 | "Notice": null 1161 | }, 1162 | { 1163 | "Currency": "MTR", 1164 | "CurrencyLong": "MasterTraderCoin", 1165 | "MinConfirmation": 6, 1166 | "TxFee": 0.2, 1167 | "IsActive": true, 1168 | "CoinType": "BITCOIN", 1169 | "BaseAddress": null, 1170 | "Notice": null 1171 | }, 1172 | { 1173 | "Currency": "FLO", 1174 | "CurrencyLong": "Florin", 1175 | "MinConfirmation": 6, 1176 | "TxFee": 0.2, 1177 | "IsActive": true, 1178 | "CoinType": "BITCOIN", 1179 | "BaseAddress": null, 1180 | "Notice": null 1181 | }, 1182 | { 1183 | "Currency": "U", 1184 | "CurrencyLong": "UCoin", 1185 | "MinConfirmation": 6, 1186 | "TxFee": 0.2, 1187 | "IsActive": true, 1188 | "CoinType": "BITCOIN", 1189 | "BaseAddress": null, 1190 | "Notice": null 1191 | }, 1192 | { 1193 | "Currency": "NBT", 1194 | "CurrencyLong": "Nubits", 1195 | "MinConfirmation": 6, 1196 | "TxFee": 0.02, 1197 | "IsActive": true, 1198 | "CoinType": "BITCOIN", 1199 | "BaseAddress": null, 1200 | "Notice": null 1201 | }, 1202 | { 1203 | "Currency": "XEM", 1204 | "CurrencyLong": "NewEconomyMovement", 1205 | "MinConfirmation": 10, 1206 | "TxFee": 4, 1207 | "IsActive": true, 1208 | "CoinType": "NEM", 1209 | "BaseAddress": "ND2JRPQIWXHKAA26INVGA7SREEUMX5QAI6VU7HNR", 1210 | "Notice": null 1211 | }, 1212 | { 1213 | "Currency": "MUE", 1214 | "CurrencyLong": "MonetaryUnit", 1215 | "MinConfirmation": 20, 1216 | "TxFee": 0.02, 1217 | "IsActive": true, 1218 | "CoinType": "BITCOIN", 1219 | "BaseAddress": "7cj7HboKG2PUV2jQcAU79naeCQvmV1doJW", 1220 | "Notice": null 1221 | }, 1222 | { 1223 | "Currency": "XVC", 1224 | "CurrencyLong": "Vcash", 1225 | "MinConfirmation": 2, 1226 | "TxFee": 0.002, 1227 | "IsActive": true, 1228 | "CoinType": "BITCOIN", 1229 | "BaseAddress": null, 1230 | "Notice": null 1231 | }, 1232 | { 1233 | "Currency": "8BIT", 1234 | "CurrencyLong": "8bit", 1235 | "MinConfirmation": 30, 1236 | "TxFee": 0.002, 1237 | "IsActive": true, 1238 | "CoinType": "BITCOIN", 1239 | "BaseAddress": null, 1240 | "Notice": null 1241 | }, 1242 | { 1243 | "Currency": "CLAM", 1244 | "CurrencyLong": "CLAMs", 1245 | "MinConfirmation": 6, 1246 | "TxFee": 0.2, 1247 | "IsActive": true, 1248 | "CoinType": "BITCOIN", 1249 | "BaseAddress": "xHWM9sQVJS3WgLm88j29tpFfZw17TmbRoq", 1250 | "Notice": null 1251 | }, 1252 | { 1253 | "Currency": "XSEED", 1254 | "CurrencyLong": "BitSeeds", 1255 | "MinConfirmation": 6, 1256 | "TxFee": 0.002, 1257 | "IsActive": true, 1258 | "CoinType": "BITCOIN", 1259 | "BaseAddress": null, 1260 | "Notice": null 1261 | }, 1262 | { 1263 | "Currency": "NTRN", 1264 | "CurrencyLong": "Neutron", 1265 | "MinConfirmation": 6, 1266 | "TxFee": 0.02, 1267 | "IsActive": true, 1268 | "CoinType": "BITCOIN", 1269 | "BaseAddress": null, 1270 | "Notice": null 1271 | }, 1272 | { 1273 | "Currency": "SLING", 1274 | "CurrencyLong": "Sling", 1275 | "MinConfirmation": 6, 1276 | "TxFee": 0.002, 1277 | "IsActive": false, 1278 | "CoinType": "BITCOIN", 1279 | "BaseAddress": null, 1280 | "Notice": "Wallet Offline - Wallet no longer operational - withdrawals/deposits cannot be processed" 1281 | }, 1282 | { 1283 | "Currency": "DMD", 1284 | "CurrencyLong": "Diamond", 1285 | "MinConfirmation": 6, 1286 | "TxFee": 0.002, 1287 | "IsActive": true, 1288 | "CoinType": "BITCOIN", 1289 | "BaseAddress": null, 1290 | "Notice": null 1291 | }, 1292 | { 1293 | "Currency": "GAM", 1294 | "CurrencyLong": "Gambit", 1295 | "MinConfirmation": 6, 1296 | "TxFee": 0.02, 1297 | "IsActive": false, 1298 | "CoinType": "BITCOIN", 1299 | "BaseAddress": null, 1300 | "Notice": "Wallet Offline - Preparing for swap" 1301 | }, 1302 | { 1303 | "Currency": "UNIT", 1304 | "CurrencyLong": "UniversalCurrency", 1305 | "MinConfirmation": 6, 1306 | "TxFee": 2, 1307 | "IsActive": true, 1308 | "CoinType": "BITCOIN", 1309 | "BaseAddress": null, 1310 | "Notice": null 1311 | }, 1312 | { 1313 | "Currency": "GRT", 1314 | "CurrencyLong": "Grantcoin", 1315 | "MinConfirmation": 6, 1316 | "TxFee": 2, 1317 | "IsActive": true, 1318 | "CoinType": "BITCOIN", 1319 | "BaseAddress": null, 1320 | "Notice": null 1321 | }, 1322 | { 1323 | "Currency": "VIRAL", 1324 | "CurrencyLong": "Viral", 1325 | "MinConfirmation": 6, 1326 | "TxFee": 0.002, 1327 | "IsActive": true, 1328 | "CoinType": "BITCOIN", 1329 | "BaseAddress": null, 1330 | "Notice": null 1331 | }, 1332 | { 1333 | "Currency": "SPHR", 1334 | "CurrencyLong": "Sphere", 1335 | "MinConfirmation": 6, 1336 | "TxFee": 0.002, 1337 | "IsActive": true, 1338 | "CoinType": "BITCOIN", 1339 | "BaseAddress": null, 1340 | "Notice": null 1341 | }, 1342 | { 1343 | "Currency": "ARB", 1344 | "CurrencyLong": "ArbitCoin", 1345 | "MinConfirmation": 6, 1346 | "TxFee": 0.02, 1347 | "IsActive": true, 1348 | "CoinType": "BITCOIN", 1349 | "BaseAddress": null, 1350 | "Notice": null 1351 | }, 1352 | { 1353 | "Currency": "OK", 1354 | "CurrencyLong": "OkCash", 1355 | "MinConfirmation": 6, 1356 | "TxFee": 0.2, 1357 | "IsActive": true, 1358 | "CoinType": "BITCOIN", 1359 | "BaseAddress": null, 1360 | "Notice": null 1361 | }, 1362 | { 1363 | "Currency": "ADC", 1364 | "CurrencyLong": "AudioCoin", 1365 | "MinConfirmation": 6, 1366 | "TxFee": 2, 1367 | "IsActive": true, 1368 | "CoinType": "BITCOIN", 1369 | "BaseAddress": null, 1370 | "Notice": null 1371 | }, 1372 | { 1373 | "Currency": "SNRG", 1374 | "CurrencyLong": "Synergy", 1375 | "MinConfirmation": 6, 1376 | "TxFee": 0.002, 1377 | "IsActive": true, 1378 | "CoinType": "BITCOIN", 1379 | "BaseAddress": null, 1380 | "Notice": null 1381 | }, 1382 | { 1383 | "Currency": "PKB", 1384 | "CurrencyLong": "ParkByte", 1385 | "MinConfirmation": 6, 1386 | "TxFee": 0.02, 1387 | "IsActive": true, 1388 | "CoinType": "BITCOIN", 1389 | "BaseAddress": null, 1390 | "Notice": null 1391 | }, 1392 | { 1393 | "Currency": "TES", 1394 | "CurrencyLong": "TeslaCoin", 1395 | "MinConfirmation": 15, 1396 | "TxFee": 0.2, 1397 | "IsActive": true, 1398 | "CoinType": "BITCOIN", 1399 | "BaseAddress": null, 1400 | "Notice": null 1401 | }, 1402 | { 1403 | "Currency": "CPC", 1404 | "CurrencyLong": "CapriCoin", 1405 | "MinConfirmation": 6, 1406 | "TxFee": 0.2, 1407 | "IsActive": true, 1408 | "CoinType": "BITCOIN", 1409 | "BaseAddress": null, 1410 | "Notice": null 1411 | }, 1412 | { 1413 | "Currency": "AEON", 1414 | "CurrencyLong": "Aeon", 1415 | "MinConfirmation": 48, 1416 | "TxFee": 0.1, 1417 | "IsActive": true, 1418 | "CoinType": "CRYPTO_NOTE_PAYMENTID", 1419 | "BaseAddress": "WmtK9TQ6yd2ZWZDAkRsebc2ppzUq2Wuo9XRRjHMH2fvqM3ARVqk3styJ6AavJFcpJFPFtxRGAqGFoJMZGJ6YYzQ61TYGfpykX", 1420 | "Notice": null 1421 | }, 1422 | { 1423 | "Currency": "BITZ", 1424 | "CurrencyLong": "Bitz", 1425 | "MinConfirmation": 6, 1426 | "TxFee": 0.02, 1427 | "IsActive": true, 1428 | "CoinType": "BITCOIN", 1429 | "BaseAddress": null, 1430 | "Notice": null 1431 | }, 1432 | { 1433 | "Currency": "ETH", 1434 | "CurrencyLong": "Ethereum", 1435 | "MinConfirmation": 36, 1436 | "TxFee": 0.002, 1437 | "IsActive": true, 1438 | "CoinType": "ETH", 1439 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 1440 | "Notice": null 1441 | }, 1442 | { 1443 | "Currency": "GCR", 1444 | "CurrencyLong": "GlobalCurrencyReserve", 1445 | "MinConfirmation": 60, 1446 | "TxFee": 0.02, 1447 | "IsActive": true, 1448 | "CoinType": "BITCOIN", 1449 | "BaseAddress": null, 1450 | "Notice": null 1451 | }, 1452 | { 1453 | "Currency": "TX", 1454 | "CurrencyLong": "TransferCoin", 1455 | "MinConfirmation": 6, 1456 | "TxFee": 0.02, 1457 | "IsActive": true, 1458 | "CoinType": "BITCOIN", 1459 | "BaseAddress": null, 1460 | "Notice": null 1461 | }, 1462 | { 1463 | "Currency": "BCY", 1464 | "CurrencyLong": "BitCrystals", 1465 | "MinConfirmation": 6, 1466 | "TxFee": 5, 1467 | "IsActive": true, 1468 | "CoinType": "COUNTERPARTY", 1469 | "BaseAddress": "1AeqgtHedfA2yVXH6GiKLS2JGkfWfgyTC6", 1470 | "Notice": null 1471 | }, 1472 | { 1473 | "Currency": "PRIME", 1474 | "CurrencyLong": "PrimeChain", 1475 | "MinConfirmation": 6, 1476 | "TxFee": 0.02, 1477 | "IsActive": true, 1478 | "CoinType": "BITCOIN", 1479 | "BaseAddress": null, 1480 | "Notice": null 1481 | }, 1482 | { 1483 | "Currency": "EXP", 1484 | "CurrencyLong": "Expanse", 1485 | "MinConfirmation": 60, 1486 | "TxFee": 0.01, 1487 | "IsActive": true, 1488 | "CoinType": "ETH", 1489 | "BaseAddress": "0xc9710872d3e65edbf7f8776829dd7b21f2085e40", 1490 | "Notice": null 1491 | }, 1492 | { 1493 | "Currency": "NEU", 1494 | "CurrencyLong": "NeuCoin", 1495 | "MinConfirmation": 6, 1496 | "TxFee": 0.02, 1497 | "IsActive": true, 1498 | "CoinType": "BITCOIN", 1499 | "BaseAddress": null, 1500 | "Notice": null 1501 | }, 1502 | { 1503 | "Currency": "SWING", 1504 | "CurrencyLong": "SwingCoin", 1505 | "MinConfirmation": 6, 1506 | "TxFee": 0.1, 1507 | "IsActive": true, 1508 | "CoinType": "BITCOIN", 1509 | "BaseAddress": null, 1510 | "Notice": null 1511 | }, 1512 | { 1513 | "Currency": "INFX", 1514 | "CurrencyLong": "InfluxCoin", 1515 | "MinConfirmation": 6, 1516 | "TxFee": 0.1, 1517 | "IsActive": true, 1518 | "CoinType": "BITCOIN", 1519 | "BaseAddress": null, 1520 | "Notice": null 1521 | }, 1522 | { 1523 | "Currency": "OMNI", 1524 | "CurrencyLong": "OmniCoin", 1525 | "MinConfirmation": 2, 1526 | "TxFee": 0.1, 1527 | "IsActive": true, 1528 | "CoinType": "OMNI", 1529 | "BaseAddress": "1DUb2YYbQA1jjaNYzVXLZ7ZioEhLXtbUru", 1530 | "Notice": null 1531 | }, 1532 | { 1533 | "Currency": "USDT", 1534 | "CurrencyLong": "Tether", 1535 | "MinConfirmation": 2, 1536 | "TxFee": 15, 1537 | "IsActive": true, 1538 | "CoinType": "OMNI", 1539 | "BaseAddress": "1DUb2YYbQA1jjaNYzVXLZ7ZioEhLXtbUru", 1540 | "Notice": null 1541 | }, 1542 | { 1543 | "Currency": "AMP", 1544 | "CurrencyLong": "SynereoAmp", 1545 | "MinConfirmation": 2, 1546 | "TxFee": 5, 1547 | "IsActive": false, 1548 | "CoinType": "OMNI", 1549 | "BaseAddress": "1DUb2YYbQA1jjaNYzVXLZ7ZioEhLXtbUru", 1550 | "Notice": "Wallet Maintenance" 1551 | }, 1552 | { 1553 | "Currency": "AGRS", 1554 | "CurrencyLong": "IDNI Agoras", 1555 | "MinConfirmation": 2, 1556 | "TxFee": 5, 1557 | "IsActive": true, 1558 | "CoinType": "OMNI", 1559 | "BaseAddress": "1DUb2YYbQA1jjaNYzVXLZ7ZioEhLXtbUru", 1560 | "Notice": null 1561 | }, 1562 | { 1563 | "Currency": "XLM", 1564 | "CurrencyLong": "Lumen", 1565 | "MinConfirmation": 2, 1566 | "TxFee": 0.01, 1567 | "IsActive": true, 1568 | "CoinType": "LUMEN", 1569 | "BaseAddress": "GB6YPGW5JFMMP2QB2USQ33EUWTXVL4ZT5ITUNCY3YKVWOJPP57CANOF3", 1570 | "Notice": null 1571 | }, 1572 | { 1573 | "Currency": "SPRTS", 1574 | "CurrencyLong": "Sprouts", 1575 | "MinConfirmation": 6, 1576 | "TxFee": 1, 1577 | "IsActive": true, 1578 | "CoinType": "BITCOIN", 1579 | "BaseAddress": null, 1580 | "Notice": null 1581 | }, 1582 | { 1583 | "Currency": "YBC", 1584 | "CurrencyLong": "YBCoin", 1585 | "MinConfirmation": 6, 1586 | "TxFee": 1, 1587 | "IsActive": true, 1588 | "CoinType": "BITCOIN", 1589 | "BaseAddress": null, 1590 | "Notice": null 1591 | }, 1592 | { 1593 | "Currency": "BTA", 1594 | "CurrencyLong": "Bata", 1595 | "MinConfirmation": 300, 1596 | "TxFee": 1, 1597 | "IsActive": true, 1598 | "CoinType": "BITCOIN", 1599 | "BaseAddress": null, 1600 | "Notice": null 1601 | }, 1602 | { 1603 | "Currency": "MEC", 1604 | "CurrencyLong": "MegaCoin", 1605 | "MinConfirmation": 6, 1606 | "TxFee": 1, 1607 | "IsActive": true, 1608 | "CoinType": "BITCOIN", 1609 | "BaseAddress": null, 1610 | "Notice": null 1611 | }, 1612 | { 1613 | "Currency": "BITCNY", 1614 | "CurrencyLong": "BitCNY", 1615 | "MinConfirmation": 2, 1616 | "TxFee": 1.5, 1617 | "IsActive": true, 1618 | "CoinType": "BITSHAREX", 1619 | "BaseAddress": "bittrex-deposit", 1620 | "Notice": null 1621 | }, 1622 | { 1623 | "Currency": "AMS", 1624 | "CurrencyLong": "AmsterdamCoin", 1625 | "MinConfirmation": 6, 1626 | "TxFee": 1, 1627 | "IsActive": true, 1628 | "CoinType": "BITCOIN", 1629 | "BaseAddress": null, 1630 | "Notice": null 1631 | }, 1632 | { 1633 | "Currency": "SCRT", 1634 | "CurrencyLong": "SecretCoin", 1635 | "MinConfirmation": 6, 1636 | "TxFee": 1, 1637 | "IsActive": true, 1638 | "CoinType": "BITCOIN", 1639 | "BaseAddress": null, 1640 | "Notice": null 1641 | }, 1642 | { 1643 | "Currency": "SCOT", 1644 | "CurrencyLong": "ScotCoin", 1645 | "MinConfirmation": 6, 1646 | "TxFee": 5, 1647 | "IsActive": true, 1648 | "CoinType": "COUNTERPARTY", 1649 | "BaseAddress": "1AeqgtHedfA2yVXH6GiKLS2JGkfWfgyTC6", 1650 | "Notice": null 1651 | }, 1652 | { 1653 | "Currency": "CLUB", 1654 | "CurrencyLong": "ClubCoin", 1655 | "MinConfirmation": 6, 1656 | "TxFee": 0.02, 1657 | "IsActive": true, 1658 | "CoinType": "BITCOIN", 1659 | "BaseAddress": null, 1660 | "Notice": null 1661 | }, 1662 | { 1663 | "Currency": "VOX", 1664 | "CurrencyLong": "Voxels", 1665 | "MinConfirmation": 6, 1666 | "TxFee": 0.1, 1667 | "IsActive": true, 1668 | "CoinType": "BITCOIN", 1669 | "BaseAddress": null, 1670 | "Notice": null 1671 | }, 1672 | { 1673 | "Currency": "MND", 1674 | "CurrencyLong": "MindCoin", 1675 | "MinConfirmation": 6, 1676 | "TxFee": 1, 1677 | "IsActive": true, 1678 | "CoinType": "BITCOIN", 1679 | "BaseAddress": null, 1680 | "Notice": null 1681 | }, 1682 | { 1683 | "Currency": "EMC", 1684 | "CurrencyLong": "EmerCoin", 1685 | "MinConfirmation": 6, 1686 | "TxFee": 0.02, 1687 | "IsActive": true, 1688 | "CoinType": "BITCOIN", 1689 | "BaseAddress": null, 1690 | "Notice": null 1691 | }, 1692 | { 1693 | "Currency": "FCT", 1694 | "CurrencyLong": "Factom", 1695 | "MinConfirmation": 2, 1696 | "TxFee": 0.01, 1697 | "IsActive": true, 1698 | "CoinType": "FACTOM", 1699 | "BaseAddress": "FA2MZs5wASMo9cCiKezdiQKCd8KA6Zbg2xKXKGmYEZBqon9J3ZKv", 1700 | "Notice": null 1701 | }, 1702 | { 1703 | "Currency": "MAID", 1704 | "CurrencyLong": "MaidSafeCoin", 1705 | "MinConfirmation": 2, 1706 | "TxFee": 2, 1707 | "IsActive": false, 1708 | "CoinType": "OMNI", 1709 | "BaseAddress": "1DUb2YYbQA1jjaNYzVXLZ7ZioEhLXtbUru", 1710 | "Notice": "Wallet Maintenance" 1711 | }, 1712 | { 1713 | "Currency": "FRK", 1714 | "CurrencyLong": "Franko", 1715 | "MinConfirmation": 30, 1716 | "TxFee": 0.002, 1717 | "IsActive": true, 1718 | "CoinType": "BITCOIN", 1719 | "BaseAddress": null, 1720 | "Notice": null 1721 | }, 1722 | { 1723 | "Currency": "EGC", 1724 | "CurrencyLong": "EverGreenCoin", 1725 | "MinConfirmation": 6, 1726 | "TxFee": 0.2, 1727 | "IsActive": true, 1728 | "CoinType": "BITCOIN", 1729 | "BaseAddress": null, 1730 | "Notice": null 1731 | }, 1732 | { 1733 | "Currency": "SLS", 1734 | "CurrencyLong": "SaluS", 1735 | "MinConfirmation": 6, 1736 | "TxFee": 0.002, 1737 | "IsActive": true, 1738 | "CoinType": "BITCOIN", 1739 | "BaseAddress": null, 1740 | "Notice": null 1741 | }, 1742 | { 1743 | "Currency": "ORB", 1744 | "CurrencyLong": "OrbitCoin", 1745 | "MinConfirmation": 6, 1746 | "TxFee": 0.2, 1747 | "IsActive": true, 1748 | "CoinType": "BITCOIN", 1749 | "BaseAddress": null, 1750 | "Notice": null 1751 | }, 1752 | { 1753 | "Currency": "STEPS", 1754 | "CurrencyLong": "Steps", 1755 | "MinConfirmation": 6, 1756 | "TxFee": 0.2, 1757 | "IsActive": true, 1758 | "CoinType": "BITCOIN", 1759 | "BaseAddress": null, 1760 | "Notice": null 1761 | }, 1762 | { 1763 | "Currency": "RADS", 1764 | "CurrencyLong": "Radium", 1765 | "MinConfirmation": 6, 1766 | "TxFee": 0.2, 1767 | "IsActive": true, 1768 | "CoinType": "BITCOIN", 1769 | "BaseAddress": null, 1770 | "Notice": null 1771 | }, 1772 | { 1773 | "Currency": "DCR", 1774 | "CurrencyLong": "Decred", 1775 | "MinConfirmation": 6, 1776 | "TxFee": 0.03, 1777 | "IsActive": true, 1778 | "CoinType": "BITCOIN", 1779 | "BaseAddress": null, 1780 | "Notice": null 1781 | }, 1782 | { 1783 | "Currency": "SAFEX", 1784 | "CurrencyLong": "SafeExchangeCoin", 1785 | "MinConfirmation": 2, 1786 | "TxFee": 100, 1787 | "IsActive": false, 1788 | "CoinType": "OMNI", 1789 | "BaseAddress": "1DUb2YYbQA1jjaNYzVXLZ7ZioEhLXtbUru", 1790 | "Notice": "Wallet Maintenance" 1791 | }, 1792 | { 1793 | "Currency": "PIVX", 1794 | "CurrencyLong": "Pivx", 1795 | "MinConfirmation": 6, 1796 | "TxFee": 0.02, 1797 | "IsActive": true, 1798 | "CoinType": "BITCOIN", 1799 | "BaseAddress": null, 1800 | "Notice": null 1801 | }, 1802 | { 1803 | "Currency": "WARP", 1804 | "CurrencyLong": "WarpCoin", 1805 | "MinConfirmation": 6, 1806 | "TxFee": 0.02, 1807 | "IsActive": true, 1808 | "CoinType": "BITCOIN", 1809 | "BaseAddress": null, 1810 | "Notice": null 1811 | }, 1812 | { 1813 | "Currency": "CRBIT", 1814 | "CurrencyLong": "CreditBit", 1815 | "MinConfirmation": 6, 1816 | "TxFee": 1, 1817 | "IsActive": true, 1818 | "CoinType": "BITCOIN", 1819 | "BaseAddress": null, 1820 | "Notice": null 1821 | }, 1822 | { 1823 | "Currency": "MEME", 1824 | "CurrencyLong": "Memetic", 1825 | "MinConfirmation": 30, 1826 | "TxFee": 0.02, 1827 | "IsActive": true, 1828 | "CoinType": "BITCOIN", 1829 | "BaseAddress": null, 1830 | "Notice": null 1831 | }, 1832 | { 1833 | "Currency": "STEEM", 1834 | "CurrencyLong": "STEEM", 1835 | "MinConfirmation": 20, 1836 | "TxFee": 0.01, 1837 | "IsActive": true, 1838 | "CoinType": "STEEM", 1839 | "BaseAddress": "bittrex", 1840 | "Notice": null 1841 | }, 1842 | { 1843 | "Currency": "2GIVE", 1844 | "CurrencyLong": "2GIVE", 1845 | "MinConfirmation": 6, 1846 | "TxFee": 0.01, 1847 | "IsActive": true, 1848 | "CoinType": "BITCOIN_PERCENTAGE_FEE", 1849 | "BaseAddress": null, 1850 | "Notice": null 1851 | }, 1852 | { 1853 | "Currency": "LSK", 1854 | "CurrencyLong": "Lisk", 1855 | "MinConfirmation": 304, 1856 | "TxFee": 0.1, 1857 | "IsActive": true, 1858 | "CoinType": "LISK", 1859 | "BaseAddress": "6687808873757044786L", 1860 | "Notice": null 1861 | }, 1862 | { 1863 | "Currency": "KR", 1864 | "CurrencyLong": "Krypton", 1865 | "MinConfirmation": 20, 1866 | "TxFee": 0.01, 1867 | "IsActive": true, 1868 | "CoinType": "BITCOIN", 1869 | "BaseAddress": null, 1870 | "Notice": null 1871 | }, 1872 | { 1873 | "Currency": "PDC", 1874 | "CurrencyLong": "Project Decorum", 1875 | "MinConfirmation": 2, 1876 | "TxFee": 5, 1877 | "IsActive": false, 1878 | "CoinType": "OMNI", 1879 | "BaseAddress": "1DUb2YYbQA1jjaNYzVXLZ7ZioEhLXtbUru", 1880 | "Notice": "Wallet Maintenance" 1881 | }, 1882 | { 1883 | "Currency": "DGD", 1884 | "CurrencyLong": "Digix DAO", 1885 | "MinConfirmation": 36, 1886 | "TxFee": 0.01, 1887 | "IsActive": true, 1888 | "CoinType": "ETH_CONTRACT", 1889 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 1890 | "Notice": null 1891 | }, 1892 | { 1893 | "Currency": "BRK", 1894 | "CurrencyLong": "Breakout", 1895 | "MinConfirmation": 6, 1896 | "TxFee": 0.02, 1897 | "IsActive": true, 1898 | "CoinType": "BITCOIN", 1899 | "BaseAddress": null, 1900 | "Notice": null 1901 | }, 1902 | { 1903 | "Currency": "WAVES", 1904 | "CurrencyLong": "Waves", 1905 | "MinConfirmation": 20, 1906 | "TxFee": 0.001, 1907 | "IsActive": true, 1908 | "CoinType": "WAVES", 1909 | "BaseAddress": "3P31zvGdh6ai6JK6zZ18TjYzJsa1B83YPoj", 1910 | "Notice": null 1911 | }, 1912 | { 1913 | "Currency": "RISE", 1914 | "CurrencyLong": "Rise", 1915 | "MinConfirmation": 77, 1916 | "TxFee": 0.1, 1917 | "IsActive": true, 1918 | "CoinType": "LISK", 1919 | "BaseAddress": "1644223775232371040R", 1920 | "Notice": null 1921 | }, 1922 | { 1923 | "Currency": "LBC", 1924 | "CurrencyLong": "LBRY Credits", 1925 | "MinConfirmation": 6, 1926 | "TxFee": 0.02, 1927 | "IsActive": true, 1928 | "CoinType": "BITCOIN", 1929 | "BaseAddress": null, 1930 | "Notice": null 1931 | }, 1932 | { 1933 | "Currency": "SBD", 1934 | "CurrencyLong": "SteemDollars", 1935 | "MinConfirmation": 20, 1936 | "TxFee": 0.01, 1937 | "IsActive": true, 1938 | "CoinType": "STEEM", 1939 | "BaseAddress": "bittrex", 1940 | "Notice": null 1941 | }, 1942 | { 1943 | "Currency": "BRX", 1944 | "CurrencyLong": "Breakout Stake", 1945 | "MinConfirmation": 6, 1946 | "TxFee": 0.02, 1947 | "IsActive": true, 1948 | "CoinType": "BITCOIN", 1949 | "BaseAddress": null, 1950 | "Notice": null 1951 | }, 1952 | { 1953 | "Currency": "DRACO", 1954 | "CurrencyLong": "DT Token", 1955 | "MinConfirmation": 10, 1956 | "TxFee": 2, 1957 | "IsActive": true, 1958 | "CoinType": "NXT_MS", 1959 | "BaseAddress": "NXT-BAVX-TWZC-C9GH-FW9LJ", 1960 | "Notice": null 1961 | }, 1962 | { 1963 | "Currency": "ETC", 1964 | "CurrencyLong": "Ethereum Classic", 1965 | "MinConfirmation": 72, 1966 | "TxFee": 0.01, 1967 | "IsActive": true, 1968 | "CoinType": "ETH", 1969 | "BaseAddress": "0xe592b0d8baa2cb677034389b76a71b0d1823e0d1", 1970 | "Notice": null 1971 | }, 1972 | { 1973 | "Currency": "UNIQ", 1974 | "CurrencyLong": "Uniqredit", 1975 | "MinConfirmation": 6, 1976 | "TxFee": 0.1, 1977 | "IsActive": true, 1978 | "CoinType": "BITCOIN", 1979 | "BaseAddress": null, 1980 | "Notice": null 1981 | }, 1982 | { 1983 | "Currency": "STRAT", 1984 | "CurrencyLong": "Stratis", 1985 | "MinConfirmation": 6, 1986 | "TxFee": 0.2, 1987 | "IsActive": true, 1988 | "CoinType": "BITCOIN", 1989 | "BaseAddress": null, 1990 | "Notice": null 1991 | }, 1992 | { 1993 | "Currency": "UNB", 1994 | "CurrencyLong": "UnbreakableCoin", 1995 | "MinConfirmation": 6, 1996 | "TxFee": 0.2, 1997 | "IsActive": true, 1998 | "CoinType": "BITCOIN", 1999 | "BaseAddress": null, 2000 | "Notice": null 2001 | }, 2002 | { 2003 | "Currency": "SYNX", 2004 | "CurrencyLong": "Syndicate", 2005 | "MinConfirmation": 6, 2006 | "TxFee": 0.2, 2007 | "IsActive": true, 2008 | "CoinType": "BITCOIN", 2009 | "BaseAddress": null, 2010 | "Notice": null 2011 | }, 2012 | { 2013 | "Currency": "TRIG", 2014 | "CurrencyLong": "TRIG Token", 2015 | "MinConfirmation": 6, 2016 | "TxFee": 5, 2017 | "IsActive": true, 2018 | "CoinType": "COUNTERPARTY", 2019 | "BaseAddress": "1AeqgtHedfA2yVXH6GiKLS2JGkfWfgyTC6", 2020 | "Notice": null 2021 | }, 2022 | { 2023 | "Currency": "EBST", 2024 | "CurrencyLong": "eBoost", 2025 | "MinConfirmation": 2, 2026 | "TxFee": 0.1, 2027 | "IsActive": true, 2028 | "CoinType": "BITCOIN", 2029 | "BaseAddress": null, 2030 | "Notice": null 2031 | }, 2032 | { 2033 | "Currency": "VRM", 2034 | "CurrencyLong": "Verium", 2035 | "MinConfirmation": 30, 2036 | "TxFee": 0.4, 2037 | "IsActive": true, 2038 | "CoinType": "BITCOIN", 2039 | "BaseAddress": null, 2040 | "Notice": null 2041 | }, 2042 | { 2043 | "Currency": "XAUR", 2044 | "CurrencyLong": "Xaurum", 2045 | "MinConfirmation": 36, 2046 | "TxFee": 2.5, 2047 | "IsActive": true, 2048 | "CoinType": "ETH_CONTRACT", 2049 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2050 | "Notice": null 2051 | }, 2052 | { 2053 | "Currency": "SEQ", 2054 | "CurrencyLong": "Sequence", 2055 | "MinConfirmation": 6, 2056 | "TxFee": 0.2, 2057 | "IsActive": true, 2058 | "CoinType": "BITCOIN", 2059 | "BaseAddress": null, 2060 | "Notice": null 2061 | }, 2062 | { 2063 | "Currency": "SNGLS", 2064 | "CurrencyLong": "SingularDTV", 2065 | "MinConfirmation": 36, 2066 | "TxFee": 3.5, 2067 | "IsActive": true, 2068 | "CoinType": "ETH_CONTRACT", 2069 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2070 | "Notice": null 2071 | }, 2072 | { 2073 | "Currency": "REP", 2074 | "CurrencyLong": "Augur", 2075 | "MinConfirmation": 36, 2076 | "TxFee": 0.05, 2077 | "IsActive": true, 2078 | "CoinType": "ETH_CONTRACT", 2079 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2080 | "Notice": null 2081 | }, 2082 | { 2083 | "Currency": "SHIFT", 2084 | "CurrencyLong": "Shift", 2085 | "MinConfirmation": 77, 2086 | "TxFee": 0.01, 2087 | "IsActive": true, 2088 | "CoinType": "LISK", 2089 | "BaseAddress": "15128408768964966812S", 2090 | "Notice": null 2091 | }, 2092 | { 2093 | "Currency": "ARDR", 2094 | "CurrencyLong": "Ardor", 2095 | "MinConfirmation": 10, 2096 | "TxFee": 2, 2097 | "IsActive": true, 2098 | "CoinType": "NXT_ASSET", 2099 | "BaseAddress": "NXT-XK2L-Z7NK-VNKM-AZYVT", 2100 | "Notice": null 2101 | }, 2102 | { 2103 | "Currency": "XZC", 2104 | "CurrencyLong": "ZCoin", 2105 | "MinConfirmation": 6, 2106 | "TxFee": 0.02, 2107 | "IsActive": true, 2108 | "CoinType": "BITCOIN", 2109 | "BaseAddress": null, 2110 | "Notice": null 2111 | }, 2112 | { 2113 | "Currency": "NEO", 2114 | "CurrencyLong": "Neo", 2115 | "MinConfirmation": 10, 2116 | "TxFee": 0.025, 2117 | "IsActive": false, 2118 | "CoinType": "ANTSHARES", 2119 | "BaseAddress": null, 2120 | "Notice": "Automated Maintenance." 2121 | }, 2122 | { 2123 | "Currency": "ZEC", 2124 | "CurrencyLong": "ZCash", 2125 | "MinConfirmation": 20, 2126 | "TxFee": 0.005, 2127 | "IsActive": true, 2128 | "CoinType": "BITCOINEX", 2129 | "BaseAddress": "t1KVcK1PEFHRjzJTA3oeXA82tiUGj5V72Cb", 2130 | "Notice": null 2131 | }, 2132 | { 2133 | "Currency": "ZCL", 2134 | "CurrencyLong": "Zclassic", 2135 | "MinConfirmation": 30, 2136 | "TxFee": 0.002, 2137 | "IsActive": true, 2138 | "CoinType": "BITCOINEX", 2139 | "BaseAddress": null, 2140 | "Notice": null 2141 | }, 2142 | { 2143 | "Currency": "IOP", 2144 | "CurrencyLong": "Internet Of People", 2145 | "MinConfirmation": 6, 2146 | "TxFee": 0.2, 2147 | "IsActive": true, 2148 | "CoinType": "BITCOIN", 2149 | "BaseAddress": null, 2150 | "Notice": null 2151 | }, 2152 | { 2153 | "Currency": "DAR", 2154 | "CurrencyLong": "Darcrus", 2155 | "MinConfirmation": 20, 2156 | "TxFee": 0.1, 2157 | "IsActive": true, 2158 | "CoinType": "WAVES_ASSET", 2159 | "BaseAddress": "3P31zvGdh6ai6JK6zZ18TjYzJsa1B83YPoj", 2160 | "Notice": null 2161 | }, 2162 | { 2163 | "Currency": "GOLOS", 2164 | "CurrencyLong": "Golos", 2165 | "MinConfirmation": 20, 2166 | "TxFee": 0.01, 2167 | "IsActive": true, 2168 | "CoinType": "STEEM", 2169 | "BaseAddress": "bittrex", 2170 | "Notice": null 2171 | }, 2172 | { 2173 | "Currency": "GBG", 2174 | "CurrencyLong": "Gbg", 2175 | "MinConfirmation": 20, 2176 | "TxFee": 0.01, 2177 | "IsActive": true, 2178 | "CoinType": "STEEM", 2179 | "BaseAddress": "bittrex", 2180 | "Notice": null 2181 | }, 2182 | { 2183 | "Currency": "UBQ", 2184 | "CurrencyLong": "Ubiq", 2185 | "MinConfirmation": 80, 2186 | "TxFee": 0.01, 2187 | "IsActive": true, 2188 | "CoinType": "ETH", 2189 | "BaseAddress": "0xb3c4e9ca7c12a6277deb9eef2dece65953d1c864", 2190 | "Notice": null 2191 | }, 2192 | { 2193 | "Currency": "HKG", 2194 | "CurrencyLong": "HackerGold", 2195 | "MinConfirmation": 36, 2196 | "TxFee": 0.1, 2197 | "IsActive": true, 2198 | "CoinType": "ETH_CONTRACT", 2199 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2200 | "Notice": null 2201 | }, 2202 | { 2203 | "Currency": "KMD", 2204 | "CurrencyLong": "Komodo", 2205 | "MinConfirmation": 30, 2206 | "TxFee": 0.002, 2207 | "IsActive": true, 2208 | "CoinType": "BITCOINEX", 2209 | "BaseAddress": null, 2210 | "Notice": "" 2211 | }, 2212 | { 2213 | "Currency": "SIB", 2214 | "CurrencyLong": "Siberian Chervonets", 2215 | "MinConfirmation": 6, 2216 | "TxFee": 0.2, 2217 | "IsActive": true, 2218 | "CoinType": "BITCOIN", 2219 | "BaseAddress": null, 2220 | "Notice": null 2221 | }, 2222 | { 2223 | "Currency": "ION", 2224 | "CurrencyLong": "Ion", 2225 | "MinConfirmation": 6, 2226 | "TxFee": 0.2, 2227 | "IsActive": true, 2228 | "CoinType": "BITCOIN", 2229 | "BaseAddress": null, 2230 | "Notice": null 2231 | }, 2232 | { 2233 | "Currency": "LMC", 2234 | "CurrencyLong": "Lomocoin", 2235 | "MinConfirmation": 6, 2236 | "TxFee": 0.2, 2237 | "IsActive": true, 2238 | "CoinType": "BITCOIN", 2239 | "BaseAddress": null, 2240 | "Notice": null 2241 | }, 2242 | { 2243 | "Currency": "QWARK", 2244 | "CurrencyLong": "Qwark", 2245 | "MinConfirmation": 36, 2246 | "TxFee": 0.1, 2247 | "IsActive": true, 2248 | "CoinType": "ETH_CONTRACT", 2249 | "BaseAddress": "0xb3c4e9ca7c12a6277deb9eef2dece65953d1c864", 2250 | "Notice": null 2251 | }, 2252 | { 2253 | "Currency": "CRW", 2254 | "CurrencyLong": "Crown", 2255 | "MinConfirmation": 10, 2256 | "TxFee": 0.02, 2257 | "IsActive": true, 2258 | "CoinType": "BITCOIN", 2259 | "BaseAddress": null, 2260 | "Notice": null 2261 | }, 2262 | { 2263 | "Currency": "SWT", 2264 | "CurrencyLong": "Swarm City Token", 2265 | "MinConfirmation": 36, 2266 | "TxFee": 0.7, 2267 | "IsActive": true, 2268 | "CoinType": "ETH_CONTRACT", 2269 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2270 | "Notice": null 2271 | }, 2272 | { 2273 | "Currency": "TIME", 2274 | "CurrencyLong": "Chronobank Time", 2275 | "MinConfirmation": 36, 2276 | "TxFee": 0.2, 2277 | "IsActive": true, 2278 | "CoinType": "ETH_CONTRACT", 2279 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2280 | "Notice": null 2281 | }, 2282 | { 2283 | "Currency": "MLN", 2284 | "CurrencyLong": "Melon", 2285 | "MinConfirmation": 36, 2286 | "TxFee": 0.01, 2287 | "IsActive": true, 2288 | "CoinType": "ETH_CONTRACT", 2289 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2290 | "Notice": null 2291 | }, 2292 | { 2293 | "Currency": "TKS", 2294 | "CurrencyLong": "Tokes", 2295 | "MinConfirmation": 20, 2296 | "TxFee": 0.1, 2297 | "IsActive": true, 2298 | "CoinType": "WAVES_ASSET", 2299 | "BaseAddress": "3P31zvGdh6ai6JK6zZ18TjYzJsa1B83YPoj", 2300 | "Notice": null 2301 | }, 2302 | { 2303 | "Currency": "ARK", 2304 | "CurrencyLong": "Ark", 2305 | "MinConfirmation": 51, 2306 | "TxFee": 0.1, 2307 | "IsActive": true, 2308 | "CoinType": "LISK", 2309 | "BaseAddress": "AUexKjGtgsSpVzPLs6jNMM6vJ6znEVTQWK", 2310 | "Notice": null 2311 | }, 2312 | { 2313 | "Currency": "DYN", 2314 | "CurrencyLong": "Dynamic", 2315 | "MinConfirmation": 10, 2316 | "TxFee": 0.02, 2317 | "IsActive": false, 2318 | "CoinType": "BITCOIN", 2319 | "BaseAddress": null, 2320 | "Notice": "Wallet Offline - Dev requested" 2321 | }, 2322 | { 2323 | "Currency": "MUSIC", 2324 | "CurrencyLong": "Musicoin", 2325 | "MinConfirmation": 36, 2326 | "TxFee": 0.01, 2327 | "IsActive": true, 2328 | "CoinType": "ETH", 2329 | "BaseAddress": "0xea62a60b127efd524b6e19791bcb374a49302c71", 2330 | "Notice": null 2331 | }, 2332 | { 2333 | "Currency": "DTB", 2334 | "CurrencyLong": "Databits", 2335 | "MinConfirmation": 6, 2336 | "TxFee": 5, 2337 | "IsActive": true, 2338 | "CoinType": "COUNTERPARTY", 2339 | "BaseAddress": "1AeqgtHedfA2yVXH6GiKLS2JGkfWfgyTC6", 2340 | "Notice": null 2341 | }, 2342 | { 2343 | "Currency": "INCNT", 2344 | "CurrencyLong": "Incent", 2345 | "MinConfirmation": 20, 2346 | "TxFee": 0.1, 2347 | "IsActive": true, 2348 | "CoinType": "WAVES_ASSET", 2349 | "BaseAddress": "3P31zvGdh6ai6JK6zZ18TjYzJsa1B83YPoj", 2350 | "Notice": null 2351 | }, 2352 | { 2353 | "Currency": "GBYTE", 2354 | "CurrencyLong": "Bytes", 2355 | "MinConfirmation": 1, 2356 | "TxFee": 0.002, 2357 | "IsActive": true, 2358 | "CoinType": "BYTEBALL", 2359 | "BaseAddress": null, 2360 | "Notice": null 2361 | }, 2362 | { 2363 | "Currency": "GNT", 2364 | "CurrencyLong": "Golem", 2365 | "MinConfirmation": 36, 2366 | "TxFee": 4.5, 2367 | "IsActive": true, 2368 | "CoinType": "ETH_CONTRACT", 2369 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2370 | "Notice": null 2371 | }, 2372 | { 2373 | "Currency": "NXC", 2374 | "CurrencyLong": "Nexium", 2375 | "MinConfirmation": 36, 2376 | "TxFee": 1.8, 2377 | "IsActive": true, 2378 | "CoinType": "ETH_CONTRACT", 2379 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2380 | "Notice": null 2381 | }, 2382 | { 2383 | "Currency": "EDG", 2384 | "CurrencyLong": "Edgeless", 2385 | "MinConfirmation": 36, 2386 | "TxFee": 1, 2387 | "IsActive": true, 2388 | "CoinType": "ETH_CONTRACT", 2389 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2390 | "Notice": null 2391 | }, 2392 | { 2393 | "Currency": "LGD", 2394 | "CurrencyLong": "Legends", 2395 | "MinConfirmation": 36, 2396 | "TxFee": 0.95, 2397 | "IsActive": true, 2398 | "CoinType": "ETH_CONTRACT", 2399 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2400 | "Notice": null 2401 | }, 2402 | { 2403 | "Currency": "TRST", 2404 | "CurrencyLong": "Trustcoin", 2405 | "MinConfirmation": 36, 2406 | "TxFee": 1.75, 2407 | "IsActive": true, 2408 | "CoinType": "ETH_CONTRACT", 2409 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2410 | "Notice": null 2411 | }, 2412 | { 2413 | "Currency": "WINGS", 2414 | "CurrencyLong": "Wings DAO", 2415 | "MinConfirmation": 36, 2416 | "TxFee": 2, 2417 | "IsActive": true, 2418 | "CoinType": "ETH_CONTRACT", 2419 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2420 | "Notice": null 2421 | }, 2422 | { 2423 | "Currency": "RLC", 2424 | "CurrencyLong": "iEx.ec", 2425 | "MinConfirmation": 36, 2426 | "TxFee": 0.8, 2427 | "IsActive": true, 2428 | "CoinType": "ETH_CONTRACT", 2429 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2430 | "Notice": null 2431 | }, 2432 | { 2433 | "Currency": "GNO", 2434 | "CurrencyLong": "Gnosis", 2435 | "MinConfirmation": 36, 2436 | "TxFee": 0.01, 2437 | "IsActive": true, 2438 | "CoinType": "ETH_CONTRACT", 2439 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2440 | "Notice": null 2441 | }, 2442 | { 2443 | "Currency": "GUP", 2444 | "CurrencyLong": "Guppy", 2445 | "MinConfirmation": 36, 2446 | "TxFee": 3, 2447 | "IsActive": true, 2448 | "CoinType": "ETH_CONTRACT", 2449 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2450 | "Notice": null 2451 | }, 2452 | { 2453 | "Currency": "LUN", 2454 | "CurrencyLong": "Lunyr", 2455 | "MinConfirmation": 36, 2456 | "TxFee": 0.1, 2457 | "IsActive": true, 2458 | "CoinType": "ETH_CONTRACT", 2459 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2460 | "Notice": null 2461 | }, 2462 | { 2463 | "Currency": "APX", 2464 | "CurrencyLong": "Apx", 2465 | "MinConfirmation": 36, 2466 | "TxFee": 0.1, 2467 | "IsActive": true, 2468 | "CoinType": "ETH_CONTRACT", 2469 | "BaseAddress": "0xb3c4e9ca7c12a6277deb9eef2dece65953d1c864", 2470 | "Notice": null 2471 | }, 2472 | { 2473 | "Currency": "TKN", 2474 | "CurrencyLong": "TokenCard", 2475 | "MinConfirmation": 36, 2476 | "TxFee": 0.4, 2477 | "IsActive": true, 2478 | "CoinType": "ETH_CONTRACT", 2479 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2480 | "Notice": null 2481 | }, 2482 | { 2483 | "Currency": "HMQ", 2484 | "CurrencyLong": "Humaniq", 2485 | "MinConfirmation": 36, 2486 | "TxFee": 11, 2487 | "IsActive": true, 2488 | "CoinType": "ETH_CONTRACT", 2489 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2490 | "Notice": null 2491 | }, 2492 | { 2493 | "Currency": "ANT", 2494 | "CurrencyLong": "Aragon", 2495 | "MinConfirmation": 36, 2496 | "TxFee": 0.35, 2497 | "IsActive": true, 2498 | "CoinType": "ETH_CONTRACT", 2499 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2500 | "Notice": null 2501 | }, 2502 | { 2503 | "Currency": "ZEN", 2504 | "CurrencyLong": "ZenCash", 2505 | "MinConfirmation": 30, 2506 | "TxFee": 0.002, 2507 | "IsActive": true, 2508 | "CoinType": "BITCOINEX", 2509 | "BaseAddress": "znijtPB2zXxNG8qKnKuZprH9SbYhvdAzn5P", 2510 | "Notice": null 2511 | }, 2512 | { 2513 | "Currency": "SC", 2514 | "CurrencyLong": "Siacoin", 2515 | "MinConfirmation": 6, 2516 | "TxFee": 0.1, 2517 | "IsActive": true, 2518 | "CoinType": "SIA", 2519 | "BaseAddress": null, 2520 | "Notice": null 2521 | }, 2522 | { 2523 | "Currency": "BAT", 2524 | "CurrencyLong": "Basic Attention Token", 2525 | "MinConfirmation": 36, 2526 | "TxFee": 6, 2527 | "IsActive": true, 2528 | "CoinType": "ETH_CONTRACT", 2529 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2530 | "Notice": null 2531 | }, 2532 | { 2533 | "Currency": "1ST", 2534 | "CurrencyLong": "Firstblood", 2535 | "MinConfirmation": 36, 2536 | "TxFee": 1.7, 2537 | "IsActive": true, 2538 | "CoinType": "ETH_CONTRACT", 2539 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2540 | "Notice": null 2541 | }, 2542 | { 2543 | "Currency": "QRL", 2544 | "CurrencyLong": "Quantum Resistant Ledger", 2545 | "MinConfirmation": 36, 2546 | "TxFee": 0.65, 2547 | "IsActive": true, 2548 | "CoinType": "ETH_CONTRACT", 2549 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2550 | "Notice": null 2551 | }, 2552 | { 2553 | "Currency": "CRB", 2554 | "CurrencyLong": "CreditBit", 2555 | "MinConfirmation": 36, 2556 | "TxFee": 2, 2557 | "IsActive": true, 2558 | "CoinType": "ETH_CONTRACT", 2559 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2560 | "Notice": null 2561 | }, 2562 | { 2563 | "Currency": "TROLL", 2564 | "CurrencyLong": "Bittrex Test Currency", 2565 | "MinConfirmation": 1, 2566 | "TxFee": 0.001, 2567 | "IsActive": false, 2568 | "CoinType": "IOTA", 2569 | "BaseAddress": null, 2570 | "Notice": "Automated Maintenance." 2571 | }, 2572 | { 2573 | "Currency": "PTOY", 2574 | "CurrencyLong": "Patientory", 2575 | "MinConfirmation": 36, 2576 | "TxFee": 3, 2577 | "IsActive": true, 2578 | "CoinType": "ETH_CONTRACT", 2579 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2580 | "Notice": null 2581 | }, 2582 | { 2583 | "Currency": "MYST", 2584 | "CurrencyLong": "Mysterium", 2585 | "MinConfirmation": 36, 2586 | "TxFee": 1.4, 2587 | "IsActive": true, 2588 | "CoinType": "ETH_CONTRACT", 2589 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2590 | "Notice": null 2591 | }, 2592 | { 2593 | "Currency": "CFI", 2594 | "CurrencyLong": "Cofound.it", 2595 | "MinConfirmation": 36, 2596 | "TxFee": 9, 2597 | "IsActive": true, 2598 | "CoinType": "ETH_CONTRACT", 2599 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2600 | "Notice": null 2601 | }, 2602 | { 2603 | "Currency": "BNT", 2604 | "CurrencyLong": "Bancor", 2605 | "MinConfirmation": 36, 2606 | "TxFee": 0.25, 2607 | "IsActive": true, 2608 | "CoinType": "ETH_CONTRACT", 2609 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2610 | "Notice": null 2611 | }, 2612 | { 2613 | "Currency": "NMR", 2614 | "CurrencyLong": "Numeraire", 2615 | "MinConfirmation": 36, 2616 | "TxFee": 0.05, 2617 | "IsActive": true, 2618 | "CoinType": "ETH_CONTRACT", 2619 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2620 | "Notice": null 2621 | }, 2622 | { 2623 | "Currency": "SNT", 2624 | "CurrencyLong": "Status Network Token", 2625 | "MinConfirmation": 36, 2626 | "TxFee": 15, 2627 | "IsActive": true, 2628 | "CoinType": "ETH_CONTRACT", 2629 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2630 | "Notice": null 2631 | }, 2632 | { 2633 | "Currency": "DCT", 2634 | "CurrencyLong": "DECENT", 2635 | "MinConfirmation": 2, 2636 | "TxFee": 0.1, 2637 | "IsActive": true, 2638 | "CoinType": "BITSHAREX", 2639 | "BaseAddress": "bittrex", 2640 | "Notice": null 2641 | }, 2642 | { 2643 | "Currency": "XEL", 2644 | "CurrencyLong": "Elastic", 2645 | "MinConfirmation": 8, 2646 | "TxFee": 0.2, 2647 | "IsActive": true, 2648 | "CoinType": "NXT", 2649 | "BaseAddress": "XEL-AQVJ-PPCK-QJYJ-8T65V", 2650 | "Notice": null 2651 | }, 2652 | { 2653 | "Currency": "MCO", 2654 | "CurrencyLong": "Monaco", 2655 | "MinConfirmation": 36, 2656 | "TxFee": 0.05, 2657 | "IsActive": true, 2658 | "CoinType": "ETH_CONTRACT", 2659 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2660 | "Notice": null 2661 | }, 2662 | { 2663 | "Currency": "ADT", 2664 | "CurrencyLong": "adToken", 2665 | "MinConfirmation": 36, 2666 | "TxFee": 31, 2667 | "IsActive": true, 2668 | "CoinType": "ETH_CONTRACT", 2669 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2670 | "Notice": null 2671 | }, 2672 | { 2673 | "Currency": "FUN", 2674 | "CurrencyLong": "FunFair", 2675 | "MinConfirmation": 36, 2676 | "TxFee": 26, 2677 | "IsActive": true, 2678 | "CoinType": "ETH_CONTRACT", 2679 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2680 | "Notice": null 2681 | }, 2682 | { 2683 | "Currency": "PAY", 2684 | "CurrencyLong": "TenX Pay Token", 2685 | "MinConfirmation": 36, 2686 | "TxFee": 0.55, 2687 | "IsActive": true, 2688 | "CoinType": "ETH_CONTRACT", 2689 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2690 | "Notice": null 2691 | }, 2692 | { 2693 | "Currency": "MTL", 2694 | "CurrencyLong": "METAL", 2695 | "MinConfirmation": 36, 2696 | "TxFee": 0.1, 2697 | "IsActive": true, 2698 | "CoinType": "ETH_CONTRACT", 2699 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2700 | "Notice": null 2701 | }, 2702 | { 2703 | "Currency": "STORJ", 2704 | "CurrencyLong": "STORJ", 2705 | "MinConfirmation": 36, 2706 | "TxFee": 0.85, 2707 | "IsActive": true, 2708 | "CoinType": "ETH_CONTRACT", 2709 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2710 | "Notice": null 2711 | }, 2712 | { 2713 | "Currency": "ADX", 2714 | "CurrencyLong": "AdEx", 2715 | "MinConfirmation": 36, 2716 | "TxFee": 0.5, 2717 | "IsActive": true, 2718 | "CoinType": "ETH_CONTRACT", 2719 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2720 | "Notice": null 2721 | }, 2722 | { 2723 | "Currency": "OMG", 2724 | "CurrencyLong": "OmiseGO", 2725 | "MinConfirmation": 36, 2726 | "TxFee": 0.1, 2727 | "IsActive": true, 2728 | "CoinType": "ETH_CONTRACT", 2729 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2730 | "Notice": null 2731 | }, 2732 | { 2733 | "Currency": "CVC", 2734 | "CurrencyLong": "Civic", 2735 | "MinConfirmation": 36, 2736 | "TxFee": 3, 2737 | "IsActive": true, 2738 | "CoinType": "ETH_CONTRACT", 2739 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2740 | "Notice": null 2741 | }, 2742 | { 2743 | "Currency": "PART", 2744 | "CurrencyLong": "Particl", 2745 | "MinConfirmation": 10, 2746 | "TxFee": 0.1, 2747 | "IsActive": true, 2748 | "CoinType": "BITCOIN", 2749 | "BaseAddress": null, 2750 | "Notice": null 2751 | }, 2752 | { 2753 | "Currency": "QTUM", 2754 | "CurrencyLong": "Qtum", 2755 | "MinConfirmation": 20, 2756 | "TxFee": 0.01, 2757 | "IsActive": true, 2758 | "CoinType": "BITCOIN", 2759 | "BaseAddress": null, 2760 | "Notice": null 2761 | }, 2762 | { 2763 | "Currency": "BCC", 2764 | "CurrencyLong": "Bitcoin Cash", 2765 | "MinConfirmation": 6, 2766 | "TxFee": 0.001, 2767 | "IsActive": true, 2768 | "CoinType": "BITCOIN", 2769 | "BaseAddress": "1MDyWzZjhtM8h1vpDzoyi3Pe2KALsyE7FM", 2770 | "Notice": null 2771 | }, 2772 | { 2773 | "Currency": "DNT", 2774 | "CurrencyLong": "district0x", 2775 | "MinConfirmation": 36, 2776 | "TxFee": 10, 2777 | "IsActive": true, 2778 | "CoinType": "ETH_CONTRACT", 2779 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2780 | "Notice": null 2781 | }, 2782 | { 2783 | "Currency": "ADA", 2784 | "CurrencyLong": "Ada", 2785 | "MinConfirmation": 20, 2786 | "TxFee": 0.2, 2787 | "IsActive": true, 2788 | "CoinType": "ADA", 2789 | "BaseAddress": null, 2790 | "Notice": null 2791 | }, 2792 | { 2793 | "Currency": "MANA", 2794 | "CurrencyLong": "Decentraland", 2795 | "MinConfirmation": 36, 2796 | "TxFee": 49, 2797 | "IsActive": true, 2798 | "CoinType": "ETH_CONTRACT", 2799 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2800 | "Notice": null 2801 | }, 2802 | { 2803 | "Currency": "SALT", 2804 | "CurrencyLong": "Salt", 2805 | "MinConfirmation": 36, 2806 | "TxFee": 0.15, 2807 | "IsActive": true, 2808 | "CoinType": "ETH_CONTRACT", 2809 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2810 | "Notice": null 2811 | }, 2812 | { 2813 | "Currency": "TIX", 2814 | "CurrencyLong": "Blocktix", 2815 | "MinConfirmation": 36, 2816 | "TxFee": 2, 2817 | "IsActive": true, 2818 | "CoinType": "ETH_CONTRACT", 2819 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2820 | "Notice": null 2821 | }, 2822 | { 2823 | "Currency": "RCN", 2824 | "CurrencyLong": "Ripio Credit Network", 2825 | "MinConfirmation": 36, 2826 | "TxFee": 2, 2827 | "IsActive": true, 2828 | "CoinType": "ETH_CONTRACT", 2829 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2830 | "Notice": null 2831 | }, 2832 | { 2833 | "Currency": "VIB", 2834 | "CurrencyLong": "Viberate", 2835 | "MinConfirmation": 36, 2836 | "TxFee": 2, 2837 | "IsActive": true, 2838 | "CoinType": "ETH_CONTRACT", 2839 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2840 | "Notice": null 2841 | }, 2842 | { 2843 | "Currency": "MER", 2844 | "CurrencyLong": "Mercury", 2845 | "MinConfirmation": 20, 2846 | "TxFee": 0.1, 2847 | "IsActive": true, 2848 | "CoinType": "WAVES_ASSET", 2849 | "BaseAddress": "3P31zvGdh6ai6JK6zZ18TjYzJsa1B83YPoj", 2850 | "Notice": null 2851 | }, 2852 | { 2853 | "Currency": "POWR", 2854 | "CurrencyLong": "PowerLedger", 2855 | "MinConfirmation": 36, 2856 | "TxFee": 2, 2857 | "IsActive": true, 2858 | "CoinType": "ETH_CONTRACT", 2859 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2860 | "Notice": null 2861 | }, 2862 | { 2863 | "Currency": "BTG", 2864 | "CurrencyLong": "Bitcoin Gold", 2865 | "MinConfirmation": 10, 2866 | "TxFee": 0.001, 2867 | "IsActive": true, 2868 | "CoinType": "BITCOIN", 2869 | "BaseAddress": "GQNvdm4t6denxnZvGmM4Qvm6g9qH6iiCHD", 2870 | "Notice": null 2871 | }, 2872 | { 2873 | "Currency": "ENG", 2874 | "CurrencyLong": "Enigma", 2875 | "MinConfirmation": 36, 2876 | "TxFee": 1, 2877 | "IsActive": true, 2878 | "CoinType": "ETH_CONTRACT", 2879 | "BaseAddress": "0xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98", 2880 | "Notice": null 2881 | } 2882 | ] 2883 | --------------------------------------------------------------------------------