Skip to content

Commit

Permalink
temporarily ts-ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
spsjvc committed Dec 18, 2023
1 parent 37da061 commit 1bf5c88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/decorators/arbOwnerPublicActions.integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ it('succesfully adds chain owner', async () => {

// submit tx to add chain owner
await client.sendRawTransaction({
// @ts-ignore
serializedTransaction: await owner.signTransaction(transactionRequest),
});

Expand Down Expand Up @@ -64,6 +65,7 @@ it('succesfully removes chain owner', async () => {

// submit tx to remove chain owner
await client.sendRawTransaction({
// @ts-ignore
serializedTransaction: await owner.signTransaction(transactionRequest),
});

Expand Down Expand Up @@ -93,6 +95,7 @@ it('succesfully updates infra fee receiver', async () => {

// submit tx to update infra fee receiver
await client.sendRawTransaction({
// @ts-ignore
serializedTransaction: await owner.signTransaction(transactionRequest),
});

Expand Down
1 change: 1 addition & 0 deletions src/decorators/arbOwnerPublicActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export function arbOwnerPublicActions<
TChain extends Chain | undefined = Chain | undefined
>(client: PublicClient<TTransport, TChain>): ArbOwnerPublicActions<TChain> {
return {
// @ts-ignore
arbOwnerReadContract: (args) => arbOwnerReadContract(client, args),

arbOwnerPrepareTransactionRequest: (args) =>
Expand Down

0 comments on commit 1bf5c88

Please sign in to comment.