Skip to content

Commit

Permalink
update versions in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
hazelnutcloud committed Jul 27, 2023
1 parent 10a4ca8 commit 94fd08d
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion examples/block-handler-vaults/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export {
createEntity,
type EventHandlerFor,
Manifest,
} from 'https://deno.land/x/robo_arkiver@v0.4.17/mod.ts'
} from 'https://deno.land/x/robo_arkiver@v0.4.19/mod.ts'
2 changes: 1 addition & 1 deletion examples/block-handler-vaults/handlers/vault.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { formatUnits, getContract } from 'npm:viem'
import { type BlockHandler } from 'https://deno.land/x/robo_arkiver@v0.4.17/mod.ts'
import { type BlockHandler } from 'https://deno.land/x/robo_arkiver@v0.4.19/mod.ts'
import { VaultSnapshot } from '../entities/vault.ts'
import { YearnV2Abi } from '../abis/YearnV2.ts'

Expand Down
2 changes: 1 addition & 1 deletion examples/block-handler-vaults/manifest.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Manifest } from 'https://deno.land/x/robo_arkiver@v0.4.17/mod.ts'
import { Manifest } from 'https://deno.land/x/robo_arkiver@v0.4.19/mod.ts'
import { VaultSnapshot } from './entities/vault.ts'
import { snapshotVault } from './handlers/vault.ts'

Expand Down
2 changes: 1 addition & 1 deletion examples/erc20-balance-history/entities.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createEntity } from 'https://deno.land/x/robo_arkiver@v0.4.17/mod.ts'
import { createEntity } from 'https://deno.land/x/robo_arkiver@v0.4.19/mod.ts'

// @note: "Index: true" enhances graphql queries

Expand Down
2 changes: 1 addition & 1 deletion examples/erc20-balance-history/handlers.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { formatUnits } from 'npm:viem'
import { type EventHandlerFor } from 'https://deno.land/x/robo_arkiver@v0.4.17/mod.ts'
import { type EventHandlerFor } from 'https://deno.land/x/robo_arkiver@v0.4.19/mod.ts'
import erc20 from './erc20.ts'
import { Balance, BalanceHistory, Transfer } from './entities.ts'

Expand Down
2 changes: 1 addition & 1 deletion examples/erc20-balance-history/manifest.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Manifest } from 'https://deno.land/x/robo_arkiver@v0.4.17/mod.ts'
import { Manifest } from 'https://deno.land/x/robo_arkiver@v0.4.19/mod.ts'
import erc20 from './erc20.ts'
import { Entities } from './entities.ts'
import { onTransfer } from './handlers.ts'
Expand Down
2 changes: 1 addition & 1 deletion examples/erc20-events/entities.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createEntity } from 'https://deno.land/x/robo_arkiver@v0.4.17/mod.ts'
import { createEntity } from 'https://deno.land/x/robo_arkiver@v0.4.19/mod.ts'

// @note: "Index: true" enhances graphql queries
export const Transfer = createEntity('Transfer', {
Expand Down
2 changes: 1 addition & 1 deletion examples/erc20-events/handlers.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { formatUnits } from 'npm:viem'
import { type EventHandlerFor } from 'https://deno.land/x/robo_arkiver@v0.4.17/mod.ts'
import { type EventHandlerFor } from 'https://deno.land/x/robo_arkiver@v0.4.19/mod.ts'
import erc20 from './erc20.ts'
import { Approval, Transfer } from './entities.ts'

Expand Down
2 changes: 1 addition & 1 deletion examples/erc20-events/manifest.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Manifest } from 'https://deno.land/x/robo_arkiver@v0.4.17/mod.ts'
import { Manifest } from 'https://deno.land/x/robo_arkiver@v0.4.19/mod.ts'
import erc20 from './erc20.ts'
import { Approval, Transfer } from './entities.ts'
import { onApproval, onTransfer } from './handlers.ts'
Expand Down
2 changes: 1 addition & 1 deletion examples/event-wildcard/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export {
createEntity,
type EventHandlerFor,
Manifest,
} from 'https://deno.land/x/robo_arkiver@v0.4.17/mod.ts'
} from 'https://deno.land/x/robo_arkiver@v0.4.19/mod.ts'
2 changes: 1 addition & 1 deletion examples/simple/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export {
createEntity,
type EventHandlerFor,
Manifest,
} from 'https://deno.land/x/robo_arkiver@v0.4.17/mod.ts'
} from 'https://deno.land/x/robo_arkiver@v0.4.19/mod.ts'

0 comments on commit 94fd08d

Please sign in to comment.