Skip to content

Commit a4bb1c2

Browse files
committed
Fix type
1 parent 797c5b4 commit a4bb1c2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/decorators/arbOwnerPublicActions.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,11 @@ export function arbOwnerPublicActions<
3939
arbOwnerReadContract: (args) => arbOwnerReadContract(client, { ...args, arbOsVersion }),
4040

4141
arbOwnerPrepareTransactionRequest: (args) =>
42-
arbOwnerPrepareTransactionRequest(client, { ...args, arbOsVersion }),
42+
// @ts-ignore (todo: fix viem type issue)
43+
arbOwnerPrepareTransactionRequest(client, {
44+
...args,
45+
arbOsVersion,
46+
}),
4347
};
4448
};
4549
}

0 commit comments

Comments
 (0)