aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/nonce-tracker.js
blob: 6e9d094bc8f55310b73c2c3e0319adbb1ea0cf3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
const EthQuery = require('ethjs-query')

class NonceTracker {

  constructor({ blockTracker, provider, getPendingTransactions }) {
    this.blockTracker = blockTracker
    this.ethQuery = new EthQuery(provider)
    this.getPendingTransactions = getPendingTransactions
    this.lockMap = {}
  }

  // releaseLock must be called
  // releaseLock must be called after adding signed tx to pending transactions (or discarding)
  async getNonceLock(address) {
    // await lock free
    await this.lockMap[address]
    // take lock
    const releaseLock = this._takeLock(address)
    // calculate next nonce
    const currentBlock = await this._getCurrentBlock()
    const blockNumber = currentBlock.number
    const pendingTransactions = this.getPendingTransactions(address)
    const baseCount = await this.ethQuery.getTransactionCount(address, blockNumber)
    const nextNonce = baseCount + pendingTransactions
    // return next nonce and release cb
    return { nextNonce, releaseLock }
  }

  async _getCurrentBlock() {
    const currentBlock = this.blockTracker.getCurrentBlock()
    if (currentBlock) return currentBlock
    return await Promise((reject, resolve) => {
      this.blockTracker.once('latest', resolve)
    })
  }

  _takeLock(lockId) {
    let releaseLock = null
    // create and store lock
    const lock = new Promise((reject, resolve) => { releaseLock = resolve })
    this.lockMap[lockId] = lock
    // setup lock teardown
    lock.then(() => delete this.lockMap[lockId])
    return releaseLock
  }

}

module.exports = NonceTracker