Skip to content

Commit 375bb85

Browse files
evgenikoclaude
andcommitted
fix: add type annotations for TypeScript strict mode
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e8e6e2a commit 375bb85

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

e2e/sendToSolanaOnChainQuote.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@ async function main() {
120120
// Parse GreetingSent event (filter by contract address, then decode)
121121
const iface = new ethers.Interface(ABI);
122122
const sentEvent = receipt.logs
123-
.filter(log => log.address.toLowerCase() === HELLO_WORMHOLE_OC.toLowerCase())
124-
.map(log => iface.parseLog({ topics: log.topics as string[], data: log.data }))
125-
.find(event => event?.name === 'GreetingSent');
123+
.filter((log: any) => log.address.toLowerCase() === HELLO_WORMHOLE_OC.toLowerCase())
124+
.map((log: any) => iface.parseLog({ topics: log.topics as string[], data: log.data }))
125+
.find((event: any) => event?.name === 'GreetingSent');
126126

127127
if (sentEvent) {
128128
console.log(`\nGreetingSent event:`);

0 commit comments

Comments
 (0)