aboutsummaryrefslogtreecommitdiffstats
path: root/ui/lib/contract-namer.js
blob: c99d44de6d31d990ce162c1d3ec787ca0eaa1022 (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
/* CONTRACT NAMER
 *
 * Takes an address,
 * Returns a nicname if we have one stored,
 * otherwise returns null.
 */

// Nickname keys must be stored in lower case.
const nicknames = {}

module.exports = function(addr, identities = {}) {

  const address = addr.toLowerCase()
  const ids = hashFromIdentities(identities)

  return addrFromHash(address, ids) || addrFromHash(address, nicknames)
}

function hashFromIdentities(identities) {
  const result = {}
  for (let key in identities) {
    result[key] = identities[key].name
  }
  return result
}

function addrFromHash(addr, hash) {
  const address = addr.toLowerCase()
  return hash[address] || null
}