Skip to content
Merged
Prev Previous commit
Next Next commit
update
  • Loading branch information
jpuri committed Dec 9, 2025
commit c64583126d22f2f6b625866c44720f989cc6bb5c
2 changes: 2 additions & 0 deletions packages/eip-5792-middleware/src/hooks/processSendCalls.ts
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want to note additions in changelog on this package and transaction-controller?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point, let me do that.

Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ export async function processSendCalls(
* @param params.messenger - Messenger instance for controller communication.
* @param params.networkClientId - The network client ID.
* @param params.origin - The origin of the request (optional).
* @param params.requestId - Unique requestId of the JSON-RPC request from DAPP.
* @param params.securityAlertId - The security alert ID for this transaction.
* @param params.sendCalls - The original sendCalls request.
* @param params.transactions - Array containing the single transaction.
Expand Down Expand Up @@ -236,6 +237,7 @@ async function processSingleTransaction({
* @param params.networkClientId - The network client ID.
* @param params.messenger - Messenger instance for controller communication.
* @param params.origin - The origin of the request (optional).
* @param params.requestId - Unique requestId of the JSON-RPC request from DAPP.
* @param params.sendCalls - The original sendCalls request.
* @param params.securityAlertId - The security alert ID for this batch.
* @param params.transactions - Array of transactions to process.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1784,6 +1784,7 @@ describe('TransactionController', () => {
nestedTransactions: undefined,
networkClientId: NETWORK_CLIENT_ID_MOCK,
origin: undefined,
requestId: undefined,
securityAlertResponse: undefined,
selectedGasFeeToken: undefined,
sendFlowHistory: expect.any(Array),
Expand Down
Loading