sendBatchedTransaction abstract method
- List<
EthereumAddress> recipients, - List<
Uint8List> calls, - {List<
EtherAmount> ? amounts}
Sends a batched transaction to the wallet.
recipients
: The addresses of the recipients.calls
: The calldata to send.amounts
: The amounts to send (optional).
Returns the UserOperationResponse
of the transaction.
Implementation
Future<UserOperationResponse> sendBatchedTransaction(
List<EthereumAddress> recipients,
List<Uint8List> calls, {
List<EtherAmount>? amounts,
});