-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhandlers.ts
97 lines (84 loc) · 2.68 KB
/
handlers.ts
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import { formatUnits, numberToHex, fromHex } from 'npm:viem'
import { type EventHandlerFor } from 'https://deno.land/x/robo_arkiver@v0.4.17/mod.ts'
import erc20 from './erc20.ts'
import { Balance, BalanceHistory, Transfer } from './entities.ts'
// Alternatively, you can pull this from the chain
const ZERO_ADDRESS = '0x0000000000000000000000000000000000000000'
const getBalance = async (user: string, token: string, client, block, store) => {
const bal = await Balance.findOne({ user })
if (bal){
return bal
} else {
let userBalance = await client.readContract({
address: token,
abi: erc20,
functionName: 'balanceOf',
blockNumber: block.blockNumber,
args: [user]
})
return new Balance({ user, token, balance: numberToHex(userBalance) })
}
}
export const onTransfer: EventHandlerFor<typeof erc20, 'Transfer'> = async (
{ event, store, client, logger },
) => {
// Store the transfer event
const { from, to, value } = event.args
const address = event.address
// Grab the decimals with viem
// Use store to cache the value so it is only called once
const decimals = await store.retrieve(`${address}:decimals`, async () => {
return await client.readContract({
abi: erc20,
address,
functionName: 'decimals',
})
})
const block = Number(event.blockNumber)
const record = new Transfer({
token: address,
hash: event.transactionHash,
block,
from,
to,
value: formatUnits(value, Number(decimals)),
})
record.save()
const updateBalance = async (user: string, value: bigint, client, block, store) => {
// ignore zero address
if (user === ZERO_ADDRESS) {
return
}
// grab the balance entry for the user
let bal = new Balance({})
try{
bal = await getBalance(user, address, client, block, store)
} catch(e){
logger.error(`getBalance error: ${e}`)
return
}
// adjust the value
bal.balance = numberToHex(fromHex(bal.balance, 'bigint') + value)
// Create a BalanceHistory entry to record
// historic changes in the balance
const entry = new BalanceHistory({
token: address,
block,
user,
balance: bal.balance,
})
logger.info(`Balance of ${user} updated to ${bal.balance} at block ${block} on ${address}`)
// Save both the balance and the history entry
return Promise.all([
bal.save(),
entry.save(),
])
}
// Update the balances for both the sender and the receiver
// note: user await here to ensure the handler is synchonous
// so te balances are updated
await Promise.all([
updateBalance(from, -value, client, block, store),
updateBalance(to, value, client, block, store),
])
}