Skip to content

Commit a4da4de

Browse files
committed
watcher: remove obsolete watchers
1 parent 7ed4a14 commit a4da4de

11 files changed

+53
-304
lines changed

watcher/scripts/backfillArbitrum.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ import axios from 'axios';
44
import ora from 'ora';
55
import { initDb } from '../src/databases/utils';
66
import { AXIOS_CONFIG_JSON } from '../src/consts';
7-
import { ArbitrumWatcher } from '../src/watchers/ArbitrumWatcher';
8-
import { LOG_MESSAGE_PUBLISHED_TOPIC } from '../src/watchers/EVMWatcher';
7+
import { EVMWatcher, LOG_MESSAGE_PUBLISHED_TOPIC } from '../src/watchers/EVMWatcher';
98
import { Chain, contracts } from '@wormhole-foundation/sdk-base';
109

1110
// This script exists because the Arbitrum RPC node only supports a 10 block range which is super slow
@@ -27,7 +26,7 @@ import { Chain, contracts } from '@wormhole-foundation/sdk-base';
2726
log.succeed(`Fetched ${blockNumbers.length} logs from Arbiscan`);
2827
// use the watcher to fetch corresponding blocks
2928
log = ora('Fetching blocks...').start();
30-
const watcher = new ArbitrumWatcher('Mainnet');
29+
const watcher = new EVMWatcher('Mainnet', 'Arbitrum', 'finalized', 'vaa');
3130
for (const blockNumber of blockNumbers) {
3231
log.text = `Fetching block ${blockNumber}`;
3332
const { vaasByBlock } = await watcher.getMessagesForBlocks(blockNumber, blockNumber);

watcher/src/watchers/ArbitrumWatcher.ts

-135
This file was deleted.

watcher/src/watchers/BSCWatcher.ts

-12
This file was deleted.

watcher/src/watchers/FTEVMWatcher.ts

-6
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ import {
1414
import isNotNull from '../utils/isNotNull';
1515

1616
export class FTEVMWatcher extends EVMWatcher {
17-
finalizedBlockTag: BlockTag;
18-
lastTimestamp: number;
19-
latestFinalizedBlockNumber: number;
2017
rpc: string;
2118
provider: ethers.providers.JsonRpcProvider;
2219
tokenRouterContract: string;
@@ -30,9 +27,6 @@ export class FTEVMWatcher extends EVMWatcher {
3027
isTest = false
3128
) {
3229
super(network, chain, finalizedBlockTag, 'ft');
33-
this.lastTimestamp = 0;
34-
this.latestFinalizedBlockNumber = 0;
35-
this.finalizedBlockTag = finalizedBlockTag;
3630
this.provider = new ethers.providers.JsonRpcProvider(RPCS_BY_CHAIN[network][chain]);
3731
this.rpc = RPCS_BY_CHAIN[network][chain]!;
3832
this.evmTokenRouter = new EvmTokenRouter(

watcher/src/watchers/MoonbeamWatcher.ts

-44
This file was deleted.

watcher/src/watchers/NTTWatcher.ts

-6
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,11 @@ import { BlockTag, EVMWatcher, LOG_MESSAGE_PUBLISHED_TOPIC, wormholeInterface }
2828

2929
export class NTTWatcher extends EVMWatcher {
3030
chain: NTTChain;
31-
finalizedBlockTag: BlockTag;
32-
lastTimestamp: number;
33-
latestFinalizedBlockNumber: number;
3431
pg: Knex;
3532

3633
constructor(network: Network, chain: NTTEvmChain, finalizedBlockTag: BlockTag = 'latest') {
3734
super(network, chain, finalizedBlockTag, 'ntt');
3835
this.chain = chain;
39-
this.lastTimestamp = 0;
40-
this.latestFinalizedBlockNumber = 0;
41-
this.finalizedBlockTag = finalizedBlockTag;
4236
this.pg = knex({
4337
client: 'pg',
4438
connection: {

watcher/src/watchers/PolygonWatcher.ts

-38
This file was deleted.

watcher/src/watchers/VAAWatcher.ts

-22
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,5 @@ export class VAAWatcher extends EVMWatcher {
88
finalizedBlockTag: BlockTag = 'latest'
99
) {
1010
super(network, chain, finalizedBlockTag, 'vaa');
11-
// Special cases for batch size
12-
if (chain === 'Acala' || chain === 'Karura' || chain === 'Berachain') {
13-
this.maximumBatchSize = 50;
14-
} else if (
15-
chain === 'Blast' ||
16-
chain === 'Klaytn' ||
17-
chain === 'Scroll' ||
18-
chain === 'Snaxchain' ||
19-
chain === 'Unichain' ||
20-
chain === 'Worldchain' ||
21-
chain === 'Monad' ||
22-
chain === 'Ink' ||
23-
chain === 'HyperEVM' ||
24-
chain === 'Seievm' ||
25-
chain === 'Xlayer'
26-
) {
27-
this.maximumBatchSize = 10;
28-
}
29-
// Special cases for watch loop delay
30-
if (chain === 'Berachain') {
31-
this.watchLoopDelay = 1000;
32-
}
3311
}
3412
}

watcher/src/watchers/Watcher.ts

+22
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,28 @@ export class Watcher {
2929
// `ft` -> 'FT_'
3030
const loggerPrefix = mode.toUpperCase() + '_';
3131
this.logger = getLogger(loggerPrefix + chain);
32+
// Special cases for batch size
33+
if (chain === 'Acala' || chain === 'Karura' || chain === 'Berachain') {
34+
this.maximumBatchSize = 50;
35+
} else if (
36+
chain === 'Blast' ||
37+
chain === 'Klaytn' ||
38+
chain === 'Scroll' ||
39+
chain === 'Snaxchain' ||
40+
chain === 'Unichain' ||
41+
chain === 'Worldchain' ||
42+
chain === 'Monad' ||
43+
chain === 'Ink' ||
44+
chain === 'HyperEVM' ||
45+
chain === 'Seievm' ||
46+
chain === 'Xlayer'
47+
) {
48+
this.maximumBatchSize = 10;
49+
}
50+
// Special cases for watch loop delay
51+
if (chain === 'Berachain') {
52+
this.watchLoopDelay = 1000;
53+
}
3254
}
3355

3456
async getFinalizedBlockNumber(): Promise<number> {

watcher/src/watchers/index.ts

-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
export { AptosWatcher } from './AptosWatcher';
2-
export { BSCWatcher } from './BSCWatcher';
32
export { CosmwasmWatcher } from './CosmwasmWatcher';
43
export { EVMWatcher } from './EVMWatcher';
54
export { InjectiveExplorerWatcher } from './InjectiveExplorerWatcher';
6-
export { MoonbeamWatcher } from './MoonbeamWatcher';
7-
export { PolygonWatcher } from './PolygonWatcher';

0 commit comments

Comments
 (0)