Skip to content

Commit bafb4f8

Browse files
committed
Balance as a Hex String
1 parent c25604c commit bafb4f8

File tree

3 files changed

+8
-19
lines changed

3 files changed

+8
-19
lines changed

cli/start/mod.ts

-2
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,6 @@ export const action = async (
143143
acc[name] = url
144144
return acc
145145
}, {} as Record<string, string>) ?? collectRpcUrls() ?? {}
146-
console.log(`rpcUrls: `)
147-
console.log(rpcUrls)
148146

149147
logger('arkiver').debug(`Connecting to database...`)
150148
const connectionString = options.mongoConnection ??

examples/erc20-balance-history/entities.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ export const Transfer = createEntity('Transfer', {
1616
export const Balance = createEntity('Balance', {
1717
token: String,
1818
user: String,
19-
balance: Number,
19+
balance: String,
2020
})
2121

2222
// Contains all balance changes for every user
2323
export const BalanceHistory = createEntity('BalanceHistory', {
2424
token: String,
2525
block: { type: Number, index: true },
2626
user: String,
27-
balance: Number,
27+
balance: String,
2828
})
2929

3030
export const Entities = [Balance, BalanceHistory, Transfer]

examples/erc20-balance-history/handlers.ts

+6-15
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { formatUnits } from 'npm:viem'
1+
import { formatUnits, numberToHex, fromHex } from 'npm:viem'
22
import { type EventHandlerFor } from 'https://deno.land/x/robo_arkiver@v0.4.17/mod.ts'
33
import erc20 from './erc20.ts'
44
import { Balance, BalanceHistory, Transfer } from './entities.ts'
@@ -18,15 +18,7 @@ const getBalance = async (user: string, token: string, client, block, store) =>
1818
blockNumber: block.blockNumber,
1919
args: [user]
2020
})
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) })
3022
}
3123

3224

@@ -60,7 +52,7 @@ export const onTransfer: EventHandlerFor<typeof erc20, 'Transfer'> = async (
6052
})
6153
record.save()
6254

63-
const updateBalance = async (user: string, value: number, client, block, store) => {
55+
const updateBalance = async (user: string, value: bigint, client, block, store) => {
6456
// ignore zero address
6557
if (user === ZERO_ADDRESS) {
6658
return
@@ -76,7 +68,7 @@ export const onTransfer: EventHandlerFor<typeof erc20, 'Transfer'> = async (
7668
}
7769

7870
// adjust the value
79-
bal.balance += value
71+
bal.balance = numberToHex(fromHex(bal.balance, 'bigint') + value)
8072

8173
// Create a BalanceHistory entry to record
8274
// historic changes in the balance
@@ -98,9 +90,8 @@ export const onTransfer: EventHandlerFor<typeof erc20, 'Transfer'> = async (
9890
// Update the balances for both the sender and the receiver
9991
// note: user await here to ensure the handler is synchonous
10092
// so te balances are updated
101-
const amount = Number(formatUnits(value, Number(decimals)))
10293
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),
10596
])
10697
}

0 commit comments

Comments
 (0)