Skip to content

Commit 8e99ada

Browse files
committed
fix(docs): update error handling to use unknown type for caught exceptions
1 parent e203c80 commit 8e99ada

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/developer-hub-javascript/uniswapV3Wrapper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ async function deployAndVerifyContract() {
4040
address: uniswapV3WrapperAddress,
4141
constructorArguments: args,
4242
});
43-
} catch (e: any) {
43+
} catch (e: unknown) {
4444
console.log(e);
4545
}
4646

0 commit comments

Comments
 (0)