We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
sendBatchTransaction
1 parent b2f35b3 commit 8a88efaCopy full SHA for 8a88efa
packages/thirdweb/src/transaction/actions/send-batch-transaction.ts
@@ -3,12 +3,12 @@ import type {
3
Account,
4
SendTransactionOption,
5
} from "../../wallets/interfaces/wallet.js";
6
-import type { PreparedTransaction } from "../prepare-transaction.js";
7
import { encode } from "./encode.js";
+import type { SendTransactionOptions } from "./send-transaction.js";
8
import type { WaitForReceiptOptions } from "./wait-for-tx-receipt.js";
9
10
export type SendBatchTransactionOptions = {
11
- transactions: PreparedTransaction[];
+ transactions: SendTransactionOptions["transaction"][];
12
account: Account;
13
};
14
0 commit comments