aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/controllers/detect-tokens.js
diff options
context:
space:
mode:
authorEsteban MIno <efmino@uc.cl>2018-06-28 04:29:24 +0800
committerEsteban MIno <efmino@uc.cl>2018-06-28 04:29:24 +0800
commitbfac9c2c2dfd0c5f55cb794214791cf78cca75c0 (patch)
tree430b74e410d063a9211ca8a1440e237f885be66c /app/scripts/controllers/detect-tokens.js
parent60feeb393be5d84679dd7b94dba58540ffa166bd (diff)
downloadtangerine-wallet-browser-bfac9c2c2dfd0c5f55cb794214791cf78cca75c0.tar
tangerine-wallet-browser-bfac9c2c2dfd0c5f55cb794214791cf78cca75c0.tar.gz
tangerine-wallet-browser-bfac9c2c2dfd0c5f55cb794214791cf78cca75c0.tar.bz2
tangerine-wallet-browser-bfac9c2c2dfd0c5f55cb794214791cf78cca75c0.tar.lz
tangerine-wallet-browser-bfac9c2c2dfd0c5f55cb794214791cf78cca75c0.tar.xz
tangerine-wallet-browser-bfac9c2c2dfd0c5f55cb794214791cf78cca75c0.tar.zst
tangerine-wallet-browser-bfac9c2c2dfd0c5f55cb794214791cf78cca75c0.zip
detect tokens polling
Diffstat (limited to 'app/scripts/controllers/detect-tokens.js')
-rw-r--r--app/scripts/controllers/detect-tokens.js97
1 files changed, 97 insertions, 0 deletions
diff --git a/app/scripts/controllers/detect-tokens.js b/app/scripts/controllers/detect-tokens.js
new file mode 100644
index 000000000..a7ddace19
--- /dev/null
+++ b/app/scripts/controllers/detect-tokens.js
@@ -0,0 +1,97 @@
+const ObservableStore = require('obs-store')
+const { warn } = require('loglevel')
+const contracts = require('eth-contract-metadata')
+const {
+ ROPSTEN,
+ RINKEBY,
+ KOVAN,
+ MAINNET,
+ OCALHOST,
+ } = require('./network/enums')
+
+// By default, poll every 3 minutes
+const DEFAULT_INTERVAL = 180 * 1000
+
+/**
+ * A controller that polls for token exchange
+ * rates based on a user's current token list
+ */
+class DetectTokensController {
+ /**
+ * Creates a DetectTokensController
+ *
+ * @param {Object} [config] - Options to configure controller
+ */
+ constructor ({ interval = DEFAULT_INTERVAL, preferences, network } = {}) {
+ this.preferences = preferences
+ this.interval = interval
+ this.network = network
+ }
+
+ /**
+ * For each token in eth-contract=metada, find check selectedAddress balance.
+ *
+ */
+ async exploreNewTokens () {
+ if (!this.isActive) { return }
+ if (this._network.getProviderConfig().type !== MAINNET) { return }
+ var tokens = this._preferences.store.getState().tokens
+ let detectedTokenAddress, token
+ for (const address in contracts) {
+ const contract = contracts[address]
+ if (contract.erc20 && !(address in tokens)) {
+ detectedTokenAddress = await this.fetchContractAccountBalance(address)
+ if (detectedTokenAddress) {
+ token = contracts[detectedTokenAddress]
+ this._preferences.addToken(detectedTokenAddress, token['symbol'], token['decimals'])
+ }
+ }
+ // etherscan restriction, 5 request/second, lazy scan
+ setTimeout(() => {}, 200)
+ }
+ }
+
+ /**
+ * Find if selectedAddress has tokens with contract in contractAddress.
+ *
+ * @param {string} contractAddress Hex address of the token contract to explore.
+ * @returns {string} Contract address to be added to tokens.
+ *
+ */
+ async fetchContractAccountBalance (contractAddress) {
+ const address = this._preferences.store.getState().selectedAddress
+ const response = await fetch(`https://api.etherscan.io/api?module=account&action=tokenbalance&contractaddress=${contractAddress}&address=${address}&tag=latest&apikey=NCKS6GTY41KPHWRJB62ES1MDNRBIT174PV`)
+ const parsedResponse = await response.json()
+ if (parsedResponse.result !== '0') {
+ return contractAddress
+ }
+ return null
+ }
+
+ /**
+ * @type {Number}
+ */
+ set interval (interval) {
+ this._handle && clearInterval(this._handle)
+ if (!interval) { return }
+ this._handle = setInterval(() => { this.exploreNewTokens() }, interval)
+ }
+
+ /**
+ * @type {Object}
+ */
+ set preferences (preferences) {
+ if (!preferences) { return }
+ this._preferences = preferences
+ }
+
+ /**
+ * @type {Object}
+ */
+ set network (network) {
+ if (!network) { return }
+ this._network = network
+ }
+}
+
+module.exports = DetectTokensController