2fbd860f51
Signed-off-by: AlienTornadosaurusHex <>
78 lines
2.1 KiB
JavaScript
78 lines
2.1 KiB
JavaScript
import { uniqBy } from 'lodash'
|
|
|
|
import networkConfig, { enabledChains, chainsWithEncryptedNotes } from '../networkConfig'
|
|
|
|
import { loadCachedEvents, save } from './helpers'
|
|
|
|
const EVENTS_PATH = './static/events/'
|
|
const EVENTS = ['Deposit', 'Withdrawal']
|
|
|
|
function updateEncrypted(netId) {
|
|
try {
|
|
const file = `${EVENTS_PATH}encrypted_notes_${netId}.json`
|
|
save(file)
|
|
} catch {}
|
|
}
|
|
|
|
async function updateCommon(netId) {
|
|
const { nativeCurrency, tokens } = networkConfig[`netId${netId}`]
|
|
|
|
console.log(Object.keys(tokens[nativeCurrency].instanceAddress))
|
|
|
|
for await (const type of EVENTS) {
|
|
for await (const instance of Object.keys(tokens[nativeCurrency].instanceAddress)) {
|
|
console.warn('instance', instance)
|
|
|
|
const filename = `${type.toLowerCase()}s_${netId}_${nativeCurrency}_${instance}.json`
|
|
|
|
const isSaved = save(`${EVENTS_PATH}${filename}`)
|
|
|
|
if (isSaved) {
|
|
try {
|
|
testCommon(netId, type, filename)
|
|
} catch (err) {
|
|
console.error(err.message)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
function testCommon(netId, type, filename) {
|
|
const { deployedBlock } = networkConfig[`netId${netId}`]
|
|
|
|
const cachedEvents = loadCachedEvents({
|
|
name: filename,
|
|
directory: EVENTS_PATH,
|
|
deployedBlock
|
|
})
|
|
|
|
console.log('cachedEvents', cachedEvents.events.length, type)
|
|
|
|
let events = cachedEvents.events
|
|
|
|
if (type === 'Withdrawal') {
|
|
events = uniqBy(cachedEvents.events, 'nullifierHash')
|
|
} else if (type === 'Deposit') {
|
|
events = cachedEvents.events.filter((e, index) => Number(e.leafIndex) === index)
|
|
}
|
|
|
|
if (events.length !== cachedEvents.events.length) {
|
|
console.error('events.length', events.length)
|
|
console.error('cachedEvents.events.length', cachedEvents.events.length)
|
|
throw new Error(`Duplicates was detected in ${filename} (${events.length - cachedEvents.events.length})`)
|
|
}
|
|
}
|
|
|
|
async function main() {
|
|
for (let i = 0; i < enabledChains.length; i++) {
|
|
const netId = enabledChains[i]
|
|
|
|
if (netId === chainsWithEncryptedNotes[i]) updateEncrypted(netId)
|
|
|
|
await updateCommon(netId)
|
|
}
|
|
}
|
|
|
|
main()
|