1
- import { formatUnits } from 'npm:viem'
1
+ import { formatUnits , numberToHex , fromHex } from 'npm:viem'
2
2
import { type EventHandlerFor } from 'https://deno.land/x/robo_arkiver@v0.4.17/mod.ts'
3
3
import erc20 from './erc20.ts'
4
4
import { Balance , BalanceHistory , Transfer } from './entities.ts'
@@ -18,15 +18,7 @@ const getBalance = async (user: string, token: string, client, block, store) =>
18
18
blockNumber : block . blockNumber ,
19
19
args : [ user ]
20
20
} )
21
- const decimals = await store . retrieve ( `${ token } :decimals` , async ( ) => {
22
- return await client . readContract ( {
23
- abi : erc20 ,
24
- token,
25
- functionName : 'decimals' ,
26
- } )
27
- } )
28
- userBalance = Number ( formatUnits ( userBalance , Number ( decimals ) ) )
29
- return new Balance ( { user, token, balance : Number ( userBalance ) } )
21
+ return new Balance ( { user, token, balance : numberToHex ( userBalance ) } )
30
22
}
31
23
32
24
@@ -60,7 +52,7 @@ export const onTransfer: EventHandlerFor<typeof erc20, 'Transfer'> = async (
60
52
} )
61
53
record . save ( )
62
54
63
- const updateBalance = async ( user : string , value : number , client , block , store ) => {
55
+ const updateBalance = async ( user : string , value : bigint , client , block , store ) => {
64
56
// ignore zero address
65
57
if ( user === ZERO_ADDRESS ) {
66
58
return
@@ -76,7 +68,7 @@ export const onTransfer: EventHandlerFor<typeof erc20, 'Transfer'> = async (
76
68
}
77
69
78
70
// adjust the value
79
- bal . balance += value
71
+ bal . balance = numberToHex ( fromHex ( bal . balance , 'bigint' ) + value )
80
72
81
73
// Create a BalanceHistory entry to record
82
74
// historic changes in the balance
@@ -98,9 +90,8 @@ export const onTransfer: EventHandlerFor<typeof erc20, 'Transfer'> = async (
98
90
// Update the balances for both the sender and the receiver
99
91
// note: user await here to ensure the handler is synchonous
100
92
// so te balances are updated
101
- const amount = Number ( formatUnits ( value , Number ( decimals ) ) )
102
93
await Promise . all ( [
103
- updateBalance ( from , - amount , client , block , store ) ,
104
- updateBalance ( to , amount , client , block , store ) ,
94
+ updateBalance ( from , - value , client , block , store ) ,
95
+ updateBalance ( to , value , client , block , store ) ,
105
96
] )
106
97
}
0 commit comments