From a4bb1c2826047857da369e5705bb8b83c0695308 Mon Sep 17 00:00:00 2001 From: Christophe Date: Tue, 7 May 2024 19:19:50 +0000 Subject: [PATCH] Fix type --- src/decorators/arbOwnerPublicActions.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/decorators/arbOwnerPublicActions.ts b/src/decorators/arbOwnerPublicActions.ts index 6c2ce6bc..0db18430 100644 --- a/src/decorators/arbOwnerPublicActions.ts +++ b/src/decorators/arbOwnerPublicActions.ts @@ -39,7 +39,11 @@ export function arbOwnerPublicActions< arbOwnerReadContract: (args) => arbOwnerReadContract(client, { ...args, arbOsVersion }), arbOwnerPrepareTransactionRequest: (args) => - arbOwnerPrepareTransactionRequest(client, { ...args, arbOsVersion }), + // @ts-ignore (todo: fix viem type issue) + arbOwnerPrepareTransactionRequest(client, { + ...args, + arbOsVersion, + }), }; }; }