Skip to content

Commit

Permalink
fix(types): fix default value for abi in BaseTransactionOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
jnsdls committed Feb 24, 2024
1 parent cebeb4b commit 4b79bf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/thirdweb/src/transaction/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export type ParamsOption<abiFn extends AbiFunction> = abiFn["inputs"] extends {

export type BaseTransactionOptions<
T extends object = object,
abi extends Abi = [],
abi extends Abi = any,
> = {
contract: ThirdwebContract<abi>;
} & T;
Expand Down

0 comments on commit 4b79bf7

Please sign in to comment.