Use Subgraph & Batched Events #2

Closed
tornadocontrib wants to merge 8 commits from tornadocontrib/nova-ui:events into master
2 changed files with 16 additions and 18 deletions
Showing only changes of commit 6447563ea0 - Show all commits

@ -141,25 +141,23 @@ const getNullifiers = async (blockFrom) => {
blockFrom = lastSyncBlock + numbers.ONE blockFrom = lastSyncBlock + numbers.ONE
} }
if (!blockTo || blockTo > blockFrom) { let nodeEvents = await self.BatchEventsService.getBatchEvents({
let nodeEvents = await self.BatchEventsService.getBatchEvents({ fromBlock: blockFrom,
fromBlock: blockFrom, type: 'NewNullifier'
type: 'NewNullifier' })
if (nodeEvents && nodeEvents.length) {
nodeEvents = nodeEvents.map(({ blockNumber, transactionHash, args }) => ({
blockNumber,
transactionHash,
nullifier: args.nullifier,
}))
console.log({
nodeEvents
}) })
if (nodeEvents && nodeEvents.length) { events.push(...nodeEvents)
nodeEvents = nodeEvents.map(({ blockNumber, transactionHash, args }) => ({
blockNumber,
transactionHash,
nullifier: args.nullifier,
}))
console.log({
nodeEvents
})
events.push(...nodeEvents)
}
} }
return events return events

File diff suppressed because one or more lines are too long