forked from saturn-network/assets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
46 lines (40 loc) · 1.04 KB
/
test.js
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
'use strict';
const _ = require('lodash')
function ensureCorrectAddressFormat(addy) {
if (addy.length !== 42) {
throw new Error(`Wrong address format for "${addy}"`)
}
if (addy != addy.toLowerCase()) {
throw new Error(`All addresses must be lowercase. Fix ${addy}`)
}
}
function findDuplicate(arr) {
let hm = {}
for (let key of arr) {
if (!hm[key]) {
hm[key] = true
} else {
return key
}
}
}
function ensureNoDuplicates(arr) {
let allAddresses = _.map(arr, 'address')
_.map(allAddresses, x => ensureCorrectAddressFormat(x))
let lowerCaseAddys = _.map(allAddresses, x => x.toLowerCase())
let unique = _.uniq(lowerCaseAddys)
if (unique.length !== lowerCaseAddys.length) {
throw new Error(`Duplicates detected! Check ${findDuplicate(lowerCaseAddys)}`)
}
}
try {
let eth = require('./eth/tokens.json')
let etc = require('./etc/tokens.json')
console.log('asset.json is valid!')
ensureNoDuplicates(eth)
ensureNoDuplicates(etc)
process.exit(0)
} catch(e) {
console.error(e)
process.exit(1)
}