Skip to content

Commit e217403

Browse files
committed
remove connect-sdk dep, restore typescript version
1 parent 2d5f0ae commit e217403

File tree

5 files changed

+12
-144
lines changed

5 files changed

+12
-144
lines changed

package-lock.json

+8-138
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
},
2020
"devDependencies": {
2121
"prettier": "^2.8.1",
22-
"typescript": "^5.2.2"
22+
"typescript": "^4.9.4"
2323
}
2424
}

watcher/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
"@google-cloud/pubsub": "^3.4.1",
2828
"@mysten/sui.js": "^0.33.0",
2929
"@solana/web3.js": "^1.73.0",
30-
"@wormhole-foundation/connect-sdk": "^0.1.6-beta.1",
3130
"@wormhole-foundation/wormhole-monitor-common": "^0.0.1",
3231
"algosdk": "^2.4.0",
3332
"aptos": "^1.4.0",

watcher/scripts/checkSolana.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@ import * as dotenv from 'dotenv';
22
dotenv.config();
33

44
import { SolanaWatcher } from '../src/watchers/SolanaWatcher';
5-
import { CONFIG } from '@wormhole-foundation/connect-sdk';
65

76
// Temporary script to test SolanaWatcher for lookup addresses
87
(async () => {
9-
const conf = CONFIG.Testnet.chains.Solana!;
10-
const sw = new SolanaWatcher(conf.rpc, conf.contracts.coreBridge);
8+
const sw = new SolanaWatcher();
119
const msgs = await sw.getMessagesForBlocks(245230133, 245230333);
1210
console.log(msgs);
1311
})();

watcher/src/watchers/SolanaWatcher.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,8 @@ export class SolanaWatcher extends Watcher {
143143
}
144144
if (!res || !res.blockTime) {
145145
throw new Error(
146-
`solana: failed to fetch tx for signature ${res?.transaction.signatures[0] || 'unknown'
146+
`solana: failed to fetch tx for signature ${
147+
res?.transaction.signatures[0] || 'unknown'
147148
}`
148149
);
149150
}

0 commit comments

Comments
 (0)