File tree 14 files changed +17
-14
lines changed
14 files changed +17
-14
lines changed Original file line number Diff line number Diff line change
1
+ #v0.4.22
2
+ - Fix bug where decoding event log from wildcard sources would sometimes fail
3
+
1
4
# v0.4.21
2
5
- Fix event type in event handler contexts
3
6
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import {
17
17
} from './cli/mod.ts'
18
18
import 'https://deno.land/std@0.179.0/dotenv/load.ts'
19
19
20
- export const version = 'v0.4.21 '
20
+ export const version = 'v0.4.22 '
21
21
22
22
const command = new Command ( )
23
23
. name ( 'arkiver' )
Original file line number Diff line number Diff line change 3
3
createEntity ,
4
4
type EventHandlerFor ,
5
5
Manifest ,
6
- } from 'https://deno.land/x/robo_arkiver@v0.4.21 /mod.ts'
6
+ } from 'https://deno.land/x/robo_arkiver@v0.4.22 /mod.ts'
Original file line number Diff line number Diff line change 1
1
import { formatUnits , getContract } from 'npm:viem'
2
- import { type BlockHandler } from 'https://deno.land/x/robo_arkiver@v0.4.21 /mod.ts'
2
+ import { type BlockHandler } from 'https://deno.land/x/robo_arkiver@v0.4.22 /mod.ts'
3
3
import { VaultSnapshot } from '../entities/vault.ts'
4
4
import { YEARN_V2_ABI } from '../abis/YearnV2.ts'
5
5
Original file line number Diff line number Diff line change 1
- import { Manifest } from 'https://deno.land/x/robo_arkiver@v0.4.21 /mod.ts'
1
+ import { Manifest } from 'https://deno.land/x/robo_arkiver@v0.4.22 /mod.ts'
2
2
import { VaultSnapshot } from './entities/vault.ts'
3
3
import { snapshotVault } from './handlers/vault.ts'
4
4
Original file line number Diff line number Diff line change 1
- import { createEntity } from 'https://deno.land/x/robo_arkiver@v0.4.21 /mod.ts'
1
+ import { createEntity } from 'https://deno.land/x/robo_arkiver@v0.4.22 /mod.ts'
2
2
3
3
// @note : "Index: true" enhances graphql queries
4
4
Original file line number Diff line number Diff line change 1
1
import { formatUnits , fromHex , numberToHex } from 'npm:viem'
2
- import { type EventHandlerFor } from 'https://deno.land/x/robo_arkiver@v0.4.21 /mod.ts'
2
+ import { type EventHandlerFor } from 'https://deno.land/x/robo_arkiver@v0.4.22 /mod.ts'
3
3
import erc20 from './erc20.ts'
4
4
import { Balance , BalanceHistory , Transfer } from './entities.ts'
5
5
Original file line number Diff line number Diff line change 1
- import { Manifest } from 'https://deno.land/x/robo_arkiver@v0.4.21 /mod.ts'
1
+ import { Manifest } from 'https://deno.land/x/robo_arkiver@v0.4.22 /mod.ts'
2
2
import { ERC_20_ABI } from './Erc20.ts'
3
3
import { Entities } from './entities.ts'
4
4
import { onTransfer } from './handlers.ts'
Original file line number Diff line number Diff line change 1
- import { createEntity } from 'https://deno.land/x/robo_arkiver@v0.4.21 /mod.ts'
1
+ import { createEntity } from 'https://deno.land/x/robo_arkiver@v0.4.22 /mod.ts'
2
2
3
3
// @note : "Index: true" enhances graphql queries
4
4
export const Transfer = createEntity < any > ( 'Transfer' , {
Original file line number Diff line number Diff line change 1
1
import { formatUnits } from 'npm:viem'
2
- import { type EventHandlerFor } from 'https://deno.land/x/robo_arkiver@v0.4.21 /mod.ts'
2
+ import { type EventHandlerFor } from 'https://deno.land/x/robo_arkiver@v0.4.22 /mod.ts'
3
3
import { ERC_20_ABI } from './Erc20.ts'
4
4
import { Approval , Transfer } from './entities.ts'
5
5
Original file line number Diff line number Diff line change 1
- import { Manifest } from 'https://deno.land/x/robo_arkiver@v0.4.21 /mod.ts'
1
+ import { Manifest } from 'https://deno.land/x/robo_arkiver@v0.4.22 /mod.ts'
2
2
import { ERC_20_ABI } from './Erc20.ts'
3
3
import { Approval , Transfer } from './entities.ts'
4
4
import { onApproval , onTransfer } from './handlers.ts'
Original file line number Diff line number Diff line change 3
3
createEntity ,
4
4
type EventHandlerFor ,
5
5
Manifest ,
6
- } from 'https://deno.land/x/robo_arkiver@v0.4.21 /mod.ts'
6
+ } from 'https://deno.land/x/robo_arkiver@v0.4.22 /mod.ts'
Original file line number Diff line number Diff line change 3
3
createEntity ,
4
4
type EventHandlerFor ,
5
5
Manifest ,
6
- } from 'https://deno.land/x/robo_arkiver@v0.4.21 /mod.ts'
6
+ } from 'https://deno.land/x/robo_arkiver@v0.4.22 /mod.ts'
7
7
export {
8
8
Erc721Lib ,
9
9
type Erc721Opts ,
10
- } from 'https://deno.land/x/robo_arkiver@v0.4.21 /libs.ts'
10
+ } from 'https://deno.land/x/robo_arkiver@v0.4.22 /libs.ts'
Original file line number Diff line number Diff line change 3
3
createEntity ,
4
4
type EventHandlerFor ,
5
5
Manifest ,
6
- } from 'https://deno.land/x/robo_arkiver@v0.4.21 /mod.ts'
6
+ } from 'https://deno.land/x/robo_arkiver@v0.4.22 /mod.ts'
You can’t perform that action at this time.
0 commit comments