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, + }), }; }; }