Skip to content

Commit 8a88efa

Browse files
committed
fix core sendBatchTransaction types
1 parent b2f35b3 commit 8a88efa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/thirdweb/src/transaction/actions/send-batch-transaction.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ import type {
33
Account,
44
SendTransactionOption,
55
} from "../../wallets/interfaces/wallet.js";
6-
import type { PreparedTransaction } from "../prepare-transaction.js";
76
import { encode } from "./encode.js";
7+
import type { SendTransactionOptions } from "./send-transaction.js";
88
import type { WaitForReceiptOptions } from "./wait-for-tx-receipt.js";
99

1010
export type SendBatchTransactionOptions = {
11-
transactions: PreparedTransaction[];
11+
transactions: SendTransactionOptions["transaction"][];
1212
account: Account;
1313
};
1414

0 commit comments

Comments
 (0)