1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/app/scripts/lib/account-tracker.js

128 lines
3.2 KiB
JavaScript
Raw Normal View History

/* Account Tracker
2017-01-04 23:07:08 +01:00
*
* This module is responsible for tracking any number of accounts
* and caching their current balances & transaction counts.
*
* It also tracks transaction hashes, and checks their inclusion status
* on each new block.
*/
2017-01-04 22:56:21 +01:00
const async = require('async')
const EthQuery = require('eth-query')
const ObservableStore = require('obs-store')
const EventEmitter = require('events').EventEmitter
2017-04-27 06:05:45 +02:00
function noop () {}
2017-01-04 22:56:21 +01:00
class AccountTracker extends EventEmitter {
2017-01-04 22:56:21 +01:00
constructor (opts = {}) {
super()
const initState = {
accounts: {},
currentBlockGasLimit: '',
}
this.store = new ObservableStore(initState)
this._provider = opts.provider
this._query = new EthQuery(this._provider)
this._blockTracker = opts.blockTracker
// subscribe to latest block
this._blockTracker.on('block', this._updateForBlock.bind(this))
2017-02-03 21:35:01 +01:00
// blockTracker.currentBlock may be null
this._currentBlockNumber = this._blockTracker.currentBlock
2017-01-04 22:56:21 +01:00
}
//
// public
//
2017-01-04 22:56:21 +01:00
syncWithAddresses (addresses) {
const accounts = this.store.getState().accounts
const locals = Object.keys(accounts)
const toAdd = []
addresses.forEach((upstream) => {
if (!locals.includes(upstream)) {
toAdd.push(upstream)
}
})
const toRemove = []
locals.forEach((local) => {
if (!addresses.includes(local)) {
toRemove.push(local)
}
})
toAdd.forEach(upstream => this.addAccount(upstream))
2017-10-19 21:33:43 +02:00
toRemove.forEach(local => this.removeAccount(local))
this._updateAccounts()
}
addAccount (address) {
const accounts = this.store.getState().accounts
accounts[address] = {}
this.store.updateState({ accounts })
if (!this._currentBlockNumber) return
this._updateAccount(address)
}
2017-01-04 22:56:21 +01:00
removeAccount (address) {
const accounts = this.store.getState().accounts
delete accounts[address]
this.store.updateState({ accounts })
}
2017-01-04 22:56:21 +01:00
//
// private
//
_updateForBlock (block) {
this._currentBlockNumber = block.number
const currentBlockGasLimit = block.gasLimit
2017-09-22 22:33:53 +02:00
this.store.updateState({ currentBlockGasLimit })
async.parallel([
this._updateAccounts.bind(this),
], (err) => {
if (err) return console.error(err)
this.emit('block', this.store.getState())
})
}
2017-01-04 22:56:21 +01:00
2017-02-03 07:32:00 +01:00
_updateAccounts (cb = noop) {
const accounts = this.store.getState().accounts
const addresses = Object.keys(accounts)
async.each(addresses, this._updateAccount.bind(this), cb)
}
2017-01-04 22:56:21 +01:00
2017-02-03 07:32:00 +01:00
_updateAccount (address, cb = noop) {
this._getAccount(address, (err, result) => {
if (err) return cb(err)
result.address = address
const accounts = this.store.getState().accounts
// only populate if the entry is still present
if (accounts[address]) {
accounts[address] = result
this.store.updateState({ accounts })
}
cb(null, result)
})
}
2017-01-04 22:56:21 +01:00
2017-02-03 07:32:00 +01:00
_getAccount (address, cb = noop) {
const query = this._query
async.parallel({
balance: query.getBalance.bind(query, address),
nonce: query.getTransactionCount.bind(query, address),
code: query.getCode.bind(query, address),
}, cb)
}
2017-01-04 22:56:21 +01:00
}
module.exports = AccountTracker