From 94fd08d2fcdcc569d189b5c919dcfa9149a9c216 Mon Sep 17 00:00:00 2001 From: hazelnutcloud Date: Thu, 27 Jul 2023 17:59:06 +0800 Subject: [PATCH] update versions in examples --- examples/block-handler-vaults/deps.ts | 2 +- examples/block-handler-vaults/handlers/vault.ts | 2 +- examples/block-handler-vaults/manifest.ts | 2 +- examples/erc20-balance-history/entities.ts | 2 +- examples/erc20-balance-history/handlers.ts | 2 +- examples/erc20-balance-history/manifest.ts | 2 +- examples/erc20-events/entities.ts | 2 +- examples/erc20-events/handlers.ts | 2 +- examples/erc20-events/manifest.ts | 2 +- examples/event-wildcard/deps.ts | 2 +- examples/simple/deps.ts | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/examples/block-handler-vaults/deps.ts b/examples/block-handler-vaults/deps.ts index 14f51b7..4efb5de 100644 --- a/examples/block-handler-vaults/deps.ts +++ b/examples/block-handler-vaults/deps.ts @@ -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' diff --git a/examples/block-handler-vaults/handlers/vault.ts b/examples/block-handler-vaults/handlers/vault.ts index 0af5057..8fe7bdc 100644 --- a/examples/block-handler-vaults/handlers/vault.ts +++ b/examples/block-handler-vaults/handlers/vault.ts @@ -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' diff --git a/examples/block-handler-vaults/manifest.ts b/examples/block-handler-vaults/manifest.ts index e1847f1..49e890f 100644 --- a/examples/block-handler-vaults/manifest.ts +++ b/examples/block-handler-vaults/manifest.ts @@ -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' diff --git a/examples/erc20-balance-history/entities.ts b/examples/erc20-balance-history/entities.ts index b38878f..a2b6815 100644 --- a/examples/erc20-balance-history/entities.ts +++ b/examples/erc20-balance-history/entities.ts @@ -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 diff --git a/examples/erc20-balance-history/handlers.ts b/examples/erc20-balance-history/handlers.ts index b85d459..b306a15 100644 --- a/examples/erc20-balance-history/handlers.ts +++ b/examples/erc20-balance-history/handlers.ts @@ -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' diff --git a/examples/erc20-balance-history/manifest.ts b/examples/erc20-balance-history/manifest.ts index 0801907..45a60d8 100644 --- a/examples/erc20-balance-history/manifest.ts +++ b/examples/erc20-balance-history/manifest.ts @@ -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' diff --git a/examples/erc20-events/entities.ts b/examples/erc20-events/entities.ts index 75319ce..41c9e52 100644 --- a/examples/erc20-events/entities.ts +++ b/examples/erc20-events/entities.ts @@ -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', { diff --git a/examples/erc20-events/handlers.ts b/examples/erc20-events/handlers.ts index 6e0b3c9..1521eba 100644 --- a/examples/erc20-events/handlers.ts +++ b/examples/erc20-events/handlers.ts @@ -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' diff --git a/examples/erc20-events/manifest.ts b/examples/erc20-events/manifest.ts index 4938925..0ae14a6 100644 --- a/examples/erc20-events/manifest.ts +++ b/examples/erc20-events/manifest.ts @@ -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' diff --git a/examples/event-wildcard/deps.ts b/examples/event-wildcard/deps.ts index 14f51b7..4efb5de 100644 --- a/examples/event-wildcard/deps.ts +++ b/examples/event-wildcard/deps.ts @@ -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' diff --git a/examples/simple/deps.ts b/examples/simple/deps.ts index 14f51b7..4efb5de 100644 --- a/examples/simple/deps.ts +++ b/examples/simple/deps.ts @@ -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'