Skip to content

Commit

Permalink
Move Tracker to evm-gateway
Browse files Browse the repository at this point in the history
  • Loading branch information
makoto committed Jan 24, 2024
1 parent 34816f5 commit 5d3ba37
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion arb-gateway/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@
},
"dependencies": {
"@chainlink/ccip-read-server": "^0.2.1",
"@cloudflare/workers-types": "^4.20240117.0",
"@ensdomains/evm-gateway": "^0.1.0",
"@ethereumjs/block": "^5.0.0",
"@nomicfoundation/ethereumjs-block": "^5.0.2",
Expand Down
2 changes: 1 addition & 1 deletion arb-gateway/src/worker.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Request as CFWRequest } from '@cloudflare/workers-types';
import { Server } from '@ensdomains/ccip-read-cf-worker';
import type { Router } from '@ensdomains/evm-gateway';
import { Tracker } from '@ensdomains/evm-gateway';
import { InMemoryBlockCache } from './blockCache/InMemoryBlockCache.js';
import { Tracker } from './tracker.js';
interface Env {
L1_PROVIDER_URL: string;
L2_PROVIDER_URL: string;
Expand Down
Binary file modified bun.lockb
Binary file not shown.
1 change: 1 addition & 0 deletions evm-gateway/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"module": "./_esm/index.js",
"dependencies": {
"@chainlink/ccip-read-server": "^0.2.1",
"@cloudflare/workers-types": "^4.20240117.0",
"@ensdomains/ccip-read-cf-worker": "^0.0.1",
"ethers": "^6.7.1"
},
Expand Down
1 change: 1 addition & 0 deletions evm-gateway/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export { EVMGateway, StorageLayout } from './EVMGateway.js';
export { EVMProofHelper, type StateProof } from './EVMProofHelper.js';
export type { IProofService, ProvableBlock } from './IProofService.js';
export { Tracker } from './tracker.js';
export type { Router } from './utils.js';
File renamed without changes.

0 comments on commit 5d3ba37

Please sign in to comment.